Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.151.0"
".": "1.152.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GIT
PATH
remote: .
specs:
increase (1.151.0)
increase (1.152.0)
connection_pool

GEM
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
<!-- x-release-please-start-version -->

```ruby
gem "increase", "~> 1.151.0"
gem "increase", "~> 1.152.0"
```

<!-- x-release-please-end -->
Expand Down
8 changes: 4 additions & 4 deletions lib/increase/models/check_transfer_create_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/increase/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Increase
VERSION = "1.151.0"
VERSION = "1.152.0"
end
12 changes: 6 additions & 6 deletions rbi/increase/models/check_transfer_create_params.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down