increase 1.175.0 → 1.176.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 +13 -0
- data/README.md +1 -1
- data/lib/increase/models/file.rb +3 -0
- data/lib/increase/models/file_list_params.rb +3 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/file.rbi +4 -0
- data/rbi/increase/models/file_list_params.rbi +7 -0
- data/sig/increase/models/file.rbs +4 -0
- data/sig/increase/models/file_list_params.rbs +4 -0
- metadata +16 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d70f0153e4f54e69ebf4f14c1150342660685029088e1d24ad6ff3f79e24dcde
|
|
4
|
+
data.tar.gz: a6d2fd1f916b5946e12a5b4d078c4ed9143a3bb849378f144f1ec8f11a03ff45
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd825380cb61a3559e47137c7e1e7de2bd2fe0a161ba67cb755bb40f752a515b498cc32999256cb4d864afcc147ef0b2c060f56dfdbf6c3d4a686eb037a4686a
|
|
7
|
+
data.tar.gz: 1b478c58696044498a68e8c14e92aeb413bfaa6be3d383bbc71fcdbbaa502429f5247bb312605bcc22d30c86d9908925775561508bf58ad9372d56cb292215e7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.176.0 (2026-01-14)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.175.0...v1.176.0](https://github.com/Increase/increase-ruby/compare/v1.175.0...v1.176.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([24826b1](https://github.com/Increase/increase-ruby/commit/24826b1ba2ca802a5211618a873ca6ff3424b0b1))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Chores
|
|
13
|
+
|
|
14
|
+
* move `cgi` into dependencies for ruby 4 ([0e8a6bc](https://github.com/Increase/increase-ruby/commit/0e8a6bc96473cf0540c8a0be18c4c4ef915de00e))
|
|
15
|
+
|
|
3
16
|
## 1.175.0 (2026-01-08)
|
|
4
17
|
|
|
5
18
|
Full Changelog: [v1.174.0...v1.175.0](https://github.com/Increase/increase-ruby/compare/v1.174.0...v1.175.0)
|
data/README.md
CHANGED
data/lib/increase/models/file.rb
CHANGED
|
@@ -189,6 +189,9 @@ module Increase
|
|
|
189
189
|
# The results of an Export you requested via the dashboard or API.
|
|
190
190
|
EXPORT = :export
|
|
191
191
|
|
|
192
|
+
# A fee statement.
|
|
193
|
+
FEE_STATEMENT = :fee_statement
|
|
194
|
+
|
|
192
195
|
# An attachment to an Unusual Activity Report.
|
|
193
196
|
UNUSUAL_ACTIVITY_REPORT_ATTACHMENT = :unusual_activity_report_attachment
|
|
194
197
|
|
|
@@ -191,6 +191,9 @@ module Increase
|
|
|
191
191
|
# The results of an Export you requested via the dashboard or API.
|
|
192
192
|
EXPORT = :export
|
|
193
193
|
|
|
194
|
+
# A fee statement.
|
|
195
|
+
FEE_STATEMENT = :fee_statement
|
|
196
|
+
|
|
194
197
|
# An attachment to an Unusual Activity Report.
|
|
195
198
|
UNUSUAL_ACTIVITY_REPORT_ATTACHMENT = :unusual_activity_report_attachment
|
|
196
199
|
|
data/lib/increase/version.rb
CHANGED
|
@@ -252,6 +252,10 @@ module Increase
|
|
|
252
252
|
# The results of an Export you requested via the dashboard or API.
|
|
253
253
|
EXPORT = T.let(:export, Increase::File::Purpose::TaggedSymbol)
|
|
254
254
|
|
|
255
|
+
# A fee statement.
|
|
256
|
+
FEE_STATEMENT =
|
|
257
|
+
T.let(:fee_statement, Increase::File::Purpose::TaggedSymbol)
|
|
258
|
+
|
|
255
259
|
# An attachment to an Unusual Activity Report.
|
|
256
260
|
UNUSUAL_ACTIVITY_REPORT_ATTACHMENT =
|
|
257
261
|
T.let(
|
|
@@ -389,6 +389,13 @@ module Increase
|
|
|
389
389
|
EXPORT =
|
|
390
390
|
T.let(:export, Increase::FileListParams::Purpose::In::TaggedSymbol)
|
|
391
391
|
|
|
392
|
+
# A fee statement.
|
|
393
|
+
FEE_STATEMENT =
|
|
394
|
+
T.let(
|
|
395
|
+
:fee_statement,
|
|
396
|
+
Increase::FileListParams::Purpose::In::TaggedSymbol
|
|
397
|
+
)
|
|
398
|
+
|
|
392
399
|
# An attachment to an Unusual Activity Report.
|
|
393
400
|
UNUSUAL_ACTIVITY_REPORT_ATTACHMENT =
|
|
394
401
|
T.let(
|
|
@@ -96,6 +96,7 @@ module Increase
|
|
|
96
96
|
| :document_request
|
|
97
97
|
| :entity_supplemental_document
|
|
98
98
|
| :export
|
|
99
|
+
| :fee_statement
|
|
99
100
|
| :unusual_activity_report_attachment
|
|
100
101
|
| :deposit_account_control_agreement
|
|
101
102
|
| :proof_of_authorization_request_submission
|
|
@@ -181,6 +182,9 @@ module Increase
|
|
|
181
182
|
# The results of an Export you requested via the dashboard or API.
|
|
182
183
|
EXPORT: :export
|
|
183
184
|
|
|
185
|
+
# A fee statement.
|
|
186
|
+
FEE_STATEMENT: :fee_statement
|
|
187
|
+
|
|
184
188
|
# An attachment to an Unusual Activity Report.
|
|
185
189
|
UNUSUAL_ACTIVITY_REPORT_ATTACHMENT: :unusual_activity_report_attachment
|
|
186
190
|
|
|
@@ -135,6 +135,7 @@ module Increase
|
|
|
135
135
|
| :document_request
|
|
136
136
|
| :entity_supplemental_document
|
|
137
137
|
| :export
|
|
138
|
+
| :fee_statement
|
|
138
139
|
| :unusual_activity_report_attachment
|
|
139
140
|
| :deposit_account_control_agreement
|
|
140
141
|
| :proof_of_authorization_request_submission
|
|
@@ -220,6 +221,9 @@ module Increase
|
|
|
220
221
|
# The results of an Export you requested via the dashboard or API.
|
|
221
222
|
EXPORT: :export
|
|
222
223
|
|
|
224
|
+
# A fee statement.
|
|
225
|
+
FEE_STATEMENT: :fee_statement
|
|
226
|
+
|
|
223
227
|
# An attachment to an Unusual Activity Report.
|
|
224
228
|
UNUSUAL_ACTIVITY_REPORT_ATTACHMENT: :unusual_activity_report_attachment
|
|
225
229
|
|
metadata
CHANGED
|
@@ -1,15 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: increase
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.176.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-01-
|
|
11
|
+
date: 2026-01-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: cgi
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
13
27
|
- !ruby/object:Gem::Dependency
|
|
14
28
|
name: connection_pool
|
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|