increase 1.128.0 → 1.129.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 +4 -4
- data/CHANGELOG.md +14 -0
- data/README.md +1 -1
- data/lib/increase/internal/transport/base_client.rb +7 -1
- data/lib/increase/models/wire_drawdown_request.rb +3 -3
- data/lib/increase/models/wire_drawdown_request_list_params.rb +3 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/internal/transport/base_client.rbi +5 -0
- data/rbi/increase/internal/type/base_model.rbi +8 -4
- data/rbi/increase/models/wire_drawdown_request.rbi +4 -4
- data/rbi/increase/models/wire_drawdown_request_list_params.rbi +6 -6
- data/sig/increase/internal/transport/base_client.rbs +2 -0
- data/sig/increase/models/wire_drawdown_request.rbs +4 -4
- data/sig/increase/models/wire_drawdown_request_list_params.rbs +4 -4
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ad70f7b99661c10ba92b32eea4938570fa878fe9d2fa470d1a0ce64ec92f3ef3
|
|
4
|
+
data.tar.gz: 25c53043a1ab563621fd375a3a416a7186a1932eefe9ab356dc12b4d7939f719
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e5f29ada5ffbd75410f10649f08f33f90fd558983a7228e0720acd03da3a169d60417f5aeb7d156130947f65a3edaecdf265ea1504f90ce87c7a47fe22b2f10
|
|
7
|
+
data.tar.gz: 0ad4b8a43f5a17f1d5de776c0e6410817fc626b26f0d439eb2088bd39d3292981700a9312726e0da675f8a6c1a08b882d77a6596230c2058869ac846854f8b5b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.129.0 (2025-11-04)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.128.0...v1.129.0](https://github.com/Increase/increase-ruby/compare/v1.128.0...v1.129.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([4a2efb2](https://github.com/Increase/increase-ruby/commit/4a2efb2b33bd395db1c66e459ba895683dc91366))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Chores
|
|
13
|
+
|
|
14
|
+
* bump dependency version and update sorbet types ([eab9d7e](https://github.com/Increase/increase-ruby/commit/eab9d7e7c99706e45739fe8b828ba6b5f8bfe88a))
|
|
15
|
+
* **client:** send user-agent header ([3fa3e13](https://github.com/Increase/increase-ruby/commit/3fa3e1396480c27aaae01a7533b59d3c3279a789))
|
|
16
|
+
|
|
3
17
|
## 1.128.0 (2025-10-31)
|
|
4
18
|
|
|
5
19
|
Full Changelog: [v1.127.0...v1.128.0](https://github.com/Increase/increase-ruby/compare/v1.127.0...v1.128.0)
|
data/README.md
CHANGED
|
@@ -201,7 +201,8 @@ module Increase
|
|
|
201
201
|
self.class::PLATFORM_HEADERS,
|
|
202
202
|
{
|
|
203
203
|
"accept" => "application/json",
|
|
204
|
-
"content-type" => "application/json"
|
|
204
|
+
"content-type" => "application/json",
|
|
205
|
+
"user-agent" => user_agent
|
|
205
206
|
},
|
|
206
207
|
headers
|
|
207
208
|
)
|
|
@@ -219,6 +220,11 @@ module Increase
|
|
|
219
220
|
# @return [Hash{String=>String}]
|
|
220
221
|
private def auth_headers = {}
|
|
221
222
|
|
|
223
|
+
# @api private
|
|
224
|
+
#
|
|
225
|
+
# @return [String]
|
|
226
|
+
private def user_agent = "#{self.class.name}/Ruby #{Increase::VERSION}"
|
|
227
|
+
|
|
222
228
|
# @api private
|
|
223
229
|
#
|
|
224
230
|
# @return [String]
|
|
@@ -294,12 +294,12 @@ module Increase
|
|
|
294
294
|
# The drawdown request is queued to be submitted to Fedwire.
|
|
295
295
|
PENDING_SUBMISSION = :pending_submission
|
|
296
296
|
|
|
297
|
-
# The drawdown request has been sent and the recipient should respond in some way.
|
|
298
|
-
PENDING_RESPONSE = :pending_response
|
|
299
|
-
|
|
300
297
|
# The drawdown request has been fulfilled by the recipient.
|
|
301
298
|
FULFILLED = :fulfilled
|
|
302
299
|
|
|
300
|
+
# The drawdown request has been sent and the recipient should respond in some way.
|
|
301
|
+
PENDING_RESPONSE = :pending_response
|
|
302
|
+
|
|
303
303
|
# The drawdown request has been refused by the recipient.
|
|
304
304
|
REFUSED = :refused
|
|
305
305
|
|
|
@@ -73,12 +73,12 @@ module Increase
|
|
|
73
73
|
# The drawdown request is queued to be submitted to Fedwire.
|
|
74
74
|
PENDING_SUBMISSION = :pending_submission
|
|
75
75
|
|
|
76
|
-
# The drawdown request has been sent and the recipient should respond in some way.
|
|
77
|
-
PENDING_RESPONSE = :pending_response
|
|
78
|
-
|
|
79
76
|
# The drawdown request has been fulfilled by the recipient.
|
|
80
77
|
FULFILLED = :fulfilled
|
|
81
78
|
|
|
79
|
+
# The drawdown request has been sent and the recipient should respond in some way.
|
|
80
|
+
PENDING_RESPONSE = :pending_response
|
|
81
|
+
|
|
82
82
|
# The drawdown request has been refused by the recipient.
|
|
83
83
|
REFUSED = :refused
|
|
84
84
|
|
data/lib/increase/version.rb
CHANGED
|
@@ -31,7 +31,7 @@ module Increase
|
|
|
31
31
|
#
|
|
32
32
|
# Assumes superclass fields are totally defined before fields are accessed /
|
|
33
33
|
# defined on subclasses.
|
|
34
|
-
sig { params(child:
|
|
34
|
+
sig { params(child: Increase::Internal::Type::BaseModel).void }
|
|
35
35
|
def inherited(child)
|
|
36
36
|
end
|
|
37
37
|
|
|
@@ -274,9 +274,13 @@ module Increase
|
|
|
274
274
|
|
|
275
275
|
# Create a new instance of a model.
|
|
276
276
|
sig do
|
|
277
|
-
params(
|
|
278
|
-
|
|
279
|
-
|
|
277
|
+
params(
|
|
278
|
+
data:
|
|
279
|
+
T.any(
|
|
280
|
+
T::Hash[Symbol, T.anything],
|
|
281
|
+
Increase::Internal::Type::BaseModel
|
|
282
|
+
)
|
|
283
|
+
).returns(T.attached_class)
|
|
280
284
|
end
|
|
281
285
|
def self.new(data = {})
|
|
282
286
|
end
|
|
@@ -391,6 +391,10 @@ module Increase
|
|
|
391
391
|
Increase::WireDrawdownRequest::Status::TaggedSymbol
|
|
392
392
|
)
|
|
393
393
|
|
|
394
|
+
# The drawdown request has been fulfilled by the recipient.
|
|
395
|
+
FULFILLED =
|
|
396
|
+
T.let(:fulfilled, Increase::WireDrawdownRequest::Status::TaggedSymbol)
|
|
397
|
+
|
|
394
398
|
# The drawdown request has been sent and the recipient should respond in some way.
|
|
395
399
|
PENDING_RESPONSE =
|
|
396
400
|
T.let(
|
|
@@ -398,10 +402,6 @@ module Increase
|
|
|
398
402
|
Increase::WireDrawdownRequest::Status::TaggedSymbol
|
|
399
403
|
)
|
|
400
404
|
|
|
401
|
-
# The drawdown request has been fulfilled by the recipient.
|
|
402
|
-
FULFILLED =
|
|
403
|
-
T.let(:fulfilled, Increase::WireDrawdownRequest::Status::TaggedSymbol)
|
|
404
|
-
|
|
405
405
|
# The drawdown request has been refused by the recipient.
|
|
406
406
|
REFUSED =
|
|
407
407
|
T.let(:refused, Increase::WireDrawdownRequest::Status::TaggedSymbol)
|
|
@@ -168,17 +168,17 @@ module Increase
|
|
|
168
168
|
Increase::WireDrawdownRequestListParams::Status::In::TaggedSymbol
|
|
169
169
|
)
|
|
170
170
|
|
|
171
|
-
# The drawdown request has been
|
|
172
|
-
|
|
171
|
+
# The drawdown request has been fulfilled by the recipient.
|
|
172
|
+
FULFILLED =
|
|
173
173
|
T.let(
|
|
174
|
-
:
|
|
174
|
+
:fulfilled,
|
|
175
175
|
Increase::WireDrawdownRequestListParams::Status::In::TaggedSymbol
|
|
176
176
|
)
|
|
177
177
|
|
|
178
|
-
# The drawdown request has been
|
|
179
|
-
|
|
178
|
+
# The drawdown request has been sent and the recipient should respond in some way.
|
|
179
|
+
PENDING_RESPONSE =
|
|
180
180
|
T.let(
|
|
181
|
-
:
|
|
181
|
+
:pending_response,
|
|
182
182
|
Increase::WireDrawdownRequestListParams::Status::In::TaggedSymbol
|
|
183
183
|
)
|
|
184
184
|
|
|
@@ -186,7 +186,7 @@ module Increase
|
|
|
186
186
|
end
|
|
187
187
|
|
|
188
188
|
type status =
|
|
189
|
-
:pending_submission | :
|
|
189
|
+
:pending_submission | :fulfilled | :pending_response | :refused
|
|
190
190
|
|
|
191
191
|
module Status
|
|
192
192
|
extend Increase::Internal::Type::Enum
|
|
@@ -194,12 +194,12 @@ module Increase
|
|
|
194
194
|
# The drawdown request is queued to be submitted to Fedwire.
|
|
195
195
|
PENDING_SUBMISSION: :pending_submission
|
|
196
196
|
|
|
197
|
-
# The drawdown request has been sent and the recipient should respond in some way.
|
|
198
|
-
PENDING_RESPONSE: :pending_response
|
|
199
|
-
|
|
200
197
|
# The drawdown request has been fulfilled by the recipient.
|
|
201
198
|
FULFILLED: :fulfilled
|
|
202
199
|
|
|
200
|
+
# The drawdown request has been sent and the recipient should respond in some way.
|
|
201
|
+
PENDING_RESPONSE: :pending_response
|
|
202
|
+
|
|
203
203
|
# The drawdown request has been refused by the recipient.
|
|
204
204
|
REFUSED: :refused
|
|
205
205
|
|
|
@@ -68,7 +68,7 @@ module Increase
|
|
|
68
68
|
}
|
|
69
69
|
|
|
70
70
|
type in_ =
|
|
71
|
-
:pending_submission | :
|
|
71
|
+
:pending_submission | :fulfilled | :pending_response | :refused
|
|
72
72
|
|
|
73
73
|
module In
|
|
74
74
|
extend Increase::Internal::Type::Enum
|
|
@@ -76,12 +76,12 @@ module Increase
|
|
|
76
76
|
# The drawdown request is queued to be submitted to Fedwire.
|
|
77
77
|
PENDING_SUBMISSION: :pending_submission
|
|
78
78
|
|
|
79
|
-
# The drawdown request has been sent and the recipient should respond in some way.
|
|
80
|
-
PENDING_RESPONSE: :pending_response
|
|
81
|
-
|
|
82
79
|
# The drawdown request has been fulfilled by the recipient.
|
|
83
80
|
FULFILLED: :fulfilled
|
|
84
81
|
|
|
82
|
+
# The drawdown request has been sent and the recipient should respond in some way.
|
|
83
|
+
PENDING_RESPONSE: :pending_response
|
|
84
|
+
|
|
85
85
|
# The drawdown request has been refused by the recipient.
|
|
86
86
|
REFUSED: :refused
|
|
87
87
|
|
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.
|
|
4
|
+
version: 1.129.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Increase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-11-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|