From bc07ab335a56f490734f2d01740b5df5d2da4ccf Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 5 Nov 2025 21:28:15 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 +- lib/increase/models/lockbox.rb | 32 ++++----- lib/increase/models/lockbox_update_params.rb | 28 ++++---- lib/increase/resources/lockboxes.rb | 6 +- rbi/increase/models/lockbox.rbi | 44 +++++++----- rbi/increase/models/lockbox_update_params.rbi | 69 ++++++++++++------- rbi/increase/resources/lockboxes.rbi | 7 +- sig/increase/models/lockbox.rbs | 24 +++---- sig/increase/models/lockbox_update_params.rbs | 34 ++++----- sig/increase/resources/lockboxes.rbs | 2 +- test/increase/resources/lockboxes_test.rb | 8 +-- 11 files changed, 145 insertions(+), 113 deletions(-) diff --git a/.stats.yml b/.stats.yml index d73422845..6ba32829f 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 228 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-776b1bee3036836b954fa0db1e6d0349a04f76799402089994a9147a05967c0e.yml -openapi_spec_hash: 185a637305e75b302860dce8d352f54f +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-04156469b84df056ff40f1cd402b851af019c7433591a072e02f90f3bd5e5d62.yml +openapi_spec_hash: c3ff2c35ac0bdadd4290ad7f063deb5e config_hash: eb2035151c7b49c2f12caf55469b8f9a diff --git a/lib/increase/models/lockbox.rb b/lib/increase/models/lockbox.rb index b24acb8e4..017720ed3 100644 --- a/lib/increase/models/lockbox.rb +++ b/lib/increase/models/lockbox.rb @@ -23,6 +23,12 @@ class Lockbox < Increase::Internal::Type::BaseModel # @return [Increase::Models::Lockbox::Address] required :address, -> { Increase::Lockbox::Address } + # @!attribute check_deposit_behavior + # Indicates if checks mailed to this lockbox will be deposited. + # + # @return [Symbol, Increase::Models::Lockbox::CheckDepositBehavior] + required :check_deposit_behavior, enum: -> { Increase::Lockbox::CheckDepositBehavior } + # @!attribute created_at # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Lockbox # was created. @@ -50,12 +56,6 @@ class Lockbox < Increase::Internal::Type::BaseModel # @return [String, nil] required :recipient_name, String, nil?: true - # @!attribute status - # This indicates if mail can be sent to this address. - # - # @return [Symbol, Increase::Models::Lockbox::Status] - required :status, enum: -> { Increase::Lockbox::Status } - # @!attribute type # A constant representing the object's type. For this resource it will always be # `lockbox`. @@ -63,7 +63,7 @@ class Lockbox < Increase::Internal::Type::BaseModel # @return [Symbol, Increase::Models::Lockbox::Type] required :type, enum: -> { Increase::Lockbox::Type } - # @!method initialize(id:, account_id:, address:, created_at:, description:, idempotency_key:, recipient_name:, status:, type:) + # @!method initialize(id:, account_id:, address:, check_deposit_behavior:, created_at:, description:, idempotency_key:, recipient_name:, type:) # Some parameter documentations has been truncated, see # {Increase::Models::Lockbox} for more details. # @@ -76,6 +76,8 @@ class Lockbox < Increase::Internal::Type::BaseModel # # @param address [Increase::Models::Lockbox::Address] The mailing address for the Lockbox. # + # @param check_deposit_behavior [Symbol, Increase::Models::Lockbox::CheckDepositBehavior] Indicates if checks mailed to this lockbox will be deposited. + # # @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Lockbox # # @param description [String, nil] The description you choose for the Lockbox. @@ -84,8 +86,6 @@ class Lockbox < Increase::Internal::Type::BaseModel # # @param recipient_name [String, nil] The recipient name you choose for the Lockbox. # - # @param status [Symbol, Increase::Models::Lockbox::Status] This indicates if mail can be sent to this address. - # # @param type [Symbol, Increase::Models::Lockbox::Type] A constant representing the object's type. For this resource it will always be ` # @see Increase::Models::Lockbox#address @@ -149,17 +149,17 @@ class Address < Increase::Internal::Type::BaseModel # @param state [String] The two-letter United States Postal Service (USPS) abbreviation for the state of end - # This indicates if mail can be sent to this address. + # Indicates if checks mailed to this lockbox will be deposited. # - # @see Increase::Models::Lockbox#status - module Status + # @see Increase::Models::Lockbox#check_deposit_behavior + module CheckDepositBehavior extend Increase::Internal::Type::Enum - # This Lockbox is active. Checks mailed to it will be deposited automatically. - ACTIVE = :active + # Checks mailed to this Lockbox will be deposited. + ENABLED = :enabled - # This Lockbox is inactive. Checks mailed to it will not be deposited. - INACTIVE = :inactive + # Checks mailed to this Lockbox will not be deposited. + DISABLED = :disabled # @!method self.values # @return [Array] diff --git a/lib/increase/models/lockbox_update_params.rb b/lib/increase/models/lockbox_update_params.rb index c0aa52a95..526f23f21 100644 --- a/lib/increase/models/lockbox_update_params.rb +++ b/lib/increase/models/lockbox_update_params.rb @@ -7,6 +7,12 @@ class LockboxUpdateParams < Increase::Internal::Type::BaseModel extend Increase::Internal::Type::RequestParameters::Converter include Increase::Internal::Type::RequestParameters + # @!attribute check_deposit_behavior + # This indicates if checks mailed to this lockbox will be deposited. + # + # @return [Symbol, Increase::Models::LockboxUpdateParams::CheckDepositBehavior, nil] + optional :check_deposit_behavior, enum: -> { Increase::LockboxUpdateParams::CheckDepositBehavior } + # @!attribute description # The description you choose for the Lockbox. # @@ -19,30 +25,24 @@ class LockboxUpdateParams < Increase::Internal::Type::BaseModel # @return [String, nil] optional :recipient_name, String - # @!attribute status - # This indicates if checks can be sent to the Lockbox. + # @!method initialize(check_deposit_behavior: nil, description: nil, recipient_name: nil, request_options: {}) + # @param check_deposit_behavior [Symbol, Increase::Models::LockboxUpdateParams::CheckDepositBehavior] This indicates if checks mailed to this lockbox will be deposited. # - # @return [Symbol, Increase::Models::LockboxUpdateParams::Status, nil] - optional :status, enum: -> { Increase::LockboxUpdateParams::Status } - - # @!method initialize(description: nil, recipient_name: nil, status: nil, request_options: {}) # @param description [String] The description you choose for the Lockbox. # # @param recipient_name [String] The recipient name you choose for the Lockbox. # - # @param status [Symbol, Increase::Models::LockboxUpdateParams::Status] This indicates if checks can be sent to the Lockbox. - # # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}] - # This indicates if checks can be sent to the Lockbox. - module Status + # This indicates if checks mailed to this lockbox will be deposited. + module CheckDepositBehavior extend Increase::Internal::Type::Enum - # This Lockbox is active. Checks mailed to it will be deposited automatically. - ACTIVE = :active + # Checks mailed to this Lockbox will be deposited. + ENABLED = :enabled - # This Lockbox is inactive. Checks mailed to it will not be deposited. - INACTIVE = :inactive + # Checks mailed to this Lockbox will not be deposited. + DISABLED = :disabled # @!method self.values # @return [Array] diff --git a/lib/increase/resources/lockboxes.rb b/lib/increase/resources/lockboxes.rb index c0e3123e9..070ea219a 100644 --- a/lib/increase/resources/lockboxes.rb +++ b/lib/increase/resources/lockboxes.rb @@ -51,16 +51,16 @@ def retrieve(lockbox_id, params = {}) # Update a Lockbox # - # @overload update(lockbox_id, description: nil, recipient_name: nil, status: nil, request_options: {}) + # @overload update(lockbox_id, check_deposit_behavior: nil, description: nil, recipient_name: nil, request_options: {}) # # @param lockbox_id [String] The identifier of the Lockbox. # + # @param check_deposit_behavior [Symbol, Increase::Models::LockboxUpdateParams::CheckDepositBehavior] This indicates if checks mailed to this lockbox will be deposited. + # # @param description [String] The description you choose for the Lockbox. # # @param recipient_name [String] The recipient name you choose for the Lockbox. # - # @param status [Symbol, Increase::Models::LockboxUpdateParams::Status] This indicates if checks can be sent to the Lockbox. - # # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil] # # @return [Increase::Models::Lockbox] diff --git a/rbi/increase/models/lockbox.rbi b/rbi/increase/models/lockbox.rbi index b4863bd0a..3455169cb 100644 --- a/rbi/increase/models/lockbox.rbi +++ b/rbi/increase/models/lockbox.rbi @@ -22,6 +22,10 @@ module Increase sig { params(address: Increase::Lockbox::Address::OrHash).void } attr_writer :address + # Indicates if checks mailed to this lockbox will be deposited. + sig { returns(Increase::Lockbox::CheckDepositBehavior::TaggedSymbol) } + attr_accessor :check_deposit_behavior + # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Lockbox # was created. sig { returns(Time) } @@ -41,10 +45,6 @@ module Increase sig { returns(T.nilable(String)) } attr_accessor :recipient_name - # This indicates if mail can be sent to this address. - sig { returns(Increase::Lockbox::Status::TaggedSymbol) } - attr_accessor :status - # A constant representing the object's type. For this resource it will always be # `lockbox`. sig { returns(Increase::Lockbox::Type::TaggedSymbol) } @@ -57,11 +57,12 @@ module Increase id: String, account_id: String, address: Increase::Lockbox::Address::OrHash, + check_deposit_behavior: + Increase::Lockbox::CheckDepositBehavior::OrSymbol, created_at: Time, description: T.nilable(String), idempotency_key: T.nilable(String), recipient_name: T.nilable(String), - status: Increase::Lockbox::Status::OrSymbol, type: Increase::Lockbox::Type::OrSymbol ).returns(T.attached_class) end @@ -73,6 +74,8 @@ module Increase account_id:, # The mailing address for the Lockbox. address:, + # Indicates if checks mailed to this lockbox will be deposited. + check_deposit_behavior:, # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Lockbox # was created. created_at:, @@ -84,8 +87,6 @@ module Increase idempotency_key:, # The recipient name you choose for the Lockbox. recipient_name:, - # This indicates if mail can be sent to this address. - status:, # A constant representing the object's type. For this resource it will always be # `lockbox`. type: @@ -98,11 +99,12 @@ module Increase id: String, account_id: String, address: Increase::Lockbox::Address, + check_deposit_behavior: + Increase::Lockbox::CheckDepositBehavior::TaggedSymbol, created_at: Time, description: T.nilable(String), idempotency_key: T.nilable(String), recipient_name: T.nilable(String), - status: Increase::Lockbox::Status::TaggedSymbol, type: Increase::Lockbox::Type::TaggedSymbol } ) @@ -191,21 +193,31 @@ module Increase end end - # This indicates if mail can be sent to this address. - module Status + # Indicates if checks mailed to this lockbox will be deposited. + module CheckDepositBehavior extend Increase::Internal::Type::Enum - TaggedSymbol = T.type_alias { T.all(Symbol, Increase::Lockbox::Status) } + TaggedSymbol = + T.type_alias do + T.all(Symbol, Increase::Lockbox::CheckDepositBehavior) + end OrSymbol = T.type_alias { T.any(Symbol, String) } - # This Lockbox is active. Checks mailed to it will be deposited automatically. - ACTIVE = T.let(:active, Increase::Lockbox::Status::TaggedSymbol) + # Checks mailed to this Lockbox will be deposited. + ENABLED = + T.let(:enabled, Increase::Lockbox::CheckDepositBehavior::TaggedSymbol) - # This Lockbox is inactive. Checks mailed to it will not be deposited. - INACTIVE = T.let(:inactive, Increase::Lockbox::Status::TaggedSymbol) + # Checks mailed to this Lockbox will not be deposited. + DISABLED = + T.let( + :disabled, + Increase::Lockbox::CheckDepositBehavior::TaggedSymbol + ) sig do - override.returns(T::Array[Increase::Lockbox::Status::TaggedSymbol]) + override.returns( + T::Array[Increase::Lockbox::CheckDepositBehavior::TaggedSymbol] + ) end def self.values end diff --git a/rbi/increase/models/lockbox_update_params.rbi b/rbi/increase/models/lockbox_update_params.rbi index 4bc569f28..e7cc76cf3 100644 --- a/rbi/increase/models/lockbox_update_params.rbi +++ b/rbi/increase/models/lockbox_update_params.rbi @@ -11,6 +11,24 @@ module Increase T.any(Increase::LockboxUpdateParams, Increase::Internal::AnyHash) end + # This indicates if checks mailed to this lockbox will be deposited. + sig do + returns( + T.nilable( + Increase::LockboxUpdateParams::CheckDepositBehavior::OrSymbol + ) + ) + end + attr_reader :check_deposit_behavior + + sig do + params( + check_deposit_behavior: + Increase::LockboxUpdateParams::CheckDepositBehavior::OrSymbol + ).void + end + attr_writer :check_deposit_behavior + # The description you choose for the Lockbox. sig { returns(T.nilable(String)) } attr_reader :description @@ -25,32 +43,22 @@ module Increase sig { params(recipient_name: String).void } attr_writer :recipient_name - # This indicates if checks can be sent to the Lockbox. - sig do - returns(T.nilable(Increase::LockboxUpdateParams::Status::OrSymbol)) - end - attr_reader :status - - sig do - params(status: Increase::LockboxUpdateParams::Status::OrSymbol).void - end - attr_writer :status - sig do params( + check_deposit_behavior: + Increase::LockboxUpdateParams::CheckDepositBehavior::OrSymbol, description: String, recipient_name: String, - status: Increase::LockboxUpdateParams::Status::OrSymbol, request_options: Increase::RequestOptions::OrHash ).returns(T.attached_class) end def self.new( + # This indicates if checks mailed to this lockbox will be deposited. + check_deposit_behavior: nil, # The description you choose for the Lockbox. description: nil, # The recipient name you choose for the Lockbox. recipient_name: nil, - # This indicates if checks can be sent to the Lockbox. - status: nil, request_options: {} ) end @@ -58,9 +66,10 @@ module Increase sig do override.returns( { + check_deposit_behavior: + Increase::LockboxUpdateParams::CheckDepositBehavior::OrSymbol, description: String, recipient_name: String, - status: Increase::LockboxUpdateParams::Status::OrSymbol, request_options: Increase::RequestOptions } ) @@ -68,25 +77,35 @@ module Increase def to_hash end - # This indicates if checks can be sent to the Lockbox. - module Status + # This indicates if checks mailed to this lockbox will be deposited. + module CheckDepositBehavior extend Increase::Internal::Type::Enum TaggedSymbol = - T.type_alias { T.all(Symbol, Increase::LockboxUpdateParams::Status) } + T.type_alias do + T.all(Symbol, Increase::LockboxUpdateParams::CheckDepositBehavior) + end OrSymbol = T.type_alias { T.any(Symbol, String) } - # This Lockbox is active. Checks mailed to it will be deposited automatically. - ACTIVE = - T.let(:active, Increase::LockboxUpdateParams::Status::TaggedSymbol) + # Checks mailed to this Lockbox will be deposited. + ENABLED = + T.let( + :enabled, + Increase::LockboxUpdateParams::CheckDepositBehavior::TaggedSymbol + ) - # This Lockbox is inactive. Checks mailed to it will not be deposited. - INACTIVE = - T.let(:inactive, Increase::LockboxUpdateParams::Status::TaggedSymbol) + # Checks mailed to this Lockbox will not be deposited. + DISABLED = + T.let( + :disabled, + Increase::LockboxUpdateParams::CheckDepositBehavior::TaggedSymbol + ) sig do override.returns( - T::Array[Increase::LockboxUpdateParams::Status::TaggedSymbol] + T::Array[ + Increase::LockboxUpdateParams::CheckDepositBehavior::TaggedSymbol + ] ) end def self.values diff --git a/rbi/increase/resources/lockboxes.rbi b/rbi/increase/resources/lockboxes.rbi index 659b82be8..276b99137 100644 --- a/rbi/increase/resources/lockboxes.rbi +++ b/rbi/increase/resources/lockboxes.rbi @@ -41,21 +41,22 @@ module Increase sig do params( lockbox_id: String, + check_deposit_behavior: + Increase::LockboxUpdateParams::CheckDepositBehavior::OrSymbol, description: String, recipient_name: String, - status: Increase::LockboxUpdateParams::Status::OrSymbol, request_options: Increase::RequestOptions::OrHash ).returns(Increase::Lockbox) end def update( # The identifier of the Lockbox. lockbox_id, + # This indicates if checks mailed to this lockbox will be deposited. + check_deposit_behavior: nil, # The description you choose for the Lockbox. description: nil, # The recipient name you choose for the Lockbox. recipient_name: nil, - # This indicates if checks can be sent to the Lockbox. - status: nil, request_options: {} ) end diff --git a/sig/increase/models/lockbox.rbs b/sig/increase/models/lockbox.rbs index c84a7af02..99638a559 100644 --- a/sig/increase/models/lockbox.rbs +++ b/sig/increase/models/lockbox.rbs @@ -5,11 +5,11 @@ module Increase id: String, account_id: String, address: Increase::Lockbox::Address, + check_deposit_behavior: Increase::Models::Lockbox::check_deposit_behavior, created_at: Time, description: String?, idempotency_key: String?, recipient_name: String?, - status: Increase::Models::Lockbox::status, type: Increase::Models::Lockbox::type_ } @@ -20,6 +20,8 @@ module Increase attr_accessor address: Increase::Lockbox::Address + attr_accessor check_deposit_behavior: Increase::Models::Lockbox::check_deposit_behavior + attr_accessor created_at: Time attr_accessor description: String? @@ -28,19 +30,17 @@ module Increase attr_accessor recipient_name: String? - attr_accessor status: Increase::Models::Lockbox::status - attr_accessor type: Increase::Models::Lockbox::type_ def initialize: ( id: String, account_id: String, address: Increase::Lockbox::Address, + check_deposit_behavior: Increase::Models::Lockbox::check_deposit_behavior, created_at: Time, description: String?, idempotency_key: String?, recipient_name: String?, - status: Increase::Models::Lockbox::status, type: Increase::Models::Lockbox::type_ ) -> void @@ -48,11 +48,11 @@ module Increase id: String, account_id: String, address: Increase::Lockbox::Address, + check_deposit_behavior: Increase::Models::Lockbox::check_deposit_behavior, created_at: Time, description: String?, idempotency_key: String?, recipient_name: String?, - status: Increase::Models::Lockbox::status, type: Increase::Models::Lockbox::type_ } @@ -98,18 +98,18 @@ module Increase } end - type status = :active | :inactive + type check_deposit_behavior = :enabled | :disabled - module Status + module CheckDepositBehavior extend Increase::Internal::Type::Enum - # This Lockbox is active. Checks mailed to it will be deposited automatically. - ACTIVE: :active + # Checks mailed to this Lockbox will be deposited. + ENABLED: :enabled - # This Lockbox is inactive. Checks mailed to it will not be deposited. - INACTIVE: :inactive + # Checks mailed to this Lockbox will not be deposited. + DISABLED: :disabled - def self?.values: -> ::Array[Increase::Models::Lockbox::status] + def self?.values: -> ::Array[Increase::Models::Lockbox::check_deposit_behavior] end type type_ = :lockbox diff --git a/sig/increase/models/lockbox_update_params.rbs b/sig/increase/models/lockbox_update_params.rbs index ac720b3bf..d52ebcb0d 100644 --- a/sig/increase/models/lockbox_update_params.rbs +++ b/sig/increase/models/lockbox_update_params.rbs @@ -2,9 +2,9 @@ module Increase module Models type lockbox_update_params = { + check_deposit_behavior: Increase::Models::LockboxUpdateParams::check_deposit_behavior, description: String, - recipient_name: String, - status: Increase::Models::LockboxUpdateParams::status + recipient_name: String } & Increase::Internal::Type::request_parameters @@ -12,6 +12,12 @@ module Increase extend Increase::Internal::Type::RequestParameters::Converter include Increase::Internal::Type::RequestParameters + attr_reader check_deposit_behavior: Increase::Models::LockboxUpdateParams::check_deposit_behavior? + + def check_deposit_behavior=: ( + Increase::Models::LockboxUpdateParams::check_deposit_behavior + ) -> Increase::Models::LockboxUpdateParams::check_deposit_behavior + attr_reader description: String? def description=: (String) -> String @@ -20,38 +26,32 @@ module Increase def recipient_name=: (String) -> String - attr_reader status: Increase::Models::LockboxUpdateParams::status? - - def status=: ( - Increase::Models::LockboxUpdateParams::status - ) -> Increase::Models::LockboxUpdateParams::status - def initialize: ( + ?check_deposit_behavior: Increase::Models::LockboxUpdateParams::check_deposit_behavior, ?description: String, ?recipient_name: String, - ?status: Increase::Models::LockboxUpdateParams::status, ?request_options: Increase::request_opts ) -> void def to_hash: -> { + check_deposit_behavior: Increase::Models::LockboxUpdateParams::check_deposit_behavior, description: String, recipient_name: String, - status: Increase::Models::LockboxUpdateParams::status, request_options: Increase::RequestOptions } - type status = :active | :inactive + type check_deposit_behavior = :enabled | :disabled - module Status + module CheckDepositBehavior extend Increase::Internal::Type::Enum - # This Lockbox is active. Checks mailed to it will be deposited automatically. - ACTIVE: :active + # Checks mailed to this Lockbox will be deposited. + ENABLED: :enabled - # This Lockbox is inactive. Checks mailed to it will not be deposited. - INACTIVE: :inactive + # Checks mailed to this Lockbox will not be deposited. + DISABLED: :disabled - def self?.values: -> ::Array[Increase::Models::LockboxUpdateParams::status] + def self?.values: -> ::Array[Increase::Models::LockboxUpdateParams::check_deposit_behavior] end end end diff --git a/sig/increase/resources/lockboxes.rbs b/sig/increase/resources/lockboxes.rbs index 20ce2039b..549e7a229 100644 --- a/sig/increase/resources/lockboxes.rbs +++ b/sig/increase/resources/lockboxes.rbs @@ -15,9 +15,9 @@ module Increase def update: ( String lockbox_id, + ?check_deposit_behavior: Increase::Models::LockboxUpdateParams::check_deposit_behavior, ?description: String, ?recipient_name: String, - ?status: Increase::Models::LockboxUpdateParams::status, ?request_options: Increase::request_opts ) -> Increase::Lockbox diff --git a/test/increase/resources/lockboxes_test.rb b/test/increase/resources/lockboxes_test.rb index c25af9863..803e12502 100644 --- a/test/increase/resources/lockboxes_test.rb +++ b/test/increase/resources/lockboxes_test.rb @@ -15,11 +15,11 @@ def test_create_required_params id: String, account_id: String, address: Increase::Lockbox::Address, + check_deposit_behavior: Increase::Lockbox::CheckDepositBehavior, created_at: Time, description: String | nil, idempotency_key: String | nil, recipient_name: String | nil, - status: Increase::Lockbox::Status, type: Increase::Lockbox::Type } end @@ -37,11 +37,11 @@ def test_retrieve id: String, account_id: String, address: Increase::Lockbox::Address, + check_deposit_behavior: Increase::Lockbox::CheckDepositBehavior, created_at: Time, description: String | nil, idempotency_key: String | nil, recipient_name: String | nil, - status: Increase::Lockbox::Status, type: Increase::Lockbox::Type } end @@ -59,11 +59,11 @@ def test_update id: String, account_id: String, address: Increase::Lockbox::Address, + check_deposit_behavior: Increase::Lockbox::CheckDepositBehavior, created_at: Time, description: String | nil, idempotency_key: String | nil, recipient_name: String | nil, - status: Increase::Lockbox::Status, type: Increase::Lockbox::Type } end @@ -88,11 +88,11 @@ def test_list id: String, account_id: String, address: Increase::Lockbox::Address, + check_deposit_behavior: Increase::Lockbox::CheckDepositBehavior, created_at: Time, description: String | nil, idempotency_key: String | nil, recipient_name: String | nil, - status: Increase::Lockbox::Status, type: Increase::Lockbox::Type } end From e63e2f5767145d64f2de2910d86b538cafa11536 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 5 Nov 2025 21:28:40 +0000 Subject: [PATCH 2/2] release: 1.130.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ Gemfile.lock | 2 +- README.md | 2 +- lib/increase/version.rb | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f31811fe2..1c301da43 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.129.1" + ".": "1.130.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 96f9ad38c..2e0c3de23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.130.0 (2025-11-05) + +Full Changelog: [v1.129.1...v1.130.0](https://github.com/Increase/increase-ruby/compare/v1.129.1...v1.130.0) + +### Features + +* **api:** api update ([bc07ab3](https://github.com/Increase/increase-ruby/commit/bc07ab335a56f490734f2d01740b5df5d2da4ccf)) + ## 1.129.1 (2025-11-04) Full Changelog: [v1.129.0...v1.129.1](https://github.com/Increase/increase-ruby/compare/v1.129.0...v1.129.1) diff --git a/Gemfile.lock b/Gemfile.lock index 5c236e5fa..84c61740b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - increase (1.129.1) + increase (1.130.0) connection_pool GEM diff --git a/README.md b/README.md index ce7fff755..fac8786a9 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.129.1" +gem "increase", "~> 1.130.0" ``` diff --git a/lib/increase/version.rb b/lib/increase/version.rb index 0b80ccecf..d59a471f7 100644 --- a/lib/increase/version.rb +++ b/lib/increase/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Increase - VERSION = "1.129.1" + VERSION = "1.130.0" end