increase 1.22.0 → 1.24.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/ach_transfer.rb +3 -0
- data/lib/increase/models/ach_transfer_create_params.rb +3 -0
- data/lib/increase/models/entity.rb +10 -1
- data/lib/increase/models/entity_create_params.rb +10 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/ach_transfer.rbi +4 -0
- data/rbi/increase/models/ach_transfer_create_params.rbi +7 -0
- data/rbi/increase/models/entity.rbi +22 -1
- data/rbi/increase/models/entity_create_params.rbi +22 -1
- data/sig/increase/models/ach_transfer.rbs +4 -1
- data/sig/increase/models/ach_transfer_create_params.rbs +4 -1
- data/sig/increase/models/entity.rbs +12 -2
- data/sig/increase/models/entity_create_params.rbs +12 -2
- 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: 2e8c91a0fbe7961733a110efa71a787a02e6a288e7f843dc966c9a39d72b2f93
|
4
|
+
data.tar.gz: 5a698a74281ecba0dc761084254b3d025e0d3e90545856f1f98ab45eb4cb25bf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 56ae3d44687c8fab0fd1757cc49ee199d242e21a5d44a080e0241f219ea7db947512fc868277cf334c9d9aa2e749374d543e04487c572202c322bd613abc7ba4
|
7
|
+
data.tar.gz: f8ac4007c8b6b86b349edab08a9cb6a8d44fcc05d1cb30ead9d446e478d3a79491b77a85a238e8e1ba07f2325ef770f89f38b1897664fc439d0246e6da9156ac
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.24.0 (2025-08-04)
|
4
|
+
|
5
|
+
Full Changelog: [v1.23.0...v1.24.0](https://github.com/Increase/increase-ruby/compare/v1.23.0...v1.24.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([12b5f26](https://github.com/Increase/increase-ruby/commit/12b5f266a069ef40b017526dedab92f47a326216))
|
10
|
+
|
11
|
+
## 1.23.0 (2025-08-01)
|
12
|
+
|
13
|
+
Full Changelog: [v1.22.0...v1.23.0](https://github.com/Increase/increase-ruby/compare/v1.22.0...v1.23.0)
|
14
|
+
|
15
|
+
### Features
|
16
|
+
|
17
|
+
* **api:** api update ([16fe155](https://github.com/Increase/increase-ruby/commit/16fe1558aeff7263c3cb1cf49cf42e919dd55a73))
|
18
|
+
|
3
19
|
## 1.22.0 (2025-08-01)
|
4
20
|
|
5
21
|
Full Changelog: [v1.21.0...v1.22.0](https://github.com/Increase/increase-ruby/compare/v1.21.0...v1.22.0)
|
data/README.md
CHANGED
@@ -600,9 +600,18 @@ module Increase
|
|
600
600
|
module Category
|
601
601
|
extend Increase::Internal::Type::Enum
|
602
602
|
|
603
|
-
#
|
603
|
+
# A municipality.
|
604
604
|
MUNICIPALITY = :municipality
|
605
605
|
|
606
|
+
# A state agency.
|
607
|
+
STATE_AGENCY = :state_agency
|
608
|
+
|
609
|
+
# A state government.
|
610
|
+
STATE_GOVERNMENT = :state_government
|
611
|
+
|
612
|
+
# A federal agency.
|
613
|
+
FEDERAL_AGENCY = :federal_agency
|
614
|
+
|
606
615
|
# @!method self.values
|
607
616
|
# @return [Array<Symbol>]
|
608
617
|
end
|
@@ -794,9 +794,18 @@ module Increase
|
|
794
794
|
module Category
|
795
795
|
extend Increase::Internal::Type::Enum
|
796
796
|
|
797
|
-
#
|
797
|
+
# A municipality.
|
798
798
|
MUNICIPALITY = :municipality
|
799
799
|
|
800
|
+
# A state agency.
|
801
|
+
STATE_AGENCY = :state_agency
|
802
|
+
|
803
|
+
# A state government.
|
804
|
+
STATE_GOVERNMENT = :state_government
|
805
|
+
|
806
|
+
# A federal agency.
|
807
|
+
FEDERAL_AGENCY = :federal_agency
|
808
|
+
|
800
809
|
# @!method self.values
|
801
810
|
# @return [Array<Symbol>]
|
802
811
|
end
|
data/lib/increase/version.rb
CHANGED
@@ -1157,6 +1157,10 @@ module Increase
|
|
1157
1157
|
# A savings account.
|
1158
1158
|
SAVINGS = T.let(:savings, Increase::ACHTransfer::Funding::TaggedSymbol)
|
1159
1159
|
|
1160
|
+
# A bank's general ledger. Uncommon.
|
1161
|
+
GENERAL_LEDGER =
|
1162
|
+
T.let(:general_ledger, Increase::ACHTransfer::Funding::TaggedSymbol)
|
1163
|
+
|
1160
1164
|
sig do
|
1161
1165
|
override.returns(
|
1162
1166
|
T::Array[Increase::ACHTransfer::Funding::TaggedSymbol]
|
@@ -698,6 +698,13 @@ module Increase
|
|
698
698
|
Increase::ACHTransferCreateParams::Funding::TaggedSymbol
|
699
699
|
)
|
700
700
|
|
701
|
+
# A bank's general ledger. Uncommon.
|
702
|
+
GENERAL_LEDGER =
|
703
|
+
T.let(
|
704
|
+
:general_ledger,
|
705
|
+
Increase::ACHTransferCreateParams::Funding::TaggedSymbol
|
706
|
+
)
|
707
|
+
|
701
708
|
sig do
|
702
709
|
override.returns(
|
703
710
|
T::Array[Increase::ACHTransferCreateParams::Funding::TaggedSymbol]
|
@@ -981,13 +981,34 @@ module Increase
|
|
981
981
|
end
|
982
982
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
983
983
|
|
984
|
-
#
|
984
|
+
# A municipality.
|
985
985
|
MUNICIPALITY =
|
986
986
|
T.let(
|
987
987
|
:municipality,
|
988
988
|
Increase::Entity::GovernmentAuthority::Category::TaggedSymbol
|
989
989
|
)
|
990
990
|
|
991
|
+
# A state agency.
|
992
|
+
STATE_AGENCY =
|
993
|
+
T.let(
|
994
|
+
:state_agency,
|
995
|
+
Increase::Entity::GovernmentAuthority::Category::TaggedSymbol
|
996
|
+
)
|
997
|
+
|
998
|
+
# A state government.
|
999
|
+
STATE_GOVERNMENT =
|
1000
|
+
T.let(
|
1001
|
+
:state_government,
|
1002
|
+
Increase::Entity::GovernmentAuthority::Category::TaggedSymbol
|
1003
|
+
)
|
1004
|
+
|
1005
|
+
# A federal agency.
|
1006
|
+
FEDERAL_AGENCY =
|
1007
|
+
T.let(
|
1008
|
+
:federal_agency,
|
1009
|
+
Increase::Entity::GovernmentAuthority::Category::TaggedSymbol
|
1010
|
+
)
|
1011
|
+
|
991
1012
|
sig do
|
992
1013
|
override.returns(
|
993
1014
|
T::Array[
|
@@ -1433,13 +1433,34 @@ module Increase
|
|
1433
1433
|
end
|
1434
1434
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
1435
1435
|
|
1436
|
-
#
|
1436
|
+
# A municipality.
|
1437
1437
|
MUNICIPALITY =
|
1438
1438
|
T.let(
|
1439
1439
|
:municipality,
|
1440
1440
|
Increase::EntityCreateParams::GovernmentAuthority::Category::TaggedSymbol
|
1441
1441
|
)
|
1442
1442
|
|
1443
|
+
# A state agency.
|
1444
|
+
STATE_AGENCY =
|
1445
|
+
T.let(
|
1446
|
+
:state_agency,
|
1447
|
+
Increase::EntityCreateParams::GovernmentAuthority::Category::TaggedSymbol
|
1448
|
+
)
|
1449
|
+
|
1450
|
+
# A state government.
|
1451
|
+
STATE_GOVERNMENT =
|
1452
|
+
T.let(
|
1453
|
+
:state_government,
|
1454
|
+
Increase::EntityCreateParams::GovernmentAuthority::Category::TaggedSymbol
|
1455
|
+
)
|
1456
|
+
|
1457
|
+
# A federal agency.
|
1458
|
+
FEDERAL_AGENCY =
|
1459
|
+
T.let(
|
1460
|
+
:federal_agency,
|
1461
|
+
Increase::EntityCreateParams::GovernmentAuthority::Category::TaggedSymbol
|
1462
|
+
)
|
1463
|
+
|
1443
1464
|
sig do
|
1444
1465
|
override.returns(
|
1445
1466
|
T::Array[
|
@@ -448,7 +448,7 @@ module Increase
|
|
448
448
|
def self?.values: -> ::Array[Increase::Models::ACHTransfer::destination_account_holder]
|
449
449
|
end
|
450
450
|
|
451
|
-
type funding = :checking | :savings
|
451
|
+
type funding = :checking | :savings | :general_ledger
|
452
452
|
|
453
453
|
module Funding
|
454
454
|
extend Increase::Internal::Type::Enum
|
@@ -459,6 +459,9 @@ module Increase
|
|
459
459
|
# A savings account.
|
460
460
|
SAVINGS: :savings
|
461
461
|
|
462
|
+
# A bank's general ledger. Uncommon.
|
463
|
+
GENERAL_LEDGER: :general_ledger
|
464
|
+
|
462
465
|
def self?.values: -> ::Array[Increase::Models::ACHTransfer::funding]
|
463
466
|
end
|
464
467
|
|
@@ -281,7 +281,7 @@ module Increase
|
|
281
281
|
def self?.values: -> ::Array[Increase::Models::ACHTransferCreateParams::destination_account_holder]
|
282
282
|
end
|
283
283
|
|
284
|
-
type funding = :checking | :savings
|
284
|
+
type funding = :checking | :savings | :general_ledger
|
285
285
|
|
286
286
|
module Funding
|
287
287
|
extend Increase::Internal::Type::Enum
|
@@ -292,6 +292,9 @@ module Increase
|
|
292
292
|
# A savings account.
|
293
293
|
SAVINGS: :savings
|
294
294
|
|
295
|
+
# A bank's general ledger. Uncommon.
|
296
|
+
GENERAL_LEDGER: :general_ledger
|
297
|
+
|
295
298
|
def self?.values: -> ::Array[Increase::Models::ACHTransferCreateParams::funding]
|
296
299
|
end
|
297
300
|
|
@@ -430,14 +430,24 @@ module Increase
|
|
430
430
|
def to_hash: -> { authorized_person_id: String, name: String }
|
431
431
|
end
|
432
432
|
|
433
|
-
type category =
|
433
|
+
type category =
|
434
|
+
:municipality | :state_agency | :state_government | :federal_agency
|
434
435
|
|
435
436
|
module Category
|
436
437
|
extend Increase::Internal::Type::Enum
|
437
438
|
|
438
|
-
#
|
439
|
+
# A municipality.
|
439
440
|
MUNICIPALITY: :municipality
|
440
441
|
|
442
|
+
# A state agency.
|
443
|
+
STATE_AGENCY: :state_agency
|
444
|
+
|
445
|
+
# A state government.
|
446
|
+
STATE_GOVERNMENT: :state_government
|
447
|
+
|
448
|
+
# A federal agency.
|
449
|
+
FEDERAL_AGENCY: :federal_agency
|
450
|
+
|
441
451
|
def self?.values: -> ::Array[Increase::Models::Entity::GovernmentAuthority::category]
|
442
452
|
end
|
443
453
|
end
|
@@ -636,14 +636,24 @@ module Increase
|
|
636
636
|
def to_hash: -> { name: String }
|
637
637
|
end
|
638
638
|
|
639
|
-
type category =
|
639
|
+
type category =
|
640
|
+
:municipality | :state_agency | :state_government | :federal_agency
|
640
641
|
|
641
642
|
module Category
|
642
643
|
extend Increase::Internal::Type::Enum
|
643
644
|
|
644
|
-
#
|
645
|
+
# A municipality.
|
645
646
|
MUNICIPALITY: :municipality
|
646
647
|
|
648
|
+
# A state agency.
|
649
|
+
STATE_AGENCY: :state_agency
|
650
|
+
|
651
|
+
# A state government.
|
652
|
+
STATE_GOVERNMENT: :state_government
|
653
|
+
|
654
|
+
# A federal agency.
|
655
|
+
FEDERAL_AGENCY: :federal_agency
|
656
|
+
|
647
657
|
def self?.values: -> ::Array[Increase::Models::EntityCreateParams::GovernmentAuthority::category]
|
648
658
|
end
|
649
659
|
end
|
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.24.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Increase
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|