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.203.0"
".": "1.204.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: 232
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-cff24fe63c8cb06a46048b355f873c22def0798a38de892671d379e58d98bc03.yml
openapi_spec_hash: 4f7ae65440fefa73441023480d6ac9a4
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-845aba046473ba39ae898570153537fb31dd6f8cb260dd8478a14fd4275ca97f.yml
openapi_spec_hash: 8afbe65f9d6614f0960f141ae0de0c39
config_hash: 27e44ed36b9c5617b580ead7231a594a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.204.0 (2026-02-07)

Full Changelog: [v1.203.0...v1.204.0](https://github.com/Increase/increase-ruby/compare/v1.203.0...v1.204.0)

### Features

* **api:** api update ([eb834f0](https://github.com/Increase/increase-ruby/commit/eb834f0ed9bfdec907c8c6e78fb5d102c9e24694))

## 1.203.0 (2026-02-06)

Full Changelog: [v1.202.1...v1.203.0](https://github.com/Increase/increase-ruby/compare/v1.202.1...v1.203.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.203.0)
increase (1.204.0)
cgi
connection_pool

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.203.0"
gem "increase", "~> 1.204.0"
```

<!-- x-release-please-end -->
Expand Down
50 changes: 25 additions & 25 deletions lib/increase/models/account_transfer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -215,55 +215,41 @@ class Cancellation < Increase::Internal::Type::BaseModel

# @see Increase::Models::AccountTransfer#created_by
class CreatedBy < Increase::Internal::Type::BaseModel
# @!attribute api_key
# If present, details about the API key that created the transfer.
#
# @return [Increase::Models::AccountTransfer::CreatedBy::APIKey, nil]
required :api_key, -> { Increase::AccountTransfer::CreatedBy::APIKey }, nil?: true

# @!attribute category
# The type of object that created this transfer.
#
# @return [Symbol, Increase::Models::AccountTransfer::CreatedBy::Category]
required :category, enum: -> { Increase::AccountTransfer::CreatedBy::Category }

# @!attribute api_key
# If present, details about the API key that created the transfer.
#
# @return [Increase::Models::AccountTransfer::CreatedBy::APIKey, nil]
optional :api_key, -> { Increase::AccountTransfer::CreatedBy::APIKey }, nil?: true

# @!attribute oauth_application
# If present, details about the OAuth Application that created the transfer.
#
# @return [Increase::Models::AccountTransfer::CreatedBy::OAuthApplication, nil]
required :oauth_application, -> { Increase::AccountTransfer::CreatedBy::OAuthApplication }, nil?: true
optional :oauth_application, -> { Increase::AccountTransfer::CreatedBy::OAuthApplication }, nil?: true

# @!attribute user
# If present, details about the User that created the transfer.
#
# @return [Increase::Models::AccountTransfer::CreatedBy::User, nil]
required :user, -> { Increase::AccountTransfer::CreatedBy::User }, nil?: true
optional :user, -> { Increase::AccountTransfer::CreatedBy::User }, nil?: true

# @!method initialize(api_key:, category:, oauth_application:, user:)
# @!method initialize(category:, api_key: nil, oauth_application: nil, user: nil)
# What object created the transfer, either via the API or the dashboard.
#
# @param api_key [Increase::Models::AccountTransfer::CreatedBy::APIKey, nil] If present, details about the API key that created the transfer.
#
# @param category [Symbol, Increase::Models::AccountTransfer::CreatedBy::Category] The type of object that created this transfer.
#
# @param api_key [Increase::Models::AccountTransfer::CreatedBy::APIKey, nil] If present, details about the API key that created the transfer.
#
# @param oauth_application [Increase::Models::AccountTransfer::CreatedBy::OAuthApplication, nil] If present, details about the OAuth Application that created the transfer.
#
# @param user [Increase::Models::AccountTransfer::CreatedBy::User, nil] If present, details about the User that created the transfer.

# @see Increase::Models::AccountTransfer::CreatedBy#api_key
class APIKey < Increase::Internal::Type::BaseModel
# @!attribute description
# The description set for the API key when it was created.
#
# @return [String, nil]
required :description, String, nil?: true

# @!method initialize(description:)
# If present, details about the API key that created the transfer.
#
# @param description [String, nil] The description set for the API key when it was created.
end

# The type of object that created this transfer.
#
# @see Increase::Models::AccountTransfer::CreatedBy#category
Expand All @@ -283,6 +269,20 @@ module Category
# @return [Array<Symbol>]
end

# @see Increase::Models::AccountTransfer::CreatedBy#api_key
class APIKey < Increase::Internal::Type::BaseModel
# @!attribute description
# The description set for the API key when it was created.
#
# @return [String, nil]
required :description, String, nil?: true

# @!method initialize(description:)
# If present, details about the API key that created the transfer.
#
# @param description [String, nil] The description set for the API key when it was created.
end

# @see Increase::Models::AccountTransfer::CreatedBy#oauth_application
class OAuthApplication < Increase::Internal::Type::BaseModel
# @!attribute name
Expand Down
56 changes: 28 additions & 28 deletions lib/increase/models/ach_transfer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -361,18 +361,18 @@ class Addenda < Increase::Internal::Type::BaseModel
# Unstructured `payment_related_information` passed through with the transfer.
#
# @return [Increase::Models::ACHTransfer::Addenda::Freeform, nil]
required :freeform, -> { Increase::ACHTransfer::Addenda::Freeform }, nil?: true
optional :freeform, -> { Increase::ACHTransfer::Addenda::Freeform }, nil?: true

# @!attribute payment_order_remittance_advice
# Structured ASC X12 820 remittance advice records. Please reach out to
# [support@increase.com](mailto:support@increase.com) for more information.
#
# @return [Increase::Models::ACHTransfer::Addenda::PaymentOrderRemittanceAdvice, nil]
required :payment_order_remittance_advice,
optional :payment_order_remittance_advice,
-> { Increase::ACHTransfer::Addenda::PaymentOrderRemittanceAdvice },
nil?: true

# @!method initialize(category:, freeform:, payment_order_remittance_advice:)
# @!method initialize(category:, freeform: nil, payment_order_remittance_advice: nil)
# Some parameter documentations has been truncated, see
# {Increase::Models::ACHTransfer::Addenda} for more details.
#
Expand Down Expand Up @@ -529,55 +529,41 @@ class Cancellation < Increase::Internal::Type::BaseModel

# @see Increase::Models::ACHTransfer#created_by
class CreatedBy < Increase::Internal::Type::BaseModel
# @!attribute api_key
# If present, details about the API key that created the transfer.
#
# @return [Increase::Models::ACHTransfer::CreatedBy::APIKey, nil]
required :api_key, -> { Increase::ACHTransfer::CreatedBy::APIKey }, nil?: true

# @!attribute category
# The type of object that created this transfer.
#
# @return [Symbol, Increase::Models::ACHTransfer::CreatedBy::Category]
required :category, enum: -> { Increase::ACHTransfer::CreatedBy::Category }

# @!attribute api_key
# If present, details about the API key that created the transfer.
#
# @return [Increase::Models::ACHTransfer::CreatedBy::APIKey, nil]
optional :api_key, -> { Increase::ACHTransfer::CreatedBy::APIKey }, nil?: true

# @!attribute oauth_application
# If present, details about the OAuth Application that created the transfer.
#
# @return [Increase::Models::ACHTransfer::CreatedBy::OAuthApplication, nil]
required :oauth_application, -> { Increase::ACHTransfer::CreatedBy::OAuthApplication }, nil?: true
optional :oauth_application, -> { Increase::ACHTransfer::CreatedBy::OAuthApplication }, nil?: true

# @!attribute user
# If present, details about the User that created the transfer.
#
# @return [Increase::Models::ACHTransfer::CreatedBy::User, nil]
required :user, -> { Increase::ACHTransfer::CreatedBy::User }, nil?: true
optional :user, -> { Increase::ACHTransfer::CreatedBy::User }, nil?: true

# @!method initialize(api_key:, category:, oauth_application:, user:)
# @!method initialize(category:, api_key: nil, oauth_application: nil, user: nil)
# What object created the transfer, either via the API or the dashboard.
#
# @param api_key [Increase::Models::ACHTransfer::CreatedBy::APIKey, nil] If present, details about the API key that created the transfer.
#
# @param category [Symbol, Increase::Models::ACHTransfer::CreatedBy::Category] The type of object that created this transfer.
#
# @param api_key [Increase::Models::ACHTransfer::CreatedBy::APIKey, nil] If present, details about the API key that created the transfer.
#
# @param oauth_application [Increase::Models::ACHTransfer::CreatedBy::OAuthApplication, nil] If present, details about the OAuth Application that created the transfer.
#
# @param user [Increase::Models::ACHTransfer::CreatedBy::User, nil] If present, details about the User that created the transfer.

# @see Increase::Models::ACHTransfer::CreatedBy#api_key
class APIKey < Increase::Internal::Type::BaseModel
# @!attribute description
# The description set for the API key when it was created.
#
# @return [String, nil]
required :description, String, nil?: true

# @!method initialize(description:)
# If present, details about the API key that created the transfer.
#
# @param description [String, nil] The description set for the API key when it was created.
end

# The type of object that created this transfer.
#
# @see Increase::Models::ACHTransfer::CreatedBy#category
Expand All @@ -597,6 +583,20 @@ module Category
# @return [Array<Symbol>]
end

# @see Increase::Models::ACHTransfer::CreatedBy#api_key
class APIKey < Increase::Internal::Type::BaseModel
# @!attribute description
# The description set for the API key when it was created.
#
# @return [String, nil]
required :description, String, nil?: true

# @!method initialize(description:)
# If present, details about the API key that created the transfer.
#
# @param description [String, nil] The description set for the API key when it was created.
end

# @see Increase::Models::ACHTransfer::CreatedBy#oauth_application
class OAuthApplication < Increase::Internal::Type::BaseModel
# @!attribute name
Expand Down
Loading