diff --git a/.release-please-manifest.json b/.release-please-manifest.json index cba3e4b1..b2091d64 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.151.0" + ".": "1.152.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index b52e8c7d..fe442fee 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 229 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-bd464d151612058d8029150b376949b22d5515af23621465c0ce1c1069b91644.yml -openapi_spec_hash: e60e1548c523a0ee7c9daa1bd988cbc5 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-f24e91d60005894c135a6ccad84e179e0a2cb64def7e1101904c430a8e5e5dd9.yml +openapi_spec_hash: a63e06588ae354c03b68d6cb9d965e11 config_hash: ca1425272e17fa23d4466d33492334fa diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f007c29..50e23a7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.152.0 (2025-12-01) + +Full Changelog: [v1.151.0...v1.152.0](https://github.com/Increase/increase-ruby/compare/v1.151.0...v1.152.0) + +### Features + +* **api:** api update ([1649f50](https://github.com/Increase/increase-ruby/commit/1649f50e5899a93e8a7cf2f262c15e6faae3cd13)) + ## 1.151.0 (2025-11-26) Full Changelog: [v1.150.0...v1.151.0](https://github.com/Increase/increase-ruby/compare/v1.150.0...v1.151.0) diff --git a/Gemfile.lock b/Gemfile.lock index 23832316..b73dbef1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - increase (1.151.0) + increase (1.152.0) connection_pool GEM diff --git a/README.md b/README.md index 747061c1..2690bd95 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.151.0" +gem "increase", "~> 1.152.0" ``` diff --git a/lib/increase/models/check_transfer_create_params.rb b/lib/increase/models/check_transfer_create_params.rb index a67a28a6..e6c8a858 100644 --- a/lib/increase/models/check_transfer_create_params.rb +++ b/lib/increase/models/check_transfer_create_params.rb @@ -273,9 +273,9 @@ class MailingAddress < Increase::Internal::Type::BaseModel optional :name, String # @!attribute phone - # The phone number to associate with the check's destination address. Only used if - # shipping method is `fedex_overnight`. Will be supplied to FedEx as the contact - # phone number for the recipient to be used in case of delivery issues. + # The phone number to associate with the check's destination address. The number + # is only used when `shipping_method` is `fedex_overnight` and will be supplied to + # FedEx to be used in case of delivery issues. # # @return [String, nil] optional :phone, String @@ -299,7 +299,7 @@ class MailingAddress < Increase::Internal::Type::BaseModel # # @param name [String] The name component of the check's destination address. Defaults to the provided # - # @param phone [String] The phone number to associate with the check's destination address. Only used if + # @param phone [String] The phone number to associate with the check's destination address. The number i end class Payer < Increase::Internal::Type::BaseModel diff --git a/lib/increase/version.rb b/lib/increase/version.rb index 07bee5c4..276835c3 100644 --- a/lib/increase/version.rb +++ b/lib/increase/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Increase - VERSION = "1.151.0" + VERSION = "1.152.0" end diff --git a/rbi/increase/models/check_transfer_create_params.rbi b/rbi/increase/models/check_transfer_create_params.rbi index d4e4d126..ebe967c6 100644 --- a/rbi/increase/models/check_transfer_create_params.rbi +++ b/rbi/increase/models/check_transfer_create_params.rbi @@ -510,9 +510,9 @@ module Increase sig { params(name: String).void } attr_writer :name - # The phone number to associate with the check's destination address. Only used if - # shipping method is `fedex_overnight`. Will be supplied to FedEx as the contact - # phone number for the recipient to be used in case of delivery issues. + # The phone number to associate with the check's destination address. The number + # is only used when `shipping_method` is `fedex_overnight` and will be supplied to + # FedEx to be used in case of delivery issues. sig { returns(T.nilable(String)) } attr_reader :phone @@ -545,9 +545,9 @@ module Increase # The name component of the check's destination address. Defaults to the provided # `recipient_name` parameter if `name` is not provided. name: nil, - # The phone number to associate with the check's destination address. Only used if - # shipping method is `fedex_overnight`. Will be supplied to FedEx as the contact - # phone number for the recipient to be used in case of delivery issues. + # The phone number to associate with the check's destination address. The number + # is only used when `shipping_method` is `fedex_overnight` and will be supplied to + # FedEx to be used in case of delivery issues. phone: nil ) end