increase 1.195.0 → 1.197.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 45a8a01ac53ddbd4672e619fc507135cc467ed0666cb6cdcf2dafef7fb82d355
4
- data.tar.gz: e2e3db2adcdad66e7374c31665a71f8e3c31798df6ca2d0a67260b99476f89db
3
+ metadata.gz: b0d45b6bb1a5ca237e4d118bebde6644d33e67efbc87250f487f8bd85515db14
4
+ data.tar.gz: 963c440662d055d69e8e40ce709d124e63e6999f65c600790609825edf28314e
5
5
  SHA512:
6
- metadata.gz: 74991df9eb3997c07685e4e8f0a50f9bd485074566ff78be8e80e931e7ccf62103eeedab0de6a71a5abbbedcc5e5bbec78a6f8291becd8e1eee74678b9ce8e8c
7
- data.tar.gz: 3c35ae591fe60fd477e037d47d4778e02b3486366f6eba115aa36c6c27c2fcbe5f798f26680f2d676be7c58708da3a6059a445860e2cadfea068c26780fa203f
6
+ metadata.gz: 23092a1d29917983d86c048dcc4b06e43f90d9b99db9155a3becca11220f9c88c25791a1c8f15e280f48724d7e90f5c93a5ea50aeae0b00a117fd83ee7475625
7
+ data.tar.gz: 797e04eebb1992082fac2365780fd684e2b72c36d0b36931ca5b791f4450d2c120e4c4743c4291e90dabc0a5bc2c986077f5012538a662af252a19ef5df2620c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.197.0 (2026-02-03)
4
+
5
+ Full Changelog: [v1.196.0...v1.197.0](https://github.com/Increase/increase-ruby/compare/v1.196.0...v1.197.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([afef769](https://github.com/Increase/increase-ruby/commit/afef769328f334db3ef6c88104753664da8ba3bc))
10
+
11
+ ## 1.196.0 (2026-02-03)
12
+
13
+ Full Changelog: [v1.195.0...v1.196.0](https://github.com/Increase/increase-ruby/compare/v1.195.0...v1.196.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([f6a121d](https://github.com/Increase/increase-ruby/commit/f6a121df12f7c54dc6fa6581f8d84681e0e9a656))
18
+
3
19
  ## 1.195.0 (2026-02-03)
4
20
 
5
21
  Full Changelog: [v1.194.0...v1.195.0](https://github.com/Increase/increase-ruby/compare/v1.194.0...v1.195.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.195.0"
18
+ gem "increase", "~> 1.197.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -10,6 +10,43 @@ module Increase
10
10
  # @return [String]
11
11
  required :id, String
12
12
 
13
+ # @!attribute account_statement_bai2
14
+ # Details of the account statement BAI2 export. This field will be present when
15
+ # the `category` is equal to `account_statement_bai2`.
16
+ #
17
+ # @return [Increase::Models::Export::AccountStatementBai2, nil]
18
+ required :account_statement_bai2, -> { Increase::Export::AccountStatementBai2 }, nil?: true
19
+
20
+ # @!attribute account_statement_ofx
21
+ # Details of the account statement OFX export. This field will be present when the
22
+ # `category` is equal to `account_statement_ofx`.
23
+ #
24
+ # @return [Increase::Models::Export::AccountStatementOfx, nil]
25
+ required :account_statement_ofx, -> { Increase::Export::AccountStatementOfx }, nil?: true
26
+
27
+ # @!attribute account_verification_letter
28
+ # Details of the account verification letter export. This field will be present
29
+ # when the `category` is equal to `account_verification_letter`.
30
+ #
31
+ # @return [Increase::Models::Export::AccountVerificationLetter, nil]
32
+ required :account_verification_letter, -> { Increase::Export::AccountVerificationLetter }, nil?: true
33
+
34
+ # @!attribute balance_csv
35
+ # Details of the balance CSV export. This field will be present when the
36
+ # `category` is equal to `balance_csv`.
37
+ #
38
+ # @return [Increase::Models::Export::BalanceCsv, nil]
39
+ required :balance_csv, -> { Increase::Export::BalanceCsv }, nil?: true
40
+
41
+ # @!attribute bookkeeping_account_balance_csv
42
+ # Details of the bookkeeping account balance CSV export. This field will be
43
+ # present when the `category` is equal to `bookkeeping_account_balance_csv`.
44
+ #
45
+ # @return [Increase::Models::Export::BookkeepingAccountBalanceCsv, nil]
46
+ required :bookkeeping_account_balance_csv,
47
+ -> { Increase::Export::BookkeepingAccountBalanceCsv },
48
+ nil?: true
49
+
13
50
  # @!attribute category
14
51
  # The category of the Export. We may add additional possible values for this enum
15
52
  # over time; your application should be able to handle that gracefully.
@@ -23,19 +60,40 @@ module Increase
23
60
  # @return [Time]
24
61
  required :created_at, Time
25
62
 
26
- # @!attribute file_download_url
27
- # A URL at which the Export's file can be downloaded. This will be present when
28
- # the Export's status transitions to `complete`.
63
+ # @!attribute dashboard_table_csv
64
+ # Details of the dashboard table CSV export. This field will be present when the
65
+ # `category` is equal to `dashboard_table_csv`.
29
66
  #
30
- # @return [String, nil]
31
- required :file_download_url, String, nil?: true
67
+ # @return [Increase::Models::Export::DashboardTableCsv, nil]
68
+ required :dashboard_table_csv, -> { Increase::Export::DashboardTableCsv }, nil?: true
32
69
 
33
- # @!attribute file_id
34
- # The File containing the contents of the Export. This will be present when the
35
- # Export's status transitions to `complete`.
70
+ # @!attribute entity_csv
71
+ # Details of the entity CSV export. This field will be present when the `category`
72
+ # is equal to `entity_csv`.
36
73
  #
37
- # @return [String, nil]
38
- required :file_id, String, nil?: true
74
+ # @return [Increase::Models::Export::EntityCsv, nil]
75
+ required :entity_csv, -> { Increase::Export::EntityCsv }, nil?: true
76
+
77
+ # @!attribute form_1099_int
78
+ # Details of the Form 1099-INT export. This field will be present when the
79
+ # `category` is equal to `form_1099_int`.
80
+ #
81
+ # @return [Increase::Models::Export::Form1099Int, nil]
82
+ required :form_1099_int, -> { Increase::Export::Form1099Int }, nil?: true
83
+
84
+ # @!attribute form_1099_misc
85
+ # Details of the Form 1099-MISC export. This field will be present when the
86
+ # `category` is equal to `form_1099_misc`.
87
+ #
88
+ # @return [Increase::Models::Export::Form1099Misc, nil]
89
+ required :form_1099_misc, -> { Increase::Export::Form1099Misc }, nil?: true
90
+
91
+ # @!attribute funding_instructions
92
+ # Details of the funding instructions export. This field will be present when the
93
+ # `category` is equal to `funding_instructions`.
94
+ #
95
+ # @return [Increase::Models::Export::FundingInstructions, nil]
96
+ required :funding_instructions, -> { Increase::Export::FundingInstructions }, nil?: true
39
97
 
40
98
  # @!attribute idempotency_key
41
99
  # The idempotency key you chose for this object. This value is unique across
@@ -45,12 +103,26 @@ module Increase
45
103
  # @return [String, nil]
46
104
  required :idempotency_key, String, nil?: true
47
105
 
106
+ # @!attribute result
107
+ # The result of the Export. This will be present when the Export's status
108
+ # transitions to `complete`.
109
+ #
110
+ # @return [Increase::Models::Export::Result, nil]
111
+ required :result, -> { Increase::Export::Result }, nil?: true
112
+
48
113
  # @!attribute status
49
114
  # The status of the Export.
50
115
  #
51
116
  # @return [Symbol, Increase::Models::Export::Status]
52
117
  required :status, enum: -> { Increase::Export::Status }
53
118
 
119
+ # @!attribute transaction_csv
120
+ # Details of the transaction CSV export. This field will be present when the
121
+ # `category` is equal to `transaction_csv`.
122
+ #
123
+ # @return [Increase::Models::Export::TransactionCsv, nil]
124
+ required :transaction_csv, -> { Increase::Export::TransactionCsv }, nil?: true
125
+
54
126
  # @!attribute type
55
127
  # A constant representing the object's type. For this resource it will always be
56
128
  # `export`.
@@ -58,7 +130,14 @@ module Increase
58
130
  # @return [Symbol, Increase::Models::Export::Type]
59
131
  required :type, enum: -> { Increase::Export::Type }
60
132
 
61
- # @!method initialize(id:, category:, created_at:, file_download_url:, file_id:, idempotency_key:, status:, type:)
133
+ # @!attribute vendor_csv
134
+ # Details of the vendor CSV export. This field will be present when the `category`
135
+ # is equal to `vendor_csv`.
136
+ #
137
+ # @return [Increase::Models::Export::VendorCsv, nil]
138
+ required :vendor_csv, -> { Increase::Export::VendorCsv }, nil?: true
139
+
140
+ # @!method initialize(id:, account_statement_bai2:, account_statement_ofx:, account_verification_letter:, balance_csv:, bookkeeping_account_balance_csv:, category:, created_at:, dashboard_table_csv:, entity_csv:, form_1099_int:, form_1099_misc:, funding_instructions:, idempotency_key:, result:, status:, transaction_csv:, type:, vendor_csv:)
62
141
  # Some parameter documentations has been truncated, see {Increase::Models::Export}
63
142
  # for more details.
64
143
  #
@@ -70,19 +149,230 @@ module Increase
70
149
  #
71
150
  # @param id [String] The Export identifier.
72
151
  #
152
+ # @param account_statement_bai2 [Increase::Models::Export::AccountStatementBai2, nil] Details of the account statement BAI2 export. This field will be present when th
153
+ #
154
+ # @param account_statement_ofx [Increase::Models::Export::AccountStatementOfx, nil] Details of the account statement OFX export. This field will be present when the
155
+ #
156
+ # @param account_verification_letter [Increase::Models::Export::AccountVerificationLetter, nil] Details of the account verification letter export. This field will be present wh
157
+ #
158
+ # @param balance_csv [Increase::Models::Export::BalanceCsv, nil] Details of the balance CSV export. This field will be present when the `category
159
+ #
160
+ # @param bookkeeping_account_balance_csv [Increase::Models::Export::BookkeepingAccountBalanceCsv, nil] Details of the bookkeeping account balance CSV export. This field will be presen
161
+ #
73
162
  # @param category [Symbol, Increase::Models::Export::Category] The category of the Export. We may add additional possible values for this enum
74
163
  #
75
164
  # @param created_at [Time] The time the Export was created.
76
165
  #
77
- # @param file_download_url [String, nil] A URL at which the Export's file can be downloaded. This will be present when th
166
+ # @param dashboard_table_csv [Increase::Models::Export::DashboardTableCsv, nil] Details of the dashboard table CSV export. This field will be present when the `
167
+ #
168
+ # @param entity_csv [Increase::Models::Export::EntityCsv, nil] Details of the entity CSV export. This field will be present when the `category`
78
169
  #
79
- # @param file_id [String, nil] The File containing the contents of the Export. This will be present when the Ex
170
+ # @param form_1099_int [Increase::Models::Export::Form1099Int, nil] Details of the Form 1099-INT export. This field will be present when the `catego
171
+ #
172
+ # @param form_1099_misc [Increase::Models::Export::Form1099Misc, nil] Details of the Form 1099-MISC export. This field will be present when the `categ
173
+ #
174
+ # @param funding_instructions [Increase::Models::Export::FundingInstructions, nil] Details of the funding instructions export. This field will be present when the
80
175
  #
81
176
  # @param idempotency_key [String, nil] The idempotency key you chose for this object. This value is unique across Incre
82
177
  #
178
+ # @param result [Increase::Models::Export::Result, nil] The result of the Export. This will be present when the Export's status transiti
179
+ #
83
180
  # @param status [Symbol, Increase::Models::Export::Status] The status of the Export.
84
181
  #
182
+ # @param transaction_csv [Increase::Models::Export::TransactionCsv, nil] Details of the transaction CSV export. This field will be present when the `cate
183
+ #
85
184
  # @param type [Symbol, Increase::Models::Export::Type] A constant representing the object's type. For this resource it will always be `
185
+ #
186
+ # @param vendor_csv [Increase::Models::Export::VendorCsv, nil] Details of the vendor CSV export. This field will be present when the `category`
187
+
188
+ # @see Increase::Models::Export#account_statement_bai2
189
+ class AccountStatementBai2 < Increase::Internal::Type::BaseModel
190
+ # @!attribute account_id
191
+ # Filter results by Account.
192
+ #
193
+ # @return [String, nil]
194
+ required :account_id, String, nil?: true
195
+
196
+ # @!attribute effective_date
197
+ # The date for which to retrieve the balance.
198
+ #
199
+ # @return [Date, nil]
200
+ required :effective_date, Date, nil?: true
201
+
202
+ # @!attribute program_id
203
+ # Filter results by Program.
204
+ #
205
+ # @return [String, nil]
206
+ required :program_id, String, nil?: true
207
+
208
+ # @!method initialize(account_id:, effective_date:, program_id:)
209
+ # Details of the account statement BAI2 export. This field will be present when
210
+ # the `category` is equal to `account_statement_bai2`.
211
+ #
212
+ # @param account_id [String, nil] Filter results by Account.
213
+ #
214
+ # @param effective_date [Date, nil] The date for which to retrieve the balance.
215
+ #
216
+ # @param program_id [String, nil] Filter results by Program.
217
+ end
218
+
219
+ # @see Increase::Models::Export#account_statement_ofx
220
+ class AccountStatementOfx < Increase::Internal::Type::BaseModel
221
+ # @!attribute account_id
222
+ # The Account to create a statement for.
223
+ #
224
+ # @return [String]
225
+ required :account_id, String
226
+
227
+ # @!attribute created_at
228
+ # Filter transactions by their created date.
229
+ #
230
+ # @return [Increase::Models::Export::AccountStatementOfx::CreatedAt, nil]
231
+ required :created_at, -> { Increase::Export::AccountStatementOfx::CreatedAt }, nil?: true
232
+
233
+ # @!method initialize(account_id:, created_at:)
234
+ # Details of the account statement OFX export. This field will be present when the
235
+ # `category` is equal to `account_statement_ofx`.
236
+ #
237
+ # @param account_id [String] The Account to create a statement for.
238
+ #
239
+ # @param created_at [Increase::Models::Export::AccountStatementOfx::CreatedAt, nil] Filter transactions by their created date.
240
+
241
+ # @see Increase::Models::Export::AccountStatementOfx#created_at
242
+ class CreatedAt < Increase::Internal::Type::BaseModel
243
+ # @!attribute after
244
+ # Filter results to transactions created after this time.
245
+ #
246
+ # @return [Time, nil]
247
+ required :after, Time, nil?: true
248
+
249
+ # @!attribute before
250
+ # Filter results to transactions created before this time.
251
+ #
252
+ # @return [Time, nil]
253
+ required :before, Time, nil?: true
254
+
255
+ # @!method initialize(after:, before:)
256
+ # Filter transactions by their created date.
257
+ #
258
+ # @param after [Time, nil] Filter results to transactions created after this time.
259
+ #
260
+ # @param before [Time, nil] Filter results to transactions created before this time.
261
+ end
262
+ end
263
+
264
+ # @see Increase::Models::Export#account_verification_letter
265
+ class AccountVerificationLetter < Increase::Internal::Type::BaseModel
266
+ # @!attribute account_number_id
267
+ # The Account Number to create a letter for.
268
+ #
269
+ # @return [String]
270
+ required :account_number_id, String
271
+
272
+ # @!attribute balance_date
273
+ # The date of the balance to include in the letter.
274
+ #
275
+ # @return [Date, nil]
276
+ required :balance_date, Date, nil?: true
277
+
278
+ # @!method initialize(account_number_id:, balance_date:)
279
+ # Details of the account verification letter export. This field will be present
280
+ # when the `category` is equal to `account_verification_letter`.
281
+ #
282
+ # @param account_number_id [String] The Account Number to create a letter for.
283
+ #
284
+ # @param balance_date [Date, nil] The date of the balance to include in the letter.
285
+ end
286
+
287
+ # @see Increase::Models::Export#balance_csv
288
+ class BalanceCsv < Increase::Internal::Type::BaseModel
289
+ # @!attribute account_id
290
+ # Filter results by Account.
291
+ #
292
+ # @return [String, nil]
293
+ required :account_id, String, nil?: true
294
+
295
+ # @!attribute created_at
296
+ # Filter balances by their created date.
297
+ #
298
+ # @return [Increase::Models::Export::BalanceCsv::CreatedAt, nil]
299
+ required :created_at, -> { Increase::Export::BalanceCsv::CreatedAt }, nil?: true
300
+
301
+ # @!method initialize(account_id:, created_at:)
302
+ # Details of the balance CSV export. This field will be present when the
303
+ # `category` is equal to `balance_csv`.
304
+ #
305
+ # @param account_id [String, nil] Filter results by Account.
306
+ #
307
+ # @param created_at [Increase::Models::Export::BalanceCsv::CreatedAt, nil] Filter balances by their created date.
308
+
309
+ # @see Increase::Models::Export::BalanceCsv#created_at
310
+ class CreatedAt < Increase::Internal::Type::BaseModel
311
+ # @!attribute after
312
+ # Filter balances created after this time.
313
+ #
314
+ # @return [Time, nil]
315
+ required :after, Time, nil?: true
316
+
317
+ # @!attribute before
318
+ # Filter balances created before this time.
319
+ #
320
+ # @return [Time, nil]
321
+ required :before, Time, nil?: true
322
+
323
+ # @!method initialize(after:, before:)
324
+ # Filter balances by their created date.
325
+ #
326
+ # @param after [Time, nil] Filter balances created after this time.
327
+ #
328
+ # @param before [Time, nil] Filter balances created before this time.
329
+ end
330
+ end
331
+
332
+ # @see Increase::Models::Export#bookkeeping_account_balance_csv
333
+ class BookkeepingAccountBalanceCsv < Increase::Internal::Type::BaseModel
334
+ # @!attribute bookkeeping_account_id
335
+ # Filter results by Bookkeeping Account.
336
+ #
337
+ # @return [String, nil]
338
+ required :bookkeeping_account_id, String, nil?: true
339
+
340
+ # @!attribute created_at
341
+ # Filter balances by their created date.
342
+ #
343
+ # @return [Increase::Models::Export::BookkeepingAccountBalanceCsv::CreatedAt, nil]
344
+ required :created_at, -> { Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt }, nil?: true
345
+
346
+ # @!method initialize(bookkeeping_account_id:, created_at:)
347
+ # Details of the bookkeeping account balance CSV export. This field will be
348
+ # present when the `category` is equal to `bookkeeping_account_balance_csv`.
349
+ #
350
+ # @param bookkeeping_account_id [String, nil] Filter results by Bookkeeping Account.
351
+ #
352
+ # @param created_at [Increase::Models::Export::BookkeepingAccountBalanceCsv::CreatedAt, nil] Filter balances by their created date.
353
+
354
+ # @see Increase::Models::Export::BookkeepingAccountBalanceCsv#created_at
355
+ class CreatedAt < Increase::Internal::Type::BaseModel
356
+ # @!attribute after
357
+ # Filter balances created after this time.
358
+ #
359
+ # @return [Time, nil]
360
+ required :after, Time, nil?: true
361
+
362
+ # @!attribute before
363
+ # Filter balances created before this time.
364
+ #
365
+ # @return [Time, nil]
366
+ required :before, Time, nil?: true
367
+
368
+ # @!method initialize(after:, before:)
369
+ # Filter balances by their created date.
370
+ #
371
+ # @param after [Time, nil] Filter balances created after this time.
372
+ #
373
+ # @param before [Time, nil] Filter balances created before this time.
374
+ end
375
+ end
86
376
 
87
377
  # The category of the Export. We may add additional possible values for this enum
88
378
  # over time; your application should be able to handle that gracefully.
@@ -131,6 +421,120 @@ module Increase
131
421
  # @return [Array<Symbol>]
132
422
  end
133
423
 
424
+ # @see Increase::Models::Export#dashboard_table_csv
425
+ class DashboardTableCsv < Increase::Internal::Type::BaseModel
426
+ # @!method initialize
427
+ # Details of the dashboard table CSV export. This field will be present when the
428
+ # `category` is equal to `dashboard_table_csv`.
429
+ end
430
+
431
+ # @see Increase::Models::Export#entity_csv
432
+ class EntityCsv < Increase::Internal::Type::BaseModel
433
+ # @!method initialize
434
+ # Details of the entity CSV export. This field will be present when the `category`
435
+ # is equal to `entity_csv`.
436
+ end
437
+
438
+ # @see Increase::Models::Export#form_1099_int
439
+ class Form1099Int < Increase::Internal::Type::BaseModel
440
+ # @!attribute account_id
441
+ # The Account the tax form is for.
442
+ #
443
+ # @return [String]
444
+ required :account_id, String
445
+
446
+ # @!attribute corrected
447
+ # Whether the tax form is a corrected form.
448
+ #
449
+ # @return [Boolean]
450
+ required :corrected, Increase::Internal::Type::Boolean
451
+
452
+ # @!attribute description
453
+ # A description of the tax form.
454
+ #
455
+ # @return [String]
456
+ required :description, String
457
+
458
+ # @!attribute year
459
+ # The tax year for the tax form.
460
+ #
461
+ # @return [Integer]
462
+ required :year, Integer
463
+
464
+ # @!method initialize(account_id:, corrected:, description:, year:)
465
+ # Details of the Form 1099-INT export. This field will be present when the
466
+ # `category` is equal to `form_1099_int`.
467
+ #
468
+ # @param account_id [String] The Account the tax form is for.
469
+ #
470
+ # @param corrected [Boolean] Whether the tax form is a corrected form.
471
+ #
472
+ # @param description [String] A description of the tax form.
473
+ #
474
+ # @param year [Integer] The tax year for the tax form.
475
+ end
476
+
477
+ # @see Increase::Models::Export#form_1099_misc
478
+ class Form1099Misc < Increase::Internal::Type::BaseModel
479
+ # @!attribute account_id
480
+ # The Account the tax form is for.
481
+ #
482
+ # @return [String]
483
+ required :account_id, String
484
+
485
+ # @!attribute corrected
486
+ # Whether the tax form is a corrected form.
487
+ #
488
+ # @return [Boolean]
489
+ required :corrected, Increase::Internal::Type::Boolean
490
+
491
+ # @!attribute year
492
+ # The tax year for the tax form.
493
+ #
494
+ # @return [Integer]
495
+ required :year, Integer
496
+
497
+ # @!method initialize(account_id:, corrected:, year:)
498
+ # Details of the Form 1099-MISC export. This field will be present when the
499
+ # `category` is equal to `form_1099_misc`.
500
+ #
501
+ # @param account_id [String] The Account the tax form is for.
502
+ #
503
+ # @param corrected [Boolean] Whether the tax form is a corrected form.
504
+ #
505
+ # @param year [Integer] The tax year for the tax form.
506
+ end
507
+
508
+ # @see Increase::Models::Export#funding_instructions
509
+ class FundingInstructions < Increase::Internal::Type::BaseModel
510
+ # @!attribute account_number_id
511
+ # The Account Number to create funding instructions for.
512
+ #
513
+ # @return [String]
514
+ required :account_number_id, String
515
+
516
+ # @!method initialize(account_number_id:)
517
+ # Details of the funding instructions export. This field will be present when the
518
+ # `category` is equal to `funding_instructions`.
519
+ #
520
+ # @param account_number_id [String] The Account Number to create funding instructions for.
521
+ end
522
+
523
+ # @see Increase::Models::Export#result
524
+ class Result < Increase::Internal::Type::BaseModel
525
+ # @!attribute file_id
526
+ # The File containing the contents of the Export.
527
+ #
528
+ # @return [String]
529
+ required :file_id, String
530
+
531
+ # @!method initialize(file_id:)
532
+ # The result of the Export. This will be present when the Export's status
533
+ # transitions to `complete`.
534
+ #
535
+ # @param file_id [String] The File containing the contents of the Export.
536
+ end
537
+
134
538
  # The status of the Export.
135
539
  #
136
540
  # @see Increase::Models::Export#status
@@ -150,6 +554,51 @@ module Increase
150
554
  # @return [Array<Symbol>]
151
555
  end
152
556
 
557
+ # @see Increase::Models::Export#transaction_csv
558
+ class TransactionCsv < Increase::Internal::Type::BaseModel
559
+ # @!attribute account_id
560
+ # Filter results by Account.
561
+ #
562
+ # @return [String, nil]
563
+ required :account_id, String, nil?: true
564
+
565
+ # @!attribute created_at
566
+ # Filter transactions by their created date.
567
+ #
568
+ # @return [Increase::Models::Export::TransactionCsv::CreatedAt, nil]
569
+ required :created_at, -> { Increase::Export::TransactionCsv::CreatedAt }, nil?: true
570
+
571
+ # @!method initialize(account_id:, created_at:)
572
+ # Details of the transaction CSV export. This field will be present when the
573
+ # `category` is equal to `transaction_csv`.
574
+ #
575
+ # @param account_id [String, nil] Filter results by Account.
576
+ #
577
+ # @param created_at [Increase::Models::Export::TransactionCsv::CreatedAt, nil] Filter transactions by their created date.
578
+
579
+ # @see Increase::Models::Export::TransactionCsv#created_at
580
+ class CreatedAt < Increase::Internal::Type::BaseModel
581
+ # @!attribute after
582
+ # Filter transactions created after this time.
583
+ #
584
+ # @return [Time, nil]
585
+ required :after, Time, nil?: true
586
+
587
+ # @!attribute before
588
+ # Filter transactions created before this time.
589
+ #
590
+ # @return [Time, nil]
591
+ required :before, Time, nil?: true
592
+
593
+ # @!method initialize(after:, before:)
594
+ # Filter transactions by their created date.
595
+ #
596
+ # @param after [Time, nil] Filter transactions created after this time.
597
+ #
598
+ # @param before [Time, nil] Filter transactions created before this time.
599
+ end
600
+ end
601
+
153
602
  # A constant representing the object's type. For this resource it will always be
154
603
  # `export`.
155
604
  #
@@ -162,6 +611,13 @@ module Increase
162
611
  # @!method self.values
163
612
  # @return [Array<Symbol>]
164
613
  end
614
+
615
+ # @see Increase::Models::Export#vendor_csv
616
+ class VendorCsv < Increase::Internal::Type::BaseModel
617
+ # @!method initialize
618
+ # Details of the vendor CSV export. This field will be present when the `category`
619
+ # is equal to `vendor_csv`.
620
+ end
165
621
  end
166
622
  end
167
623
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.195.0"
4
+ VERSION = "1.197.0"
5
5
  end