increase 1.164.1 → 1.166.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 +16 -0
- data/README.md +1 -1
- data/lib/increase/models/export.rb +12 -0
- data/lib/increase/models/export_list_params.rb +12 -0
- data/lib/increase/models/inbound_wire_transfer.rb +3 -0
- data/lib/increase/models/inbound_wire_transfer_reverse_params.rb +3 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/export.rbi +19 -0
- data/rbi/increase/models/export_list_params.rbi +28 -0
- data/rbi/increase/models/inbound_wire_transfer.rbi +7 -0
- data/rbi/increase/models/inbound_wire_transfer_reverse_params.rbi +7 -0
- data/sig/increase/models/export.rbs +16 -0
- data/sig/increase/models/export_list_params.rbs +16 -0
- data/sig/increase/models/inbound_wire_transfer.rbs +4 -1
- data/sig/increase/models/inbound_wire_transfer_reverse_params.rbs +4 -1
- 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: c6d8d790d06180693c67ef4103489a77c68673ffc28ccabb32d47ce107325a6d
|
|
4
|
+
data.tar.gz: c050385b3b6adb91a2b25bb01c9b1f588e8f9bd6cbe16cff30efb8756ea98462
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73c101648ae44983b6e9ba36f03e9bf2cca65d9d420de21d86b3e65e8a1e01f3722a3b11089236a58793d5093ef4db80ca079e89056c32afc68116b0956079ff
|
|
7
|
+
data.tar.gz: 2c4fa5ecb7b66580c2dd2ac9766fe1063c11a18dca5667f87976c2155a5fa7517ac121609f625ac5910f8a0879906ef772cfa4b11f4a3415791a942c9b0b25cb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.166.0 (2025-12-17)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.165.0...v1.166.0](https://github.com/Increase/increase-ruby/compare/v1.165.0...v1.166.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([88bcbdb](https://github.com/Increase/increase-ruby/commit/88bcbdb902e7fb4c920d5e675385fb2a06a6ab96))
|
|
10
|
+
|
|
11
|
+
## 1.165.0 (2025-12-16)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.164.1...v1.165.0](https://github.com/Increase/increase-ruby/compare/v1.164.1...v1.165.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([cac70b5](https://github.com/Increase/increase-ruby/commit/cac70b5a0f8fde1778cdb05d8b2d284f3b9301b4))
|
|
18
|
+
|
|
3
19
|
## 1.164.1 (2025-12-16)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.164.0...v1.164.1](https://github.com/Increase/increase-ruby/compare/v1.164.0...v1.164.1)
|
data/README.md
CHANGED
|
@@ -115,6 +115,18 @@ module Increase
|
|
|
115
115
|
# Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
|
|
116
116
|
DASHBOARD_TABLE_CSV = :dashboard_table_csv
|
|
117
117
|
|
|
118
|
+
# A PDF of an account verification letter.
|
|
119
|
+
ACCOUNT_VERIFICATION_LETTER = :account_verification_letter
|
|
120
|
+
|
|
121
|
+
# A PDF of funding instructions.
|
|
122
|
+
FUNDING_INSTRUCTIONS = :funding_instructions
|
|
123
|
+
|
|
124
|
+
# A PDF of an Internal Revenue Service Form 1099-INT.
|
|
125
|
+
FORM_1099_INT = :form_1099_int
|
|
126
|
+
|
|
127
|
+
# A PDF of an Internal Revenue Service Form 1099-MISC.
|
|
128
|
+
FORM_1099_MISC = :form_1099_misc
|
|
129
|
+
|
|
118
130
|
# @!method self.values
|
|
119
131
|
# @return [Array<Symbol>]
|
|
120
132
|
end
|
|
@@ -106,6 +106,18 @@ module Increase
|
|
|
106
106
|
# Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
|
|
107
107
|
DASHBOARD_TABLE_CSV = :dashboard_table_csv
|
|
108
108
|
|
|
109
|
+
# A PDF of an account verification letter.
|
|
110
|
+
ACCOUNT_VERIFICATION_LETTER = :account_verification_letter
|
|
111
|
+
|
|
112
|
+
# A PDF of funding instructions.
|
|
113
|
+
FUNDING_INSTRUCTIONS = :funding_instructions
|
|
114
|
+
|
|
115
|
+
# A PDF of an Internal Revenue Service Form 1099-INT.
|
|
116
|
+
FORM_1099_INT = :form_1099_int
|
|
117
|
+
|
|
118
|
+
# A PDF of an Internal Revenue Service Form 1099-MISC.
|
|
119
|
+
FORM_1099_MISC = :form_1099_misc
|
|
120
|
+
|
|
109
121
|
# @!method self.values
|
|
110
122
|
# @return [Array<Symbol>]
|
|
111
123
|
end
|
|
@@ -249,6 +249,9 @@ module Increase
|
|
|
249
249
|
# The recipient of the wire transfer requested the funds be returned to the sender.
|
|
250
250
|
CREDITOR_REQUEST = :creditor_request
|
|
251
251
|
|
|
252
|
+
# The account cannot currently receive inbound wires.
|
|
253
|
+
TRANSACTION_FORBIDDEN = :transaction_forbidden
|
|
254
|
+
|
|
252
255
|
# @!method self.values
|
|
253
256
|
# @return [Array<Symbol>]
|
|
254
257
|
end
|
|
@@ -28,6 +28,9 @@ module Increase
|
|
|
28
28
|
# The recipient of the wire transfer requested the funds be returned to the sender.
|
|
29
29
|
CREDITOR_REQUEST = :creditor_request
|
|
30
30
|
|
|
31
|
+
# The account cannot currently receive inbound wires.
|
|
32
|
+
TRANSACTION_FORBIDDEN = :transaction_forbidden
|
|
33
|
+
|
|
31
34
|
# @!method self.values
|
|
32
35
|
# @return [Array<Symbol>]
|
|
33
36
|
end
|
data/lib/increase/version.rb
CHANGED
|
@@ -154,6 +154,25 @@ module Increase
|
|
|
154
154
|
DASHBOARD_TABLE_CSV =
|
|
155
155
|
T.let(:dashboard_table_csv, Increase::Export::Category::TaggedSymbol)
|
|
156
156
|
|
|
157
|
+
# A PDF of an account verification letter.
|
|
158
|
+
ACCOUNT_VERIFICATION_LETTER =
|
|
159
|
+
T.let(
|
|
160
|
+
:account_verification_letter,
|
|
161
|
+
Increase::Export::Category::TaggedSymbol
|
|
162
|
+
)
|
|
163
|
+
|
|
164
|
+
# A PDF of funding instructions.
|
|
165
|
+
FUNDING_INSTRUCTIONS =
|
|
166
|
+
T.let(:funding_instructions, Increase::Export::Category::TaggedSymbol)
|
|
167
|
+
|
|
168
|
+
# A PDF of an Internal Revenue Service Form 1099-INT.
|
|
169
|
+
FORM_1099_INT =
|
|
170
|
+
T.let(:form_1099_int, Increase::Export::Category::TaggedSymbol)
|
|
171
|
+
|
|
172
|
+
# A PDF of an Internal Revenue Service Form 1099-MISC.
|
|
173
|
+
FORM_1099_MISC =
|
|
174
|
+
T.let(:form_1099_misc, Increase::Export::Category::TaggedSymbol)
|
|
175
|
+
|
|
157
176
|
sig do
|
|
158
177
|
override.returns(T::Array[Increase::Export::Category::TaggedSymbol])
|
|
159
178
|
end
|
|
@@ -219,6 +219,34 @@ module Increase
|
|
|
219
219
|
Increase::ExportListParams::Category::In::TaggedSymbol
|
|
220
220
|
)
|
|
221
221
|
|
|
222
|
+
# A PDF of an account verification letter.
|
|
223
|
+
ACCOUNT_VERIFICATION_LETTER =
|
|
224
|
+
T.let(
|
|
225
|
+
:account_verification_letter,
|
|
226
|
+
Increase::ExportListParams::Category::In::TaggedSymbol
|
|
227
|
+
)
|
|
228
|
+
|
|
229
|
+
# A PDF of funding instructions.
|
|
230
|
+
FUNDING_INSTRUCTIONS =
|
|
231
|
+
T.let(
|
|
232
|
+
:funding_instructions,
|
|
233
|
+
Increase::ExportListParams::Category::In::TaggedSymbol
|
|
234
|
+
)
|
|
235
|
+
|
|
236
|
+
# A PDF of an Internal Revenue Service Form 1099-INT.
|
|
237
|
+
FORM_1099_INT =
|
|
238
|
+
T.let(
|
|
239
|
+
:form_1099_int,
|
|
240
|
+
Increase::ExportListParams::Category::In::TaggedSymbol
|
|
241
|
+
)
|
|
242
|
+
|
|
243
|
+
# A PDF of an Internal Revenue Service Form 1099-MISC.
|
|
244
|
+
FORM_1099_MISC =
|
|
245
|
+
T.let(
|
|
246
|
+
:form_1099_misc,
|
|
247
|
+
Increase::ExportListParams::Category::In::TaggedSymbol
|
|
248
|
+
)
|
|
249
|
+
|
|
222
250
|
sig do
|
|
223
251
|
override.returns(
|
|
224
252
|
T::Array[Increase::ExportListParams::Category::In::TaggedSymbol]
|
|
@@ -315,6 +315,13 @@ module Increase
|
|
|
315
315
|
Increase::InboundWireTransfer::Reversal::Reason::TaggedSymbol
|
|
316
316
|
)
|
|
317
317
|
|
|
318
|
+
# The account cannot currently receive inbound wires.
|
|
319
|
+
TRANSACTION_FORBIDDEN =
|
|
320
|
+
T.let(
|
|
321
|
+
:transaction_forbidden,
|
|
322
|
+
Increase::InboundWireTransfer::Reversal::Reason::TaggedSymbol
|
|
323
|
+
)
|
|
324
|
+
|
|
318
325
|
sig do
|
|
319
326
|
override.returns(
|
|
320
327
|
T::Array[
|
|
@@ -69,6 +69,13 @@ module Increase
|
|
|
69
69
|
Increase::InboundWireTransferReverseParams::Reason::TaggedSymbol
|
|
70
70
|
)
|
|
71
71
|
|
|
72
|
+
# The account cannot currently receive inbound wires.
|
|
73
|
+
TRANSACTION_FORBIDDEN =
|
|
74
|
+
T.let(
|
|
75
|
+
:transaction_forbidden,
|
|
76
|
+
Increase::InboundWireTransferReverseParams::Reason::TaggedSymbol
|
|
77
|
+
)
|
|
78
|
+
|
|
72
79
|
sig do
|
|
73
80
|
override.returns(
|
|
74
81
|
T::Array[
|
|
@@ -60,6 +60,10 @@ module Increase
|
|
|
60
60
|
| :entity_csv
|
|
61
61
|
| :vendor_csv
|
|
62
62
|
| :dashboard_table_csv
|
|
63
|
+
| :account_verification_letter
|
|
64
|
+
| :funding_instructions
|
|
65
|
+
| :form_1099_int
|
|
66
|
+
| :form_1099_misc
|
|
63
67
|
|
|
64
68
|
module Category
|
|
65
69
|
extend Increase::Internal::Type::Enum
|
|
@@ -88,6 +92,18 @@ module Increase
|
|
|
88
92
|
# Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
|
|
89
93
|
DASHBOARD_TABLE_CSV: :dashboard_table_csv
|
|
90
94
|
|
|
95
|
+
# A PDF of an account verification letter.
|
|
96
|
+
ACCOUNT_VERIFICATION_LETTER: :account_verification_letter
|
|
97
|
+
|
|
98
|
+
# A PDF of funding instructions.
|
|
99
|
+
FUNDING_INSTRUCTIONS: :funding_instructions
|
|
100
|
+
|
|
101
|
+
# A PDF of an Internal Revenue Service Form 1099-INT.
|
|
102
|
+
FORM_1099_INT: :form_1099_int
|
|
103
|
+
|
|
104
|
+
# A PDF of an Internal Revenue Service Form 1099-MISC.
|
|
105
|
+
FORM_1099_MISC: :form_1099_misc
|
|
106
|
+
|
|
91
107
|
def self?.values: -> ::Array[Increase::Models::Export::category]
|
|
92
108
|
end
|
|
93
109
|
|
|
@@ -92,6 +92,10 @@ module Increase
|
|
|
92
92
|
| :entity_csv
|
|
93
93
|
| :vendor_csv
|
|
94
94
|
| :dashboard_table_csv
|
|
95
|
+
| :account_verification_letter
|
|
96
|
+
| :funding_instructions
|
|
97
|
+
| :form_1099_int
|
|
98
|
+
| :form_1099_misc
|
|
95
99
|
|
|
96
100
|
module In
|
|
97
101
|
extend Increase::Internal::Type::Enum
|
|
@@ -120,6 +124,18 @@ module Increase
|
|
|
120
124
|
# Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
|
|
121
125
|
DASHBOARD_TABLE_CSV: :dashboard_table_csv
|
|
122
126
|
|
|
127
|
+
# A PDF of an account verification letter.
|
|
128
|
+
ACCOUNT_VERIFICATION_LETTER: :account_verification_letter
|
|
129
|
+
|
|
130
|
+
# A PDF of funding instructions.
|
|
131
|
+
FUNDING_INSTRUCTIONS: :funding_instructions
|
|
132
|
+
|
|
133
|
+
# A PDF of an Internal Revenue Service Form 1099-INT.
|
|
134
|
+
FORM_1099_INT: :form_1099_int
|
|
135
|
+
|
|
136
|
+
# A PDF of an Internal Revenue Service Form 1099-MISC.
|
|
137
|
+
FORM_1099_MISC: :form_1099_misc
|
|
138
|
+
|
|
123
139
|
def self?.values: -> ::Array[Increase::Models::ExportListParams::Category::in_]
|
|
124
140
|
end
|
|
125
141
|
end
|
|
@@ -152,7 +152,7 @@ module Increase
|
|
|
152
152
|
reversed_at: Time
|
|
153
153
|
}
|
|
154
154
|
|
|
155
|
-
type reason = :duplicate | :creditor_request
|
|
155
|
+
type reason = :duplicate | :creditor_request | :transaction_forbidden
|
|
156
156
|
|
|
157
157
|
module Reason
|
|
158
158
|
extend Increase::Internal::Type::Enum
|
|
@@ -163,6 +163,9 @@ module Increase
|
|
|
163
163
|
# The recipient of the wire transfer requested the funds be returned to the sender.
|
|
164
164
|
CREDITOR_REQUEST: :creditor_request
|
|
165
165
|
|
|
166
|
+
# The account cannot currently receive inbound wires.
|
|
167
|
+
TRANSACTION_FORBIDDEN: :transaction_forbidden
|
|
168
|
+
|
|
166
169
|
def self?.values: -> ::Array[Increase::Models::InboundWireTransfer::Reversal::reason]
|
|
167
170
|
end
|
|
168
171
|
end
|
|
@@ -20,7 +20,7 @@ module Increase
|
|
|
20
20
|
request_options: Increase::RequestOptions
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
type reason = :duplicate | :creditor_request
|
|
23
|
+
type reason = :duplicate | :creditor_request | :transaction_forbidden
|
|
24
24
|
|
|
25
25
|
module Reason
|
|
26
26
|
extend Increase::Internal::Type::Enum
|
|
@@ -31,6 +31,9 @@ module Increase
|
|
|
31
31
|
# The recipient of the wire transfer requested the funds be returned to the sender.
|
|
32
32
|
CREDITOR_REQUEST: :creditor_request
|
|
33
33
|
|
|
34
|
+
# The account cannot currently receive inbound wires.
|
|
35
|
+
TRANSACTION_FORBIDDEN: :transaction_forbidden
|
|
36
|
+
|
|
34
37
|
def self?.values: -> ::Array[Increase::Models::InboundWireTransferReverseParams::reason]
|
|
35
38
|
end
|
|
36
39
|
end
|
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.166.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-12-
|
|
11
|
+
date: 2025-12-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|