increase 1.133.0 → 1.134.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 +8 -0
- data/README.md +1 -1
- data/lib/increase/models/file.rb +3 -0
- data/lib/increase/models/file_create_params.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 +7 -0
- data/rbi/increase/models/file_create_params.rbi +7 -0
- data/rbi/increase/models/file_list_params.rbi +7 -0
- data/sig/increase/models/file.rbs +4 -0
- data/sig/increase/models/file_create_params.rbs +4 -0
- data/sig/increase/models/file_list_params.rbs +4 -0
- 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: 951c9998b6dcb58c6eeb657d1d38e7d80ae8396c61b81932ddba3d42bc734316
|
|
4
|
+
data.tar.gz: 2c38f8e9d2d76a5cb334a33b766f3a8f3f334315fef98640c50cd01aa1ef130a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 55e276ac70035d69a0782ca8b760668b11086adfb520094a8449a521138a97ecb90b1f4ea4a9d433131b05268b7c9ba601c37c5386775dc3b91175fe5cba3807
|
|
7
|
+
data.tar.gz: 91553ec8bc1a622e7cc0e2f00c0d6a937afdfa487be4700005e56033f10ac8d4ce94f7440674aa137a71abccbf96b948f468ff9b75ac090396037f748d529f3c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.134.0 (2025-11-07)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.133.0...v1.134.0](https://github.com/Increase/increase-ruby/compare/v1.133.0...v1.134.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([eda8aff](https://github.com/Increase/increase-ruby/commit/eda8afff6343175b8b8aa1558a8f225439622ebf))
|
|
10
|
+
|
|
3
11
|
## 1.133.0 (2025-11-06)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.132.0...v1.133.0](https://github.com/Increase/increase-ruby/compare/v1.132.0...v1.133.0)
|
data/README.md
CHANGED
data/lib/increase/models/file.rb
CHANGED
|
@@ -153,6 +153,9 @@ module Increase
|
|
|
153
153
|
# A statement generated by Increase.
|
|
154
154
|
INCREASE_STATEMENT = :increase_statement
|
|
155
155
|
|
|
156
|
+
# A supplemental document for a Loan Application.
|
|
157
|
+
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT = :loan_application_supplemental_document
|
|
158
|
+
|
|
156
159
|
# A file purpose not covered by any of the other cases.
|
|
157
160
|
OTHER = :other
|
|
158
161
|
|
|
@@ -64,6 +64,9 @@ module Increase
|
|
|
64
64
|
# An image of a government-issued ID.
|
|
65
65
|
IDENTITY_DOCUMENT = :identity_document
|
|
66
66
|
|
|
67
|
+
# A supplemental document for a Loan Application.
|
|
68
|
+
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT = :loan_application_supplemental_document
|
|
69
|
+
|
|
67
70
|
# A file purpose not covered by any of the other cases.
|
|
68
71
|
OTHER = :other
|
|
69
72
|
|
|
@@ -155,6 +155,9 @@ module Increase
|
|
|
155
155
|
# A statement generated by Increase.
|
|
156
156
|
INCREASE_STATEMENT = :increase_statement
|
|
157
157
|
|
|
158
|
+
# A supplemental document for a Loan Application.
|
|
159
|
+
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT = :loan_application_supplemental_document
|
|
160
|
+
|
|
158
161
|
# A file purpose not covered by any of the other cases.
|
|
159
162
|
OTHER = :other
|
|
160
163
|
|
data/lib/increase/version.rb
CHANGED
|
@@ -197,6 +197,13 @@ module Increase
|
|
|
197
197
|
INCREASE_STATEMENT =
|
|
198
198
|
T.let(:increase_statement, Increase::File::Purpose::TaggedSymbol)
|
|
199
199
|
|
|
200
|
+
# A supplemental document for a Loan Application.
|
|
201
|
+
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT =
|
|
202
|
+
T.let(
|
|
203
|
+
:loan_application_supplemental_document,
|
|
204
|
+
Increase::File::Purpose::TaggedSymbol
|
|
205
|
+
)
|
|
206
|
+
|
|
200
207
|
# A file purpose not covered by any of the other cases.
|
|
201
208
|
OTHER = T.let(:other, Increase::File::Purpose::TaggedSymbol)
|
|
202
209
|
|
|
@@ -116,6 +116,13 @@ module Increase
|
|
|
116
116
|
Increase::FileCreateParams::Purpose::TaggedSymbol
|
|
117
117
|
)
|
|
118
118
|
|
|
119
|
+
# A supplemental document for a Loan Application.
|
|
120
|
+
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT =
|
|
121
|
+
T.let(
|
|
122
|
+
:loan_application_supplemental_document,
|
|
123
|
+
Increase::FileCreateParams::Purpose::TaggedSymbol
|
|
124
|
+
)
|
|
125
|
+
|
|
119
126
|
# A file purpose not covered by any of the other cases.
|
|
120
127
|
OTHER = T.let(:other, Increase::FileCreateParams::Purpose::TaggedSymbol)
|
|
121
128
|
|
|
@@ -311,6 +311,13 @@ module Increase
|
|
|
311
311
|
Increase::FileListParams::Purpose::In::TaggedSymbol
|
|
312
312
|
)
|
|
313
313
|
|
|
314
|
+
# A supplemental document for a Loan Application.
|
|
315
|
+
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT =
|
|
316
|
+
T.let(
|
|
317
|
+
:loan_application_supplemental_document,
|
|
318
|
+
Increase::FileListParams::Purpose::In::TaggedSymbol
|
|
319
|
+
)
|
|
320
|
+
|
|
314
321
|
# A file purpose not covered by any of the other cases.
|
|
315
322
|
OTHER =
|
|
316
323
|
T.let(:other, Increase::FileListParams::Purpose::In::TaggedSymbol)
|
|
@@ -84,6 +84,7 @@ module Increase
|
|
|
84
84
|
| :form_ss_4
|
|
85
85
|
| :identity_document
|
|
86
86
|
| :increase_statement
|
|
87
|
+
| :loan_application_supplemental_document
|
|
87
88
|
| :other
|
|
88
89
|
| :trust_formation_document
|
|
89
90
|
| :digital_wallet_artwork
|
|
@@ -143,6 +144,9 @@ module Increase
|
|
|
143
144
|
# A statement generated by Increase.
|
|
144
145
|
INCREASE_STATEMENT: :increase_statement
|
|
145
146
|
|
|
147
|
+
# A supplemental document for a Loan Application.
|
|
148
|
+
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT: :loan_application_supplemental_document
|
|
149
|
+
|
|
146
150
|
# A file purpose not covered by any of the other cases.
|
|
147
151
|
OTHER: :other
|
|
148
152
|
|
|
@@ -42,6 +42,7 @@ module Increase
|
|
|
42
42
|
| :check_attachment
|
|
43
43
|
| :form_ss_4
|
|
44
44
|
| :identity_document
|
|
45
|
+
| :loan_application_supplemental_document
|
|
45
46
|
| :other
|
|
46
47
|
| :trust_formation_document
|
|
47
48
|
| :digital_wallet_artwork
|
|
@@ -77,6 +78,9 @@ module Increase
|
|
|
77
78
|
# An image of a government-issued ID.
|
|
78
79
|
IDENTITY_DOCUMENT: :identity_document
|
|
79
80
|
|
|
81
|
+
# A supplemental document for a Loan Application.
|
|
82
|
+
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT: :loan_application_supplemental_document
|
|
83
|
+
|
|
80
84
|
# A file purpose not covered by any of the other cases.
|
|
81
85
|
OTHER: :other
|
|
82
86
|
|
|
@@ -123,6 +123,7 @@ module Increase
|
|
|
123
123
|
| :form_ss_4
|
|
124
124
|
| :identity_document
|
|
125
125
|
| :increase_statement
|
|
126
|
+
| :loan_application_supplemental_document
|
|
126
127
|
| :other
|
|
127
128
|
| :trust_formation_document
|
|
128
129
|
| :digital_wallet_artwork
|
|
@@ -182,6 +183,9 @@ module Increase
|
|
|
182
183
|
# A statement generated by Increase.
|
|
183
184
|
INCREASE_STATEMENT: :increase_statement
|
|
184
185
|
|
|
186
|
+
# A supplemental document for a Loan Application.
|
|
187
|
+
LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT: :loan_application_supplemental_document
|
|
188
|
+
|
|
185
189
|
# A file purpose not covered by any of the other cases.
|
|
186
190
|
OTHER: :other
|
|
187
191
|
|
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.134.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-
|
|
11
|
+
date: 2025-11-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|