increase 1.286.0 → 1.288.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 +23 -37
- data/lib/increase/models/export_create_params.rb +22 -84
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/export.rbi +26 -77
- data/rbi/increase/models/export_create_params.rbi +30 -152
- data/sig/increase/models/export.rbs +14 -21
- data/sig/increase/models/export_create_params.rbs +15 -64
- 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: 011b538550ff07f3f3d4c6c24a53cfa3eea6f81dd5016fdc059e90179102e7f4
|
|
4
|
+
data.tar.gz: a34895560589a1593d61a89f6f0bb2854c007f7f2285b0c975b6219537519fda
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6ea5aa0f9294e6924d3d6b8944a7756bc8671641e2405f62d450c296f4f77b82bb5afe7446246605064ef6d90250ad5bc665567045af54b05d6a5a8c25c8f0cc
|
|
7
|
+
data.tar.gz: bf83b07e8cfc87913e977530cad16ca40bd140f94ac737d5616d8a2a35e33f78043d50759aa57defc54c8bf844fc368ab3a4ecd4d730af6c999c22cb9440e376
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.288.0 (2026-04-10)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.287.0...v1.288.0](https://github.com/Increase/increase-ruby/compare/v1.287.0...v1.288.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([a692607](https://github.com/Increase/increase-ruby/commit/a692607264414218ff762dd1912e730c1c2b94d5))
|
|
10
|
+
|
|
11
|
+
## 1.287.0 (2026-04-10)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.286.0...v1.287.0](https://github.com/Increase/increase-ruby/compare/v1.286.0...v1.287.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([99200c3](https://github.com/Increase/increase-ruby/commit/99200c3e0dc089ea2e76475ae04e3a501060ab01))
|
|
18
|
+
|
|
3
19
|
## 1.286.0 (2026-04-09)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.285.0...v1.286.0](https://github.com/Increase/increase-ruby/compare/v1.285.0...v1.286.0)
|
data/README.md
CHANGED
|
@@ -267,24 +267,24 @@ module Increase
|
|
|
267
267
|
|
|
268
268
|
# @see Increase::Models::Export::AccountStatementOfx#created_at
|
|
269
269
|
class CreatedAt < Increase::Internal::Type::BaseModel
|
|
270
|
-
# @!attribute after
|
|
271
|
-
# Filter results to transactions created after this time.
|
|
272
|
-
#
|
|
273
|
-
# @return [Time, nil]
|
|
274
|
-
required :after, Time, nil?: true
|
|
275
|
-
|
|
276
270
|
# @!attribute before
|
|
277
271
|
# Filter results to transactions created before this time.
|
|
278
272
|
#
|
|
279
273
|
# @return [Time, nil]
|
|
280
274
|
required :before, Time, nil?: true
|
|
281
275
|
|
|
282
|
-
# @!
|
|
283
|
-
# Filter
|
|
276
|
+
# @!attribute on_or_after
|
|
277
|
+
# Filter results to transactions created on or after this time.
|
|
284
278
|
#
|
|
285
|
-
# @
|
|
279
|
+
# @return [Time, nil]
|
|
280
|
+
required :on_or_after, Time, nil?: true
|
|
281
|
+
|
|
282
|
+
# @!method initialize(before:, on_or_after:)
|
|
283
|
+
# Filter transactions by their created date.
|
|
286
284
|
#
|
|
287
285
|
# @param before [Time, nil] Filter results to transactions created before this time.
|
|
286
|
+
#
|
|
287
|
+
# @param on_or_after [Time, nil] Filter results to transactions created on or after this time.
|
|
288
288
|
end
|
|
289
289
|
end
|
|
290
290
|
|
|
@@ -364,41 +364,27 @@ module Increase
|
|
|
364
364
|
# @return [String, nil]
|
|
365
365
|
required :bookkeeping_account_id, String, nil?: true
|
|
366
366
|
|
|
367
|
-
# @!attribute
|
|
368
|
-
# Filter balances
|
|
367
|
+
# @!attribute on_or_after_date
|
|
368
|
+
# Filter balances to those on or after this date.
|
|
369
369
|
#
|
|
370
|
-
# @return [
|
|
371
|
-
required :
|
|
370
|
+
# @return [Date, nil]
|
|
371
|
+
required :on_or_after_date, Date, nil?: true
|
|
372
372
|
|
|
373
|
-
# @!
|
|
373
|
+
# @!attribute on_or_before_date
|
|
374
|
+
# Filter balances to those on or before this date.
|
|
375
|
+
#
|
|
376
|
+
# @return [Date, nil]
|
|
377
|
+
required :on_or_before_date, Date, nil?: true
|
|
378
|
+
|
|
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
|
|
380
|
-
|
|
381
|
-
#
|
|
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
|
|
@@ -208,7 +208,7 @@ module Increase
|
|
|
208
208
|
required :account_id, String
|
|
209
209
|
|
|
210
210
|
# @!attribute created_at
|
|
211
|
-
# Filter
|
|
211
|
+
# Filter transactions by their created date.
|
|
212
212
|
#
|
|
213
213
|
# @return [Increase::Models::ExportCreateParams::AccountStatementOfx::CreatedAt, nil]
|
|
214
214
|
optional :created_at, -> { Increase::ExportCreateParams::AccountStatementOfx::CreatedAt }
|
|
@@ -219,52 +219,28 @@ module Increase
|
|
|
219
219
|
#
|
|
220
220
|
# @param account_id [String] The Account to create a statement for.
|
|
221
221
|
#
|
|
222
|
-
# @param created_at [Increase::Models::ExportCreateParams::AccountStatementOfx::CreatedAt] Filter
|
|
222
|
+
# @param created_at [Increase::Models::ExportCreateParams::AccountStatementOfx::CreatedAt] Filter transactions by their created date.
|
|
223
223
|
|
|
224
224
|
# @see Increase::Models::ExportCreateParams::AccountStatementOfx#created_at
|
|
225
225
|
class CreatedAt < Increase::Internal::Type::BaseModel
|
|
226
|
-
# @!attribute after
|
|
227
|
-
# Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
228
|
-
# timestamp.
|
|
229
|
-
#
|
|
230
|
-
# @return [Time, nil]
|
|
231
|
-
optional :after, Time
|
|
232
|
-
|
|
233
226
|
# @!attribute before
|
|
234
|
-
#
|
|
235
|
-
# timestamp.
|
|
227
|
+
# Filter results to transactions created before this time.
|
|
236
228
|
#
|
|
237
229
|
# @return [Time, nil]
|
|
238
230
|
optional :before, Time
|
|
239
231
|
|
|
240
232
|
# @!attribute on_or_after
|
|
241
|
-
#
|
|
242
|
-
# [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
233
|
+
# Filter results to transactions created on or after this time.
|
|
243
234
|
#
|
|
244
235
|
# @return [Time, nil]
|
|
245
236
|
optional :on_or_after, Time
|
|
246
237
|
|
|
247
|
-
# @!
|
|
248
|
-
#
|
|
249
|
-
# [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
250
|
-
#
|
|
251
|
-
# @return [Time, nil]
|
|
252
|
-
optional :on_or_before, Time
|
|
253
|
-
|
|
254
|
-
# @!method initialize(after: nil, before: nil, on_or_after: nil, on_or_before: nil)
|
|
255
|
-
# Some parameter documentations has been truncated, see
|
|
256
|
-
# {Increase::Models::ExportCreateParams::AccountStatementOfx::CreatedAt} for more
|
|
257
|
-
# details.
|
|
238
|
+
# @!method initialize(before: nil, on_or_after: nil)
|
|
239
|
+
# Filter transactions by their created date.
|
|
258
240
|
#
|
|
259
|
-
# Filter results
|
|
260
|
-
#
|
|
261
|
-
# @param after [Time] Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) tim
|
|
241
|
+
# @param before [Time] Filter results to transactions created before this time.
|
|
262
242
|
#
|
|
263
|
-
# @param
|
|
264
|
-
#
|
|
265
|
-
# @param on_or_after [Time] Return results on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_860
|
|
266
|
-
#
|
|
267
|
-
# @param on_or_before [Time] Return results on or before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_86
|
|
243
|
+
# @param on_or_after [Time] Filter results to transactions created on or after this time.
|
|
268
244
|
end
|
|
269
245
|
end
|
|
270
246
|
|
|
@@ -365,13 +341,19 @@ module Increase
|
|
|
365
341
|
# @return [String, nil]
|
|
366
342
|
optional :bookkeeping_account_id, String
|
|
367
343
|
|
|
368
|
-
# @!attribute
|
|
369
|
-
# Filter
|
|
344
|
+
# @!attribute on_or_after_date
|
|
345
|
+
# Filter exported Balances to those on or after this date.
|
|
370
346
|
#
|
|
371
|
-
# @return [
|
|
372
|
-
optional :
|
|
347
|
+
# @return [Date, nil]
|
|
348
|
+
optional :on_or_after_date, Date
|
|
373
349
|
|
|
374
|
-
# @!
|
|
350
|
+
# @!attribute on_or_before_date
|
|
351
|
+
# Filter exported Balances to those on or before this date.
|
|
352
|
+
#
|
|
353
|
+
# @return [Date, nil]
|
|
354
|
+
optional :on_or_before_date, Date
|
|
355
|
+
|
|
356
|
+
# @!method initialize(bookkeeping_account_id: nil, on_or_after_date: nil, on_or_before_date: nil)
|
|
375
357
|
# Some parameter documentations has been truncated, see
|
|
376
358
|
# {Increase::Models::ExportCreateParams::BookkeepingAccountBalanceCsv} for more
|
|
377
359
|
# details.
|
|
@@ -381,53 +363,9 @@ module Increase
|
|
|
381
363
|
#
|
|
382
364
|
# @param bookkeeping_account_id [String] Filter exported Bookkeeping Account Balances to the specified Bookkeeping Accoun
|
|
383
365
|
#
|
|
384
|
-
# @param
|
|
385
|
-
|
|
386
|
-
#
|
|
387
|
-
class CreatedAt < Increase::Internal::Type::BaseModel
|
|
388
|
-
# @!attribute after
|
|
389
|
-
# Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
390
|
-
# timestamp.
|
|
391
|
-
#
|
|
392
|
-
# @return [Time, nil]
|
|
393
|
-
optional :after, Time
|
|
394
|
-
|
|
395
|
-
# @!attribute before
|
|
396
|
-
# Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
397
|
-
# timestamp.
|
|
398
|
-
#
|
|
399
|
-
# @return [Time, nil]
|
|
400
|
-
optional :before, Time
|
|
401
|
-
|
|
402
|
-
# @!attribute on_or_after
|
|
403
|
-
# Return results on or after this
|
|
404
|
-
# [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
405
|
-
#
|
|
406
|
-
# @return [Time, nil]
|
|
407
|
-
optional :on_or_after, Time
|
|
408
|
-
|
|
409
|
-
# @!attribute on_or_before
|
|
410
|
-
# Return results on or before this
|
|
411
|
-
# [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
412
|
-
#
|
|
413
|
-
# @return [Time, nil]
|
|
414
|
-
optional :on_or_before, Time
|
|
415
|
-
|
|
416
|
-
# @!method initialize(after: nil, before: nil, on_or_after: nil, on_or_before: nil)
|
|
417
|
-
# Some parameter documentations has been truncated, see
|
|
418
|
-
# {Increase::Models::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt}
|
|
419
|
-
# for more details.
|
|
420
|
-
#
|
|
421
|
-
# Filter results by time range on the `created_at` attribute.
|
|
422
|
-
#
|
|
423
|
-
# @param after [Time] Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) tim
|
|
424
|
-
#
|
|
425
|
-
# @param before [Time] Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) ti
|
|
426
|
-
#
|
|
427
|
-
# @param on_or_after [Time] Return results on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_860
|
|
428
|
-
#
|
|
429
|
-
# @param on_or_before [Time] Return results on or before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_86
|
|
430
|
-
end
|
|
366
|
+
# @param on_or_after_date [Date] Filter exported Balances to those on or after this date.
|
|
367
|
+
#
|
|
368
|
+
# @param on_or_before_date [Date] Filter exported Balances to those on or before this date.
|
|
431
369
|
end
|
|
432
370
|
|
|
433
371
|
class DailyAccountBalanceCsv < Increase::Internal::Type::BaseModel
|
data/lib/increase/version.rb
CHANGED
|
@@ -486,31 +486,32 @@ module Increase
|
|
|
486
486
|
)
|
|
487
487
|
end
|
|
488
488
|
|
|
489
|
-
# Filter results to transactions created after this time.
|
|
490
|
-
sig { returns(T.nilable(Time)) }
|
|
491
|
-
attr_accessor :after
|
|
492
|
-
|
|
493
489
|
# Filter results to transactions created before this time.
|
|
494
490
|
sig { returns(T.nilable(Time)) }
|
|
495
491
|
attr_accessor :before
|
|
496
492
|
|
|
493
|
+
# Filter results to transactions created on or after this time.
|
|
494
|
+
sig { returns(T.nilable(Time)) }
|
|
495
|
+
attr_accessor :on_or_after
|
|
496
|
+
|
|
497
497
|
# Filter transactions by their created date.
|
|
498
498
|
sig do
|
|
499
|
-
params(
|
|
500
|
-
T.
|
|
501
|
-
|
|
499
|
+
params(
|
|
500
|
+
before: T.nilable(Time),
|
|
501
|
+
on_or_after: T.nilable(Time)
|
|
502
|
+
).returns(T.attached_class)
|
|
502
503
|
end
|
|
503
504
|
def self.new(
|
|
504
|
-
# Filter results to transactions created after this time.
|
|
505
|
-
after:,
|
|
506
505
|
# Filter results to transactions created before this time.
|
|
507
|
-
before
|
|
506
|
+
before:,
|
|
507
|
+
# Filter results to transactions created on or after this time.
|
|
508
|
+
on_or_after:
|
|
508
509
|
)
|
|
509
510
|
end
|
|
510
511
|
|
|
511
512
|
sig do
|
|
512
513
|
override.returns(
|
|
513
|
-
{
|
|
514
|
+
{ before: T.nilable(Time), on_or_after: T.nilable(Time) }
|
|
514
515
|
)
|
|
515
516
|
end
|
|
516
517
|
def to_hash
|
|
@@ -664,40 +665,30 @@ module Increase
|
|
|
664
665
|
sig { returns(T.nilable(String)) }
|
|
665
666
|
attr_accessor :bookkeeping_account_id
|
|
666
667
|
|
|
667
|
-
# Filter balances
|
|
668
|
-
sig
|
|
669
|
-
|
|
670
|
-
T.nilable(Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt)
|
|
671
|
-
)
|
|
672
|
-
end
|
|
673
|
-
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
|
|
674
671
|
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
T.nilable(
|
|
679
|
-
Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt::OrHash
|
|
680
|
-
)
|
|
681
|
-
).void
|
|
682
|
-
end
|
|
683
|
-
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
|
|
684
675
|
|
|
685
676
|
# Details of the bookkeeping account balance CSV export. This field will be
|
|
686
677
|
# present when the `category` is equal to `bookkeeping_account_balance_csv`.
|
|
687
678
|
sig do
|
|
688
679
|
params(
|
|
689
680
|
bookkeeping_account_id: T.nilable(String),
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt::OrHash
|
|
693
|
-
)
|
|
681
|
+
on_or_after_date: T.nilable(Date),
|
|
682
|
+
on_or_before_date: T.nilable(Date)
|
|
694
683
|
).returns(T.attached_class)
|
|
695
684
|
end
|
|
696
685
|
def self.new(
|
|
697
686
|
# Filter results by Bookkeeping Account.
|
|
698
687
|
bookkeeping_account_id:,
|
|
699
|
-
# Filter balances
|
|
700
|
-
|
|
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:
|
|
701
692
|
)
|
|
702
693
|
end
|
|
703
694
|
|
|
@@ -705,55 +696,13 @@ module Increase
|
|
|
705
696
|
override.returns(
|
|
706
697
|
{
|
|
707
698
|
bookkeeping_account_id: T.nilable(String),
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt
|
|
711
|
-
)
|
|
699
|
+
on_or_after_date: T.nilable(Date),
|
|
700
|
+
on_or_before_date: T.nilable(Date)
|
|
712
701
|
}
|
|
713
702
|
)
|
|
714
703
|
end
|
|
715
704
|
def to_hash
|
|
716
705
|
end
|
|
717
|
-
|
|
718
|
-
class CreatedAt < Increase::Internal::Type::BaseModel
|
|
719
|
-
OrHash =
|
|
720
|
-
T.type_alias do
|
|
721
|
-
T.any(
|
|
722
|
-
Increase::Export::BookkeepingAccountBalanceCsv::CreatedAt,
|
|
723
|
-
Increase::Internal::AnyHash
|
|
724
|
-
)
|
|
725
|
-
end
|
|
726
|
-
|
|
727
|
-
# Filter balances created after this time.
|
|
728
|
-
sig { returns(T.nilable(Time)) }
|
|
729
|
-
attr_accessor :after
|
|
730
|
-
|
|
731
|
-
# Filter balances created before this time.
|
|
732
|
-
sig { returns(T.nilable(Time)) }
|
|
733
|
-
attr_accessor :before
|
|
734
|
-
|
|
735
|
-
# Filter balances by their created date.
|
|
736
|
-
sig do
|
|
737
|
-
params(after: T.nilable(Time), before: T.nilable(Time)).returns(
|
|
738
|
-
T.attached_class
|
|
739
|
-
)
|
|
740
|
-
end
|
|
741
|
-
def self.new(
|
|
742
|
-
# Filter balances created after this time.
|
|
743
|
-
after:,
|
|
744
|
-
# Filter balances created before this time.
|
|
745
|
-
before:
|
|
746
|
-
)
|
|
747
|
-
end
|
|
748
|
-
|
|
749
|
-
sig do
|
|
750
|
-
override.returns(
|
|
751
|
-
{ after: T.nilable(Time), before: T.nilable(Time) }
|
|
752
|
-
)
|
|
753
|
-
end
|
|
754
|
-
def to_hash
|
|
755
|
-
end
|
|
756
|
-
end
|
|
757
706
|
end
|
|
758
707
|
|
|
759
708
|
# The category of the Export. We may add additional possible values for this enum
|
|
@@ -427,7 +427,7 @@ module Increase
|
|
|
427
427
|
sig { returns(String) }
|
|
428
428
|
attr_accessor :account_id
|
|
429
429
|
|
|
430
|
-
# Filter
|
|
430
|
+
# Filter transactions by their created date.
|
|
431
431
|
sig do
|
|
432
432
|
returns(
|
|
433
433
|
T.nilable(
|
|
@@ -457,7 +457,7 @@ module Increase
|
|
|
457
457
|
def self.new(
|
|
458
458
|
# The Account to create a statement for.
|
|
459
459
|
account_id:,
|
|
460
|
-
# Filter
|
|
460
|
+
# Filter transactions by their created date.
|
|
461
461
|
created_at: nil
|
|
462
462
|
)
|
|
463
463
|
end
|
|
@@ -483,73 +483,33 @@ module Increase
|
|
|
483
483
|
)
|
|
484
484
|
end
|
|
485
485
|
|
|
486
|
-
#
|
|
487
|
-
# timestamp.
|
|
488
|
-
sig { returns(T.nilable(Time)) }
|
|
489
|
-
attr_reader :after
|
|
490
|
-
|
|
491
|
-
sig { params(after: Time).void }
|
|
492
|
-
attr_writer :after
|
|
493
|
-
|
|
494
|
-
# Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
495
|
-
# timestamp.
|
|
486
|
+
# Filter results to transactions created before this time.
|
|
496
487
|
sig { returns(T.nilable(Time)) }
|
|
497
488
|
attr_reader :before
|
|
498
489
|
|
|
499
490
|
sig { params(before: Time).void }
|
|
500
491
|
attr_writer :before
|
|
501
492
|
|
|
502
|
-
#
|
|
503
|
-
# [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
493
|
+
# Filter results to transactions created on or after this time.
|
|
504
494
|
sig { returns(T.nilable(Time)) }
|
|
505
495
|
attr_reader :on_or_after
|
|
506
496
|
|
|
507
497
|
sig { params(on_or_after: Time).void }
|
|
508
498
|
attr_writer :on_or_after
|
|
509
499
|
|
|
510
|
-
#
|
|
511
|
-
# [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
512
|
-
sig { returns(T.nilable(Time)) }
|
|
513
|
-
attr_reader :on_or_before
|
|
514
|
-
|
|
515
|
-
sig { params(on_or_before: Time).void }
|
|
516
|
-
attr_writer :on_or_before
|
|
517
|
-
|
|
518
|
-
# Filter results by time range on the `created_at` attribute.
|
|
500
|
+
# Filter transactions by their created date.
|
|
519
501
|
sig do
|
|
520
|
-
params(
|
|
521
|
-
after: Time,
|
|
522
|
-
before: Time,
|
|
523
|
-
on_or_after: Time,
|
|
524
|
-
on_or_before: Time
|
|
525
|
-
).returns(T.attached_class)
|
|
502
|
+
params(before: Time, on_or_after: Time).returns(T.attached_class)
|
|
526
503
|
end
|
|
527
504
|
def self.new(
|
|
528
|
-
#
|
|
529
|
-
# timestamp.
|
|
530
|
-
after: nil,
|
|
531
|
-
# Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
532
|
-
# timestamp.
|
|
505
|
+
# Filter results to transactions created before this time.
|
|
533
506
|
before: nil,
|
|
534
|
-
#
|
|
535
|
-
|
|
536
|
-
on_or_after: nil,
|
|
537
|
-
# Return results on or before this
|
|
538
|
-
# [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
539
|
-
on_or_before: nil
|
|
507
|
+
# Filter results to transactions created on or after this time.
|
|
508
|
+
on_or_after: nil
|
|
540
509
|
)
|
|
541
510
|
end
|
|
542
511
|
|
|
543
|
-
sig
|
|
544
|
-
override.returns(
|
|
545
|
-
{
|
|
546
|
-
after: Time,
|
|
547
|
-
before: Time,
|
|
548
|
-
on_or_after: Time,
|
|
549
|
-
on_or_before: Time
|
|
550
|
-
}
|
|
551
|
-
)
|
|
552
|
-
end
|
|
512
|
+
sig { override.returns({ before: Time, on_or_after: Time }) }
|
|
553
513
|
def to_hash
|
|
554
514
|
end
|
|
555
515
|
end
|
|
@@ -755,39 +715,37 @@ module Increase
|
|
|
755
715
|
sig { params(bookkeeping_account_id: String).void }
|
|
756
716
|
attr_writer :bookkeeping_account_id
|
|
757
717
|
|
|
758
|
-
# Filter
|
|
759
|
-
sig
|
|
760
|
-
|
|
761
|
-
T.nilable(
|
|
762
|
-
Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt
|
|
763
|
-
)
|
|
764
|
-
)
|
|
765
|
-
end
|
|
766
|
-
attr_reader :created_at
|
|
718
|
+
# Filter exported Balances to those on or after this date.
|
|
719
|
+
sig { returns(T.nilable(Date)) }
|
|
720
|
+
attr_reader :on_or_after_date
|
|
767
721
|
|
|
768
|
-
sig
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
722
|
+
sig { params(on_or_after_date: Date).void }
|
|
723
|
+
attr_writer :on_or_after_date
|
|
724
|
+
|
|
725
|
+
# Filter exported Balances to those on or before this date.
|
|
726
|
+
sig { returns(T.nilable(Date)) }
|
|
727
|
+
attr_reader :on_or_before_date
|
|
728
|
+
|
|
729
|
+
sig { params(on_or_before_date: Date).void }
|
|
730
|
+
attr_writer :on_or_before_date
|
|
775
731
|
|
|
776
732
|
# Options for the created export. Required if `category` is equal to
|
|
777
733
|
# `bookkeeping_account_balance_csv`.
|
|
778
734
|
sig do
|
|
779
735
|
params(
|
|
780
736
|
bookkeeping_account_id: String,
|
|
781
|
-
|
|
782
|
-
|
|
737
|
+
on_or_after_date: Date,
|
|
738
|
+
on_or_before_date: Date
|
|
783
739
|
).returns(T.attached_class)
|
|
784
740
|
end
|
|
785
741
|
def self.new(
|
|
786
742
|
# Filter exported Bookkeeping Account Balances to the specified Bookkeeping
|
|
787
743
|
# Account.
|
|
788
744
|
bookkeeping_account_id: nil,
|
|
789
|
-
# Filter
|
|
790
|
-
|
|
745
|
+
# Filter exported Balances to those on or after this date.
|
|
746
|
+
on_or_after_date: nil,
|
|
747
|
+
# Filter exported Balances to those on or before this date.
|
|
748
|
+
on_or_before_date: nil
|
|
791
749
|
)
|
|
792
750
|
end
|
|
793
751
|
|
|
@@ -795,93 +753,13 @@ module Increase
|
|
|
795
753
|
override.returns(
|
|
796
754
|
{
|
|
797
755
|
bookkeeping_account_id: String,
|
|
798
|
-
|
|
799
|
-
|
|
756
|
+
on_or_after_date: Date,
|
|
757
|
+
on_or_before_date: Date
|
|
800
758
|
}
|
|
801
759
|
)
|
|
802
760
|
end
|
|
803
761
|
def to_hash
|
|
804
762
|
end
|
|
805
|
-
|
|
806
|
-
class CreatedAt < Increase::Internal::Type::BaseModel
|
|
807
|
-
OrHash =
|
|
808
|
-
T.type_alias do
|
|
809
|
-
T.any(
|
|
810
|
-
Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::CreatedAt,
|
|
811
|
-
Increase::Internal::AnyHash
|
|
812
|
-
)
|
|
813
|
-
end
|
|
814
|
-
|
|
815
|
-
# Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
816
|
-
# timestamp.
|
|
817
|
-
sig { returns(T.nilable(Time)) }
|
|
818
|
-
attr_reader :after
|
|
819
|
-
|
|
820
|
-
sig { params(after: Time).void }
|
|
821
|
-
attr_writer :after
|
|
822
|
-
|
|
823
|
-
# Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
824
|
-
# timestamp.
|
|
825
|
-
sig { returns(T.nilable(Time)) }
|
|
826
|
-
attr_reader :before
|
|
827
|
-
|
|
828
|
-
sig { params(before: Time).void }
|
|
829
|
-
attr_writer :before
|
|
830
|
-
|
|
831
|
-
# Return results on or after this
|
|
832
|
-
# [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
833
|
-
sig { returns(T.nilable(Time)) }
|
|
834
|
-
attr_reader :on_or_after
|
|
835
|
-
|
|
836
|
-
sig { params(on_or_after: Time).void }
|
|
837
|
-
attr_writer :on_or_after
|
|
838
|
-
|
|
839
|
-
# Return results on or before this
|
|
840
|
-
# [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
841
|
-
sig { returns(T.nilable(Time)) }
|
|
842
|
-
attr_reader :on_or_before
|
|
843
|
-
|
|
844
|
-
sig { params(on_or_before: Time).void }
|
|
845
|
-
attr_writer :on_or_before
|
|
846
|
-
|
|
847
|
-
# Filter results by time range on the `created_at` attribute.
|
|
848
|
-
sig do
|
|
849
|
-
params(
|
|
850
|
-
after: Time,
|
|
851
|
-
before: Time,
|
|
852
|
-
on_or_after: Time,
|
|
853
|
-
on_or_before: Time
|
|
854
|
-
).returns(T.attached_class)
|
|
855
|
-
end
|
|
856
|
-
def self.new(
|
|
857
|
-
# Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
858
|
-
# timestamp.
|
|
859
|
-
after: nil,
|
|
860
|
-
# Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
|
|
861
|
-
# timestamp.
|
|
862
|
-
before: nil,
|
|
863
|
-
# Return results on or after this
|
|
864
|
-
# [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
865
|
-
on_or_after: nil,
|
|
866
|
-
# Return results on or before this
|
|
867
|
-
# [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
|
|
868
|
-
on_or_before: nil
|
|
869
|
-
)
|
|
870
|
-
end
|
|
871
|
-
|
|
872
|
-
sig do
|
|
873
|
-
override.returns(
|
|
874
|
-
{
|
|
875
|
-
after: Time,
|
|
876
|
-
before: Time,
|
|
877
|
-
on_or_after: Time,
|
|
878
|
-
on_or_before: Time
|
|
879
|
-
}
|
|
880
|
-
)
|
|
881
|
-
end
|
|
882
|
-
def to_hash
|
|
883
|
-
end
|
|
884
|
-
end
|
|
885
763
|
end
|
|
886
764
|
|
|
887
765
|
class DailyAccountBalanceCsv < Increase::Internal::Type::BaseModel
|
|
@@ -165,16 +165,16 @@ module Increase
|
|
|
165
165
|
created_at: Increase::Export::AccountStatementOfx::CreatedAt?
|
|
166
166
|
}
|
|
167
167
|
|
|
168
|
-
type created_at = {
|
|
168
|
+
type created_at = { before: Time?, on_or_after: Time? }
|
|
169
169
|
|
|
170
170
|
class CreatedAt < Increase::Internal::Type::BaseModel
|
|
171
|
-
attr_accessor after: Time?
|
|
172
|
-
|
|
173
171
|
attr_accessor before: Time?
|
|
174
172
|
|
|
175
|
-
|
|
173
|
+
attr_accessor on_or_after: Time?
|
|
176
174
|
|
|
177
|
-
def
|
|
175
|
+
def initialize: (before: Time?, on_or_after: Time?) -> void
|
|
176
|
+
|
|
177
|
+
def to_hash: -> { before: Time?, on_or_after: Time? }
|
|
178
178
|
end
|
|
179
179
|
end
|
|
180
180
|
|
|
@@ -228,35 +228,28 @@ module Increase
|
|
|
228
228
|
type bookkeeping_account_balance_csv =
|
|
229
229
|
{
|
|
230
230
|
bookkeeping_account_id: String?,
|
|
231
|
-
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
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 =
|
|
@@ -227,14 +227,9 @@ module Increase
|
|
|
227
227
|
created_at: Increase::ExportCreateParams::AccountStatementOfx::CreatedAt
|
|
228
228
|
}
|
|
229
229
|
|
|
230
|
-
type created_at =
|
|
231
|
-
{ after: Time, before: Time, on_or_after: Time, on_or_before: Time }
|
|
230
|
+
type created_at = { before: Time, on_or_after: Time }
|
|
232
231
|
|
|
233
232
|
class CreatedAt < Increase::Internal::Type::BaseModel
|
|
234
|
-
attr_reader after: Time?
|
|
235
|
-
|
|
236
|
-
def after=: (Time) -> Time
|
|
237
|
-
|
|
238
233
|
attr_reader before: Time?
|
|
239
234
|
|
|
240
235
|
def before=: (Time) -> Time
|
|
@@ -243,23 +238,9 @@ module Increase
|
|
|
243
238
|
|
|
244
239
|
def on_or_after=: (Time) -> Time
|
|
245
240
|
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
def on_or_before=: (Time) -> Time
|
|
249
|
-
|
|
250
|
-
def initialize: (
|
|
251
|
-
?after: Time,
|
|
252
|
-
?before: Time,
|
|
253
|
-
?on_or_after: Time,
|
|
254
|
-
?on_or_before: Time
|
|
255
|
-
) -> void
|
|
241
|
+
def initialize: (?before: Time, ?on_or_after: Time) -> void
|
|
256
242
|
|
|
257
|
-
def to_hash: -> {
|
|
258
|
-
after: Time,
|
|
259
|
-
before: Time,
|
|
260
|
-
on_or_after: Time,
|
|
261
|
-
on_or_before: Time
|
|
262
|
-
}
|
|
243
|
+
def to_hash: -> { before: Time, on_or_after: Time }
|
|
263
244
|
end
|
|
264
245
|
end
|
|
265
246
|
|
|
@@ -344,7 +325,8 @@ module Increase
|
|
|
344
325
|
type bookkeeping_account_balance_csv =
|
|
345
326
|
{
|
|
346
327
|
bookkeeping_account_id: String,
|
|
347
|
-
|
|
328
|
+
on_or_after_date: Date,
|
|
329
|
+
on_or_before_date: Date
|
|
348
330
|
}
|
|
349
331
|
|
|
350
332
|
class BookkeepingAccountBalanceCsv < Increase::Internal::Type::BaseModel
|
|
@@ -352,56 +334,25 @@ module Increase
|
|
|
352
334
|
|
|
353
335
|
def bookkeeping_account_id=: (String) -> String
|
|
354
336
|
|
|
355
|
-
attr_reader
|
|
337
|
+
attr_reader on_or_after_date: Date?
|
|
356
338
|
|
|
357
|
-
def
|
|
358
|
-
|
|
359
|
-
|
|
339
|
+
def on_or_after_date=: (Date) -> Date
|
|
340
|
+
|
|
341
|
+
attr_reader on_or_before_date: Date?
|
|
342
|
+
|
|
343
|
+
def on_or_before_date=: (Date) -> Date
|
|
360
344
|
|
|
361
345
|
def initialize: (
|
|
362
346
|
?bookkeeping_account_id: String,
|
|
363
|
-
?
|
|
347
|
+
?on_or_after_date: Date,
|
|
348
|
+
?on_or_before_date: Date
|
|
364
349
|
) -> void
|
|
365
350
|
|
|
366
351
|
def to_hash: -> {
|
|
367
352
|
bookkeeping_account_id: String,
|
|
368
|
-
|
|
353
|
+
on_or_after_date: Date,
|
|
354
|
+
on_or_before_date: Date
|
|
369
355
|
}
|
|
370
|
-
|
|
371
|
-
type created_at =
|
|
372
|
-
{ after: Time, before: Time, on_or_after: Time, on_or_before: Time }
|
|
373
|
-
|
|
374
|
-
class CreatedAt < Increase::Internal::Type::BaseModel
|
|
375
|
-
attr_reader after: Time?
|
|
376
|
-
|
|
377
|
-
def after=: (Time) -> Time
|
|
378
|
-
|
|
379
|
-
attr_reader before: Time?
|
|
380
|
-
|
|
381
|
-
def before=: (Time) -> Time
|
|
382
|
-
|
|
383
|
-
attr_reader on_or_after: Time?
|
|
384
|
-
|
|
385
|
-
def on_or_after=: (Time) -> Time
|
|
386
|
-
|
|
387
|
-
attr_reader on_or_before: Time?
|
|
388
|
-
|
|
389
|
-
def on_or_before=: (Time) -> Time
|
|
390
|
-
|
|
391
|
-
def initialize: (
|
|
392
|
-
?after: Time,
|
|
393
|
-
?before: Time,
|
|
394
|
-
?on_or_after: Time,
|
|
395
|
-
?on_or_before: Time
|
|
396
|
-
) -> void
|
|
397
|
-
|
|
398
|
-
def to_hash: -> {
|
|
399
|
-
after: Time,
|
|
400
|
-
before: Time,
|
|
401
|
-
on_or_after: Time,
|
|
402
|
-
on_or_before: Time
|
|
403
|
-
}
|
|
404
|
-
end
|
|
405
356
|
end
|
|
406
357
|
|
|
407
358
|
type daily_account_balance_csv =
|
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.288.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-
|
|
11
|
+
date: 2026-04-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|