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.252.0"
".": "1.253.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: 236
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-2d7155feee87cb1c64ae2b6f31d769c46725b615f1622558f998f2a637cfb57c.yml
openapi_spec_hash: c3117360164f38ece4a984800813813c
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-4a9671050881b7d7579bd118589b25ed43dccb69677f5ab8576df6f70de9a0dc.yml
openapi_spec_hash: b72da714aeef1e6652e6cc595ef65f94
config_hash: 25d7d7aa4882db6189b4b53e8e249e80
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.253.0 (2026-03-13)

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

### Features

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

## 1.252.0 (2026-03-12)

Full Changelog: [v1.251.0...v1.252.0](https://github.com/Increase/increase-ruby/compare/v1.251.0...v1.252.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.252.0)
increase (1.253.0)
cgi
connection_pool
standardwebhooks
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.252.0"
gem "increase", "~> 1.253.0"
```

<!-- x-release-please-end -->
Expand Down
20 changes: 2 additions & 18 deletions lib/increase/models/intrafi_balance.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@ module Increase
module Models
# @see Increase::Resources::IntrafiBalances#intrafi_balance
class IntrafiBalance < Increase::Internal::Type::BaseModel
# @!attribute id
# The identifier of this balance.
#
# @return [String]
required :id, String

# @!attribute balances
# Each entry represents a balance held at a different bank. IntraFi separates the
# total balance across many participating banks in the network.
Expand Down Expand Up @@ -44,16 +38,14 @@ class IntrafiBalance < Increase::Internal::Type::BaseModel
# @return [Symbol, Increase::Models::IntrafiBalance::Type]
required :type, enum: -> { Increase::IntrafiBalance::Type }

# @!method initialize(id:, balances:, currency:, effective_date:, total_balance:, type:)
# @!method initialize(balances:, currency:, effective_date:, total_balance:, type:)
# Some parameter documentations has been truncated, see
# {Increase::Models::IntrafiBalance} for more details.
#
# When using IntraFi, each account's balance over the standard FDIC insurance
# amount is swept to various other institutions. Funds are rebalanced across banks
# as needed once per business day.
#
# @param id [String] The identifier of this balance.
#
# @param balances [Array<Increase::Models::IntrafiBalance::Balance>] Each entry represents a balance held at a different bank. IntraFi separates the
#
# @param currency [Symbol, Increase::Models::IntrafiBalance::Currency] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the account curr
Expand All @@ -65,12 +57,6 @@ class IntrafiBalance < Increase::Internal::Type::BaseModel
# @param type [Symbol, Increase::Models::IntrafiBalance::Type] A constant representing the object's type. For this resource it will always be `

class Balance < Increase::Internal::Type::BaseModel
# @!attribute id
# The identifier of this balance.
#
# @return [String]
required :id, String

# @!attribute balance
# The balance, in minor units of `currency`, held with this bank.
#
Expand All @@ -97,12 +83,10 @@ class Balance < Increase::Internal::Type::BaseModel
# @return [String]
required :fdic_certificate_number, String

# @!method initialize(id:, balance:, bank:, bank_location:, fdic_certificate_number:)
# @!method initialize(balance:, bank:, bank_location:, fdic_certificate_number:)
# Some parameter documentations has been truncated, see
# {Increase::Models::IntrafiBalance::Balance} for more details.
#
# @param id [String] The identifier of this balance.
#
# @param balance [Integer] The balance, in minor units of `currency`, held with this bank.
#
# @param bank [String] The name of the bank holding these funds.
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.252.0"
VERSION = "1.253.0"
end
16 changes: 0 additions & 16 deletions rbi/increase/models/intrafi_balance.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ module Increase
T.any(Increase::IntrafiBalance, Increase::Internal::AnyHash)
end

# The identifier of this balance.
sig { returns(String) }
attr_accessor :id

# Each entry represents a balance held at a different bank. IntraFi separates the
# total balance across many participating banks in the network.
sig { returns(T::Array[Increase::IntrafiBalance::Balance]) }
Expand Down Expand Up @@ -41,7 +37,6 @@ module Increase
# as needed once per business day.
sig do
params(
id: String,
balances: T::Array[Increase::IntrafiBalance::Balance::OrHash],
currency: Increase::IntrafiBalance::Currency::OrSymbol,
effective_date: Date,
Expand All @@ -50,8 +45,6 @@ module Increase
).returns(T.attached_class)
end
def self.new(
# The identifier of this balance.
id:,
# Each entry represents a balance held at a different bank. IntraFi separates the
# total balance across many participating banks in the network.
balances:,
Expand All @@ -72,7 +65,6 @@ module Increase
sig do
override.returns(
{
id: String,
balances: T::Array[Increase::IntrafiBalance::Balance],
currency: Increase::IntrafiBalance::Currency::TaggedSymbol,
effective_date: Date,
Expand All @@ -93,10 +85,6 @@ module Increase
)
end

# The identifier of this balance.
sig { returns(String) }
attr_accessor :id

# The balance, in minor units of `currency`, held with this bank.
sig { returns(Integer) }
attr_accessor :balance
Expand Down Expand Up @@ -127,7 +115,6 @@ module Increase

sig do
params(
id: String,
balance: Integer,
bank: String,
bank_location:
Expand All @@ -138,8 +125,6 @@ module Increase
).returns(T.attached_class)
end
def self.new(
# The identifier of this balance.
id:,
# The balance, in minor units of `currency`, held with this bank.
balance:,
# The name of the bank holding these funds.
Expand All @@ -156,7 +141,6 @@ module Increase
sig do
override.returns(
{
id: String,
balance: Integer,
bank: String,
bank_location:
Expand Down
10 changes: 0 additions & 10 deletions sig/increase/models/intrafi_balance.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ module Increase
module Models
type intrafi_balance =
{
id: String,
balances: ::Array[Increase::IntrafiBalance::Balance],
currency: Increase::Models::IntrafiBalance::currency,
effective_date: Date,
Expand All @@ -11,8 +10,6 @@ module Increase
}

class IntrafiBalance < Increase::Internal::Type::BaseModel
attr_accessor id: String

attr_accessor balances: ::Array[Increase::IntrafiBalance::Balance]

attr_accessor currency: Increase::Models::IntrafiBalance::currency
Expand All @@ -24,7 +21,6 @@ module Increase
attr_accessor type: Increase::Models::IntrafiBalance::type_

def initialize: (
id: String,
balances: ::Array[Increase::IntrafiBalance::Balance],
currency: Increase::Models::IntrafiBalance::currency,
effective_date: Date,
Expand All @@ -33,7 +29,6 @@ module Increase
) -> void

def to_hash: -> {
id: String,
balances: ::Array[Increase::IntrafiBalance::Balance],
currency: Increase::Models::IntrafiBalance::currency,
effective_date: Date,
Expand All @@ -43,16 +38,13 @@ module Increase

type balance =
{
id: String,
balance: Integer,
bank: String,
bank_location: Increase::IntrafiBalance::Balance::BankLocation?,
fdic_certificate_number: String
}

class Balance < Increase::Internal::Type::BaseModel
attr_accessor id: String

attr_accessor balance: Integer

attr_accessor bank: String
Expand All @@ -62,15 +54,13 @@ module Increase
attr_accessor fdic_certificate_number: String

def initialize: (
id: String,
balance: Integer,
bank: String,
bank_location: Increase::IntrafiBalance::Balance::BankLocation?,
fdic_certificate_number: String
) -> void

def to_hash: -> {
id: String,
balance: Integer,
bank: String,
bank_location: Increase::IntrafiBalance::Balance::BankLocation?,
Expand Down
1 change: 0 additions & 1 deletion test/increase/resources/intrafi_balances_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ def test_intrafi_balance

assert_pattern do
response => {
id: String,
balances: ^(Increase::Internal::Type::ArrayOf[Increase::IntrafiBalance::Balance]),
currency: Increase::IntrafiBalance::Currency,
effective_date: Date,
Expand Down