increase 1.287.0 → 1.289.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: add9746713c3515567c0b92163981fd394436026e74cba3037dc6a8d82dcc251
4
- data.tar.gz: ec2597ef9b484e777eeced5b56c7a6580c534fb64a086ff919e68a38a596d8ed
3
+ metadata.gz: c1dd6b104b5f574aa632422bab4c967e6f69685b64876ba27ea12fff98ed3648
4
+ data.tar.gz: 3565701794f735aa7ad16ebd9f3330e7356ee83047495d3c688214ce37748e08
5
5
  SHA512:
6
- metadata.gz: 454adf765a8312e4e6d55d3e8b9da725e4dd0ac5b558c09a6c07fc54e6b16b69f3c394b39c8eb4de8036281a05004b022242732b85cba0b25fd3e18abaa35ea2
7
- data.tar.gz: b7db0dca96c4a795d70fd2068d55bf163d7a3d4c737ef11e9954fb4dc941e55c18fa83957f67d79840b6b595d89a32425f68a5aadc2bef01c812f8220330b476
6
+ metadata.gz: 68dcc267c4921e100897aee77414f9c7b0a787ae13ae967e323f3efaf7f1147cf5d1ef89ab5ff1b56ee5cb99a6ba4b1793501485a59a90a35b823c7f036fb633
7
+ data.tar.gz: 783c0e4eba5a0c4f780969e6dffebb11f3a496fa28df831802cc1216bc90901bcdcd866536d865bc9950ba2b01aaed40848f77f4bc58682c2f6717e02e1329f9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.289.0 (2026-04-11)
4
+
5
+ Full Changelog: [v1.288.0...v1.289.0](https://github.com/Increase/increase-ruby/compare/v1.288.0...v1.289.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([f60a660](https://github.com/Increase/increase-ruby/commit/f60a6605944da289e1142cdc51be2dbfb5acefc2))
10
+
11
+ ## 1.288.0 (2026-04-10)
12
+
13
+ Full Changelog: [v1.287.0...v1.288.0](https://github.com/Increase/increase-ruby/compare/v1.287.0...v1.288.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([a692607](https://github.com/Increase/increase-ruby/commit/a692607264414218ff762dd1912e730c1c2b94d5))
18
+
3
19
  ## 1.287.0 (2026-04-10)
4
20
 
5
21
  Full Changelog: [v1.286.0...v1.287.0](https://github.com/Increase/increase-ruby/compare/v1.286.0...v1.287.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.287.0"
18
+ gem "increase", "~> 1.289.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -364,41 +364,27 @@ module Increase
364
364
  # @return [String, nil]
365
365
  required :bookkeeping_account_id, String, nil?: true
366
366
 
367
- # @!attribute created_at
368
- # Filter balances by their created date.
367
+ # @!attribute on_or_after_date
368
+ # Filter balances to those on or after this date.
369
+ #
370
+ # @return [Date, nil]
371
+ required :on_or_after_date, Date, nil?: true
372
+
373
+ # @!attribute on_or_before_date
374
+ # Filter balances to those on or before this date.
369
375
  #
370
- # @return [Increase::Models::Export::BookkeepingAccountBalanceCsv::CreatedAt, nil]
371
- required :created_at, -> { Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt }, nil?: true
376
+ # @return [Date, nil]
377
+ required :on_or_before_date, Date, nil?: true
372
378
 
373
- # @!method initialize(bookkeeping_account_id:, created_at:)
379
+ # @!method initialize(bookkeeping_account_id:, on_or_after_date:, on_or_before_date:)
374
380
  # Details of the bookkeeping account balance CSV export. This field will be
375
381
  # present when the `category` is equal to `bookkeeping_account_balance_csv`.
376
382
  #
377
383
  # @param bookkeeping_account_id [String, nil] Filter results by Bookkeeping Account.
378
384
  #
379
- # @param created_at [Increase::Models::Export::BookkeepingAccountBalanceCsv::CreatedAt, nil] Filter balances by their created date.
380
-
381
- # @see Increase::Models::Export::BookkeepingAccountBalanceCsv#created_at
382
- class CreatedAt < Increase::Internal::Type::BaseModel
383
- # @!attribute after
384
- # Filter balances created after this time.
385
- #
386
- # @return [Time, nil]
387
- required :after, Time, nil?: true
388
-
389
- # @!attribute before
390
- # Filter balances created before this time.
391
- #
392
- # @return [Time, nil]
393
- required :before, Time, nil?: true
394
-
395
- # @!method initialize(after:, before:)
396
- # Filter balances by their created date.
397
- #
398
- # @param after [Time, nil] Filter balances created after this time.
399
- #
400
- # @param before [Time, nil] Filter balances created before this time.
401
- end
385
+ # @param on_or_after_date [Date, nil] Filter balances to those on or after this date.
386
+ #
387
+ # @param on_or_before_date [Date, nil] Filter balances to those on or before this date.
402
388
  end
403
389
 
404
390
  # The category of the Export. We may add additional possible values for this enum
@@ -34,13 +34,6 @@ module Increase
34
34
  # @return [Increase::Models::ExportCreateParams::AccountVerificationLetter, nil]
35
35
  optional :account_verification_letter, -> { Increase::ExportCreateParams::AccountVerificationLetter }
36
36
 
37
- # @!attribute balance_csv
38
- # Options for the created export. Required if `category` is equal to
39
- # `balance_csv`.
40
- #
41
- # @return [Increase::Models::ExportCreateParams::BalanceCsv, nil]
42
- optional :balance_csv, -> { Increase::ExportCreateParams::BalanceCsv }
43
-
44
37
  # @!attribute bookkeeping_account_balance_csv
45
38
  # Options for the created export. Required if `category` is equal to
46
39
  # `bookkeeping_account_balance_csv`.
@@ -89,7 +82,7 @@ module Increase
89
82
  # @return [Increase::Models::ExportCreateParams::VoidedCheck, nil]
90
83
  optional :voided_check, -> { Increase::ExportCreateParams::VoidedCheck }
91
84
 
92
- # @!method initialize(category:, account_statement_bai2: nil, account_statement_ofx: nil, account_verification_letter: nil, balance_csv: nil, bookkeeping_account_balance_csv: nil, daily_account_balance_csv: nil, entity_csv: nil, funding_instructions: nil, transaction_csv: nil, vendor_csv: nil, voided_check: nil, request_options: {})
85
+ # @!method initialize(category:, account_statement_bai2: nil, account_statement_ofx: nil, account_verification_letter: nil, bookkeeping_account_balance_csv: nil, daily_account_balance_csv: nil, entity_csv: nil, funding_instructions: nil, transaction_csv: nil, vendor_csv: nil, voided_check: nil, request_options: {})
93
86
  # Some parameter documentations has been truncated, see
94
87
  # {Increase::Models::ExportCreateParams} for more details.
95
88
  #
@@ -101,8 +94,6 @@ module Increase
101
94
  #
102
95
  # @param account_verification_letter [Increase::Models::ExportCreateParams::AccountVerificationLetter] Options for the created export. Required if `category` is equal to `account_veri
103
96
  #
104
- # @param balance_csv [Increase::Models::ExportCreateParams::BalanceCsv] Options for the created export. Required if `category` is equal to `balance_csv`
105
- #
106
97
  # @param bookkeeping_account_balance_csv [Increase::Models::ExportCreateParams::BookkeepingAccountBalanceCsv] Options for the created export. Required if `category` is equal to
107
98
  # `bookkeeping\_
108
99
  #
@@ -266,73 +257,6 @@ module Increase
266
257
  # @param balance_date [Date] The date of the balance to include in the letter. Defaults to the current date.
267
258
  end
268
259
 
269
- class BalanceCsv < Increase::Internal::Type::BaseModel
270
- # @!attribute account_id
271
- # Filter exported Balances to the specified Account.
272
- #
273
- # @return [String, nil]
274
- optional :account_id, String
275
-
276
- # @!attribute created_at
277
- # Filter results by time range on the `created_at` attribute.
278
- #
279
- # @return [Increase::Models::ExportCreateParams::BalanceCsv::CreatedAt, nil]
280
- optional :created_at, -> { Increase::ExportCreateParams::BalanceCsv::CreatedAt }
281
-
282
- # @!method initialize(account_id: nil, created_at: nil)
283
- # Options for the created export. Required if `category` is equal to
284
- # `balance_csv`.
285
- #
286
- # @param account_id [String] Filter exported Balances to the specified Account.
287
- #
288
- # @param created_at [Increase::Models::ExportCreateParams::BalanceCsv::CreatedAt] Filter results by time range on the `created_at` attribute.
289
-
290
- # @see Increase::Models::ExportCreateParams::BalanceCsv#created_at
291
- class CreatedAt < Increase::Internal::Type::BaseModel
292
- # @!attribute after
293
- # Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
294
- # timestamp.
295
- #
296
- # @return [Time, nil]
297
- optional :after, Time
298
-
299
- # @!attribute before
300
- # Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
301
- # timestamp.
302
- #
303
- # @return [Time, nil]
304
- optional :before, Time
305
-
306
- # @!attribute on_or_after
307
- # Return results on or after this
308
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
309
- #
310
- # @return [Time, nil]
311
- optional :on_or_after, Time
312
-
313
- # @!attribute on_or_before
314
- # Return results on or before this
315
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
316
- #
317
- # @return [Time, nil]
318
- optional :on_or_before, Time
319
-
320
- # @!method initialize(after: nil, before: nil, on_or_after: nil, on_or_before: nil)
321
- # Some parameter documentations has been truncated, see
322
- # {Increase::Models::ExportCreateParams::BalanceCsv::CreatedAt} for more details.
323
- #
324
- # Filter results by time range on the `created_at` attribute.
325
- #
326
- # @param after [Time] Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) tim
327
- #
328
- # @param before [Time] Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) ti
329
- #
330
- # @param on_or_after [Time] Return results on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_860
331
- #
332
- # @param on_or_before [Time] Return results on or before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_86
333
- end
334
- end
335
-
336
260
  class BookkeepingAccountBalanceCsv < Increase::Internal::Type::BaseModel
337
261
  # @!attribute bookkeeping_account_id
338
262
  # Filter exported Bookkeeping Account Balances to the specified Bookkeeping
@@ -341,13 +265,19 @@ module Increase
341
265
  # @return [String, nil]
342
266
  optional :bookkeeping_account_id, String
343
267
 
344
- # @!attribute created_at
345
- # Filter results by time range on the `created_at` attribute.
268
+ # @!attribute on_or_after_date
269
+ # Filter exported Balances to those on or after this date.
270
+ #
271
+ # @return [Date, nil]
272
+ optional :on_or_after_date, Date
273
+
274
+ # @!attribute on_or_before_date
275
+ # Filter exported Balances to those on or before this date.
346
276
  #
347
- # @return [Increase::Models::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt, nil]
348
- optional :created_at, -> { Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt }
277
+ # @return [Date, nil]
278
+ optional :on_or_before_date, Date
349
279
 
350
- # @!method initialize(bookkeeping_account_id: nil, created_at: nil)
280
+ # @!method initialize(bookkeeping_account_id: nil, on_or_after_date: nil, on_or_before_date: nil)
351
281
  # Some parameter documentations has been truncated, see
352
282
  # {Increase::Models::ExportCreateParams::BookkeepingAccountBalanceCsv} for more
353
283
  # details.
@@ -357,53 +287,9 @@ module Increase
357
287
  #
358
288
  # @param bookkeeping_account_id [String] Filter exported Bookkeeping Account Balances to the specified Bookkeeping Accoun
359
289
  #
360
- # @param created_at [Increase::Models::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt] Filter results by time range on the `created_at` attribute.
361
-
362
- # @see Increase::Models::ExportCreateParams::BookkeepingAccountBalanceCsv#created_at
363
- class CreatedAt < Increase::Internal::Type::BaseModel
364
- # @!attribute after
365
- # Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
366
- # timestamp.
367
- #
368
- # @return [Time, nil]
369
- optional :after, Time
370
-
371
- # @!attribute before
372
- # Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
373
- # timestamp.
374
- #
375
- # @return [Time, nil]
376
- optional :before, Time
377
-
378
- # @!attribute on_or_after
379
- # Return results on or after this
380
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
381
- #
382
- # @return [Time, nil]
383
- optional :on_or_after, Time
384
-
385
- # @!attribute on_or_before
386
- # Return results on or before this
387
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
388
- #
389
- # @return [Time, nil]
390
- optional :on_or_before, Time
391
-
392
- # @!method initialize(after: nil, before: nil, on_or_after: nil, on_or_before: nil)
393
- # Some parameter documentations has been truncated, see
394
- # {Increase::Models::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt}
395
- # for more details.
396
- #
397
- # Filter results by time range on the `created_at` attribute.
398
- #
399
- # @param after [Time] Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) tim
400
- #
401
- # @param before [Time] Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) ti
402
- #
403
- # @param on_or_after [Time] Return results on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_860
404
- #
405
- # @param on_or_before [Time] Return results on or before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_86
406
- end
290
+ # @param on_or_after_date [Date] Filter exported Balances to those on or after this date.
291
+ #
292
+ # @param on_or_before_date [Date] Filter exported Balances to those on or before this date.
407
293
  end
408
294
 
409
295
  class DailyAccountBalanceCsv < Increase::Internal::Type::BaseModel
@@ -8,7 +8,7 @@ module Increase
8
8
  #
9
9
  # Create an Export
10
10
  #
11
- # @overload create(category:, account_statement_bai2: nil, account_statement_ofx: nil, account_verification_letter: nil, balance_csv: nil, bookkeeping_account_balance_csv: nil, daily_account_balance_csv: nil, entity_csv: nil, funding_instructions: nil, transaction_csv: nil, vendor_csv: nil, voided_check: nil, request_options: {})
11
+ # @overload create(category:, account_statement_bai2: nil, account_statement_ofx: nil, account_verification_letter: nil, bookkeeping_account_balance_csv: nil, daily_account_balance_csv: nil, entity_csv: nil, funding_instructions: nil, transaction_csv: nil, vendor_csv: nil, voided_check: nil, request_options: {})
12
12
  #
13
13
  # @param category [Symbol, Increase::Models::ExportCreateParams::Category] The type of Export to create.
14
14
  #
@@ -18,8 +18,6 @@ module Increase
18
18
  #
19
19
  # @param account_verification_letter [Increase::Models::ExportCreateParams::AccountVerificationLetter] Options for the created export. Required if `category` is equal to `account_veri
20
20
  #
21
- # @param balance_csv [Increase::Models::ExportCreateParams::BalanceCsv] Options for the created export. Required if `category` is equal to `balance_csv`
22
- #
23
21
  # @param bookkeeping_account_balance_csv [Increase::Models::ExportCreateParams::BookkeepingAccountBalanceCsv] Options for the created export. Required if `category` is equal to
24
22
  # `bookkeeping\_
25
23
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.287.0"
4
+ VERSION = "1.289.0"
5
5
  end
@@ -665,40 +665,30 @@ module Increase
665
665
  sig { returns(T.nilable(String)) }
666
666
  attr_accessor :bookkeeping_account_id
667
667
 
668
- # Filter balances by their created date.
669
- sig do
670
- returns(
671
- T.nilable(Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt)
672
- )
673
- end
674
- attr_reader :created_at
668
+ # Filter balances to those on or after this date.
669
+ sig { returns(T.nilable(Date)) }
670
+ attr_accessor :on_or_after_date
675
671
 
676
- sig do
677
- params(
678
- created_at:
679
- T.nilable(
680
- Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt::OrHash
681
- )
682
- ).void
683
- end
684
- attr_writer :created_at
672
+ # Filter balances to those on or before this date.
673
+ sig { returns(T.nilable(Date)) }
674
+ attr_accessor :on_or_before_date
685
675
 
686
676
  # Details of the bookkeeping account balance CSV export. This field will be
687
677
  # present when the `category` is equal to `bookkeeping_account_balance_csv`.
688
678
  sig do
689
679
  params(
690
680
  bookkeeping_account_id: T.nilable(String),
691
- created_at:
692
- T.nilable(
693
- Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt::OrHash
694
- )
681
+ on_or_after_date: T.nilable(Date),
682
+ on_or_before_date: T.nilable(Date)
695
683
  ).returns(T.attached_class)
696
684
  end
697
685
  def self.new(
698
686
  # Filter results by Bookkeeping Account.
699
687
  bookkeeping_account_id:,
700
- # Filter balances by their created date.
701
- created_at:
688
+ # Filter balances to those on or after this date.
689
+ on_or_after_date:,
690
+ # Filter balances to those on or before this date.
691
+ on_or_before_date:
702
692
  )
703
693
  end
704
694
 
@@ -706,55 +696,13 @@ module Increase
706
696
  override.returns(
707
697
  {
708
698
  bookkeeping_account_id: T.nilable(String),
709
- created_at:
710
- T.nilable(
711
- Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt
712
- )
699
+ on_or_after_date: T.nilable(Date),
700
+ on_or_before_date: T.nilable(Date)
713
701
  }
714
702
  )
715
703
  end
716
704
  def to_hash
717
705
  end
718
-
719
- class CreatedAt < Increase::Internal::Type::BaseModel
720
- OrHash =
721
- T.type_alias do
722
- T.any(
723
- Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt,
724
- Increase::Internal::AnyHash
725
- )
726
- end
727
-
728
- # Filter balances created after this time.
729
- sig { returns(T.nilable(Time)) }
730
- attr_accessor :after
731
-
732
- # Filter balances created before this time.
733
- sig { returns(T.nilable(Time)) }
734
- attr_accessor :before
735
-
736
- # Filter balances by their created date.
737
- sig do
738
- params(after: T.nilable(Time), before: T.nilable(Time)).returns(
739
- T.attached_class
740
- )
741
- end
742
- def self.new(
743
- # Filter balances created after this time.
744
- after:,
745
- # Filter balances created before this time.
746
- before:
747
- )
748
- end
749
-
750
- sig do
751
- override.returns(
752
- { after: T.nilable(Time), before: T.nilable(Time) }
753
- )
754
- end
755
- def to_hash
756
- end
757
- end
758
706
  end
759
707
 
760
708
  # The category of the Export. We may add additional possible values for this enum
@@ -62,18 +62,6 @@ module Increase
62
62
  end
63
63
  attr_writer :account_verification_letter
64
64
 
65
- # Options for the created export. Required if `category` is equal to
66
- # `balance_csv`.
67
- sig { returns(T.nilable(Increase::ExportCreateParams::BalanceCsv)) }
68
- attr_reader :balance_csv
69
-
70
- sig do
71
- params(
72
- balance_csv: Increase::ExportCreateParams::BalanceCsv::OrHash
73
- ).void
74
- end
75
- attr_writer :balance_csv
76
-
77
65
  # Options for the created export. Required if `category` is equal to
78
66
  # `bookkeeping_account_balance_csv`.
79
67
  sig do
@@ -172,7 +160,6 @@ module Increase
172
160
  Increase::ExportCreateParams::AccountStatementOfx::OrHash,
173
161
  account_verification_letter:
174
162
  Increase::ExportCreateParams::AccountVerificationLetter::OrHash,
175
- balance_csv: Increase::ExportCreateParams::BalanceCsv::OrHash,
176
163
  bookkeeping_account_balance_csv:
177
164
  Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::OrHash,
178
165
  daily_account_balance_csv:
@@ -199,9 +186,6 @@ module Increase
199
186
  # `account_verification_letter`.
200
187
  account_verification_letter: nil,
201
188
  # Options for the created export. Required if `category` is equal to
202
- # `balance_csv`.
203
- balance_csv: nil,
204
- # Options for the created export. Required if `category` is equal to
205
189
  # `bookkeeping_account_balance_csv`.
206
190
  bookkeeping_account_balance_csv: nil,
207
191
  # Options for the created export. Required if `category` is equal to
@@ -234,7 +218,6 @@ module Increase
234
218
  Increase::ExportCreateParams::AccountStatementOfx,
235
219
  account_verification_letter:
236
220
  Increase::ExportCreateParams::AccountVerificationLetter,
237
- balance_csv: Increase::ExportCreateParams::BalanceCsv,
238
221
  bookkeeping_account_balance_csv:
239
222
  Increase::ExportCreateParams::BookkeepingAccountBalanceCsv,
240
223
  daily_account_balance_csv:
@@ -557,147 +540,6 @@ module Increase
557
540
  end
558
541
  end
559
542
 
560
- class BalanceCsv < Increase::Internal::Type::BaseModel
561
- OrHash =
562
- T.type_alias do
563
- T.any(
564
- Increase::ExportCreateParams::BalanceCsv,
565
- Increase::Internal::AnyHash
566
- )
567
- end
568
-
569
- # Filter exported Balances to the specified Account.
570
- sig { returns(T.nilable(String)) }
571
- attr_reader :account_id
572
-
573
- sig { params(account_id: String).void }
574
- attr_writer :account_id
575
-
576
- # Filter results by time range on the `created_at` attribute.
577
- sig do
578
- returns(
579
- T.nilable(Increase::ExportCreateParams::BalanceCsv::CreatedAt)
580
- )
581
- end
582
- attr_reader :created_at
583
-
584
- sig do
585
- params(
586
- created_at:
587
- Increase::ExportCreateParams::BalanceCsv::CreatedAt::OrHash
588
- ).void
589
- end
590
- attr_writer :created_at
591
-
592
- # Options for the created export. Required if `category` is equal to
593
- # `balance_csv`.
594
- sig do
595
- params(
596
- account_id: String,
597
- created_at:
598
- Increase::ExportCreateParams::BalanceCsv::CreatedAt::OrHash
599
- ).returns(T.attached_class)
600
- end
601
- def self.new(
602
- # Filter exported Balances to the specified Account.
603
- account_id: nil,
604
- # Filter results by time range on the `created_at` attribute.
605
- created_at: nil
606
- )
607
- end
608
-
609
- sig do
610
- override.returns(
611
- {
612
- account_id: String,
613
- created_at: Increase::ExportCreateParams::BalanceCsv::CreatedAt
614
- }
615
- )
616
- end
617
- def to_hash
618
- end
619
-
620
- class CreatedAt < Increase::Internal::Type::BaseModel
621
- OrHash =
622
- T.type_alias do
623
- T.any(
624
- Increase::ExportCreateParams::BalanceCsv::CreatedAt,
625
- Increase::Internal::AnyHash
626
- )
627
- end
628
-
629
- # Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
630
- # timestamp.
631
- sig { returns(T.nilable(Time)) }
632
- attr_reader :after
633
-
634
- sig { params(after: Time).void }
635
- attr_writer :after
636
-
637
- # Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
638
- # timestamp.
639
- sig { returns(T.nilable(Time)) }
640
- attr_reader :before
641
-
642
- sig { params(before: Time).void }
643
- attr_writer :before
644
-
645
- # Return results on or after this
646
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
647
- sig { returns(T.nilable(Time)) }
648
- attr_reader :on_or_after
649
-
650
- sig { params(on_or_after: Time).void }
651
- attr_writer :on_or_after
652
-
653
- # Return results on or before this
654
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
655
- sig { returns(T.nilable(Time)) }
656
- attr_reader :on_or_before
657
-
658
- sig { params(on_or_before: Time).void }
659
- attr_writer :on_or_before
660
-
661
- # Filter results by time range on the `created_at` attribute.
662
- sig do
663
- params(
664
- after: Time,
665
- before: Time,
666
- on_or_after: Time,
667
- on_or_before: Time
668
- ).returns(T.attached_class)
669
- end
670
- def self.new(
671
- # Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
672
- # timestamp.
673
- after: nil,
674
- # Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
675
- # timestamp.
676
- before: nil,
677
- # Return results on or after this
678
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
679
- on_or_after: nil,
680
- # Return results on or before this
681
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
682
- on_or_before: nil
683
- )
684
- end
685
-
686
- sig do
687
- override.returns(
688
- {
689
- after: Time,
690
- before: Time,
691
- on_or_after: Time,
692
- on_or_before: Time
693
- }
694
- )
695
- end
696
- def to_hash
697
- end
698
- end
699
- end
700
-
701
543
  class BookkeepingAccountBalanceCsv < Increase::Internal::Type::BaseModel
702
544
  OrHash =
703
545
  T.type_alias do
@@ -715,39 +557,37 @@ module Increase
715
557
  sig { params(bookkeeping_account_id: String).void }
716
558
  attr_writer :bookkeeping_account_id
717
559
 
718
- # Filter results by time range on the `created_at` attribute.
719
- sig do
720
- returns(
721
- T.nilable(
722
- Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt
723
- )
724
- )
725
- end
726
- attr_reader :created_at
560
+ # Filter exported Balances to those on or after this date.
561
+ sig { returns(T.nilable(Date)) }
562
+ attr_reader :on_or_after_date
727
563
 
728
- sig do
729
- params(
730
- created_at:
731
- Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt::OrHash
732
- ).void
733
- end
734
- attr_writer :created_at
564
+ sig { params(on_or_after_date: Date).void }
565
+ attr_writer :on_or_after_date
566
+
567
+ # Filter exported Balances to those on or before this date.
568
+ sig { returns(T.nilable(Date)) }
569
+ attr_reader :on_or_before_date
570
+
571
+ sig { params(on_or_before_date: Date).void }
572
+ attr_writer :on_or_before_date
735
573
 
736
574
  # Options for the created export. Required if `category` is equal to
737
575
  # `bookkeeping_account_balance_csv`.
738
576
  sig do
739
577
  params(
740
578
  bookkeeping_account_id: String,
741
- created_at:
742
- Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt::OrHash
579
+ on_or_after_date: Date,
580
+ on_or_before_date: Date
743
581
  ).returns(T.attached_class)
744
582
  end
745
583
  def self.new(
746
584
  # Filter exported Bookkeeping Account Balances to the specified Bookkeeping
747
585
  # Account.
748
586
  bookkeeping_account_id: nil,
749
- # Filter results by time range on the `created_at` attribute.
750
- created_at: nil
587
+ # Filter exported Balances to those on or after this date.
588
+ on_or_after_date: nil,
589
+ # Filter exported Balances to those on or before this date.
590
+ on_or_before_date: nil
751
591
  )
752
592
  end
753
593
 
@@ -755,93 +595,13 @@ module Increase
755
595
  override.returns(
756
596
  {
757
597
  bookkeeping_account_id: String,
758
- created_at:
759
- Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt
598
+ on_or_after_date: Date,
599
+ on_or_before_date: Date
760
600
  }
761
601
  )
762
602
  end
763
603
  def to_hash
764
604
  end
765
-
766
- class CreatedAt < Increase::Internal::Type::BaseModel
767
- OrHash =
768
- T.type_alias do
769
- T.any(
770
- Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt,
771
- Increase::Internal::AnyHash
772
- )
773
- end
774
-
775
- # Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
776
- # timestamp.
777
- sig { returns(T.nilable(Time)) }
778
- attr_reader :after
779
-
780
- sig { params(after: Time).void }
781
- attr_writer :after
782
-
783
- # Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
784
- # timestamp.
785
- sig { returns(T.nilable(Time)) }
786
- attr_reader :before
787
-
788
- sig { params(before: Time).void }
789
- attr_writer :before
790
-
791
- # Return results on or after this
792
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
793
- sig { returns(T.nilable(Time)) }
794
- attr_reader :on_or_after
795
-
796
- sig { params(on_or_after: Time).void }
797
- attr_writer :on_or_after
798
-
799
- # Return results on or before this
800
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
801
- sig { returns(T.nilable(Time)) }
802
- attr_reader :on_or_before
803
-
804
- sig { params(on_or_before: Time).void }
805
- attr_writer :on_or_before
806
-
807
- # Filter results by time range on the `created_at` attribute.
808
- sig do
809
- params(
810
- after: Time,
811
- before: Time,
812
- on_or_after: Time,
813
- on_or_before: Time
814
- ).returns(T.attached_class)
815
- end
816
- def self.new(
817
- # Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
818
- # timestamp.
819
- after: nil,
820
- # Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
821
- # timestamp.
822
- before: nil,
823
- # Return results on or after this
824
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
825
- on_or_after: nil,
826
- # Return results on or before this
827
- # [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
828
- on_or_before: nil
829
- )
830
- end
831
-
832
- sig do
833
- override.returns(
834
- {
835
- after: Time,
836
- before: Time,
837
- on_or_after: Time,
838
- on_or_before: Time
839
- }
840
- )
841
- end
842
- def to_hash
843
- end
844
- end
845
605
  end
846
606
 
847
607
  class DailyAccountBalanceCsv < Increase::Internal::Type::BaseModel
@@ -13,7 +13,6 @@ module Increase
13
13
  Increase::ExportCreateParams::AccountStatementOfx::OrHash,
14
14
  account_verification_letter:
15
15
  Increase::ExportCreateParams::AccountVerificationLetter::OrHash,
16
- balance_csv: Increase::ExportCreateParams::BalanceCsv::OrHash,
17
16
  bookkeeping_account_balance_csv:
18
17
  Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::OrHash,
19
18
  daily_account_balance_csv:
@@ -40,9 +39,6 @@ module Increase
40
39
  # `account_verification_letter`.
41
40
  account_verification_letter: nil,
42
41
  # Options for the created export. Required if `category` is equal to
43
- # `balance_csv`.
44
- balance_csv: nil,
45
- # Options for the created export. Required if `category` is equal to
46
42
  # `bookkeeping_account_balance_csv`.
47
43
  bookkeeping_account_balance_csv: nil,
48
44
  # Options for the created export. Required if `category` is equal to
@@ -228,35 +228,28 @@ module Increase
228
228
  type bookkeeping_account_balance_csv =
229
229
  {
230
230
  bookkeeping_account_id: String?,
231
- created_at: Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt?
231
+ on_or_after_date: Date?,
232
+ on_or_before_date: Date?
232
233
  }
233
234
 
234
235
  class BookkeepingAccountBalanceCsv < Increase::Internal::Type::BaseModel
235
236
  attr_accessor bookkeeping_account_id: String?
236
237
 
237
- attr_accessor created_at: Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt?
238
+ attr_accessor on_or_after_date: Date?
239
+
240
+ attr_accessor on_or_before_date: Date?
238
241
 
239
242
  def initialize: (
240
243
  bookkeeping_account_id: String?,
241
- created_at: Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt?
244
+ on_or_after_date: Date?,
245
+ on_or_before_date: Date?
242
246
  ) -> void
243
247
 
244
248
  def to_hash: -> {
245
249
  bookkeeping_account_id: String?,
246
- created_at: Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt?
250
+ on_or_after_date: Date?,
251
+ on_or_before_date: Date?
247
252
  }
248
-
249
- type created_at = { after: Time?, before: Time? }
250
-
251
- class CreatedAt < Increase::Internal::Type::BaseModel
252
- attr_accessor after: Time?
253
-
254
- attr_accessor before: Time?
255
-
256
- def initialize: (after: Time?, before: Time?) -> void
257
-
258
- def to_hash: -> { after: Time?, before: Time? }
259
- end
260
253
  end
261
254
 
262
255
  type category =
@@ -6,7 +6,6 @@ module Increase
6
6
  :account_statement_bai2 => Increase::ExportCreateParams::AccountStatementBai2,
7
7
  account_statement_ofx: Increase::ExportCreateParams::AccountStatementOfx,
8
8
  account_verification_letter: Increase::ExportCreateParams::AccountVerificationLetter,
9
- balance_csv: Increase::ExportCreateParams::BalanceCsv,
10
9
  bookkeeping_account_balance_csv: Increase::ExportCreateParams::BookkeepingAccountBalanceCsv,
11
10
  daily_account_balance_csv: Increase::ExportCreateParams::DailyAccountBalanceCsv,
12
11
  entity_csv: Increase::ExportCreateParams::EntityCsv,
@@ -41,12 +40,6 @@ module Increase
41
40
  Increase::ExportCreateParams::AccountVerificationLetter
42
41
  ) -> Increase::ExportCreateParams::AccountVerificationLetter
43
42
 
44
- attr_reader balance_csv: Increase::ExportCreateParams::BalanceCsv?
45
-
46
- def balance_csv=: (
47
- Increase::ExportCreateParams::BalanceCsv
48
- ) -> Increase::ExportCreateParams::BalanceCsv
49
-
50
43
  attr_reader bookkeeping_account_balance_csv: Increase::ExportCreateParams::BookkeepingAccountBalanceCsv?
51
44
 
52
45
  def bookkeeping_account_balance_csv=: (
@@ -94,7 +87,6 @@ module Increase
94
87
  ?account_statement_bai2: Increase::ExportCreateParams::AccountStatementBai2,
95
88
  ?account_statement_ofx: Increase::ExportCreateParams::AccountStatementOfx,
96
89
  ?account_verification_letter: Increase::ExportCreateParams::AccountVerificationLetter,
97
- ?balance_csv: Increase::ExportCreateParams::BalanceCsv,
98
90
  ?bookkeeping_account_balance_csv: Increase::ExportCreateParams::BookkeepingAccountBalanceCsv,
99
91
  ?daily_account_balance_csv: Increase::ExportCreateParams::DailyAccountBalanceCsv,
100
92
  ?entity_csv: Increase::ExportCreateParams::EntityCsv,
@@ -110,7 +102,6 @@ module Increase
110
102
  :account_statement_bai2 => Increase::ExportCreateParams::AccountStatementBai2,
111
103
  account_statement_ofx: Increase::ExportCreateParams::AccountStatementOfx,
112
104
  account_verification_letter: Increase::ExportCreateParams::AccountVerificationLetter,
113
- balance_csv: Increase::ExportCreateParams::BalanceCsv,
114
105
  bookkeeping_account_balance_csv: Increase::ExportCreateParams::BookkeepingAccountBalanceCsv,
115
106
  daily_account_balance_csv: Increase::ExportCreateParams::DailyAccountBalanceCsv,
116
107
  entity_csv: Increase::ExportCreateParams::EntityCsv,
@@ -259,73 +250,11 @@ module Increase
259
250
  def to_hash: -> { account_number_id: String, balance_date: Date }
260
251
  end
261
252
 
262
- type balance_csv =
263
- {
264
- account_id: String,
265
- created_at: Increase::ExportCreateParams::BalanceCsv::CreatedAt
266
- }
267
-
268
- class BalanceCsv < Increase::Internal::Type::BaseModel
269
- attr_reader account_id: String?
270
-
271
- def account_id=: (String) -> String
272
-
273
- attr_reader created_at: Increase::ExportCreateParams::BalanceCsv::CreatedAt?
274
-
275
- def created_at=: (
276
- Increase::ExportCreateParams::BalanceCsv::CreatedAt
277
- ) -> Increase::ExportCreateParams::BalanceCsv::CreatedAt
278
-
279
- def initialize: (
280
- ?account_id: String,
281
- ?created_at: Increase::ExportCreateParams::BalanceCsv::CreatedAt
282
- ) -> void
283
-
284
- def to_hash: -> {
285
- account_id: String,
286
- created_at: Increase::ExportCreateParams::BalanceCsv::CreatedAt
287
- }
288
-
289
- type created_at =
290
- { after: Time, before: Time, on_or_after: Time, on_or_before: Time }
291
-
292
- class CreatedAt < Increase::Internal::Type::BaseModel
293
- attr_reader after: Time?
294
-
295
- def after=: (Time) -> Time
296
-
297
- attr_reader before: Time?
298
-
299
- def before=: (Time) -> Time
300
-
301
- attr_reader on_or_after: Time?
302
-
303
- def on_or_after=: (Time) -> Time
304
-
305
- attr_reader on_or_before: Time?
306
-
307
- def on_or_before=: (Time) -> Time
308
-
309
- def initialize: (
310
- ?after: Time,
311
- ?before: Time,
312
- ?on_or_after: Time,
313
- ?on_or_before: Time
314
- ) -> void
315
-
316
- def to_hash: -> {
317
- after: Time,
318
- before: Time,
319
- on_or_after: Time,
320
- on_or_before: Time
321
- }
322
- end
323
- end
324
-
325
253
  type bookkeeping_account_balance_csv =
326
254
  {
327
255
  bookkeeping_account_id: String,
328
- created_at: Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt
256
+ on_or_after_date: Date,
257
+ on_or_before_date: Date
329
258
  }
330
259
 
331
260
  class BookkeepingAccountBalanceCsv < Increase::Internal::Type::BaseModel
@@ -333,56 +262,25 @@ module Increase
333
262
 
334
263
  def bookkeeping_account_id=: (String) -> String
335
264
 
336
- attr_reader created_at: Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt?
265
+ attr_reader on_or_after_date: Date?
337
266
 
338
- def created_at=: (
339
- Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt
340
- ) -> Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt
267
+ def on_or_after_date=: (Date) -> Date
268
+
269
+ attr_reader on_or_before_date: Date?
270
+
271
+ def on_or_before_date=: (Date) -> Date
341
272
 
342
273
  def initialize: (
343
274
  ?bookkeeping_account_id: String,
344
- ?created_at: Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt
275
+ ?on_or_after_date: Date,
276
+ ?on_or_before_date: Date
345
277
  ) -> void
346
278
 
347
279
  def to_hash: -> {
348
280
  bookkeeping_account_id: String,
349
- created_at: Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt
281
+ on_or_after_date: Date,
282
+ on_or_before_date: Date
350
283
  }
351
-
352
- type created_at =
353
- { after: Time, before: Time, on_or_after: Time, on_or_before: Time }
354
-
355
- class CreatedAt < Increase::Internal::Type::BaseModel
356
- attr_reader after: Time?
357
-
358
- def after=: (Time) -> Time
359
-
360
- attr_reader before: Time?
361
-
362
- def before=: (Time) -> Time
363
-
364
- attr_reader on_or_after: Time?
365
-
366
- def on_or_after=: (Time) -> Time
367
-
368
- attr_reader on_or_before: Time?
369
-
370
- def on_or_before=: (Time) -> Time
371
-
372
- def initialize: (
373
- ?after: Time,
374
- ?before: Time,
375
- ?on_or_after: Time,
376
- ?on_or_before: Time
377
- ) -> void
378
-
379
- def to_hash: -> {
380
- after: Time,
381
- before: Time,
382
- on_or_after: Time,
383
- on_or_before: Time
384
- }
385
- end
386
284
  end
387
285
 
388
286
  type daily_account_balance_csv =
@@ -6,7 +6,6 @@ module Increase
6
6
  ?account_statement_bai2: Increase::ExportCreateParams::AccountStatementBai2,
7
7
  ?account_statement_ofx: Increase::ExportCreateParams::AccountStatementOfx,
8
8
  ?account_verification_letter: Increase::ExportCreateParams::AccountVerificationLetter,
9
- ?balance_csv: Increase::ExportCreateParams::BalanceCsv,
10
9
  ?bookkeeping_account_balance_csv: Increase::ExportCreateParams::BookkeepingAccountBalanceCsv,
11
10
  ?daily_account_balance_csv: Increase::ExportCreateParams::DailyAccountBalanceCsv,
12
11
  ?entity_csv: Increase::ExportCreateParams::EntityCsv,
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.287.0
4
+ version: 1.289.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-04-10 00:00:00.000000000 Z
11
+ date: 2026-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi