increase 1.70.0 → 1.71.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 +8 -0
- data/README.md +1 -1
- data/lib/increase/models/entity.rb +10 -8
- data/lib/increase/models/entity_create_params.rb +10 -8
- data/lib/increase/models/entity_update_params.rb +10 -8
- data/lib/increase/resources/entities.rb +2 -2
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/entity.rbi +12 -9
- data/rbi/increase/models/entity_create_params.rbi +12 -9
- data/rbi/increase/models/entity_update_params.rbi +12 -9
- data/rbi/increase/resources/entities.rbi +6 -4
- data/sig/increase/models/entity.rbs +3 -3
- data/sig/increase/models/entity_create_params.rbs +3 -3
- data/sig/increase/models/entity_update_params.rbs +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 911e86722b1b2a98503e220a71ed20f0638b58b42a6a4e3a0134d64980e4bf90
|
4
|
+
data.tar.gz: a198a4b9ac9220e5770171e87b1db368e17bbcc0c890a85f6df71417a928f8d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bcfe718ba7d8f08197b4e3ae0a57f2f531abb90a527563ea0e5f3d36f4ba422178b155fea1b70734869a7c9f4761f8c35c53f1d59a72ee6c44e52d56dda2df72
|
7
|
+
data.tar.gz: c3244899cd08066d9776b5bfae0d3281d9109239cb663a1bae4bd2b55b334a0c0362b72c0a1d0b6fa831745591cb695825cb625fcb109527e240154b9c3b5575
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.71.0 (2025-09-08)
|
4
|
+
|
5
|
+
Full Changelog: [v1.70.0...v1.71.0](https://github.com/Increase/increase-ruby/compare/v1.70.0...v1.71.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([7c069c1](https://github.com/Increase/increase-ruby/commit/7c069c1f6567eb6eb38eafbc9baafe454d621dea))
|
10
|
+
|
3
11
|
## 1.70.0 (2025-09-08)
|
4
12
|
|
5
13
|
Full Changelog: [v1.69.0...v1.70.0](https://github.com/Increase/increase-ruby/compare/v1.69.0...v1.70.0)
|
data/README.md
CHANGED
@@ -94,8 +94,9 @@ module Increase
|
|
94
94
|
-> { Increase::Internal::Type::ArrayOf[Increase::EntitySupplementalDocument] }
|
95
95
|
|
96
96
|
# @!attribute third_party_verification
|
97
|
-
#
|
98
|
-
#
|
97
|
+
# If you are using a third-party service for identity verification, you can use
|
98
|
+
# this field to associate this Entity with the identifier that represents them in
|
99
|
+
# that service.
|
99
100
|
#
|
100
101
|
# @return [Increase::Models::Entity::ThirdPartyVerification, nil]
|
101
102
|
required :third_party_verification, -> { Increase::Entity::ThirdPartyVerification }, nil?: true
|
@@ -146,7 +147,7 @@ module Increase
|
|
146
147
|
#
|
147
148
|
# @param supplemental_documents [Array<Increase::Models::EntitySupplementalDocument>] Additional documentation associated with the entity. This is limited to the firs
|
148
149
|
#
|
149
|
-
# @param third_party_verification [Increase::Models::Entity::ThirdPartyVerification, nil]
|
150
|
+
# @param third_party_verification [Increase::Models::Entity::ThirdPartyVerification, nil] If you are using a third-party service for identity verification, you can use th
|
150
151
|
#
|
151
152
|
# @param trust [Increase::Models::Entity::Trust, nil] Details of the trust entity. Will be present if `structure` is equal to `trust`.
|
152
153
|
#
|
@@ -960,13 +961,13 @@ module Increase
|
|
960
961
|
module Rating
|
961
962
|
extend Increase::Internal::Type::Enum
|
962
963
|
|
963
|
-
#
|
964
|
+
# Minimal risk of involvement in financial crime.
|
964
965
|
LOW = :low
|
965
966
|
|
966
|
-
#
|
967
|
+
# Moderate risk of involvement in financial crime.
|
967
968
|
MEDIUM = :medium
|
968
969
|
|
969
|
-
#
|
970
|
+
# Elevated risk of involvement in financial crime.
|
970
971
|
HIGH = :high
|
971
972
|
|
972
973
|
# @!method self.values
|
@@ -1033,8 +1034,9 @@ module Increase
|
|
1033
1034
|
required :vendor, enum: -> { Increase::Entity::ThirdPartyVerification::Vendor }
|
1034
1035
|
|
1035
1036
|
# @!method initialize(reference:, vendor:)
|
1036
|
-
#
|
1037
|
-
#
|
1037
|
+
# If you are using a third-party service for identity verification, you can use
|
1038
|
+
# this field to associate this Entity with the identifier that represents them in
|
1039
|
+
# that service.
|
1038
1040
|
#
|
1039
1041
|
# @param reference [String] The reference identifier for the third party verification.
|
1040
1042
|
#
|
@@ -64,8 +64,9 @@ module Increase
|
|
64
64
|
-> { Increase::Internal::Type::ArrayOf[Increase::EntityCreateParams::SupplementalDocument] }
|
65
65
|
|
66
66
|
# @!attribute third_party_verification
|
67
|
-
#
|
68
|
-
#
|
67
|
+
# If you are using a third-party service for identity verification, you can use
|
68
|
+
# this field to associate this Entity with the identifier that represents them in
|
69
|
+
# that service.
|
69
70
|
#
|
70
71
|
# @return [Increase::Models::EntityCreateParams::ThirdPartyVerification, nil]
|
71
72
|
optional :third_party_verification, -> { Increase::EntityCreateParams::ThirdPartyVerification }
|
@@ -97,7 +98,7 @@ module Increase
|
|
97
98
|
#
|
98
99
|
# @param supplemental_documents [Array<Increase::Models::EntityCreateParams::SupplementalDocument>] Additional documentation associated with the entity.
|
99
100
|
#
|
100
|
-
# @param third_party_verification [Increase::Models::EntityCreateParams::ThirdPartyVerification]
|
101
|
+
# @param third_party_verification [Increase::Models::EntityCreateParams::ThirdPartyVerification] If you are using a third-party service for identity verification, you can use th
|
101
102
|
#
|
102
103
|
# @param trust [Increase::Models::EntityCreateParams::Trust] Details of the trust entity to create. Required if `structure` is equal to `trus
|
103
104
|
#
|
@@ -1476,13 +1477,13 @@ module Increase
|
|
1476
1477
|
module Rating
|
1477
1478
|
extend Increase::Internal::Type::Enum
|
1478
1479
|
|
1479
|
-
#
|
1480
|
+
# Minimal risk of involvement in financial crime.
|
1480
1481
|
LOW = :low
|
1481
1482
|
|
1482
|
-
#
|
1483
|
+
# Moderate risk of involvement in financial crime.
|
1483
1484
|
MEDIUM = :medium
|
1484
1485
|
|
1485
|
-
#
|
1486
|
+
# Elevated risk of involvement in financial crime.
|
1486
1487
|
HIGH = :high
|
1487
1488
|
|
1488
1489
|
# @!method self.values
|
@@ -1515,8 +1516,9 @@ module Increase
|
|
1515
1516
|
required :vendor, enum: -> { Increase::EntityCreateParams::ThirdPartyVerification::Vendor }
|
1516
1517
|
|
1517
1518
|
# @!method initialize(reference:, vendor:)
|
1518
|
-
#
|
1519
|
-
#
|
1519
|
+
# If you are using a third-party service for identity verification, you can use
|
1520
|
+
# this field to associate this Entity with the identifier that represents them in
|
1521
|
+
# that service.
|
1520
1522
|
#
|
1521
1523
|
# @param reference [String] The reference identifier for the third party verification.
|
1522
1524
|
#
|
@@ -36,8 +36,9 @@ module Increase
|
|
36
36
|
optional :risk_rating, -> { Increase::EntityUpdateParams::RiskRating }
|
37
37
|
|
38
38
|
# @!attribute third_party_verification
|
39
|
-
#
|
40
|
-
#
|
39
|
+
# If you are using a third-party service for identity verification, you can use
|
40
|
+
# this field to associate this Entity with the identifier that represents them in
|
41
|
+
# that service.
|
41
42
|
#
|
42
43
|
# @return [Increase::Models::EntityUpdateParams::ThirdPartyVerification, nil]
|
43
44
|
optional :third_party_verification, -> { Increase::EntityUpdateParams::ThirdPartyVerification }
|
@@ -61,7 +62,7 @@ module Increase
|
|
61
62
|
#
|
62
63
|
# @param risk_rating [Increase::Models::EntityUpdateParams::RiskRating] An assessment of the entity’s potential risk of involvement in financial crimes,
|
63
64
|
#
|
64
|
-
# @param third_party_verification [Increase::Models::EntityUpdateParams::ThirdPartyVerification]
|
65
|
+
# @param third_party_verification [Increase::Models::EntityUpdateParams::ThirdPartyVerification] If you are using a third-party service for identity verification, you can use th
|
65
66
|
#
|
66
67
|
# @param trust [Increase::Models::EntityUpdateParams::Trust] Details of the trust entity to update. If you specify this parameter and the ent
|
67
68
|
#
|
@@ -341,13 +342,13 @@ module Increase
|
|
341
342
|
module Rating
|
342
343
|
extend Increase::Internal::Type::Enum
|
343
344
|
|
344
|
-
#
|
345
|
+
# Minimal risk of involvement in financial crime.
|
345
346
|
LOW = :low
|
346
347
|
|
347
|
-
#
|
348
|
+
# Moderate risk of involvement in financial crime.
|
348
349
|
MEDIUM = :medium
|
349
350
|
|
350
|
-
#
|
351
|
+
# Elevated risk of involvement in financial crime.
|
351
352
|
HIGH = :high
|
352
353
|
|
353
354
|
# @!method self.values
|
@@ -369,8 +370,9 @@ module Increase
|
|
369
370
|
required :vendor, enum: -> { Increase::EntityUpdateParams::ThirdPartyVerification::Vendor }
|
370
371
|
|
371
372
|
# @!method initialize(reference:, vendor:)
|
372
|
-
#
|
373
|
-
#
|
373
|
+
# If you are using a third-party service for identity verification, you can use
|
374
|
+
# this field to associate this Entity with the identifier that represents them in
|
375
|
+
# that service.
|
374
376
|
#
|
375
377
|
# @param reference [String] The reference identifier for the third party verification.
|
376
378
|
#
|
@@ -26,7 +26,7 @@ module Increase
|
|
26
26
|
#
|
27
27
|
# @param supplemental_documents [Array<Increase::Models::EntityCreateParams::SupplementalDocument>] Additional documentation associated with the entity.
|
28
28
|
#
|
29
|
-
# @param third_party_verification [Increase::Models::EntityCreateParams::ThirdPartyVerification]
|
29
|
+
# @param third_party_verification [Increase::Models::EntityCreateParams::ThirdPartyVerification] If you are using a third-party service for identity verification, you can use th
|
30
30
|
#
|
31
31
|
# @param trust [Increase::Models::EntityCreateParams::Trust] Details of the trust entity to create. Required if `structure` is equal to `trus
|
32
32
|
#
|
@@ -83,7 +83,7 @@ module Increase
|
|
83
83
|
#
|
84
84
|
# @param risk_rating [Increase::Models::EntityUpdateParams::RiskRating] An assessment of the entity’s potential risk of involvement in financial crimes,
|
85
85
|
#
|
86
|
-
# @param third_party_verification [Increase::Models::EntityUpdateParams::ThirdPartyVerification]
|
86
|
+
# @param third_party_verification [Increase::Models::EntityUpdateParams::ThirdPartyVerification] If you are using a third-party service for identity verification, you can use th
|
87
87
|
#
|
88
88
|
# @param trust [Increase::Models::EntityUpdateParams::Trust] Details of the trust entity to update. If you specify this parameter and the ent
|
89
89
|
#
|
data/lib/increase/version.rb
CHANGED
@@ -100,8 +100,9 @@ module Increase
|
|
100
100
|
sig { returns(T::Array[Increase::EntitySupplementalDocument]) }
|
101
101
|
attr_accessor :supplemental_documents
|
102
102
|
|
103
|
-
#
|
104
|
-
#
|
103
|
+
# If you are using a third-party service for identity verification, you can use
|
104
|
+
# this field to associate this Entity with the identifier that represents them in
|
105
|
+
# that service.
|
105
106
|
sig { returns(T.nilable(Increase::Entity::ThirdPartyVerification)) }
|
106
107
|
attr_reader :third_party_verification
|
107
108
|
|
@@ -187,8 +188,9 @@ module Increase
|
|
187
188
|
# first 10 documents for an entity. If an entity has more than 10 documents, use
|
188
189
|
# the GET /entity_supplemental_documents list endpoint to retrieve them.
|
189
190
|
supplemental_documents:,
|
190
|
-
#
|
191
|
-
#
|
191
|
+
# If you are using a third-party service for identity verification, you can use
|
192
|
+
# this field to associate this Entity with the identifier that represents them in
|
193
|
+
# that service.
|
192
194
|
third_party_verification:,
|
193
195
|
# Details of the trust entity. Will be present if `structure` is equal to `trust`.
|
194
196
|
trust:,
|
@@ -1640,14 +1642,14 @@ module Increase
|
|
1640
1642
|
T.type_alias { T.all(Symbol, Increase::Entity::RiskRating::Rating) }
|
1641
1643
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
1642
1644
|
|
1643
|
-
#
|
1645
|
+
# Minimal risk of involvement in financial crime.
|
1644
1646
|
LOW = T.let(:low, Increase::Entity::RiskRating::Rating::TaggedSymbol)
|
1645
1647
|
|
1646
|
-
#
|
1648
|
+
# Moderate risk of involvement in financial crime.
|
1647
1649
|
MEDIUM =
|
1648
1650
|
T.let(:medium, Increase::Entity::RiskRating::Rating::TaggedSymbol)
|
1649
1651
|
|
1650
|
-
#
|
1652
|
+
# Elevated risk of involvement in financial crime.
|
1651
1653
|
HIGH =
|
1652
1654
|
T.let(:high, Increase::Entity::RiskRating::Rating::TaggedSymbol)
|
1653
1655
|
|
@@ -1741,8 +1743,9 @@ module Increase
|
|
1741
1743
|
end
|
1742
1744
|
attr_accessor :vendor
|
1743
1745
|
|
1744
|
-
#
|
1745
|
-
#
|
1746
|
+
# If you are using a third-party service for identity verification, you can use
|
1747
|
+
# this field to associate this Entity with the identifier that represents them in
|
1748
|
+
# that service.
|
1746
1749
|
sig do
|
1747
1750
|
params(
|
1748
1751
|
reference: String,
|
@@ -101,8 +101,9 @@ module Increase
|
|
101
101
|
end
|
102
102
|
attr_writer :supplemental_documents
|
103
103
|
|
104
|
-
#
|
105
|
-
#
|
104
|
+
# If you are using a third-party service for identity verification, you can use
|
105
|
+
# this field to associate this Entity with the identifier that represents them in
|
106
|
+
# that service.
|
106
107
|
sig do
|
107
108
|
returns(T.nilable(Increase::EntityCreateParams::ThirdPartyVerification))
|
108
109
|
end
|
@@ -168,8 +169,9 @@ module Increase
|
|
168
169
|
risk_rating: nil,
|
169
170
|
# Additional documentation associated with the entity.
|
170
171
|
supplemental_documents: nil,
|
171
|
-
#
|
172
|
-
#
|
172
|
+
# If you are using a third-party service for identity verification, you can use
|
173
|
+
# this field to associate this Entity with the identifier that represents them in
|
174
|
+
# that service.
|
173
175
|
third_party_verification: nil,
|
174
176
|
# Details of the trust entity to create. Required if `structure` is equal to
|
175
177
|
# `trust`.
|
@@ -2705,21 +2707,21 @@ module Increase
|
|
2705
2707
|
end
|
2706
2708
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
2707
2709
|
|
2708
|
-
#
|
2710
|
+
# Minimal risk of involvement in financial crime.
|
2709
2711
|
LOW =
|
2710
2712
|
T.let(
|
2711
2713
|
:low,
|
2712
2714
|
Increase::EntityCreateParams::RiskRating::Rating::TaggedSymbol
|
2713
2715
|
)
|
2714
2716
|
|
2715
|
-
#
|
2717
|
+
# Moderate risk of involvement in financial crime.
|
2716
2718
|
MEDIUM =
|
2717
2719
|
T.let(
|
2718
2720
|
:medium,
|
2719
2721
|
Increase::EntityCreateParams::RiskRating::Rating::TaggedSymbol
|
2720
2722
|
)
|
2721
2723
|
|
2722
|
-
#
|
2724
|
+
# Elevated risk of involvement in financial crime.
|
2723
2725
|
HIGH =
|
2724
2726
|
T.let(
|
2725
2727
|
:high,
|
@@ -2784,8 +2786,9 @@ module Increase
|
|
2784
2786
|
end
|
2785
2787
|
attr_accessor :vendor
|
2786
2788
|
|
2787
|
-
#
|
2788
|
-
#
|
2789
|
+
# If you are using a third-party service for identity verification, you can use
|
2790
|
+
# this field to associate this Entity with the identifier that represents them in
|
2791
|
+
# that service.
|
2789
2792
|
sig do
|
2790
2793
|
params(
|
2791
2794
|
reference: String,
|
@@ -62,8 +62,9 @@ module Increase
|
|
62
62
|
end
|
63
63
|
attr_writer :risk_rating
|
64
64
|
|
65
|
-
#
|
66
|
-
#
|
65
|
+
# If you are using a third-party service for identity verification, you can use
|
66
|
+
# this field to associate this Entity with the identifier that represents them in
|
67
|
+
# that service.
|
67
68
|
sig do
|
68
69
|
returns(T.nilable(Increase::EntityUpdateParams::ThirdPartyVerification))
|
69
70
|
end
|
@@ -111,8 +112,9 @@ module Increase
|
|
111
112
|
# An assessment of the entity’s potential risk of involvement in financial crimes,
|
112
113
|
# such as money laundering.
|
113
114
|
risk_rating: nil,
|
114
|
-
#
|
115
|
-
#
|
115
|
+
# If you are using a third-party service for identity verification, you can use
|
116
|
+
# this field to associate this Entity with the identifier that represents them in
|
117
|
+
# that service.
|
116
118
|
third_party_verification: nil,
|
117
119
|
# Details of the trust entity to update. If you specify this parameter and the
|
118
120
|
# entity is not a trust, the request will fail.
|
@@ -624,21 +626,21 @@ module Increase
|
|
624
626
|
end
|
625
627
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
626
628
|
|
627
|
-
#
|
629
|
+
# Minimal risk of involvement in financial crime.
|
628
630
|
LOW =
|
629
631
|
T.let(
|
630
632
|
:low,
|
631
633
|
Increase::EntityUpdateParams::RiskRating::Rating::TaggedSymbol
|
632
634
|
)
|
633
635
|
|
634
|
-
#
|
636
|
+
# Moderate risk of involvement in financial crime.
|
635
637
|
MEDIUM =
|
636
638
|
T.let(
|
637
639
|
:medium,
|
638
640
|
Increase::EntityUpdateParams::RiskRating::Rating::TaggedSymbol
|
639
641
|
)
|
640
642
|
|
641
|
-
#
|
643
|
+
# Elevated risk of involvement in financial crime.
|
642
644
|
HIGH =
|
643
645
|
T.let(
|
644
646
|
:high,
|
@@ -678,8 +680,9 @@ module Increase
|
|
678
680
|
end
|
679
681
|
attr_accessor :vendor
|
680
682
|
|
681
|
-
#
|
682
|
-
#
|
683
|
+
# If you are using a third-party service for identity verification, you can use
|
684
|
+
# this field to associate this Entity with the identifier that represents them in
|
685
|
+
# that service.
|
683
686
|
sig do
|
684
687
|
params(
|
685
688
|
reference: String,
|
@@ -48,8 +48,9 @@ module Increase
|
|
48
48
|
risk_rating: nil,
|
49
49
|
# Additional documentation associated with the entity.
|
50
50
|
supplemental_documents: nil,
|
51
|
-
#
|
52
|
-
#
|
51
|
+
# If you are using a third-party service for identity verification, you can use
|
52
|
+
# this field to associate this Entity with the identifier that represents them in
|
53
|
+
# that service.
|
53
54
|
third_party_verification: nil,
|
54
55
|
# Details of the trust entity to create. Required if `structure` is equal to
|
55
56
|
# `trust`.
|
@@ -102,8 +103,9 @@ module Increase
|
|
102
103
|
# An assessment of the entity’s potential risk of involvement in financial crimes,
|
103
104
|
# such as money laundering.
|
104
105
|
risk_rating: nil,
|
105
|
-
#
|
106
|
-
#
|
106
|
+
# If you are using a third-party service for identity verification, you can use
|
107
|
+
# this field to associate this Entity with the identifier that represents them in
|
108
|
+
# that service.
|
107
109
|
third_party_verification: nil,
|
108
110
|
# Details of the trust entity to update. If you specify this parameter and the
|
109
111
|
# entity is not a trust, the request will fail.
|
@@ -740,13 +740,13 @@ module Increase
|
|
740
740
|
module Rating
|
741
741
|
extend Increase::Internal::Type::Enum
|
742
742
|
|
743
|
-
#
|
743
|
+
# Minimal risk of involvement in financial crime.
|
744
744
|
LOW: :low
|
745
745
|
|
746
|
-
#
|
746
|
+
# Moderate risk of involvement in financial crime.
|
747
747
|
MEDIUM: :medium
|
748
748
|
|
749
|
-
#
|
749
|
+
# Elevated risk of involvement in financial crime.
|
750
750
|
HIGH: :high
|
751
751
|
|
752
752
|
def self?.values: -> ::Array[Increase::Models::Entity::RiskRating::rating]
|
@@ -1214,13 +1214,13 @@ module Increase
|
|
1214
1214
|
module Rating
|
1215
1215
|
extend Increase::Internal::Type::Enum
|
1216
1216
|
|
1217
|
-
#
|
1217
|
+
# Minimal risk of involvement in financial crime.
|
1218
1218
|
LOW: :low
|
1219
1219
|
|
1220
|
-
#
|
1220
|
+
# Moderate risk of involvement in financial crime.
|
1221
1221
|
MEDIUM: :medium
|
1222
1222
|
|
1223
|
-
#
|
1223
|
+
# Elevated risk of involvement in financial crime.
|
1224
1224
|
HIGH: :high
|
1225
1225
|
|
1226
1226
|
def self?.values: -> ::Array[Increase::Models::EntityCreateParams::RiskRating::rating]
|
@@ -305,13 +305,13 @@ module Increase
|
|
305
305
|
module Rating
|
306
306
|
extend Increase::Internal::Type::Enum
|
307
307
|
|
308
|
-
#
|
308
|
+
# Minimal risk of involvement in financial crime.
|
309
309
|
LOW: :low
|
310
310
|
|
311
|
-
#
|
311
|
+
# Moderate risk of involvement in financial crime.
|
312
312
|
MEDIUM: :medium
|
313
313
|
|
314
|
-
#
|
314
|
+
# Elevated risk of involvement in financial crime.
|
315
315
|
HIGH: :high
|
316
316
|
|
317
317
|
def self?.values: -> ::Array[Increase::Models::EntityUpdateParams::RiskRating::rating]
|