increase 1.252.0 → 1.253.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 206a4e2be8d760e2d0331cc66b5c4116463b16f12f9dde783f887cd36ac59ad7
4
- data.tar.gz: 218c844c2bc0128b25116d858c40e581e1685bb89a6b7b326651424d98a72c5b
3
+ metadata.gz: fa4a4b4daac1218e7bb474070b6c0d63ac9d4c5b042920681be22a68452927a4
4
+ data.tar.gz: 33a6fd6cbe28fb47073fb9c0a306398db93780cfd12574c9cc7597e0a70ca09f
5
5
  SHA512:
6
- metadata.gz: 1a1c150604883aa310b092f9c5f0e2fd58c3878c1830efb6051f8c23bf1a25898300f0d26d2c52ad780fe35b4edf41288f154a7780d86e139ed2be13fbc6fba9
7
- data.tar.gz: 17123380853347d5ef3ee1fa5c4e731ca56049641318a6502761cf921af148bfda52ef138efe27330a880cdf6c9031d240d659121be944a8a75b9a4a6521a5cc
6
+ metadata.gz: 3343c824f2dcd03bf2fec0f9f2ecbdbd3adfbd9863648772075b5fb28ecc5a5c974dae646dc0741c3868b0ecad4188dfd794d5852bf8a60133a2e9a06c3d4e6d
7
+ data.tar.gz: 5a2e070d0c4fbee5b9ad758709886dbc20c6db5836f15b49d9a7d6d63f42c3e1846538c932be58c267889a9ec418294665cdd7cf57e93aaf136868d07500a9f7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.253.0 (2026-03-13)
4
+
5
+ Full Changelog: [v1.252.0...v1.253.0](https://github.com/Increase/increase-ruby/compare/v1.252.0...v1.253.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([a483d4d](https://github.com/Increase/increase-ruby/commit/a483d4d9c06403335ecb3d81f59f4046f25a682a))
10
+
3
11
  ## 1.252.0 (2026-03-12)
4
12
 
5
13
  Full Changelog: [v1.251.0...v1.252.0](https://github.com/Increase/increase-ruby/compare/v1.251.0...v1.252.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.252.0"
18
+ gem "increase", "~> 1.253.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -4,12 +4,6 @@ module Increase
4
4
  module Models
5
5
  # @see Increase::Resources::IntrafiBalances#intrafi_balance
6
6
  class IntrafiBalance < Increase::Internal::Type::BaseModel
7
- # @!attribute id
8
- # The identifier of this balance.
9
- #
10
- # @return [String]
11
- required :id, String
12
-
13
7
  # @!attribute balances
14
8
  # Each entry represents a balance held at a different bank. IntraFi separates the
15
9
  # total balance across many participating banks in the network.
@@ -44,7 +38,7 @@ module Increase
44
38
  # @return [Symbol, Increase::Models::IntrafiBalance::Type]
45
39
  required :type, enum: -> { Increase::IntrafiBalance::Type }
46
40
 
47
- # @!method initialize(id:, balances:, currency:, effective_date:, total_balance:, type:)
41
+ # @!method initialize(balances:, currency:, effective_date:, total_balance:, type:)
48
42
  # Some parameter documentations has been truncated, see
49
43
  # {Increase::Models::IntrafiBalance} for more details.
50
44
  #
@@ -52,8 +46,6 @@ module Increase
52
46
  # amount is swept to various other institutions. Funds are rebalanced across banks
53
47
  # as needed once per business day.
54
48
  #
55
- # @param id [String] The identifier of this balance.
56
- #
57
49
  # @param balances [Array<Increase::Models::IntrafiBalance::Balance>] Each entry represents a balance held at a different bank. IntraFi separates the
58
50
  #
59
51
  # @param currency [Symbol, Increase::Models::IntrafiBalance::Currency] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the account curr
@@ -65,12 +57,6 @@ module Increase
65
57
  # @param type [Symbol, Increase::Models::IntrafiBalance::Type] A constant representing the object's type. For this resource it will always be `
66
58
 
67
59
  class Balance < Increase::Internal::Type::BaseModel
68
- # @!attribute id
69
- # The identifier of this balance.
70
- #
71
- # @return [String]
72
- required :id, String
73
-
74
60
  # @!attribute balance
75
61
  # The balance, in minor units of `currency`, held with this bank.
76
62
  #
@@ -97,12 +83,10 @@ module Increase
97
83
  # @return [String]
98
84
  required :fdic_certificate_number, String
99
85
 
100
- # @!method initialize(id:, balance:, bank:, bank_location:, fdic_certificate_number:)
86
+ # @!method initialize(balance:, bank:, bank_location:, fdic_certificate_number:)
101
87
  # Some parameter documentations has been truncated, see
102
88
  # {Increase::Models::IntrafiBalance::Balance} for more details.
103
89
  #
104
- # @param id [String] The identifier of this balance.
105
- #
106
90
  # @param balance [Integer] The balance, in minor units of `currency`, held with this bank.
107
91
  #
108
92
  # @param bank [String] The name of the bank holding these funds.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.252.0"
4
+ VERSION = "1.253.0"
5
5
  end
@@ -8,10 +8,6 @@ module Increase
8
8
  T.any(Increase::IntrafiBalance, Increase::Internal::AnyHash)
9
9
  end
10
10
 
11
- # The identifier of this balance.
12
- sig { returns(String) }
13
- attr_accessor :id
14
-
15
11
  # Each entry represents a balance held at a different bank. IntraFi separates the
16
12
  # total balance across many participating banks in the network.
17
13
  sig { returns(T::Array[Increase::IntrafiBalance::Balance]) }
@@ -41,7 +37,6 @@ module Increase
41
37
  # as needed once per business day.
42
38
  sig do
43
39
  params(
44
- id: String,
45
40
  balances: T::Array[Increase::IntrafiBalance::Balance::OrHash],
46
41
  currency: Increase::IntrafiBalance::Currency::OrSymbol,
47
42
  effective_date: Date,
@@ -50,8 +45,6 @@ module Increase
50
45
  ).returns(T.attached_class)
51
46
  end
52
47
  def self.new(
53
- # The identifier of this balance.
54
- id:,
55
48
  # Each entry represents a balance held at a different bank. IntraFi separates the
56
49
  # total balance across many participating banks in the network.
57
50
  balances:,
@@ -72,7 +65,6 @@ module Increase
72
65
  sig do
73
66
  override.returns(
74
67
  {
75
- id: String,
76
68
  balances: T::Array[Increase::IntrafiBalance::Balance],
77
69
  currency: Increase::IntrafiBalance::Currency::TaggedSymbol,
78
70
  effective_date: Date,
@@ -93,10 +85,6 @@ module Increase
93
85
  )
94
86
  end
95
87
 
96
- # The identifier of this balance.
97
- sig { returns(String) }
98
- attr_accessor :id
99
-
100
88
  # The balance, in minor units of `currency`, held with this bank.
101
89
  sig { returns(Integer) }
102
90
  attr_accessor :balance
@@ -127,7 +115,6 @@ module Increase
127
115
 
128
116
  sig do
129
117
  params(
130
- id: String,
131
118
  balance: Integer,
132
119
  bank: String,
133
120
  bank_location:
@@ -138,8 +125,6 @@ module Increase
138
125
  ).returns(T.attached_class)
139
126
  end
140
127
  def self.new(
141
- # The identifier of this balance.
142
- id:,
143
128
  # The balance, in minor units of `currency`, held with this bank.
144
129
  balance:,
145
130
  # The name of the bank holding these funds.
@@ -156,7 +141,6 @@ module Increase
156
141
  sig do
157
142
  override.returns(
158
143
  {
159
- id: String,
160
144
  balance: Integer,
161
145
  bank: String,
162
146
  bank_location:
@@ -2,7 +2,6 @@ module Increase
2
2
  module Models
3
3
  type intrafi_balance =
4
4
  {
5
- id: String,
6
5
  balances: ::Array[Increase::IntrafiBalance::Balance],
7
6
  currency: Increase::Models::IntrafiBalance::currency,
8
7
  effective_date: Date,
@@ -11,8 +10,6 @@ module Increase
11
10
  }
12
11
 
13
12
  class IntrafiBalance < Increase::Internal::Type::BaseModel
14
- attr_accessor id: String
15
-
16
13
  attr_accessor balances: ::Array[Increase::IntrafiBalance::Balance]
17
14
 
18
15
  attr_accessor currency: Increase::Models::IntrafiBalance::currency
@@ -24,7 +21,6 @@ module Increase
24
21
  attr_accessor type: Increase::Models::IntrafiBalance::type_
25
22
 
26
23
  def initialize: (
27
- id: String,
28
24
  balances: ::Array[Increase::IntrafiBalance::Balance],
29
25
  currency: Increase::Models::IntrafiBalance::currency,
30
26
  effective_date: Date,
@@ -33,7 +29,6 @@ module Increase
33
29
  ) -> void
34
30
 
35
31
  def to_hash: -> {
36
- id: String,
37
32
  balances: ::Array[Increase::IntrafiBalance::Balance],
38
33
  currency: Increase::Models::IntrafiBalance::currency,
39
34
  effective_date: Date,
@@ -43,7 +38,6 @@ module Increase
43
38
 
44
39
  type balance =
45
40
  {
46
- id: String,
47
41
  balance: Integer,
48
42
  bank: String,
49
43
  bank_location: Increase::IntrafiBalance::Balance::BankLocation?,
@@ -51,8 +45,6 @@ module Increase
51
45
  }
52
46
 
53
47
  class Balance < Increase::Internal::Type::BaseModel
54
- attr_accessor id: String
55
-
56
48
  attr_accessor balance: Integer
57
49
 
58
50
  attr_accessor bank: String
@@ -62,7 +54,6 @@ module Increase
62
54
  attr_accessor fdic_certificate_number: String
63
55
 
64
56
  def initialize: (
65
- id: String,
66
57
  balance: Integer,
67
58
  bank: String,
68
59
  bank_location: Increase::IntrafiBalance::Balance::BankLocation?,
@@ -70,7 +61,6 @@ module Increase
70
61
  ) -> void
71
62
 
72
63
  def to_hash: -> {
73
- id: String,
74
64
  balance: Integer,
75
65
  bank: String,
76
66
  bank_location: Increase::IntrafiBalance::Balance::BankLocation?,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.252.0
4
+ version: 1.253.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-12 00:00:00.000000000 Z
11
+ date: 2026-03-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi