increase 1.195.0 → 1.196.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/export.rb +451 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/export.rbi +888 -3
- data/sig/increase/models/export.rbs +320 -3
- metadata +1 -1
|
@@ -3,54 +3,252 @@ module Increase
|
|
|
3
3
|
type export =
|
|
4
4
|
{
|
|
5
5
|
id: String,
|
|
6
|
+
:account_statement_bai2 => Increase::Export::AccountStatementBai2?,
|
|
7
|
+
account_statement_ofx: Increase::Export::AccountStatementOfx?,
|
|
8
|
+
account_verification_letter: Increase::Export::AccountVerificationLetter?,
|
|
9
|
+
balance_csv: Increase::Export::BalanceCsv?,
|
|
10
|
+
bookkeeping_account_balance_csv: Increase::Export::BookkeepingAccountBalanceCsv?,
|
|
6
11
|
category: Increase::Models::Export::category,
|
|
7
12
|
created_at: Time,
|
|
13
|
+
dashboard_table_csv: Increase::Export::DashboardTableCsv?,
|
|
14
|
+
entity_csv: Increase::Export::EntityCsv?,
|
|
8
15
|
file_download_url: String?,
|
|
9
16
|
file_id: String?,
|
|
17
|
+
:form_1099_int => Increase::Export::Form1099Int?,
|
|
18
|
+
:form_1099_misc => Increase::Export::Form1099Misc?,
|
|
19
|
+
funding_instructions: Increase::Export::FundingInstructions?,
|
|
10
20
|
idempotency_key: String?,
|
|
11
21
|
status: Increase::Models::Export::status,
|
|
12
|
-
|
|
22
|
+
transaction_csv: Increase::Export::TransactionCsv?,
|
|
23
|
+
type: Increase::Models::Export::type_,
|
|
24
|
+
vendor_csv: Increase::Export::VendorCsv?
|
|
13
25
|
}
|
|
14
26
|
|
|
15
27
|
class Export < Increase::Internal::Type::BaseModel
|
|
16
28
|
attr_accessor id: String
|
|
17
29
|
|
|
30
|
+
attr_accessor account_statement_bai2: Increase::Export::AccountStatementBai2?
|
|
31
|
+
|
|
32
|
+
attr_accessor account_statement_ofx: Increase::Export::AccountStatementOfx?
|
|
33
|
+
|
|
34
|
+
attr_accessor account_verification_letter: Increase::Export::AccountVerificationLetter?
|
|
35
|
+
|
|
36
|
+
attr_accessor balance_csv: Increase::Export::BalanceCsv?
|
|
37
|
+
|
|
38
|
+
attr_accessor bookkeeping_account_balance_csv: Increase::Export::BookkeepingAccountBalanceCsv?
|
|
39
|
+
|
|
18
40
|
attr_accessor category: Increase::Models::Export::category
|
|
19
41
|
|
|
20
42
|
attr_accessor created_at: Time
|
|
21
43
|
|
|
44
|
+
attr_accessor dashboard_table_csv: Increase::Export::DashboardTableCsv?
|
|
45
|
+
|
|
46
|
+
attr_accessor entity_csv: Increase::Export::EntityCsv?
|
|
47
|
+
|
|
22
48
|
attr_accessor file_download_url: String?
|
|
23
49
|
|
|
24
50
|
attr_accessor file_id: String?
|
|
25
51
|
|
|
52
|
+
attr_accessor form_1099_int: Increase::Export::Form1099Int?
|
|
53
|
+
|
|
54
|
+
attr_accessor form_1099_misc: Increase::Export::Form1099Misc?
|
|
55
|
+
|
|
56
|
+
attr_accessor funding_instructions: Increase::Export::FundingInstructions?
|
|
57
|
+
|
|
26
58
|
attr_accessor idempotency_key: String?
|
|
27
59
|
|
|
28
60
|
attr_accessor status: Increase::Models::Export::status
|
|
29
61
|
|
|
62
|
+
attr_accessor transaction_csv: Increase::Export::TransactionCsv?
|
|
63
|
+
|
|
30
64
|
attr_accessor type: Increase::Models::Export::type_
|
|
31
65
|
|
|
66
|
+
attr_accessor vendor_csv: Increase::Export::VendorCsv?
|
|
67
|
+
|
|
32
68
|
def initialize: (
|
|
33
69
|
id: String,
|
|
70
|
+
account_statement_bai2: Increase::Export::AccountStatementBai2?,
|
|
71
|
+
account_statement_ofx: Increase::Export::AccountStatementOfx?,
|
|
72
|
+
account_verification_letter: Increase::Export::AccountVerificationLetter?,
|
|
73
|
+
balance_csv: Increase::Export::BalanceCsv?,
|
|
74
|
+
bookkeeping_account_balance_csv: Increase::Export::BookkeepingAccountBalanceCsv?,
|
|
34
75
|
category: Increase::Models::Export::category,
|
|
35
76
|
created_at: Time,
|
|
77
|
+
dashboard_table_csv: Increase::Export::DashboardTableCsv?,
|
|
78
|
+
entity_csv: Increase::Export::EntityCsv?,
|
|
36
79
|
file_download_url: String?,
|
|
37
80
|
file_id: String?,
|
|
81
|
+
form_1099_int: Increase::Export::Form1099Int?,
|
|
82
|
+
form_1099_misc: Increase::Export::Form1099Misc?,
|
|
83
|
+
funding_instructions: Increase::Export::FundingInstructions?,
|
|
38
84
|
idempotency_key: String?,
|
|
39
85
|
status: Increase::Models::Export::status,
|
|
40
|
-
|
|
86
|
+
transaction_csv: Increase::Export::TransactionCsv?,
|
|
87
|
+
type: Increase::Models::Export::type_,
|
|
88
|
+
vendor_csv: Increase::Export::VendorCsv?
|
|
41
89
|
) -> void
|
|
42
90
|
|
|
43
91
|
def to_hash: -> {
|
|
44
92
|
id: String,
|
|
93
|
+
:account_statement_bai2 => Increase::Export::AccountStatementBai2?,
|
|
94
|
+
account_statement_ofx: Increase::Export::AccountStatementOfx?,
|
|
95
|
+
account_verification_letter: Increase::Export::AccountVerificationLetter?,
|
|
96
|
+
balance_csv: Increase::Export::BalanceCsv?,
|
|
97
|
+
bookkeeping_account_balance_csv: Increase::Export::BookkeepingAccountBalanceCsv?,
|
|
45
98
|
category: Increase::Models::Export::category,
|
|
46
99
|
created_at: Time,
|
|
100
|
+
dashboard_table_csv: Increase::Export::DashboardTableCsv?,
|
|
101
|
+
entity_csv: Increase::Export::EntityCsv?,
|
|
47
102
|
file_download_url: String?,
|
|
48
103
|
file_id: String?,
|
|
104
|
+
:form_1099_int => Increase::Export::Form1099Int?,
|
|
105
|
+
:form_1099_misc => Increase::Export::Form1099Misc?,
|
|
106
|
+
funding_instructions: Increase::Export::FundingInstructions?,
|
|
49
107
|
idempotency_key: String?,
|
|
50
108
|
status: Increase::Models::Export::status,
|
|
51
|
-
|
|
109
|
+
transaction_csv: Increase::Export::TransactionCsv?,
|
|
110
|
+
type: Increase::Models::Export::type_,
|
|
111
|
+
vendor_csv: Increase::Export::VendorCsv?
|
|
52
112
|
}
|
|
53
113
|
|
|
114
|
+
type account_statement_bai2 =
|
|
115
|
+
{ account_id: String?, effective_date: Date?, program_id: String? }
|
|
116
|
+
|
|
117
|
+
class AccountStatementBai2 < Increase::Internal::Type::BaseModel
|
|
118
|
+
attr_accessor account_id: String?
|
|
119
|
+
|
|
120
|
+
attr_accessor effective_date: Date?
|
|
121
|
+
|
|
122
|
+
attr_accessor program_id: String?
|
|
123
|
+
|
|
124
|
+
def initialize: (
|
|
125
|
+
account_id: String?,
|
|
126
|
+
effective_date: Date?,
|
|
127
|
+
program_id: String?
|
|
128
|
+
) -> void
|
|
129
|
+
|
|
130
|
+
def to_hash: -> {
|
|
131
|
+
account_id: String?,
|
|
132
|
+
effective_date: Date?,
|
|
133
|
+
program_id: String?
|
|
134
|
+
}
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
type account_statement_ofx =
|
|
138
|
+
{
|
|
139
|
+
account_id: String,
|
|
140
|
+
created_at: Increase::Export::AccountStatementOfx::CreatedAt?
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
class AccountStatementOfx < Increase::Internal::Type::BaseModel
|
|
144
|
+
attr_accessor account_id: String
|
|
145
|
+
|
|
146
|
+
attr_accessor created_at: Increase::Export::AccountStatementOfx::CreatedAt?
|
|
147
|
+
|
|
148
|
+
def initialize: (
|
|
149
|
+
account_id: String,
|
|
150
|
+
created_at: Increase::Export::AccountStatementOfx::CreatedAt?
|
|
151
|
+
) -> void
|
|
152
|
+
|
|
153
|
+
def to_hash: -> {
|
|
154
|
+
account_id: String,
|
|
155
|
+
created_at: Increase::Export::AccountStatementOfx::CreatedAt?
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
type created_at = { after: Time?, before: Time? }
|
|
159
|
+
|
|
160
|
+
class CreatedAt < Increase::Internal::Type::BaseModel
|
|
161
|
+
attr_accessor after: Time?
|
|
162
|
+
|
|
163
|
+
attr_accessor before: Time?
|
|
164
|
+
|
|
165
|
+
def initialize: (after: Time?, before: Time?) -> void
|
|
166
|
+
|
|
167
|
+
def to_hash: -> { after: Time?, before: Time? }
|
|
168
|
+
end
|
|
169
|
+
end
|
|
170
|
+
|
|
171
|
+
type account_verification_letter =
|
|
172
|
+
{ account_number_id: String, balance_date: Date? }
|
|
173
|
+
|
|
174
|
+
class AccountVerificationLetter < Increase::Internal::Type::BaseModel
|
|
175
|
+
attr_accessor account_number_id: String
|
|
176
|
+
|
|
177
|
+
attr_accessor balance_date: Date?
|
|
178
|
+
|
|
179
|
+
def initialize: (account_number_id: String, balance_date: Date?) -> void
|
|
180
|
+
|
|
181
|
+
def to_hash: -> { account_number_id: String, balance_date: Date? }
|
|
182
|
+
end
|
|
183
|
+
|
|
184
|
+
type balance_csv =
|
|
185
|
+
{
|
|
186
|
+
account_id: String?,
|
|
187
|
+
created_at: Increase::Export::BalanceCsv::CreatedAt?
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
class BalanceCsv < Increase::Internal::Type::BaseModel
|
|
191
|
+
attr_accessor account_id: String?
|
|
192
|
+
|
|
193
|
+
attr_accessor created_at: Increase::Export::BalanceCsv::CreatedAt?
|
|
194
|
+
|
|
195
|
+
def initialize: (
|
|
196
|
+
account_id: String?,
|
|
197
|
+
created_at: Increase::Export::BalanceCsv::CreatedAt?
|
|
198
|
+
) -> void
|
|
199
|
+
|
|
200
|
+
def to_hash: -> {
|
|
201
|
+
account_id: String?,
|
|
202
|
+
created_at: Increase::Export::BalanceCsv::CreatedAt?
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
type created_at = { after: Time?, before: Time? }
|
|
206
|
+
|
|
207
|
+
class CreatedAt < Increase::Internal::Type::BaseModel
|
|
208
|
+
attr_accessor after: Time?
|
|
209
|
+
|
|
210
|
+
attr_accessor before: Time?
|
|
211
|
+
|
|
212
|
+
def initialize: (after: Time?, before: Time?) -> void
|
|
213
|
+
|
|
214
|
+
def to_hash: -> { after: Time?, before: Time? }
|
|
215
|
+
end
|
|
216
|
+
end
|
|
217
|
+
|
|
218
|
+
type bookkeeping_account_balance_csv =
|
|
219
|
+
{
|
|
220
|
+
bookkeeping_account_id: String?,
|
|
221
|
+
created_at: Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt?
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
class BookkeepingAccountBalanceCsv < Increase::Internal::Type::BaseModel
|
|
225
|
+
attr_accessor bookkeeping_account_id: String?
|
|
226
|
+
|
|
227
|
+
attr_accessor created_at: Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt?
|
|
228
|
+
|
|
229
|
+
def initialize: (
|
|
230
|
+
bookkeeping_account_id: String?,
|
|
231
|
+
created_at: Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt?
|
|
232
|
+
) -> void
|
|
233
|
+
|
|
234
|
+
def to_hash: -> {
|
|
235
|
+
bookkeeping_account_id: String?,
|
|
236
|
+
created_at: Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt?
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
type created_at = { after: Time?, before: Time? }
|
|
240
|
+
|
|
241
|
+
class CreatedAt < Increase::Internal::Type::BaseModel
|
|
242
|
+
attr_accessor after: Time?
|
|
243
|
+
|
|
244
|
+
attr_accessor before: Time?
|
|
245
|
+
|
|
246
|
+
def initialize: (after: Time?, before: Time?) -> void
|
|
247
|
+
|
|
248
|
+
def to_hash: -> { after: Time?, before: Time? }
|
|
249
|
+
end
|
|
250
|
+
end
|
|
251
|
+
|
|
54
252
|
type category =
|
|
55
253
|
:account_statement_ofx
|
|
56
254
|
| :account_statement_bai2
|
|
@@ -107,6 +305,83 @@ module Increase
|
|
|
107
305
|
def self?.values: -> ::Array[Increase::Models::Export::category]
|
|
108
306
|
end
|
|
109
307
|
|
|
308
|
+
type dashboard_table_csv = { }
|
|
309
|
+
|
|
310
|
+
class DashboardTableCsv < Increase::Internal::Type::BaseModel
|
|
311
|
+
def initialize: -> void
|
|
312
|
+
|
|
313
|
+
def to_hash: -> { }
|
|
314
|
+
end
|
|
315
|
+
|
|
316
|
+
type entity_csv = { }
|
|
317
|
+
|
|
318
|
+
class EntityCsv < Increase::Internal::Type::BaseModel
|
|
319
|
+
def initialize: -> void
|
|
320
|
+
|
|
321
|
+
def to_hash: -> { }
|
|
322
|
+
end
|
|
323
|
+
|
|
324
|
+
type form1099_int =
|
|
325
|
+
{
|
|
326
|
+
account_id: String,
|
|
327
|
+
corrected: bool,
|
|
328
|
+
description: String,
|
|
329
|
+
year: Integer
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
class Form1099Int < Increase::Internal::Type::BaseModel
|
|
333
|
+
attr_accessor account_id: String
|
|
334
|
+
|
|
335
|
+
attr_accessor corrected: bool
|
|
336
|
+
|
|
337
|
+
attr_accessor description: String
|
|
338
|
+
|
|
339
|
+
attr_accessor year: Integer
|
|
340
|
+
|
|
341
|
+
def initialize: (
|
|
342
|
+
account_id: String,
|
|
343
|
+
corrected: bool,
|
|
344
|
+
description: String,
|
|
345
|
+
year: Integer
|
|
346
|
+
) -> void
|
|
347
|
+
|
|
348
|
+
def to_hash: -> {
|
|
349
|
+
account_id: String,
|
|
350
|
+
corrected: bool,
|
|
351
|
+
description: String,
|
|
352
|
+
year: Integer
|
|
353
|
+
}
|
|
354
|
+
end
|
|
355
|
+
|
|
356
|
+
type form1099_misc =
|
|
357
|
+
{ account_id: String, corrected: bool, year: Integer }
|
|
358
|
+
|
|
359
|
+
class Form1099Misc < Increase::Internal::Type::BaseModel
|
|
360
|
+
attr_accessor account_id: String
|
|
361
|
+
|
|
362
|
+
attr_accessor corrected: bool
|
|
363
|
+
|
|
364
|
+
attr_accessor year: Integer
|
|
365
|
+
|
|
366
|
+
def initialize: (
|
|
367
|
+
account_id: String,
|
|
368
|
+
corrected: bool,
|
|
369
|
+
year: Integer
|
|
370
|
+
) -> void
|
|
371
|
+
|
|
372
|
+
def to_hash: -> { account_id: String, corrected: bool, year: Integer }
|
|
373
|
+
end
|
|
374
|
+
|
|
375
|
+
type funding_instructions = { account_number_id: String }
|
|
376
|
+
|
|
377
|
+
class FundingInstructions < Increase::Internal::Type::BaseModel
|
|
378
|
+
attr_accessor account_number_id: String
|
|
379
|
+
|
|
380
|
+
def initialize: (account_number_id: String) -> void
|
|
381
|
+
|
|
382
|
+
def to_hash: -> { account_number_id: String }
|
|
383
|
+
end
|
|
384
|
+
|
|
110
385
|
type status = :pending | :complete | :failed
|
|
111
386
|
|
|
112
387
|
module Status
|
|
@@ -124,6 +399,40 @@ module Increase
|
|
|
124
399
|
def self?.values: -> ::Array[Increase::Models::Export::status]
|
|
125
400
|
end
|
|
126
401
|
|
|
402
|
+
type transaction_csv =
|
|
403
|
+
{
|
|
404
|
+
account_id: String?,
|
|
405
|
+
created_at: Increase::Export::TransactionCsv::CreatedAt?
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
class TransactionCsv < Increase::Internal::Type::BaseModel
|
|
409
|
+
attr_accessor account_id: String?
|
|
410
|
+
|
|
411
|
+
attr_accessor created_at: Increase::Export::TransactionCsv::CreatedAt?
|
|
412
|
+
|
|
413
|
+
def initialize: (
|
|
414
|
+
account_id: String?,
|
|
415
|
+
created_at: Increase::Export::TransactionCsv::CreatedAt?
|
|
416
|
+
) -> void
|
|
417
|
+
|
|
418
|
+
def to_hash: -> {
|
|
419
|
+
account_id: String?,
|
|
420
|
+
created_at: Increase::Export::TransactionCsv::CreatedAt?
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
type created_at = { after: Time?, before: Time? }
|
|
424
|
+
|
|
425
|
+
class CreatedAt < Increase::Internal::Type::BaseModel
|
|
426
|
+
attr_accessor after: Time?
|
|
427
|
+
|
|
428
|
+
attr_accessor before: Time?
|
|
429
|
+
|
|
430
|
+
def initialize: (after: Time?, before: Time?) -> void
|
|
431
|
+
|
|
432
|
+
def to_hash: -> { after: Time?, before: Time? }
|
|
433
|
+
end
|
|
434
|
+
end
|
|
435
|
+
|
|
127
436
|
type type_ = :export
|
|
128
437
|
|
|
129
438
|
module Type
|
|
@@ -133,6 +442,14 @@ module Increase
|
|
|
133
442
|
|
|
134
443
|
def self?.values: -> ::Array[Increase::Models::Export::type_]
|
|
135
444
|
end
|
|
445
|
+
|
|
446
|
+
type vendor_csv = { }
|
|
447
|
+
|
|
448
|
+
class VendorCsv < Increase::Internal::Type::BaseModel
|
|
449
|
+
def initialize: -> void
|
|
450
|
+
|
|
451
|
+
def to_hash: -> { }
|
|
452
|
+
end
|
|
136
453
|
end
|
|
137
454
|
end
|
|
138
455
|
end
|