increase 1.189.0 → 1.190.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: e6e53c55b6c2839a5691ea1ae10b89264568dab59707a05085e6cdc47af8a5a5
4
- data.tar.gz: d38680e592e501c85b7d966d910fe75ea53249b7590405071d6a33c15863d4b7
3
+ metadata.gz: 7bd834fc48e899fee75f59b54bdc4082f4f1f9be0b89607eed8efa1eb58d957c
4
+ data.tar.gz: 79a61d911c1eab08e86b2264f2f1cb5369b1ffb429acb7f32f92b96cdc167f6d
5
5
  SHA512:
6
- metadata.gz: e6a2664aa42b10b6c5bc74f883e56a711287a2db07cd43645f10018d6003d18e6da12b0d29ff7cdd1a5f62b1bab7159eab7236e442e843a093576dd586969172
7
- data.tar.gz: 02c00c56304f4422c47f8033e73916ea85a9139c5b8bdf3e8dc857ff99f9dda927c4bb7ec16d0a82fcda8437dd3632f48be613217f6c1115e37d86a85c8f494d
6
+ metadata.gz: 9140791cd7ec2d7a9b262cbd55caf13294f2529a7d5ae965e06c2d4445dde2eb0fd44f79fb463c40c587b13e0c7add28356f955131f5f00cb455e7d6c3ebe6c9
7
+ data.tar.gz: 82ec0f394f2e62bb993300c9769388f1d696362d262f1713f8312e3015a188ee89296da959cc56eb5cf61fb14cacc92658e7bab9e8d86d1ee53cd6e10f386caa
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.190.0 (2026-01-30)
4
+
5
+ Full Changelog: [v1.189.0...v1.190.0](https://github.com/Increase/increase-ruby/compare/v1.189.0...v1.190.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([f7cc074](https://github.com/Increase/increase-ruby/commit/f7cc0747c6b88057f4d8cfa995b15069062d222c))
10
+
3
11
  ## 1.189.0 (2026-01-30)
4
12
 
5
13
  Full Changelog: [v1.188.0...v1.189.0](https://github.com/Increase/increase-ruby/compare/v1.188.0...v1.189.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.189.0"
18
+ gem "increase", "~> 1.190.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -55,8 +55,8 @@ module Increase
55
55
  # @!attribute funding
56
56
  # Whether the Account is funded by a loan or by deposits.
57
57
  #
58
- # @return [Symbol, Increase::Models::Account::Funding, nil]
59
- required :funding, enum: -> { Increase::Account::Funding }, nil?: true
58
+ # @return [Symbol, Increase::Models::Account::Funding]
59
+ required :funding, enum: -> { Increase::Account::Funding }
60
60
 
61
61
  # @!attribute idempotency_key
62
62
  # The idempotency key you chose for this object. This value is unique across
@@ -148,7 +148,7 @@ module Increase
148
148
  #
149
149
  # @param entity_id [String] The identifier for the Entity the Account belongs to.
150
150
  #
151
- # @param funding [Symbol, Increase::Models::Account::Funding, nil] Whether the Account is funded by a loan or by deposits.
151
+ # @param funding [Symbol, Increase::Models::Account::Funding] Whether the Account is funded by a loan or by deposits.
152
152
  #
153
153
  # @param idempotency_key [String, nil] The idempotency key you chose for this object. This value is unique across Incre
154
154
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.189.0"
4
+ VERSION = "1.190.0"
5
5
  end
@@ -41,7 +41,7 @@ module Increase
41
41
  attr_accessor :entity_id
42
42
 
43
43
  # Whether the Account is funded by a loan or by deposits.
44
- sig { returns(T.nilable(Increase::Account::Funding::TaggedSymbol)) }
44
+ sig { returns(Increase::Account::Funding::TaggedSymbol) }
45
45
  attr_accessor :funding
46
46
 
47
47
  # The idempotency key you chose for this object. This value is unique across
@@ -107,7 +107,7 @@ module Increase
107
107
  created_at: Time,
108
108
  currency: Increase::Account::Currency::OrSymbol,
109
109
  entity_id: String,
110
- funding: T.nilable(Increase::Account::Funding::OrSymbol),
110
+ funding: Increase::Account::Funding::OrSymbol,
111
111
  idempotency_key: T.nilable(String),
112
112
  informational_entity_id: T.nilable(String),
113
113
  interest_accrued: String,
@@ -185,7 +185,7 @@ module Increase
185
185
  created_at: Time,
186
186
  currency: Increase::Account::Currency::TaggedSymbol,
187
187
  entity_id: String,
188
- funding: T.nilable(Increase::Account::Funding::TaggedSymbol),
188
+ funding: Increase::Account::Funding::TaggedSymbol,
189
189
  idempotency_key: T.nilable(String),
190
190
  informational_entity_id: T.nilable(String),
191
191
  interest_accrued: String,
@@ -9,7 +9,7 @@ module Increase
9
9
  created_at: Time,
10
10
  currency: Increase::Models::Account::currency,
11
11
  entity_id: String,
12
- funding: Increase::Models::Account::funding?,
12
+ funding: Increase::Models::Account::funding,
13
13
  idempotency_key: String?,
14
14
  informational_entity_id: String?,
15
15
  interest_accrued: String,
@@ -37,7 +37,7 @@ module Increase
37
37
 
38
38
  attr_accessor entity_id: String
39
39
 
40
- attr_accessor funding: Increase::Models::Account::funding?
40
+ attr_accessor funding: Increase::Models::Account::funding
41
41
 
42
42
  attr_accessor idempotency_key: String?
43
43
 
@@ -67,7 +67,7 @@ module Increase
67
67
  created_at: Time,
68
68
  currency: Increase::Models::Account::currency,
69
69
  entity_id: String,
70
- funding: Increase::Models::Account::funding?,
70
+ funding: Increase::Models::Account::funding,
71
71
  idempotency_key: String?,
72
72
  informational_entity_id: String?,
73
73
  interest_accrued: String,
@@ -88,7 +88,7 @@ module Increase
88
88
  created_at: Time,
89
89
  currency: Increase::Models::Account::currency,
90
90
  entity_id: String,
91
- funding: Increase::Models::Account::funding?,
91
+ funding: Increase::Models::Account::funding,
92
92
  idempotency_key: String?,
93
93
  informational_entity_id: String?,
94
94
  interest_accrued: String,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.189.0
4
+ version: 1.190.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase