increase 1.66.0 → 1.67.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_update_params.rb +20 -12
- data/lib/increase/resources/entities.rb +4 -4
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/entity_update_params.rbi +24 -12
- data/rbi/increase/resources/entities.rbi +8 -4
- 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: 9466fcaa09f9ec61d32190bb375d3ab087ed0b65fee544da877b25658b7a5ec6
|
4
|
+
data.tar.gz: 144ee545505230e27fe0b71489c8b0ea78decc5b2d4973809e44543ac9b9f2d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8c2585ab6bb76b8b24496228b16d933f2cb332d25385bfeb6b09576fa3589be92c522e74f3aebe9949fdc13514a395a458e4d61c3cad48fa55d78f7ac9481db
|
7
|
+
data.tar.gz: e275e7a3f906bb92ccf256065d87f3c570e987a75bc8c5a2a3fa30f53f89f26a1ca70296d9d4eca9af8cb6d77aba94713282ce0e6291c01eab20afedb28b1e83
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.67.0 (2025-09-05)
|
4
|
+
|
5
|
+
Full Changelog: [v1.66.0...v1.67.0](https://github.com/Increase/increase-ruby/compare/v1.66.0...v1.67.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([d2435db](https://github.com/Increase/increase-ruby/commit/d2435dbe228b43ad2a5169303898d45f09005908))
|
10
|
+
|
3
11
|
## 1.66.0 (2025-09-05)
|
4
12
|
|
5
13
|
Full Changelog: [v1.65.0...v1.66.0](https://github.com/Increase/increase-ruby/compare/v1.65.0...v1.66.0)
|
data/README.md
CHANGED
@@ -8,19 +8,22 @@ module Increase
|
|
8
8
|
include Increase::Internal::Type::RequestParameters
|
9
9
|
|
10
10
|
# @!attribute corporation
|
11
|
-
# Details of the corporation entity to update.
|
11
|
+
# Details of the corporation entity to update. If you specify this parameter and
|
12
|
+
# the entity is not a corporation, the request will fail.
|
12
13
|
#
|
13
14
|
# @return [Increase::Models::EntityUpdateParams::Corporation, nil]
|
14
15
|
optional :corporation, -> { Increase::EntityUpdateParams::Corporation }
|
15
16
|
|
16
17
|
# @!attribute government_authority
|
17
|
-
# Details of the government authority entity to update.
|
18
|
+
# Details of the government authority entity to update. If you specify this
|
19
|
+
# parameter and the entity is not a government authority, the request will fail.
|
18
20
|
#
|
19
21
|
# @return [Increase::Models::EntityUpdateParams::GovernmentAuthority, nil]
|
20
22
|
optional :government_authority, -> { Increase::EntityUpdateParams::GovernmentAuthority }
|
21
23
|
|
22
24
|
# @!attribute natural_person
|
23
|
-
# Details of the natural person entity to update.
|
25
|
+
# Details of the natural person entity to update. If you specify this parameter
|
26
|
+
# and the entity is not a natural person, the request will fail.
|
24
27
|
#
|
25
28
|
# @return [Increase::Models::EntityUpdateParams::NaturalPerson, nil]
|
26
29
|
optional :natural_person, -> { Increase::EntityUpdateParams::NaturalPerson }
|
@@ -40,7 +43,8 @@ module Increase
|
|
40
43
|
optional :third_party_verification, -> { Increase::EntityUpdateParams::ThirdPartyVerification }
|
41
44
|
|
42
45
|
# @!attribute trust
|
43
|
-
# Details of the trust entity to update.
|
46
|
+
# Details of the trust entity to update. If you specify this parameter and the
|
47
|
+
# entity is not a trust, the request will fail.
|
44
48
|
#
|
45
49
|
# @return [Increase::Models::EntityUpdateParams::Trust, nil]
|
46
50
|
optional :trust, -> { Increase::EntityUpdateParams::Trust }
|
@@ -49,17 +53,17 @@ module Increase
|
|
49
53
|
# Some parameter documentations has been truncated, see
|
50
54
|
# {Increase::Models::EntityUpdateParams} for more details.
|
51
55
|
#
|
52
|
-
# @param corporation [Increase::Models::EntityUpdateParams::Corporation] Details of the corporation entity to update.
|
56
|
+
# @param corporation [Increase::Models::EntityUpdateParams::Corporation] Details of the corporation entity to update. If you specify this parameter and t
|
53
57
|
#
|
54
|
-
# @param government_authority [Increase::Models::EntityUpdateParams::GovernmentAuthority] Details of the government authority entity to update.
|
58
|
+
# @param government_authority [Increase::Models::EntityUpdateParams::GovernmentAuthority] Details of the government authority entity to update. If you specify this parame
|
55
59
|
#
|
56
|
-
# @param natural_person [Increase::Models::EntityUpdateParams::NaturalPerson] Details of the natural person entity to update.
|
60
|
+
# @param natural_person [Increase::Models::EntityUpdateParams::NaturalPerson] Details of the natural person entity to update. If you specify this parameter an
|
57
61
|
#
|
58
62
|
# @param risk_rating [Increase::Models::EntityUpdateParams::RiskRating] An assessment of the entity’s potential risk of involvement in financial crimes,
|
59
63
|
#
|
60
64
|
# @param third_party_verification [Increase::Models::EntityUpdateParams::ThirdPartyVerification] A reference to data stored in a third-party verification service. Your integrati
|
61
65
|
#
|
62
|
-
# @param trust [Increase::Models::EntityUpdateParams::Trust] Details of the trust entity to update.
|
66
|
+
# @param trust [Increase::Models::EntityUpdateParams::Trust] Details of the trust entity to update. If you specify this parameter and the ent
|
63
67
|
#
|
64
68
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
65
69
|
|
@@ -71,7 +75,8 @@ module Increase
|
|
71
75
|
optional :name, String
|
72
76
|
|
73
77
|
# @!method initialize(name: nil)
|
74
|
-
# Details of the corporation entity to update.
|
78
|
+
# Details of the corporation entity to update. If you specify this parameter and
|
79
|
+
# the entity is not a corporation, the request will fail.
|
75
80
|
#
|
76
81
|
# @param name [String] The legal name of the corporation.
|
77
82
|
end
|
@@ -84,7 +89,8 @@ module Increase
|
|
84
89
|
optional :name, String
|
85
90
|
|
86
91
|
# @!method initialize(name: nil)
|
87
|
-
# Details of the government authority entity to update.
|
92
|
+
# Details of the government authority entity to update. If you specify this
|
93
|
+
# parameter and the entity is not a government authority, the request will fail.
|
88
94
|
#
|
89
95
|
# @param name [String] The legal name of the government authority.
|
90
96
|
end
|
@@ -97,7 +103,8 @@ module Increase
|
|
97
103
|
optional :name, String
|
98
104
|
|
99
105
|
# @!method initialize(name: nil)
|
100
|
-
# Details of the natural person entity to update.
|
106
|
+
# Details of the natural person entity to update. If you specify this parameter
|
107
|
+
# and the entity is not a natural person, the request will fail.
|
101
108
|
#
|
102
109
|
# @param name [String] The legal name of the natural person.
|
103
110
|
end
|
@@ -196,7 +203,8 @@ module Increase
|
|
196
203
|
optional :name, String
|
197
204
|
|
198
205
|
# @!method initialize(name: nil)
|
199
|
-
# Details of the trust entity to update.
|
206
|
+
# Details of the trust entity to update. If you specify this parameter and the
|
207
|
+
# entity is not a trust, the request will fail.
|
200
208
|
#
|
201
209
|
# @param name [String] The legal name of the trust.
|
202
210
|
end
|
@@ -75,17 +75,17 @@ module Increase
|
|
75
75
|
#
|
76
76
|
# @param entity_id [String] The entity identifier.
|
77
77
|
#
|
78
|
-
# @param corporation [Increase::Models::EntityUpdateParams::Corporation] Details of the corporation entity to update.
|
78
|
+
# @param corporation [Increase::Models::EntityUpdateParams::Corporation] Details of the corporation entity to update. If you specify this parameter and t
|
79
79
|
#
|
80
|
-
# @param government_authority [Increase::Models::EntityUpdateParams::GovernmentAuthority] Details of the government authority entity to update.
|
80
|
+
# @param government_authority [Increase::Models::EntityUpdateParams::GovernmentAuthority] Details of the government authority entity to update. If you specify this parame
|
81
81
|
#
|
82
|
-
# @param natural_person [Increase::Models::EntityUpdateParams::NaturalPerson] Details of the natural person entity to update.
|
82
|
+
# @param natural_person [Increase::Models::EntityUpdateParams::NaturalPerson] Details of the natural person entity to update. If you specify this parameter an
|
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
86
|
# @param third_party_verification [Increase::Models::EntityUpdateParams::ThirdPartyVerification] A reference to data stored in a third-party verification service. Your integrati
|
87
87
|
#
|
88
|
-
# @param trust [Increase::Models::EntityUpdateParams::Trust] Details of the trust entity to update.
|
88
|
+
# @param trust [Increase::Models::EntityUpdateParams::Trust] Details of the trust entity to update. If you specify this parameter and the ent
|
89
89
|
#
|
90
90
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
|
91
91
|
#
|
data/lib/increase/version.rb
CHANGED
@@ -11,7 +11,8 @@ module Increase
|
|
11
11
|
T.any(Increase::EntityUpdateParams, Increase::Internal::AnyHash)
|
12
12
|
end
|
13
13
|
|
14
|
-
# Details of the corporation entity to update.
|
14
|
+
# Details of the corporation entity to update. If you specify this parameter and
|
15
|
+
# the entity is not a corporation, the request will fail.
|
15
16
|
sig { returns(T.nilable(Increase::EntityUpdateParams::Corporation)) }
|
16
17
|
attr_reader :corporation
|
17
18
|
|
@@ -22,7 +23,8 @@ module Increase
|
|
22
23
|
end
|
23
24
|
attr_writer :corporation
|
24
25
|
|
25
|
-
# Details of the government authority entity to update.
|
26
|
+
# Details of the government authority entity to update. If you specify this
|
27
|
+
# parameter and the entity is not a government authority, the request will fail.
|
26
28
|
sig do
|
27
29
|
returns(T.nilable(Increase::EntityUpdateParams::GovernmentAuthority))
|
28
30
|
end
|
@@ -36,7 +38,8 @@ module Increase
|
|
36
38
|
end
|
37
39
|
attr_writer :government_authority
|
38
40
|
|
39
|
-
# Details of the natural person entity to update.
|
41
|
+
# Details of the natural person entity to update. If you specify this parameter
|
42
|
+
# and the entity is not a natural person, the request will fail.
|
40
43
|
sig { returns(T.nilable(Increase::EntityUpdateParams::NaturalPerson)) }
|
41
44
|
attr_reader :natural_person
|
42
45
|
|
@@ -74,7 +77,8 @@ module Increase
|
|
74
77
|
end
|
75
78
|
attr_writer :third_party_verification
|
76
79
|
|
77
|
-
# Details of the trust entity to update.
|
80
|
+
# Details of the trust entity to update. If you specify this parameter and the
|
81
|
+
# entity is not a trust, the request will fail.
|
78
82
|
sig { returns(T.nilable(Increase::EntityUpdateParams::Trust)) }
|
79
83
|
attr_reader :trust
|
80
84
|
|
@@ -95,11 +99,14 @@ module Increase
|
|
95
99
|
).returns(T.attached_class)
|
96
100
|
end
|
97
101
|
def self.new(
|
98
|
-
# Details of the corporation entity to update.
|
102
|
+
# Details of the corporation entity to update. If you specify this parameter and
|
103
|
+
# the entity is not a corporation, the request will fail.
|
99
104
|
corporation: nil,
|
100
|
-
# Details of the government authority entity to update.
|
105
|
+
# Details of the government authority entity to update. If you specify this
|
106
|
+
# parameter and the entity is not a government authority, the request will fail.
|
101
107
|
government_authority: nil,
|
102
|
-
# Details of the natural person entity to update.
|
108
|
+
# Details of the natural person entity to update. If you specify this parameter
|
109
|
+
# and the entity is not a natural person, the request will fail.
|
103
110
|
natural_person: nil,
|
104
111
|
# An assessment of the entity’s potential risk of involvement in financial crimes,
|
105
112
|
# such as money laundering.
|
@@ -107,7 +114,8 @@ module Increase
|
|
107
114
|
# A reference to data stored in a third-party verification service. Your
|
108
115
|
# integration may or may not use this field.
|
109
116
|
third_party_verification: nil,
|
110
|
-
# Details of the trust entity to update.
|
117
|
+
# Details of the trust entity to update. If you specify this parameter and the
|
118
|
+
# entity is not a trust, the request will fail.
|
111
119
|
trust: nil,
|
112
120
|
request_options: {}
|
113
121
|
)
|
@@ -147,7 +155,8 @@ module Increase
|
|
147
155
|
sig { params(name: String).void }
|
148
156
|
attr_writer :name
|
149
157
|
|
150
|
-
# Details of the corporation entity to update.
|
158
|
+
# Details of the corporation entity to update. If you specify this parameter and
|
159
|
+
# the entity is not a corporation, the request will fail.
|
151
160
|
sig { params(name: String).returns(T.attached_class) }
|
152
161
|
def self.new(
|
153
162
|
# The legal name of the corporation.
|
@@ -176,7 +185,8 @@ module Increase
|
|
176
185
|
sig { params(name: String).void }
|
177
186
|
attr_writer :name
|
178
187
|
|
179
|
-
# Details of the government authority entity to update.
|
188
|
+
# Details of the government authority entity to update. If you specify this
|
189
|
+
# parameter and the entity is not a government authority, the request will fail.
|
180
190
|
sig { params(name: String).returns(T.attached_class) }
|
181
191
|
def self.new(
|
182
192
|
# The legal name of the government authority.
|
@@ -205,7 +215,8 @@ module Increase
|
|
205
215
|
sig { params(name: String).void }
|
206
216
|
attr_writer :name
|
207
217
|
|
208
|
-
# Details of the natural person entity to update.
|
218
|
+
# Details of the natural person entity to update. If you specify this parameter
|
219
|
+
# and the entity is not a natural person, the request will fail.
|
209
220
|
sig { params(name: String).returns(T.attached_class) }
|
210
221
|
def self.new(
|
211
222
|
# The legal name of the natural person.
|
@@ -421,7 +432,8 @@ module Increase
|
|
421
432
|
sig { params(name: String).void }
|
422
433
|
attr_writer :name
|
423
434
|
|
424
|
-
# Details of the trust entity to update.
|
435
|
+
# Details of the trust entity to update. If you specify this parameter and the
|
436
|
+
# entity is not a trust, the request will fail.
|
425
437
|
sig { params(name: String).returns(T.attached_class) }
|
426
438
|
def self.new(
|
427
439
|
# The legal name of the trust.
|
@@ -90,11 +90,14 @@ module Increase
|
|
90
90
|
def update(
|
91
91
|
# The entity identifier.
|
92
92
|
entity_id,
|
93
|
-
# Details of the corporation entity to update.
|
93
|
+
# Details of the corporation entity to update. If you specify this parameter and
|
94
|
+
# the entity is not a corporation, the request will fail.
|
94
95
|
corporation: nil,
|
95
|
-
# Details of the government authority entity to update.
|
96
|
+
# Details of the government authority entity to update. If you specify this
|
97
|
+
# parameter and the entity is not a government authority, the request will fail.
|
96
98
|
government_authority: nil,
|
97
|
-
# Details of the natural person entity to update.
|
99
|
+
# Details of the natural person entity to update. If you specify this parameter
|
100
|
+
# and the entity is not a natural person, the request will fail.
|
98
101
|
natural_person: nil,
|
99
102
|
# An assessment of the entity’s potential risk of involvement in financial crimes,
|
100
103
|
# such as money laundering.
|
@@ -102,7 +105,8 @@ module Increase
|
|
102
105
|
# A reference to data stored in a third-party verification service. Your
|
103
106
|
# integration may or may not use this field.
|
104
107
|
third_party_verification: nil,
|
105
|
-
# Details of the trust entity to update.
|
108
|
+
# Details of the trust entity to update. If you specify this parameter and the
|
109
|
+
# entity is not a trust, the request will fail.
|
106
110
|
trust: nil,
|
107
111
|
request_options: {}
|
108
112
|
)
|