From 05ab5422b9a7ca0fef94405a930ca991ae2b7b34 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 25 Jun 2025 18:29:09 +0000 Subject: [PATCH 1/3] feat(api): api update --- .stats.yml | 4 +-- lib/increase/models/card_payment.rb | 12 +++++++++ lib/increase/models/declined_transaction.rb | 6 +++++ lib/increase/models/pending_transaction.rb | 6 +++++ lib/increase/models/real_time_decision.rb | 6 +++++ rbi/increase/models/card_payment.rbi | 28 ++++++++++++++++++++ rbi/increase/models/declined_transaction.rbi | 14 ++++++++++ rbi/increase/models/pending_transaction.rbi | 14 ++++++++++ rbi/increase/models/real_time_decision.rbi | 14 ++++++++++ sig/increase/models/card_payment.rbs | 16 +++++++++++ sig/increase/models/declined_transaction.rbs | 8 ++++++ sig/increase/models/pending_transaction.rbs | 8 ++++++ sig/increase/models/real_time_decision.rbs | 8 ++++++ 13 files changed, 142 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 5b1101662..56ae88a7d 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 201 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-26cf97b4b05afc71ff1d3546e3412c4e9d30c3ac2f05a3c76444a0c945c390ea.yml -openapi_spec_hash: 0a885f91c1947c633734f6702320f2e3 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-1808ec74d811de7f25be15e6bdedfa927081d8b9bc87545c7caee71c6770f434.yml +openapi_spec_hash: c0d89f59c9870f7f3c862c313c312015 config_hash: 97774f946585cecb19181a1817870d0b diff --git a/lib/increase/models/card_payment.rb b/lib/increase/models/card_payment.rb index 0c9fae349..ec85a972f 100644 --- a/lib/increase/models/card_payment.rb +++ b/lib/increase/models/card_payment.rb @@ -1207,6 +1207,12 @@ module ProcessingCategory # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder. REFUND = :refund + # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + CASH_DISBURSEMENT = :cash_disbursement + + # The processing category is unknown. + UNKNOWN = :unknown + # @!method self.values # @return [Array] end @@ -2081,6 +2087,12 @@ module ProcessingCategory # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder. REFUND = :refund + # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + CASH_DISBURSEMENT = :cash_disbursement + + # The processing category is unknown. + UNKNOWN = :unknown + # @!method self.values # @return [Array] end diff --git a/lib/increase/models/declined_transaction.rb b/lib/increase/models/declined_transaction.rb index 21e227496..a5f7419c8 100644 --- a/lib/increase/models/declined_transaction.rb +++ b/lib/increase/models/declined_transaction.rb @@ -999,6 +999,12 @@ module ProcessingCategory # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder. REFUND = :refund + # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + CASH_DISBURSEMENT = :cash_disbursement + + # The processing category is unknown. + UNKNOWN = :unknown + # @!method self.values # @return [Array] end diff --git a/lib/increase/models/pending_transaction.rb b/lib/increase/models/pending_transaction.rb index 1ff2256d7..992106ff3 100644 --- a/lib/increase/models/pending_transaction.rb +++ b/lib/increase/models/pending_transaction.rb @@ -1039,6 +1039,12 @@ module ProcessingCategory # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder. REFUND = :refund + # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + CASH_DISBURSEMENT = :cash_disbursement + + # The processing category is unknown. + UNKNOWN = :unknown + # @!method self.values # @return [Array] end diff --git a/lib/increase/models/real_time_decision.rb b/lib/increase/models/real_time_decision.rb index 515eaee4f..09450eefd 100644 --- a/lib/increase/models/real_time_decision.rb +++ b/lib/increase/models/real_time_decision.rb @@ -770,6 +770,12 @@ module ProcessingCategory # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder. REFUND = :refund + # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + CASH_DISBURSEMENT = :cash_disbursement + + # The processing category is unknown. + UNKNOWN = :unknown + # @!method self.values # @return [Array] end diff --git a/rbi/increase/models/card_payment.rbi b/rbi/increase/models/card_payment.rbi index 025a63107..c7067ff7e 100644 --- a/rbi/increase/models/card_payment.rbi +++ b/rbi/increase/models/card_payment.rbi @@ -2245,6 +2245,20 @@ module Increase Increase::CardPayment::Element::CardAuthorization::ProcessingCategory::TaggedSymbol ) + # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + CASH_DISBURSEMENT = + T.let( + :cash_disbursement, + Increase::CardPayment::Element::CardAuthorization::ProcessingCategory::TaggedSymbol + ) + + # The processing category is unknown. + UNKNOWN = + T.let( + :unknown, + Increase::CardPayment::Element::CardAuthorization::ProcessingCategory::TaggedSymbol + ) + sig do override.returns( T::Array[ @@ -3906,6 +3920,20 @@ module Increase Increase::CardPayment::Element::CardDecline::ProcessingCategory::TaggedSymbol ) + # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + CASH_DISBURSEMENT = + T.let( + :cash_disbursement, + Increase::CardPayment::Element::CardDecline::ProcessingCategory::TaggedSymbol + ) + + # The processing category is unknown. + UNKNOWN = + T.let( + :unknown, + Increase::CardPayment::Element::CardDecline::ProcessingCategory::TaggedSymbol + ) + sig do override.returns( T::Array[ diff --git a/rbi/increase/models/declined_transaction.rbi b/rbi/increase/models/declined_transaction.rbi index c6640d622..947107501 100644 --- a/rbi/increase/models/declined_transaction.rbi +++ b/rbi/increase/models/declined_transaction.rbi @@ -1835,6 +1835,20 @@ module Increase Increase::DeclinedTransaction::Source::CardDecline::ProcessingCategory::TaggedSymbol ) + # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + CASH_DISBURSEMENT = + T.let( + :cash_disbursement, + Increase::DeclinedTransaction::Source::CardDecline::ProcessingCategory::TaggedSymbol + ) + + # The processing category is unknown. + UNKNOWN = + T.let( + :unknown, + Increase::DeclinedTransaction::Source::CardDecline::ProcessingCategory::TaggedSymbol + ) + sig do override.returns( T::Array[ diff --git a/rbi/increase/models/pending_transaction.rbi b/rbi/increase/models/pending_transaction.rbi index 10e6a9614..8dd58a99a 100644 --- a/rbi/increase/models/pending_transaction.rbi +++ b/rbi/increase/models/pending_transaction.rbi @@ -1942,6 +1942,20 @@ module Increase Increase::PendingTransaction::Source::CardAuthorization::ProcessingCategory::TaggedSymbol ) + # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + CASH_DISBURSEMENT = + T.let( + :cash_disbursement, + Increase::PendingTransaction::Source::CardAuthorization::ProcessingCategory::TaggedSymbol + ) + + # The processing category is unknown. + UNKNOWN = + T.let( + :unknown, + Increase::PendingTransaction::Source::CardAuthorization::ProcessingCategory::TaggedSymbol + ) + sig do override.returns( T::Array[ diff --git a/rbi/increase/models/real_time_decision.rbi b/rbi/increase/models/real_time_decision.rbi index 9e63c5b78..060983a86 100644 --- a/rbi/increase/models/real_time_decision.rbi +++ b/rbi/increase/models/real_time_decision.rbi @@ -1413,6 +1413,20 @@ module Increase Increase::RealTimeDecision::CardAuthorization::ProcessingCategory::TaggedSymbol ) + # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + CASH_DISBURSEMENT = + T.let( + :cash_disbursement, + Increase::RealTimeDecision::CardAuthorization::ProcessingCategory::TaggedSymbol + ) + + # The processing category is unknown. + UNKNOWN = + T.let( + :unknown, + Increase::RealTimeDecision::CardAuthorization::ProcessingCategory::TaggedSymbol + ) + sig do override.returns( T::Array[ diff --git a/sig/increase/models/card_payment.rbs b/sig/increase/models/card_payment.rbs index e25a47831..c56b2781b 100644 --- a/sig/increase/models/card_payment.rbs +++ b/sig/increase/models/card_payment.rbs @@ -858,6 +858,8 @@ module Increase | :purchase | :quasi_cash | :refund + | :cash_disbursement + | :unknown module ProcessingCategory extend Increase::Internal::Type::Enum @@ -883,6 +885,12 @@ module Increase # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder. REFUND: :refund + # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + CASH_DISBURSEMENT: :cash_disbursement + + # The processing category is unknown. + UNKNOWN: :unknown + def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardAuthorization::processing_category] end @@ -1533,6 +1541,8 @@ module Increase | :purchase | :quasi_cash | :refund + | :cash_disbursement + | :unknown module ProcessingCategory extend Increase::Internal::Type::Enum @@ -1558,6 +1568,12 @@ module Increase # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder. REFUND: :refund + # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + CASH_DISBURSEMENT: :cash_disbursement + + # The processing category is unknown. + UNKNOWN: :unknown + def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardDecline::processing_category] end diff --git a/sig/increase/models/declined_transaction.rbs b/sig/increase/models/declined_transaction.rbs index 097a83019..f50b03f86 100644 --- a/sig/increase/models/declined_transaction.rbs +++ b/sig/increase/models/declined_transaction.rbs @@ -735,6 +735,8 @@ module Increase | :purchase | :quasi_cash | :refund + | :cash_disbursement + | :unknown module ProcessingCategory extend Increase::Internal::Type::Enum @@ -760,6 +762,12 @@ module Increase # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder. REFUND: :refund + # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + CASH_DISBURSEMENT: :cash_disbursement + + # The processing category is unknown. + UNKNOWN: :unknown + def self?.values: -> ::Array[Increase::Models::DeclinedTransaction::Source::CardDecline::processing_category] end diff --git a/sig/increase/models/pending_transaction.rbs b/sig/increase/models/pending_transaction.rbs index a66923f67..03ddf7bce 100644 --- a/sig/increase/models/pending_transaction.rbs +++ b/sig/increase/models/pending_transaction.rbs @@ -701,6 +701,8 @@ module Increase | :purchase | :quasi_cash | :refund + | :cash_disbursement + | :unknown module ProcessingCategory extend Increase::Internal::Type::Enum @@ -726,6 +728,12 @@ module Increase # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder. REFUND: :refund + # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + CASH_DISBURSEMENT: :cash_disbursement + + # The processing category is unknown. + UNKNOWN: :unknown + def self?.values: -> ::Array[Increase::Models::PendingTransaction::Source::CardAuthorization::processing_category] end diff --git a/sig/increase/models/real_time_decision.rbs b/sig/increase/models/real_time_decision.rbs index fee182bac..b4d34db4d 100644 --- a/sig/increase/models/real_time_decision.rbs +++ b/sig/increase/models/real_time_decision.rbs @@ -549,6 +549,8 @@ module Increase | :purchase | :quasi_cash | :refund + | :cash_disbursement + | :unknown module ProcessingCategory extend Increase::Internal::Type::Enum @@ -574,6 +576,12 @@ module Increase # A refund card authorization, sometimes referred to as a credit voucher authorization, where funds are credited to the cardholder. REFUND: :refund + # Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale. + CASH_DISBURSEMENT: :cash_disbursement + + # The processing category is unknown. + UNKNOWN: :unknown + def self?.values: -> ::Array[Increase::Models::RealTimeDecision::CardAuthorization::processing_category] end From 5e847601520f15c05af732d75fc3836a0db58e11 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 25 Jun 2025 21:41:02 +0000 Subject: [PATCH 2/3] feat(api): api update --- .stats.yml | 4 +- .../entity_create_beneficial_owner_params.rb | 11 +++- lib/increase/models/entity_create_params.rb | 55 ++++++++++++++----- .../entity_create_beneficial_owner_params.rbi | 10 ++-- rbi/increase/models/entity_create_params.rbi | 50 ++++++++++------- 5 files changed, 86 insertions(+), 44 deletions(-) diff --git a/.stats.yml b/.stats.yml index 56ae88a7d..1a71796b1 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 201 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-1808ec74d811de7f25be15e6bdedfa927081d8b9bc87545c7caee71c6770f434.yml -openapi_spec_hash: c0d89f59c9870f7f3c862c313c312015 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-96d05b8e37bf249bf8308adae52fd62efc5a37bf7dff2911bdfddb89c503bb30.yml +openapi_spec_hash: 35c0fded197228fc0680fe6ce04f6c82 config_hash: 97774f946585cecb19181a1817870d0b diff --git a/lib/increase/models/entity_create_beneficial_owner_params.rb b/lib/increase/models/entity_create_beneficial_owner_params.rb index c13cf6e5a..009216c57 100644 --- a/lib/increase/models/entity_create_beneficial_owner_params.rb +++ b/lib/increase/models/entity_create_beneficial_owner_params.rb @@ -312,7 +312,7 @@ class DriversLicense < Increase::Internal::Type::BaseModel class Other < Increase::Internal::Type::BaseModel # @!attribute country # The two-character ISO 3166-1 code representing the country that issued the - # document. + # document (e.g., `US`). # # @return [String] required :country, String @@ -364,7 +364,8 @@ class Other < Increase::Internal::Type::BaseModel # @see Increase::Models::EntityCreateBeneficialOwnerParams::BeneficialOwner::Individual::Identification#passport class Passport < Increase::Internal::Type::BaseModel # @!attribute country - # The country that issued the passport. + # The two-character ISO 3166-1 code representing the country that issued the + # document (e.g., `US`). # # @return [String] required :country, String @@ -382,10 +383,14 @@ class Passport < Increase::Internal::Type::BaseModel required :file_id, String # @!method initialize(country:, expiration_date:, file_id:) + # Some parameter documentations has been truncated, see + # {Increase::Models::EntityCreateBeneficialOwnerParams::BeneficialOwner::Individual::Identification::Passport} + # for more details. + # # Information about the passport used for identification. Required if `method` is # equal to `passport`. # - # @param country [String] The country that issued the passport. + # @param country [String] The two-character ISO 3166-1 code representing the country that issued the docum # # @param expiration_date [Date] The passport's expiration date in YYYY-MM-DD format. # diff --git a/lib/increase/models/entity_create_params.rb b/lib/increase/models/entity_create_params.rb index 36ab8a285..d155081bb 100644 --- a/lib/increase/models/entity_create_params.rb +++ b/lib/increase/models/entity_create_params.rb @@ -542,7 +542,7 @@ class DriversLicense < Increase::Internal::Type::BaseModel class Other < Increase::Internal::Type::BaseModel # @!attribute country # The two-character ISO 3166-1 code representing the country that issued the - # document. + # document (e.g., `US`). # # @return [String] required :country, String @@ -594,7 +594,8 @@ class Other < Increase::Internal::Type::BaseModel # @see Increase::Models::EntityCreateParams::Corporation::BeneficialOwner::Individual::Identification#passport class Passport < Increase::Internal::Type::BaseModel # @!attribute country - # The country that issued the passport. + # The two-character ISO 3166-1 code representing the country that issued the + # document (e.g., `US`). # # @return [String] required :country, String @@ -612,10 +613,14 @@ class Passport < Increase::Internal::Type::BaseModel required :file_id, String # @!method initialize(country:, expiration_date:, file_id:) + # Some parameter documentations has been truncated, see + # {Increase::Models::EntityCreateParams::Corporation::BeneficialOwner::Individual::Identification::Passport} + # for more details. + # # Information about the passport used for identification. Required if `method` is # equal to `passport`. # - # @param country [String] The country that issued the passport. + # @param country [String] The two-character ISO 3166-1 code representing the country that issued the docum # # @param expiration_date [Date] The passport's expiration date in YYYY-MM-DD format. # @@ -1047,7 +1052,7 @@ class DriversLicense < Increase::Internal::Type::BaseModel class Other < Increase::Internal::Type::BaseModel # @!attribute country # The two-character ISO 3166-1 code representing the country that issued the - # document. + # document (e.g., `US`). # # @return [String] required :country, String @@ -1099,7 +1104,8 @@ class Other < Increase::Internal::Type::BaseModel # @see Increase::Models::EntityCreateParams::Joint::Individual::Identification#passport class Passport < Increase::Internal::Type::BaseModel # @!attribute country - # The country that issued the passport. + # The two-character ISO 3166-1 code representing the country that issued the + # passport (e.g., `US`). # # @return [String] required :country, String @@ -1117,10 +1123,14 @@ class Passport < Increase::Internal::Type::BaseModel required :file_id, String # @!method initialize(country:, expiration_date:, file_id:) + # Some parameter documentations has been truncated, see + # {Increase::Models::EntityCreateParams::Joint::Individual::Identification::Passport} + # for more details. + # # Information about the passport used for identification. Required if `method` is # equal to `passport`. # - # @param country [String] The country that issued the passport. + # @param country [String] The two-character ISO 3166-1 code representing the country that issued the passp # # @param expiration_date [Date] The passport's expiration date in YYYY-MM-DD format. # @@ -1359,7 +1369,7 @@ class DriversLicense < Increase::Internal::Type::BaseModel class Other < Increase::Internal::Type::BaseModel # @!attribute country # The two-character ISO 3166-1 code representing the country that issued the - # document. + # document (e.g., `US`). # # @return [String] required :country, String @@ -1411,7 +1421,8 @@ class Other < Increase::Internal::Type::BaseModel # @see Increase::Models::EntityCreateParams::NaturalPerson::Identification#passport class Passport < Increase::Internal::Type::BaseModel # @!attribute country - # The country that issued the passport. + # The two-character ISO 3166-1 code representing the country that issued the + # passport (e.g., `US`). # # @return [String] required :country, String @@ -1429,10 +1440,14 @@ class Passport < Increase::Internal::Type::BaseModel required :file_id, String # @!method initialize(country:, expiration_date:, file_id:) + # Some parameter documentations has been truncated, see + # {Increase::Models::EntityCreateParams::NaturalPerson::Identification::Passport} + # for more details. + # # Information about the passport used for identification. Required if `method` is # equal to `passport`. # - # @param country [String] The country that issued the passport. + # @param country [String] The two-character ISO 3166-1 code representing the country that issued the passp # # @param expiration_date [Date] The passport's expiration date in YYYY-MM-DD format. # @@ -1920,7 +1935,7 @@ class DriversLicense < Increase::Internal::Type::BaseModel class Other < Increase::Internal::Type::BaseModel # @!attribute country # The two-character ISO 3166-1 code representing the country that issued the - # document. + # document (e.g., `US`). # # @return [String] required :country, String @@ -1972,7 +1987,8 @@ class Other < Increase::Internal::Type::BaseModel # @see Increase::Models::EntityCreateParams::Trust::Trustee::Individual::Identification#passport class Passport < Increase::Internal::Type::BaseModel # @!attribute country - # The country that issued the passport. + # The two-character ISO 3166-1 code representing the country that issued the + # passport (e.g., `US`). # # @return [String] required :country, String @@ -1990,10 +2006,14 @@ class Passport < Increase::Internal::Type::BaseModel required :file_id, String # @!method initialize(country:, expiration_date:, file_id:) + # Some parameter documentations has been truncated, see + # {Increase::Models::EntityCreateParams::Trust::Trustee::Individual::Identification::Passport} + # for more details. + # # Information about the passport used for identification. Required if `method` is # equal to `passport`. # - # @param country [String] The country that issued the passport. + # @param country [String] The two-character ISO 3166-1 code representing the country that issued the passp # # @param expiration_date [Date] The passport's expiration date in YYYY-MM-DD format. # @@ -2231,7 +2251,7 @@ class DriversLicense < Increase::Internal::Type::BaseModel class Other < Increase::Internal::Type::BaseModel # @!attribute country # The two-character ISO 3166-1 code representing the country that issued the - # document. + # document (e.g., `US`). # # @return [String] required :country, String @@ -2283,7 +2303,8 @@ class Other < Increase::Internal::Type::BaseModel # @see Increase::Models::EntityCreateParams::Trust::Grantor::Identification#passport class Passport < Increase::Internal::Type::BaseModel # @!attribute country - # The country that issued the passport. + # The two-character ISO 3166-1 code representing the country that issued the + # passport (e.g., `US`). # # @return [String] required :country, String @@ -2301,10 +2322,14 @@ class Passport < Increase::Internal::Type::BaseModel required :file_id, String # @!method initialize(country:, expiration_date:, file_id:) + # Some parameter documentations has been truncated, see + # {Increase::Models::EntityCreateParams::Trust::Grantor::Identification::Passport} + # for more details. + # # Information about the passport used for identification. Required if `method` is # equal to `passport`. # - # @param country [String] The country that issued the passport. + # @param country [String] The two-character ISO 3166-1 code representing the country that issued the passp # # @param expiration_date [Date] The passport's expiration date in YYYY-MM-DD format. # diff --git a/rbi/increase/models/entity_create_beneficial_owner_params.rbi b/rbi/increase/models/entity_create_beneficial_owner_params.rbi index aad1739d6..22f6b651d 100644 --- a/rbi/increase/models/entity_create_beneficial_owner_params.rbi +++ b/rbi/increase/models/entity_create_beneficial_owner_params.rbi @@ -602,7 +602,7 @@ module Increase end # The two-character ISO 3166-1 code representing the country that issued the - # document. + # document (e.g., `US`). sig { returns(String) } attr_accessor :country @@ -642,7 +642,7 @@ module Increase end def self.new( # The two-character ISO 3166-1 code representing the country that issued the - # document. + # document (e.g., `US`). country:, # A description of the document submitted. description:, @@ -680,7 +680,8 @@ module Increase ) end - # The country that issued the passport. + # The two-character ISO 3166-1 code representing the country that issued the + # document (e.g., `US`). sig { returns(String) } attr_accessor :country @@ -702,7 +703,8 @@ module Increase ).returns(T.attached_class) end def self.new( - # The country that issued the passport. + # The two-character ISO 3166-1 code representing the country that issued the + # document (e.g., `US`). country:, # The passport's expiration date in YYYY-MM-DD format. expiration_date:, diff --git a/rbi/increase/models/entity_create_params.rbi b/rbi/increase/models/entity_create_params.rbi index 89ba65757..d53e928b2 100644 --- a/rbi/increase/models/entity_create_params.rbi +++ b/rbi/increase/models/entity_create_params.rbi @@ -1002,7 +1002,7 @@ module Increase end # The two-character ISO 3166-1 code representing the country that issued the - # document. + # document (e.g., `US`). sig { returns(String) } attr_accessor :country @@ -1042,7 +1042,7 @@ module Increase end def self.new( # The two-character ISO 3166-1 code representing the country that issued the - # document. + # document (e.g., `US`). country:, # A description of the document submitted. description:, @@ -1080,7 +1080,8 @@ module Increase ) end - # The country that issued the passport. + # The two-character ISO 3166-1 code representing the country that issued the + # document (e.g., `US`). sig { returns(String) } attr_accessor :country @@ -1102,7 +1103,8 @@ module Increase ).returns(T.attached_class) end def self.new( - # The country that issued the passport. + # The two-character ISO 3166-1 code representing the country that issued the + # document (e.g., `US`). country:, # The passport's expiration date in YYYY-MM-DD format. expiration_date:, @@ -1940,7 +1942,7 @@ module Increase end # The two-character ISO 3166-1 code representing the country that issued the - # document. + # document (e.g., `US`). sig { returns(String) } attr_accessor :country @@ -1980,7 +1982,7 @@ module Increase end def self.new( # The two-character ISO 3166-1 code representing the country that issued the - # document. + # document (e.g., `US`). country:, # A description of the document submitted. description:, @@ -2018,7 +2020,8 @@ module Increase ) end - # The country that issued the passport. + # The two-character ISO 3166-1 code representing the country that issued the + # passport (e.g., `US`). sig { returns(String) } attr_accessor :country @@ -2040,7 +2043,8 @@ module Increase ).returns(T.attached_class) end def self.new( - # The country that issued the passport. + # The two-character ISO 3166-1 code representing the country that issued the + # passport (e.g., `US`). country:, # The passport's expiration date in YYYY-MM-DD format. expiration_date:, @@ -2499,7 +2503,7 @@ module Increase end # The two-character ISO 3166-1 code representing the country that issued the - # document. + # document (e.g., `US`). sig { returns(String) } attr_accessor :country @@ -2539,7 +2543,7 @@ module Increase end def self.new( # The two-character ISO 3166-1 code representing the country that issued the - # document. + # document (e.g., `US`). country:, # A description of the document submitted. description:, @@ -2577,7 +2581,8 @@ module Increase ) end - # The country that issued the passport. + # The two-character ISO 3166-1 code representing the country that issued the + # passport (e.g., `US`). sig { returns(String) } attr_accessor :country @@ -2599,7 +2604,8 @@ module Increase ).returns(T.attached_class) end def self.new( - # The country that issued the passport. + # The two-character ISO 3166-1 code representing the country that issued the + # passport (e.g., `US`). country:, # The passport's expiration date in YYYY-MM-DD format. expiration_date:, @@ -3517,7 +3523,7 @@ module Increase end # The two-character ISO 3166-1 code representing the country that issued the - # document. + # document (e.g., `US`). sig { returns(String) } attr_accessor :country @@ -3557,7 +3563,7 @@ module Increase end def self.new( # The two-character ISO 3166-1 code representing the country that issued the - # document. + # document (e.g., `US`). country:, # A description of the document submitted. description:, @@ -3595,7 +3601,8 @@ module Increase ) end - # The country that issued the passport. + # The two-character ISO 3166-1 code representing the country that issued the + # passport (e.g., `US`). sig { returns(String) } attr_accessor :country @@ -3617,7 +3624,8 @@ module Increase ).returns(T.attached_class) end def self.new( - # The country that issued the passport. + # The two-character ISO 3166-1 code representing the country that issued the + # passport (e.g., `US`). country:, # The passport's expiration date in YYYY-MM-DD format. expiration_date:, @@ -4075,7 +4083,7 @@ module Increase end # The two-character ISO 3166-1 code representing the country that issued the - # document. + # document (e.g., `US`). sig { returns(String) } attr_accessor :country @@ -4115,7 +4123,7 @@ module Increase end def self.new( # The two-character ISO 3166-1 code representing the country that issued the - # document. + # document (e.g., `US`). country:, # A description of the document submitted. description:, @@ -4153,7 +4161,8 @@ module Increase ) end - # The country that issued the passport. + # The two-character ISO 3166-1 code representing the country that issued the + # passport (e.g., `US`). sig { returns(String) } attr_accessor :country @@ -4175,7 +4184,8 @@ module Increase ).returns(T.attached_class) end def self.new( - # The country that issued the passport. + # The two-character ISO 3166-1 code representing the country that issued the + # passport (e.g., `US`). country:, # The passport's expiration date in YYYY-MM-DD format. expiration_date:, From cf96a7e8d46c6545866acc31f921af6a92953c89 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 25 Jun 2025 21:41:25 +0000 Subject: [PATCH 3/3] release: 1.4.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ Gemfile.lock | 2 +- README.md | 2 +- lib/increase/version.rb | 2 +- 5 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2a8f4ffdd..3e9af1b3a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.3.0" + ".": "1.4.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 01e2b4317..f1235cfeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 1.4.0 (2025-06-25) + +Full Changelog: [v1.3.0...v1.4.0](https://github.com/Increase/increase-ruby/compare/v1.3.0...v1.4.0) + +### Features + +* **api:** api update ([5e84760](https://github.com/Increase/increase-ruby/commit/5e847601520f15c05af732d75fc3836a0db58e11)) +* **api:** api update ([05ab542](https://github.com/Increase/increase-ruby/commit/05ab5422b9a7ca0fef94405a930ca991ae2b7b34)) + ## 1.3.0 (2025-06-24) Full Changelog: [v1.2.0...v1.3.0](https://github.com/Increase/increase-ruby/compare/v1.2.0...v1.3.0) diff --git a/Gemfile.lock b/Gemfile.lock index b4931d351..b79b26ab7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - increase (1.3.0) + increase (1.4.0) connection_pool GEM diff --git a/README.md b/README.md index 9454d58d6..590e8a6a5 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application ```ruby -gem "increase", "~> 1.3.0" +gem "increase", "~> 1.4.0" ``` diff --git a/lib/increase/version.rb b/lib/increase/version.rb index d76c2a56e..c5b8d060b 100644 --- a/lib/increase/version.rb +++ b/lib/increase/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Increase - VERSION = "1.3.0" + VERSION = "1.4.0" end