increase 1.207.0 → 1.208.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: b951b7ee2c2c75389ce6e7dbf392bc147d3daca2f99e325847f638724edb7ad3
4
- data.tar.gz: dcc9f59dd545fa079386828a02bec48386c54355f108a2625814b6a1c3970d6b
3
+ metadata.gz: d765d1aeb6574bcd88c3612a0c2679d3a15a9205d960b9624a4891367fd4bc6e
4
+ data.tar.gz: 46064eb2145fc4a7a0697b0543b279f74e6ad1f63a047d225e0483a3268384aa
5
5
  SHA512:
6
- metadata.gz: 46da01bdb9510ea93bb12e6b462fa40627c6266be3d59747de73780335b4527259a2d050e2e96d90bf9ecc9e6441bab5155be1ce4929c2a7a32e5208d892c903
7
- data.tar.gz: 3b224dd77d94a53367d929a5fb8a87fda052a24abebf22c08e3281e84759534e35b7a138bf802cfb6fd1afc60406cb2c01f3e1bf6a5fd1eac8ef2fc60b120d3d
6
+ metadata.gz: 5e7740cc256c2379d313596e07cc16c8f63b0258c1d306297b0e7448544ab02983ef8252474d92154630280a4eea634a93696da808a5b370a744fed882a25824
7
+ data.tar.gz: b8a53039228c6660494e8a5bd1052ba13c9ea86868678ec3d1351973df213933b1a8ee46a532bc0138334a07b37d3e7b4c2a4166a7b893118acf7a9bd4ff911b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.208.0 (2026-02-10)
4
+
5
+ Full Changelog: [v1.207.0...v1.208.0](https://github.com/Increase/increase-ruby/compare/v1.207.0...v1.208.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([1df52dd](https://github.com/Increase/increase-ruby/commit/1df52dd9ceb238bbe0e9c9e85052199cb21658ee))
10
+
3
11
  ## 1.207.0 (2026-02-10)
4
12
 
5
13
  Full Changelog: [v1.206.0...v1.207.0](https://github.com/Increase/increase-ruby/compare/v1.206.0...v1.207.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.207.0"
18
+ gem "increase", "~> 1.208.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -74,6 +74,13 @@ module Increase
74
74
  # @return [Increase::Models::Export::EntityCsv, nil]
75
75
  required :entity_csv, -> { Increase::Export::EntityCsv }, nil?: true
76
76
 
77
+ # @!attribute fee_csv
78
+ # Details of the fee CSV export. This field will be present when the `category` is
79
+ # equal to `fee_csv`.
80
+ #
81
+ # @return [Increase::Models::Export::FeeCsv, nil]
82
+ required :fee_csv, -> { Increase::Export::FeeCsv }, nil?: true
83
+
77
84
  # @!attribute form_1099_int
78
85
  # Details of the Form 1099-INT export. This field will be present when the
79
86
  # `category` is equal to `form_1099_int`.
@@ -144,7 +151,7 @@ module Increase
144
151
  # @return [Increase::Models::Export::VoidedCheck, nil]
145
152
  required :voided_check, -> { Increase::Export::VoidedCheck }, nil?: true
146
153
 
147
- # @!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:, voided_check:)
154
+ # @!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:, fee_csv:, form_1099_int:, form_1099_misc:, funding_instructions:, idempotency_key:, result:, status:, transaction_csv:, type:, vendor_csv:, voided_check:)
148
155
  # Some parameter documentations has been truncated, see {Increase::Models::Export}
149
156
  # for more details.
150
157
  #
@@ -174,6 +181,8 @@ module Increase
174
181
  #
175
182
  # @param entity_csv [Increase::Models::Export::EntityCsv, nil] Details of the entity CSV export. This field will be present when the `category`
176
183
  #
184
+ # @param fee_csv [Increase::Models::Export::FeeCsv, nil] Details of the fee CSV export. This field will be present when the `category` is
185
+ #
177
186
  # @param form_1099_int [Increase::Models::Export::Form1099Int, nil] Details of the Form 1099-INT export. This field will be present when the `catego
178
187
  #
179
188
  # @param form_1099_misc [Increase::Models::Export::Form1099Misc, nil] Details of the Form 1099-MISC export. This field will be present when the `categ
@@ -426,6 +435,9 @@ module Increase
426
435
  # A PDF of an Internal Revenue Service Form 1099-MISC.
427
436
  FORM_1099_MISC = :form_1099_misc
428
437
 
438
+ # Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
439
+ FEE_CSV = :fee_csv
440
+
429
441
  # A PDF of a voided check.
430
442
  VOIDED_CHECK = :voided_check
431
443
 
@@ -447,6 +459,48 @@ module Increase
447
459
  # is equal to `entity_csv`.
448
460
  end
449
461
 
462
+ # @see Increase::Models::Export#fee_csv
463
+ class FeeCsv < Increase::Internal::Type::BaseModel
464
+ # @!attribute created_at
465
+ # Filter fees by their created date. The time range must not include any fees that
466
+ # are part of an open fee statement.
467
+ #
468
+ # @return [Increase::Models::Export::FeeCsv::CreatedAt, nil]
469
+ required :created_at, -> { Increase::Export::FeeCsv::CreatedAt }, nil?: true
470
+
471
+ # @!method initialize(created_at:)
472
+ # Some parameter documentations has been truncated, see
473
+ # {Increase::Models::Export::FeeCsv} for more details.
474
+ #
475
+ # Details of the fee CSV export. This field will be present when the `category` is
476
+ # equal to `fee_csv`.
477
+ #
478
+ # @param created_at [Increase::Models::Export::FeeCsv::CreatedAt, nil] Filter fees by their created date. The time range must not include any fees that
479
+
480
+ # @see Increase::Models::Export::FeeCsv#created_at
481
+ class CreatedAt < Increase::Internal::Type::BaseModel
482
+ # @!attribute after
483
+ # Filter fees created after this time.
484
+ #
485
+ # @return [Time, nil]
486
+ required :after, Time, nil?: true
487
+
488
+ # @!attribute before
489
+ # Filter fees created before this time.
490
+ #
491
+ # @return [Time, nil]
492
+ required :before, Time, nil?: true
493
+
494
+ # @!method initialize(after:, before:)
495
+ # Filter fees by their created date. The time range must not include any fees that
496
+ # are part of an open fee statement.
497
+ #
498
+ # @param after [Time, nil] Filter fees created after this time.
499
+ #
500
+ # @param before [Time, nil] Filter fees created before this time.
501
+ end
502
+ end
503
+
450
504
  # @see Increase::Models::Export#form_1099_int
451
505
  class Form1099Int < Increase::Internal::Type::BaseModel
452
506
  # @!attribute account_id
@@ -117,6 +117,9 @@ module Increase
117
117
  # A PDF of an Internal Revenue Service Form 1099-MISC.
118
118
  FORM_1099_MISC = :form_1099_misc
119
119
 
120
+ # Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
121
+ FEE_CSV = :fee_csv
122
+
120
123
  # A PDF of a voided check.
121
124
  VOIDED_CHECK = :voided_check
122
125
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.207.0"
4
+ VERSION = "1.208.0"
5
5
  end
@@ -106,6 +106,14 @@ module Increase
106
106
  end
107
107
  attr_writer :entity_csv
108
108
 
109
+ # Details of the fee CSV export. This field will be present when the `category` is
110
+ # equal to `fee_csv`.
111
+ sig { returns(T.nilable(Increase::Export::FeeCsv)) }
112
+ attr_reader :fee_csv
113
+
114
+ sig { params(fee_csv: T.nilable(Increase::Export::FeeCsv::OrHash)).void }
115
+ attr_writer :fee_csv
116
+
109
117
  # Details of the Form 1099-INT export. This field will be present when the
110
118
  # `category` is equal to `form_1099_int`.
111
119
  sig { returns(T.nilable(Increase::Export::Form1099Int)) }
@@ -222,6 +230,7 @@ module Increase
222
230
  dashboard_table_csv:
223
231
  T.nilable(Increase::Export::DashboardTableCsv::OrHash),
224
232
  entity_csv: T.nilable(Increase::Export::EntityCsv::OrHash),
233
+ fee_csv: T.nilable(Increase::Export::FeeCsv::OrHash),
225
234
  form_1099_int: T.nilable(Increase::Export::Form1099Int::OrHash),
226
235
  form_1099_misc: T.nilable(Increase::Export::Form1099Misc::OrHash),
227
236
  funding_instructions:
@@ -264,6 +273,9 @@ module Increase
264
273
  # Details of the entity CSV export. This field will be present when the `category`
265
274
  # is equal to `entity_csv`.
266
275
  entity_csv:,
276
+ # Details of the fee CSV export. This field will be present when the `category` is
277
+ # equal to `fee_csv`.
278
+ fee_csv:,
267
279
  # Details of the Form 1099-INT export. This field will be present when the
268
280
  # `category` is equal to `form_1099_int`.
269
281
  form_1099_int:,
@@ -314,6 +326,7 @@ module Increase
314
326
  created_at: Time,
315
327
  dashboard_table_csv: T.nilable(Increase::Export::DashboardTableCsv),
316
328
  entity_csv: T.nilable(Increase::Export::EntityCsv),
329
+ fee_csv: T.nilable(Increase::Export::FeeCsv),
317
330
  form_1099_int: T.nilable(Increase::Export::Form1099Int),
318
331
  form_1099_misc: T.nilable(Increase::Export::Form1099Misc),
319
332
  funding_instructions:
@@ -792,6 +805,9 @@ module Increase
792
805
  FORM_1099_MISC =
793
806
  T.let(:form_1099_misc, Increase::Export::Category::TaggedSymbol)
794
807
 
808
+ # Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
809
+ FEE_CSV = T.let(:fee_csv, Increase::Export::Category::TaggedSymbol)
810
+
795
811
  # A PDF of a voided check.
796
812
  VOIDED_CHECK =
797
813
  T.let(:voided_check, Increase::Export::Category::TaggedSymbol)
@@ -840,6 +856,88 @@ module Increase
840
856
  end
841
857
  end
842
858
 
859
+ class FeeCsv < Increase::Internal::Type::BaseModel
860
+ OrHash =
861
+ T.type_alias do
862
+ T.any(Increase::Export::FeeCsv, Increase::Internal::AnyHash)
863
+ end
864
+
865
+ # Filter fees by their created date. The time range must not include any fees that
866
+ # are part of an open fee statement.
867
+ sig { returns(T.nilable(Increase::Export::FeeCsv::CreatedAt)) }
868
+ attr_reader :created_at
869
+
870
+ sig do
871
+ params(
872
+ created_at: T.nilable(Increase::Export::FeeCsv::CreatedAt::OrHash)
873
+ ).void
874
+ end
875
+ attr_writer :created_at
876
+
877
+ # Details of the fee CSV export. This field will be present when the `category` is
878
+ # equal to `fee_csv`.
879
+ sig do
880
+ params(
881
+ created_at: T.nilable(Increase::Export::FeeCsv::CreatedAt::OrHash)
882
+ ).returns(T.attached_class)
883
+ end
884
+ def self.new(
885
+ # Filter fees by their created date. The time range must not include any fees that
886
+ # are part of an open fee statement.
887
+ created_at:
888
+ )
889
+ end
890
+
891
+ sig do
892
+ override.returns(
893
+ { created_at: T.nilable(Increase::Export::FeeCsv::CreatedAt) }
894
+ )
895
+ end
896
+ def to_hash
897
+ end
898
+
899
+ class CreatedAt < Increase::Internal::Type::BaseModel
900
+ OrHash =
901
+ T.type_alias do
902
+ T.any(
903
+ Increase::Export::FeeCsv::CreatedAt,
904
+ Increase::Internal::AnyHash
905
+ )
906
+ end
907
+
908
+ # Filter fees created after this time.
909
+ sig { returns(T.nilable(Time)) }
910
+ attr_accessor :after
911
+
912
+ # Filter fees created before this time.
913
+ sig { returns(T.nilable(Time)) }
914
+ attr_accessor :before
915
+
916
+ # Filter fees by their created date. The time range must not include any fees that
917
+ # are part of an open fee statement.
918
+ sig do
919
+ params(after: T.nilable(Time), before: T.nilable(Time)).returns(
920
+ T.attached_class
921
+ )
922
+ end
923
+ def self.new(
924
+ # Filter fees created after this time.
925
+ after:,
926
+ # Filter fees created before this time.
927
+ before:
928
+ )
929
+ end
930
+
931
+ sig do
932
+ override.returns(
933
+ { after: T.nilable(Time), before: T.nilable(Time) }
934
+ )
935
+ end
936
+ def to_hash
937
+ end
938
+ end
939
+ end
940
+
843
941
  class Form1099Int < Increase::Internal::Type::BaseModel
844
942
  OrHash =
845
943
  T.type_alias do
@@ -217,6 +217,10 @@ module Increase
217
217
  Increase::ExportListParams::Category::TaggedSymbol
218
218
  )
219
219
 
220
+ # Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
221
+ FEE_CSV =
222
+ T.let(:fee_csv, Increase::ExportListParams::Category::TaggedSymbol)
223
+
220
224
  # A PDF of a voided check.
221
225
  VOIDED_CHECK =
222
226
  T.let(
@@ -12,6 +12,7 @@ module Increase
12
12
  created_at: Time,
13
13
  dashboard_table_csv: Increase::Export::DashboardTableCsv?,
14
14
  entity_csv: Increase::Export::EntityCsv?,
15
+ fee_csv: Increase::Export::FeeCsv?,
15
16
  :form_1099_int => Increase::Export::Form1099Int?,
16
17
  :form_1099_misc => Increase::Export::Form1099Misc?,
17
18
  funding_instructions: Increase::Export::FundingInstructions?,
@@ -45,6 +46,8 @@ module Increase
45
46
 
46
47
  attr_accessor entity_csv: Increase::Export::EntityCsv?
47
48
 
49
+ attr_accessor fee_csv: Increase::Export::FeeCsv?
50
+
48
51
  attr_accessor form_1099_int: Increase::Export::Form1099Int?
49
52
 
50
53
  attr_accessor form_1099_misc: Increase::Export::Form1099Misc?
@@ -76,6 +79,7 @@ module Increase
76
79
  created_at: Time,
77
80
  dashboard_table_csv: Increase::Export::DashboardTableCsv?,
78
81
  entity_csv: Increase::Export::EntityCsv?,
82
+ fee_csv: Increase::Export::FeeCsv?,
79
83
  form_1099_int: Increase::Export::Form1099Int?,
80
84
  form_1099_misc: Increase::Export::Form1099Misc?,
81
85
  funding_instructions: Increase::Export::FundingInstructions?,
@@ -99,6 +103,7 @@ module Increase
99
103
  created_at: Time,
100
104
  dashboard_table_csv: Increase::Export::DashboardTableCsv?,
101
105
  entity_csv: Increase::Export::EntityCsv?,
106
+ fee_csv: Increase::Export::FeeCsv?,
102
107
  :form_1099_int => Increase::Export::Form1099Int?,
103
108
  :form_1099_misc => Increase::Export::Form1099Misc?,
104
109
  funding_instructions: Increase::Export::FundingInstructions?,
@@ -262,6 +267,7 @@ module Increase
262
267
  | :funding_instructions
263
268
  | :form_1099_int
264
269
  | :form_1099_misc
270
+ | :fee_csv
265
271
  | :voided_check
266
272
 
267
273
  module Category
@@ -303,6 +309,9 @@ module Increase
303
309
  # A PDF of an Internal Revenue Service Form 1099-MISC.
304
310
  FORM_1099_MISC: :form_1099_misc
305
311
 
312
+ # Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
313
+ FEE_CSV: :fee_csv
314
+
306
315
  # A PDF of a voided check.
307
316
  VOIDED_CHECK: :voided_check
308
317
 
@@ -325,6 +334,30 @@ module Increase
325
334
  def to_hash: -> { }
326
335
  end
327
336
 
337
+ type fee_csv = { created_at: Increase::Export::FeeCsv::CreatedAt? }
338
+
339
+ class FeeCsv < Increase::Internal::Type::BaseModel
340
+ attr_accessor created_at: Increase::Export::FeeCsv::CreatedAt?
341
+
342
+ def initialize: (
343
+ created_at: Increase::Export::FeeCsv::CreatedAt?
344
+ ) -> void
345
+
346
+ def to_hash: -> { created_at: Increase::Export::FeeCsv::CreatedAt? }
347
+
348
+ type created_at = { after: Time?, before: Time? }
349
+
350
+ class CreatedAt < Increase::Internal::Type::BaseModel
351
+ attr_accessor after: Time?
352
+
353
+ attr_accessor before: Time?
354
+
355
+ def initialize: (after: Time?, before: Time?) -> void
356
+
357
+ def to_hash: -> { after: Time?, before: Time? }
358
+ end
359
+ end
360
+
328
361
  type form1099_int =
329
362
  {
330
363
  account_id: String,
@@ -96,6 +96,7 @@ module Increase
96
96
  | :funding_instructions
97
97
  | :form_1099_int
98
98
  | :form_1099_misc
99
+ | :fee_csv
99
100
  | :voided_check
100
101
 
101
102
  module Category
@@ -137,6 +138,9 @@ module Increase
137
138
  # A PDF of an Internal Revenue Service Form 1099-MISC.
138
139
  FORM_1099_MISC: :form_1099_misc
139
140
 
141
+ # Export a CSV of fees. The time range must not include any fees that are part of an open fee statement.
142
+ FEE_CSV: :fee_csv
143
+
140
144
  # A PDF of a voided check.
141
145
  VOIDED_CHECK: :voided_check
142
146
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.207.0
4
+ version: 1.208.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase