increase 1.192.1 → 1.193.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: 8c89f9fdce86212be71f7f713a5a5cd8c94cf1e1eebef66f5987c8b63c81556b
4
- data.tar.gz: 196fb9a3695fa2f5e639ddc5deba201969f1a6d24056c671aec2cc65c3a2b399
3
+ metadata.gz: cfd77d7ab237b9b4660a3ca9545006f9d1468b263fca4bb932e9e30ea5b40f52
4
+ data.tar.gz: c12ca51ffbc377132a5a82243da28a937aad5c204080027aa436eaf8189a02ee
5
5
  SHA512:
6
- metadata.gz: 1bf818b18fd37e61f3a3eeddb7f1921f5fe74c31cea1e59b7c66afd346518d127ae9ef04e0ed1e88aee809b62c443f780e5167a3ab87765cfe6689fd581e129a
7
- data.tar.gz: f2195e2110c210aa5057ceb7d59c303631fbd0668afbcc47d043a93ead0d69f1e5a0941dd1daa0cebcc48c413a402fb0a6008b7d5a33a06f8c5e8895d7a4e9c9
6
+ metadata.gz: 3e1bc3f9999f5c8902c85307252fad29b3e4c25a4493f4ff68198d265cdca919d8739deaa8a745731eaa716f467142b20cbff666110bf80ab8308ea0895fa524
7
+ data.tar.gz: 4d3e61cab0b393f4cb5d85fbf640acc58a858bcf2f31bfaa35fa3d3ef057bda8d7ec1decb373d392ae0bef8e4e316de5f60983a09ed2549993b8cfa806596387
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.193.0 (2026-02-02)
4
+
5
+ Full Changelog: [v1.192.1...v1.193.0](https://github.com/Increase/increase-ruby/compare/v1.192.1...v1.193.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([1746e10](https://github.com/Increase/increase-ruby/commit/1746e109dcba41f5815eedadd2cff82808f0906f))
10
+ * **api:** api update ([8357e01](https://github.com/Increase/increase-ruby/commit/8357e01742ed70449019a2b488e429bf0d6560e3))
11
+ * **api:** api update ([130e648](https://github.com/Increase/increase-ruby/commit/130e64800d44fef9a082670ab9c54eabf921b290))
12
+
3
13
  ## 1.192.1 (2026-02-02)
4
14
 
5
15
  Full Changelog: [v1.192.0...v1.192.1](https://github.com/Increase/increase-ruby/compare/v1.192.0...v1.192.1)
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.192.1"
18
+ gem "increase", "~> 1.193.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -279,21 +279,13 @@ module Increase
279
279
  # @return [Increase::Models::ExportCreateParams::BalanceCsv::CreatedAt, nil]
280
280
  optional :created_at, -> { Increase::ExportCreateParams::BalanceCsv::CreatedAt }
281
281
 
282
- # @!attribute program_id
283
- # Filter exported Balances to the specified Program.
284
- #
285
- # @return [String, nil]
286
- optional :program_id, String
287
-
288
- # @!method initialize(account_id: nil, created_at: nil, program_id: nil)
282
+ # @!method initialize(account_id: nil, created_at: nil)
289
283
  # Options for the created export. Required if `category` is equal to
290
284
  # `balance_csv`.
291
285
  #
292
286
  # @param account_id [String] Filter exported Balances to the specified Account.
293
287
  #
294
288
  # @param created_at [Increase::Models::ExportCreateParams::BalanceCsv::CreatedAt] Filter results by time range on the `created_at` attribute.
295
- #
296
- # @param program_id [String] Filter exported Balances to the specified Program.
297
289
 
298
290
  # @see Increase::Models::ExportCreateParams::BalanceCsv#created_at
299
291
  class CreatedAt < Increase::Internal::Type::BaseModel
@@ -415,54 +407,8 @@ module Increase
415
407
  end
416
408
 
417
409
  class EntityCsv < Increase::Internal::Type::BaseModel
418
- # @!attribute status
419
- # Entity statuses to filter by.
420
- #
421
- # @return [Increase::Models::ExportCreateParams::EntityCsv::Status, nil]
422
- optional :status, -> { Increase::ExportCreateParams::EntityCsv::Status }
423
-
424
- # @!method initialize(status: nil)
410
+ # @!method initialize
425
411
  # Options for the created export. Required if `category` is equal to `entity_csv`.
426
- #
427
- # @param status [Increase::Models::ExportCreateParams::EntityCsv::Status] Entity statuses to filter by.
428
-
429
- # @see Increase::Models::ExportCreateParams::EntityCsv#status
430
- class Status < Increase::Internal::Type::BaseModel
431
- # @!attribute in_
432
- # Entity statuses to filter by. For GET requests, this should be encoded as a
433
- # comma-delimited string, such as `?in=one,two,three`.
434
- #
435
- # @return [Array<Symbol, Increase::Models::ExportCreateParams::EntityCsv::Status::In>]
436
- required :in_,
437
- -> {
438
- Increase::Internal::Type::ArrayOf[enum: Increase::ExportCreateParams::EntityCsv::Status::In]
439
- },
440
- api_name: :in
441
-
442
- # @!method initialize(in_:)
443
- # Some parameter documentations has been truncated, see
444
- # {Increase::Models::ExportCreateParams::EntityCsv::Status} for more details.
445
- #
446
- # Entity statuses to filter by.
447
- #
448
- # @param in_ [Array<Symbol, Increase::Models::ExportCreateParams::EntityCsv::Status::In>] Entity statuses to filter by. For GET requests, this should be encoded as a comm
449
-
450
- module In
451
- extend Increase::Internal::Type::Enum
452
-
453
- # The entity is active.
454
- ACTIVE = :active
455
-
456
- # The entity is archived, and can no longer be used to create accounts.
457
- ARCHIVED = :archived
458
-
459
- # The entity is temporarily disabled and cannot be used for financial activity.
460
- DISABLED = :disabled
461
-
462
- # @!method self.values
463
- # @return [Array<Symbol>]
464
- end
465
- end
466
412
  end
467
413
 
468
414
  class FundingInstructions < Increase::Internal::Type::BaseModel
@@ -492,21 +438,13 @@ module Increase
492
438
  # @return [Increase::Models::ExportCreateParams::TransactionCsv::CreatedAt, nil]
493
439
  optional :created_at, -> { Increase::ExportCreateParams::TransactionCsv::CreatedAt }
494
440
 
495
- # @!attribute program_id
496
- # Filter exported Transactions to the specified Program.
497
- #
498
- # @return [String, nil]
499
- optional :program_id, String
500
-
501
- # @!method initialize(account_id: nil, created_at: nil, program_id: nil)
441
+ # @!method initialize(account_id: nil, created_at: nil)
502
442
  # Options for the created export. Required if `category` is equal to
503
443
  # `transaction_csv`.
504
444
  #
505
445
  # @param account_id [String] Filter exported Transactions to the specified Account.
506
446
  #
507
447
  # @param created_at [Increase::Models::ExportCreateParams::TransactionCsv::CreatedAt] Filter results by time range on the `created_at` attribute.
508
- #
509
- # @param program_id [String] Filter exported Transactions to the specified Program.
510
448
 
511
449
  # @see Increase::Models::ExportCreateParams::TransactionCsv#created_at
512
450
  class CreatedAt < Increase::Internal::Type::BaseModel
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.192.1"
4
+ VERSION = "1.193.0"
5
5
  end
@@ -576,30 +576,20 @@ module Increase
576
576
  end
577
577
  attr_writer :created_at
578
578
 
579
- # Filter exported Balances to the specified Program.
580
- sig { returns(T.nilable(String)) }
581
- attr_reader :program_id
582
-
583
- sig { params(program_id: String).void }
584
- attr_writer :program_id
585
-
586
579
  # Options for the created export. Required if `category` is equal to
587
580
  # `balance_csv`.
588
581
  sig do
589
582
  params(
590
583
  account_id: String,
591
584
  created_at:
592
- Increase::ExportCreateParams::BalanceCsv::CreatedAt::OrHash,
593
- program_id: String
585
+ Increase::ExportCreateParams::BalanceCsv::CreatedAt::OrHash
594
586
  ).returns(T.attached_class)
595
587
  end
596
588
  def self.new(
597
589
  # Filter exported Balances to the specified Account.
598
590
  account_id: nil,
599
591
  # Filter results by time range on the `created_at` attribute.
600
- created_at: nil,
601
- # Filter exported Balances to the specified Program.
602
- program_id: nil
592
+ created_at: nil
603
593
  )
604
594
  end
605
595
 
@@ -607,8 +597,7 @@ module Increase
607
597
  override.returns(
608
598
  {
609
599
  account_id: String,
610
- created_at: Increase::ExportCreateParams::BalanceCsv::CreatedAt,
611
- program_id: String
600
+ created_at: Increase::ExportCreateParams::BalanceCsv::CreatedAt
612
601
  }
613
602
  )
614
603
  end
@@ -851,132 +840,14 @@ module Increase
851
840
  )
852
841
  end
853
842
 
854
- # Entity statuses to filter by.
855
- sig do
856
- returns(T.nilable(Increase::ExportCreateParams::EntityCsv::Status))
857
- end
858
- attr_reader :status
859
-
860
- sig do
861
- params(
862
- status: Increase::ExportCreateParams::EntityCsv::Status::OrHash
863
- ).void
864
- end
865
- attr_writer :status
866
-
867
843
  # Options for the created export. Required if `category` is equal to `entity_csv`.
868
- sig do
869
- params(
870
- status: Increase::ExportCreateParams::EntityCsv::Status::OrHash
871
- ).returns(T.attached_class)
872
- end
873
- def self.new(
874
- # Entity statuses to filter by.
875
- status: nil
876
- )
844
+ sig { returns(T.attached_class) }
845
+ def self.new
877
846
  end
878
847
 
879
- sig do
880
- override.returns(
881
- { status: Increase::ExportCreateParams::EntityCsv::Status }
882
- )
883
- end
848
+ sig { override.returns({}) }
884
849
  def to_hash
885
850
  end
886
-
887
- class Status < Increase::Internal::Type::BaseModel
888
- OrHash =
889
- T.type_alias do
890
- T.any(
891
- Increase::ExportCreateParams::EntityCsv::Status,
892
- Increase::Internal::AnyHash
893
- )
894
- end
895
-
896
- # Entity statuses to filter by. For GET requests, this should be encoded as a
897
- # comma-delimited string, such as `?in=one,two,three`.
898
- sig do
899
- returns(
900
- T::Array[
901
- Increase::ExportCreateParams::EntityCsv::Status::In::OrSymbol
902
- ]
903
- )
904
- end
905
- attr_accessor :in_
906
-
907
- # Entity statuses to filter by.
908
- sig do
909
- params(
910
- in_:
911
- T::Array[
912
- Increase::ExportCreateParams::EntityCsv::Status::In::OrSymbol
913
- ]
914
- ).returns(T.attached_class)
915
- end
916
- def self.new(
917
- # Entity statuses to filter by. For GET requests, this should be encoded as a
918
- # comma-delimited string, such as `?in=one,two,three`.
919
- in_:
920
- )
921
- end
922
-
923
- sig do
924
- override.returns(
925
- {
926
- in_:
927
- T::Array[
928
- Increase::ExportCreateParams::EntityCsv::Status::In::OrSymbol
929
- ]
930
- }
931
- )
932
- end
933
- def to_hash
934
- end
935
-
936
- module In
937
- extend Increase::Internal::Type::Enum
938
-
939
- TaggedSymbol =
940
- T.type_alias do
941
- T.all(
942
- Symbol,
943
- Increase::ExportCreateParams::EntityCsv::Status::In
944
- )
945
- end
946
- OrSymbol = T.type_alias { T.any(Symbol, String) }
947
-
948
- # The entity is active.
949
- ACTIVE =
950
- T.let(
951
- :active,
952
- Increase::ExportCreateParams::EntityCsv::Status::In::TaggedSymbol
953
- )
954
-
955
- # The entity is archived, and can no longer be used to create accounts.
956
- ARCHIVED =
957
- T.let(
958
- :archived,
959
- Increase::ExportCreateParams::EntityCsv::Status::In::TaggedSymbol
960
- )
961
-
962
- # The entity is temporarily disabled and cannot be used for financial activity.
963
- DISABLED =
964
- T.let(
965
- :disabled,
966
- Increase::ExportCreateParams::EntityCsv::Status::In::TaggedSymbol
967
- )
968
-
969
- sig do
970
- override.returns(
971
- T::Array[
972
- Increase::ExportCreateParams::EntityCsv::Status::In::TaggedSymbol
973
- ]
974
- )
975
- end
976
- def self.values
977
- end
978
- end
979
- end
980
851
  end
981
852
 
982
853
  class FundingInstructions < Increase::Internal::Type::BaseModel
@@ -1038,30 +909,20 @@ module Increase
1038
909
  end
1039
910
  attr_writer :created_at
1040
911
 
1041
- # Filter exported Transactions to the specified Program.
1042
- sig { returns(T.nilable(String)) }
1043
- attr_reader :program_id
1044
-
1045
- sig { params(program_id: String).void }
1046
- attr_writer :program_id
1047
-
1048
912
  # Options for the created export. Required if `category` is equal to
1049
913
  # `transaction_csv`.
1050
914
  sig do
1051
915
  params(
1052
916
  account_id: String,
1053
917
  created_at:
1054
- Increase::ExportCreateParams::TransactionCsv::CreatedAt::OrHash,
1055
- program_id: String
918
+ Increase::ExportCreateParams::TransactionCsv::CreatedAt::OrHash
1056
919
  ).returns(T.attached_class)
1057
920
  end
1058
921
  def self.new(
1059
922
  # Filter exported Transactions to the specified Account.
1060
923
  account_id: nil,
1061
924
  # Filter results by time range on the `created_at` attribute.
1062
- created_at: nil,
1063
- # Filter exported Transactions to the specified Program.
1064
- program_id: nil
925
+ created_at: nil
1065
926
  )
1066
927
  end
1067
928
 
@@ -1070,8 +931,7 @@ module Increase
1070
931
  {
1071
932
  account_id: String,
1072
933
  created_at:
1073
- Increase::ExportCreateParams::TransactionCsv::CreatedAt,
1074
- program_id: String
934
+ Increase::ExportCreateParams::TransactionCsv::CreatedAt
1075
935
  }
1076
936
  )
1077
937
  end
@@ -255,8 +255,7 @@ module Increase
255
255
  type balance_csv =
256
256
  {
257
257
  account_id: String,
258
- created_at: Increase::ExportCreateParams::BalanceCsv::CreatedAt,
259
- program_id: String
258
+ created_at: Increase::ExportCreateParams::BalanceCsv::CreatedAt
260
259
  }
261
260
 
262
261
  class BalanceCsv < Increase::Internal::Type::BaseModel
@@ -270,20 +269,14 @@ module Increase
270
269
  Increase::ExportCreateParams::BalanceCsv::CreatedAt
271
270
  ) -> Increase::ExportCreateParams::BalanceCsv::CreatedAt
272
271
 
273
- attr_reader program_id: String?
274
-
275
- def program_id=: (String) -> String
276
-
277
272
  def initialize: (
278
273
  ?account_id: String,
279
- ?created_at: Increase::ExportCreateParams::BalanceCsv::CreatedAt,
280
- ?program_id: String
274
+ ?created_at: Increase::ExportCreateParams::BalanceCsv::CreatedAt
281
275
  ) -> void
282
276
 
283
277
  def to_hash: -> {
284
278
  account_id: String,
285
- created_at: Increase::ExportCreateParams::BalanceCsv::CreatedAt,
286
- program_id: String
279
+ created_at: Increase::ExportCreateParams::BalanceCsv::CreatedAt
287
280
  }
288
281
 
289
282
  type created_at =
@@ -385,57 +378,12 @@ module Increase
385
378
  end
386
379
  end
387
380
 
388
- type entity_csv =
389
- { status: Increase::ExportCreateParams::EntityCsv::Status }
381
+ type entity_csv = { }
390
382
 
391
383
  class EntityCsv < Increase::Internal::Type::BaseModel
392
- attr_reader status: Increase::ExportCreateParams::EntityCsv::Status?
393
-
394
- def status=: (
395
- Increase::ExportCreateParams::EntityCsv::Status
396
- ) -> Increase::ExportCreateParams::EntityCsv::Status
397
-
398
- def initialize: (
399
- ?status: Increase::ExportCreateParams::EntityCsv::Status
400
- ) -> void
401
-
402
- def to_hash: -> {
403
- status: Increase::ExportCreateParams::EntityCsv::Status
404
- }
405
-
406
- type status =
407
- {
408
- in_: ::Array[Increase::Models::ExportCreateParams::EntityCsv::Status::in_]
409
- }
410
-
411
- class Status < Increase::Internal::Type::BaseModel
412
- attr_accessor in_: ::Array[Increase::Models::ExportCreateParams::EntityCsv::Status::in_]
413
-
414
- def initialize: (
415
- in_: ::Array[Increase::Models::ExportCreateParams::EntityCsv::Status::in_]
416
- ) -> void
417
-
418
- def to_hash: -> {
419
- in_: ::Array[Increase::Models::ExportCreateParams::EntityCsv::Status::in_]
420
- }
421
-
422
- type in_ = :active | :archived | :disabled
423
-
424
- module In
425
- extend Increase::Internal::Type::Enum
426
-
427
- # The entity is active.
428
- ACTIVE: :active
429
-
430
- # The entity is archived, and can no longer be used to create accounts.
431
- ARCHIVED: :archived
432
-
433
- # The entity is temporarily disabled and cannot be used for financial activity.
434
- DISABLED: :disabled
384
+ def initialize: -> void
435
385
 
436
- def self?.values: -> ::Array[Increase::Models::ExportCreateParams::EntityCsv::Status::in_]
437
- end
438
- end
386
+ def to_hash: -> { }
439
387
  end
440
388
 
441
389
  type funding_instructions = { account_number_id: String }
@@ -451,8 +399,7 @@ module Increase
451
399
  type transaction_csv =
452
400
  {
453
401
  account_id: String,
454
- created_at: Increase::ExportCreateParams::TransactionCsv::CreatedAt,
455
- program_id: String
402
+ created_at: Increase::ExportCreateParams::TransactionCsv::CreatedAt
456
403
  }
457
404
 
458
405
  class TransactionCsv < Increase::Internal::Type::BaseModel
@@ -466,20 +413,14 @@ module Increase
466
413
  Increase::ExportCreateParams::TransactionCsv::CreatedAt
467
414
  ) -> Increase::ExportCreateParams::TransactionCsv::CreatedAt
468
415
 
469
- attr_reader program_id: String?
470
-
471
- def program_id=: (String) -> String
472
-
473
416
  def initialize: (
474
417
  ?account_id: String,
475
- ?created_at: Increase::ExportCreateParams::TransactionCsv::CreatedAt,
476
- ?program_id: String
418
+ ?created_at: Increase::ExportCreateParams::TransactionCsv::CreatedAt
477
419
  ) -> void
478
420
 
479
421
  def to_hash: -> {
480
422
  account_id: String,
481
- created_at: Increase::ExportCreateParams::TransactionCsv::CreatedAt,
482
- program_id: String
423
+ created_at: Increase::ExportCreateParams::TransactionCsv::CreatedAt
483
424
  }
484
425
 
485
426
  type created_at =
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.192.1
4
+ version: 1.193.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase