increase 1.159.0 → 1.160.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 +9 -1
- data/lib/increase/models/entity_create_params.rb +10 -1
- data/lib/increase/models/entity_update_params.rb +10 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/entity.rbi +8 -0
- data/rbi/increase/models/entity_create_params.rbi +13 -0
- data/rbi/increase/models/entity_update_params.rbi +13 -0
- data/sig/increase/models/entity.rbs +5 -0
- data/sig/increase/models/entity_create_params.rbs +7 -0
- data/sig/increase/models/entity_update_params.rbs +7 -0
- 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: c8c1c7c96c89aa6bd4d15958b4b515ebe2664b29aac652425ed703c3573281c4
|
|
4
|
+
data.tar.gz: f941658433d86000690ca5a00c6c45c5436eccd37b690b8224cc84269750abff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ea0438fef562b57184b8a7b6ca884f9f261b61c00a8c00da25c002d5ad826f1cc3a6068a9adb90c93d24b46d6153cd9061655874d1acd3cb872fc6a77c40ec86
|
|
7
|
+
data.tar.gz: 89325a8fe1d38425482bd8bc7487f9cf50e0fb0dcd0029136d060510939d97009a0e748cab2ad1a4a65c8246ae4be12bc346b04d3ad4c45c0a9c43ec5fc60957
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.160.0 (2025-12-15)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.159.0...v1.160.0](https://github.com/Increase/increase-ruby/compare/v1.159.0...v1.160.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([5d1d461](https://github.com/Increase/increase-ruby/commit/5d1d46157b5a707fc910c14e60061e4b89c1f52d))
|
|
10
|
+
|
|
3
11
|
## 1.159.0 (2025-12-09)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.158.0...v1.159.0](https://github.com/Increase/increase-ruby/compare/v1.158.0...v1.159.0)
|
data/README.md
CHANGED
|
@@ -169,6 +169,12 @@ module Increase
|
|
|
169
169
|
required :beneficial_owners,
|
|
170
170
|
-> { Increase::Internal::Type::ArrayOf[Increase::Entity::Corporation::BeneficialOwner] }
|
|
171
171
|
|
|
172
|
+
# @!attribute email
|
|
173
|
+
# An email address for the business.
|
|
174
|
+
#
|
|
175
|
+
# @return [String, nil]
|
|
176
|
+
required :email, String, nil?: true
|
|
177
|
+
|
|
172
178
|
# @!attribute incorporation_state
|
|
173
179
|
# The two-letter United States Postal Service (USPS) abbreviation for the
|
|
174
180
|
# corporation's state of incorporation.
|
|
@@ -201,7 +207,7 @@ module Increase
|
|
|
201
207
|
# @return [String, nil]
|
|
202
208
|
required :website, String, nil?: true
|
|
203
209
|
|
|
204
|
-
# @!method initialize(address:, beneficial_owners:, incorporation_state:, industry_code:, name:, tax_identifier:, website:)
|
|
210
|
+
# @!method initialize(address:, beneficial_owners:, email:, incorporation_state:, industry_code:, name:, tax_identifier:, website:)
|
|
205
211
|
# Some parameter documentations has been truncated, see
|
|
206
212
|
# {Increase::Models::Entity::Corporation} for more details.
|
|
207
213
|
#
|
|
@@ -212,6 +218,8 @@ module Increase
|
|
|
212
218
|
#
|
|
213
219
|
# @param beneficial_owners [Array<Increase::Models::Entity::Corporation::BeneficialOwner>] The identifying details of anyone controlling or owning 25% or more of the corpo
|
|
214
220
|
#
|
|
221
|
+
# @param email [String, nil] An email address for the business.
|
|
222
|
+
#
|
|
215
223
|
# @param incorporation_state [String, nil] The two-letter United States Postal Service (USPS) abbreviation for the corporat
|
|
216
224
|
#
|
|
217
225
|
# @param industry_code [String, nil] The numeric North American Industry Classification System (NAICS) code submitted
|
|
@@ -165,6 +165,13 @@ module Increase
|
|
|
165
165
|
optional :beneficial_ownership_exemption_reason,
|
|
166
166
|
enum: -> { Increase::EntityCreateParams::Corporation::BeneficialOwnershipExemptionReason }
|
|
167
167
|
|
|
168
|
+
# @!attribute email
|
|
169
|
+
# An email address for the business. Not every program requires an email for
|
|
170
|
+
# submitted Entities.
|
|
171
|
+
#
|
|
172
|
+
# @return [String, nil]
|
|
173
|
+
optional :email, String
|
|
174
|
+
|
|
168
175
|
# @!attribute incorporation_state
|
|
169
176
|
# The two-letter United States Postal Service (USPS) abbreviation for the
|
|
170
177
|
# corporation's state of incorporation.
|
|
@@ -187,7 +194,7 @@ module Increase
|
|
|
187
194
|
# @return [String, nil]
|
|
188
195
|
optional :website, String
|
|
189
196
|
|
|
190
|
-
# @!method initialize(address:, beneficial_owners:, name:, tax_identifier:, beneficial_ownership_exemption_reason: nil, incorporation_state: nil, industry_code: nil, website: nil)
|
|
197
|
+
# @!method initialize(address:, beneficial_owners:, name:, tax_identifier:, beneficial_ownership_exemption_reason: nil, email: nil, incorporation_state: nil, industry_code: nil, website: nil)
|
|
191
198
|
# Some parameter documentations has been truncated, see
|
|
192
199
|
# {Increase::Models::EntityCreateParams::Corporation} for more details.
|
|
193
200
|
#
|
|
@@ -204,6 +211,8 @@ module Increase
|
|
|
204
211
|
#
|
|
205
212
|
# @param beneficial_ownership_exemption_reason [Symbol, Increase::Models::EntityCreateParams::Corporation::BeneficialOwnershipExemptionReason] If the entity is exempt from the requirement to submit beneficial owners, provid
|
|
206
213
|
#
|
|
214
|
+
# @param email [String] An email address for the business. Not every program requires an email for submi
|
|
215
|
+
#
|
|
207
216
|
# @param incorporation_state [String] The two-letter United States Postal Service (USPS) abbreviation for the corporat
|
|
208
217
|
#
|
|
209
218
|
# @param industry_code [String] The North American Industry Classification System (NAICS) code for the corporati
|
|
@@ -86,6 +86,13 @@ module Increase
|
|
|
86
86
|
# @return [Increase::Models::EntityUpdateParams::Corporation::Address, nil]
|
|
87
87
|
optional :address, -> { Increase::EntityUpdateParams::Corporation::Address }
|
|
88
88
|
|
|
89
|
+
# @!attribute email
|
|
90
|
+
# An email address for the business. Not every program requires an email for
|
|
91
|
+
# submitted Entities.
|
|
92
|
+
#
|
|
93
|
+
# @return [String, nil]
|
|
94
|
+
optional :email, String
|
|
95
|
+
|
|
89
96
|
# @!attribute industry_code
|
|
90
97
|
# The North American Industry Classification System (NAICS) code for the
|
|
91
98
|
# corporation's primary line of business. This is a number, like `5132` for
|
|
@@ -101,7 +108,7 @@ module Increase
|
|
|
101
108
|
# @return [String, nil]
|
|
102
109
|
optional :name, String
|
|
103
110
|
|
|
104
|
-
# @!method initialize(address: nil, industry_code: nil, name: nil)
|
|
111
|
+
# @!method initialize(address: nil, email: nil, industry_code: nil, name: nil)
|
|
105
112
|
# Some parameter documentations has been truncated, see
|
|
106
113
|
# {Increase::Models::EntityUpdateParams::Corporation} for more details.
|
|
107
114
|
#
|
|
@@ -110,6 +117,8 @@ module Increase
|
|
|
110
117
|
#
|
|
111
118
|
# @param address [Increase::Models::EntityUpdateParams::Corporation::Address] The entity's physical address. Mail receiving locations like PO Boxes and PMB's
|
|
112
119
|
#
|
|
120
|
+
# @param email [String] An email address for the business. Not every program requires an email for submi
|
|
121
|
+
#
|
|
113
122
|
# @param industry_code [String] The North American Industry Classification System (NAICS) code for the corporati
|
|
114
123
|
#
|
|
115
124
|
# @param name [String] The legal name of the corporation.
|
data/lib/increase/version.rb
CHANGED
|
@@ -250,6 +250,10 @@ module Increase
|
|
|
250
250
|
end
|
|
251
251
|
attr_accessor :beneficial_owners
|
|
252
252
|
|
|
253
|
+
# An email address for the business.
|
|
254
|
+
sig { returns(T.nilable(String)) }
|
|
255
|
+
attr_accessor :email
|
|
256
|
+
|
|
253
257
|
# The two-letter United States Postal Service (USPS) abbreviation for the
|
|
254
258
|
# corporation's state of incorporation.
|
|
255
259
|
sig { returns(T.nilable(String)) }
|
|
@@ -279,6 +283,7 @@ module Increase
|
|
|
279
283
|
address: Increase::Entity::Corporation::Address::OrHash,
|
|
280
284
|
beneficial_owners:
|
|
281
285
|
T::Array[Increase::Entity::Corporation::BeneficialOwner::OrHash],
|
|
286
|
+
email: T.nilable(String),
|
|
282
287
|
incorporation_state: T.nilable(String),
|
|
283
288
|
industry_code: T.nilable(String),
|
|
284
289
|
name: String,
|
|
@@ -292,6 +297,8 @@ module Increase
|
|
|
292
297
|
# The identifying details of anyone controlling or owning 25% or more of the
|
|
293
298
|
# corporation.
|
|
294
299
|
beneficial_owners:,
|
|
300
|
+
# An email address for the business.
|
|
301
|
+
email:,
|
|
295
302
|
# The two-letter United States Postal Service (USPS) abbreviation for the
|
|
296
303
|
# corporation's state of incorporation.
|
|
297
304
|
incorporation_state:,
|
|
@@ -313,6 +320,7 @@ module Increase
|
|
|
313
320
|
address: Increase::Entity::Corporation::Address,
|
|
314
321
|
beneficial_owners:
|
|
315
322
|
T::Array[Increase::Entity::Corporation::BeneficialOwner],
|
|
323
|
+
email: T.nilable(String),
|
|
316
324
|
incorporation_state: T.nilable(String),
|
|
317
325
|
industry_code: T.nilable(String),
|
|
318
326
|
name: String,
|
|
@@ -310,6 +310,14 @@ module Increase
|
|
|
310
310
|
end
|
|
311
311
|
attr_writer :beneficial_ownership_exemption_reason
|
|
312
312
|
|
|
313
|
+
# An email address for the business. Not every program requires an email for
|
|
314
|
+
# submitted Entities.
|
|
315
|
+
sig { returns(T.nilable(String)) }
|
|
316
|
+
attr_reader :email
|
|
317
|
+
|
|
318
|
+
sig { params(email: String).void }
|
|
319
|
+
attr_writer :email
|
|
320
|
+
|
|
313
321
|
# The two-letter United States Postal Service (USPS) abbreviation for the
|
|
314
322
|
# corporation's state of incorporation.
|
|
315
323
|
sig { returns(T.nilable(String)) }
|
|
@@ -348,6 +356,7 @@ module Increase
|
|
|
348
356
|
tax_identifier: String,
|
|
349
357
|
beneficial_ownership_exemption_reason:
|
|
350
358
|
Increase::EntityCreateParams::Corporation::BeneficialOwnershipExemptionReason::OrSymbol,
|
|
359
|
+
email: String,
|
|
351
360
|
incorporation_state: String,
|
|
352
361
|
industry_code: String,
|
|
353
362
|
website: String
|
|
@@ -369,6 +378,9 @@ module Increase
|
|
|
369
378
|
# provide the justification. If a reason is provided, you do not need to submit a
|
|
370
379
|
# list of beneficial owners.
|
|
371
380
|
beneficial_ownership_exemption_reason: nil,
|
|
381
|
+
# An email address for the business. Not every program requires an email for
|
|
382
|
+
# submitted Entities.
|
|
383
|
+
email: nil,
|
|
372
384
|
# The two-letter United States Postal Service (USPS) abbreviation for the
|
|
373
385
|
# corporation's state of incorporation.
|
|
374
386
|
incorporation_state: nil,
|
|
@@ -394,6 +406,7 @@ module Increase
|
|
|
394
406
|
tax_identifier: String,
|
|
395
407
|
beneficial_ownership_exemption_reason:
|
|
396
408
|
Increase::EntityCreateParams::Corporation::BeneficialOwnershipExemptionReason::OrSymbol,
|
|
409
|
+
email: String,
|
|
397
410
|
incorporation_state: String,
|
|
398
411
|
industry_code: String,
|
|
399
412
|
website: String
|
|
@@ -179,6 +179,14 @@ module Increase
|
|
|
179
179
|
end
|
|
180
180
|
attr_writer :address
|
|
181
181
|
|
|
182
|
+
# An email address for the business. Not every program requires an email for
|
|
183
|
+
# submitted Entities.
|
|
184
|
+
sig { returns(T.nilable(String)) }
|
|
185
|
+
attr_reader :email
|
|
186
|
+
|
|
187
|
+
sig { params(email: String).void }
|
|
188
|
+
attr_writer :email
|
|
189
|
+
|
|
182
190
|
# The North American Industry Classification System (NAICS) code for the
|
|
183
191
|
# corporation's primary line of business. This is a number, like `5132` for
|
|
184
192
|
# `Software Publishers`. A full list of classification codes is available
|
|
@@ -201,6 +209,7 @@ module Increase
|
|
|
201
209
|
sig do
|
|
202
210
|
params(
|
|
203
211
|
address: Increase::EntityUpdateParams::Corporation::Address::OrHash,
|
|
212
|
+
email: String,
|
|
204
213
|
industry_code: String,
|
|
205
214
|
name: String
|
|
206
215
|
).returns(T.attached_class)
|
|
@@ -209,6 +218,9 @@ module Increase
|
|
|
209
218
|
# The entity's physical address. Mail receiving locations like PO Boxes and PMB's
|
|
210
219
|
# are disallowed.
|
|
211
220
|
address: nil,
|
|
221
|
+
# An email address for the business. Not every program requires an email for
|
|
222
|
+
# submitted Entities.
|
|
223
|
+
email: nil,
|
|
212
224
|
# The North American Industry Classification System (NAICS) code for the
|
|
213
225
|
# corporation's primary line of business. This is a number, like `5132` for
|
|
214
226
|
# `Software Publishers`. A full list of classification codes is available
|
|
@@ -223,6 +235,7 @@ module Increase
|
|
|
223
235
|
override.returns(
|
|
224
236
|
{
|
|
225
237
|
address: Increase::EntityUpdateParams::Corporation::Address,
|
|
238
|
+
email: String,
|
|
226
239
|
industry_code: String,
|
|
227
240
|
name: String
|
|
228
241
|
}
|
|
@@ -95,6 +95,7 @@ module Increase
|
|
|
95
95
|
{
|
|
96
96
|
address: Increase::Entity::Corporation::Address,
|
|
97
97
|
beneficial_owners: ::Array[Increase::Entity::Corporation::BeneficialOwner],
|
|
98
|
+
email: String?,
|
|
98
99
|
incorporation_state: String?,
|
|
99
100
|
industry_code: String?,
|
|
100
101
|
name: String,
|
|
@@ -107,6 +108,8 @@ module Increase
|
|
|
107
108
|
|
|
108
109
|
attr_accessor beneficial_owners: ::Array[Increase::Entity::Corporation::BeneficialOwner]
|
|
109
110
|
|
|
111
|
+
attr_accessor email: String?
|
|
112
|
+
|
|
110
113
|
attr_accessor incorporation_state: String?
|
|
111
114
|
|
|
112
115
|
attr_accessor industry_code: String?
|
|
@@ -120,6 +123,7 @@ module Increase
|
|
|
120
123
|
def initialize: (
|
|
121
124
|
address: Increase::Entity::Corporation::Address,
|
|
122
125
|
beneficial_owners: ::Array[Increase::Entity::Corporation::BeneficialOwner],
|
|
126
|
+
email: String?,
|
|
123
127
|
incorporation_state: String?,
|
|
124
128
|
industry_code: String?,
|
|
125
129
|
name: String,
|
|
@@ -130,6 +134,7 @@ module Increase
|
|
|
130
134
|
def to_hash: -> {
|
|
131
135
|
address: Increase::Entity::Corporation::Address,
|
|
132
136
|
beneficial_owners: ::Array[Increase::Entity::Corporation::BeneficialOwner],
|
|
137
|
+
email: String?,
|
|
133
138
|
incorporation_state: String?,
|
|
134
139
|
industry_code: String?,
|
|
135
140
|
name: String,
|
|
@@ -132,6 +132,7 @@ module Increase
|
|
|
132
132
|
name: String,
|
|
133
133
|
tax_identifier: String,
|
|
134
134
|
beneficial_ownership_exemption_reason: Increase::Models::EntityCreateParams::Corporation::beneficial_ownership_exemption_reason,
|
|
135
|
+
email: String,
|
|
135
136
|
incorporation_state: String,
|
|
136
137
|
industry_code: String,
|
|
137
138
|
website: String
|
|
@@ -152,6 +153,10 @@ module Increase
|
|
|
152
153
|
Increase::Models::EntityCreateParams::Corporation::beneficial_ownership_exemption_reason
|
|
153
154
|
) -> Increase::Models::EntityCreateParams::Corporation::beneficial_ownership_exemption_reason
|
|
154
155
|
|
|
156
|
+
attr_reader email: String?
|
|
157
|
+
|
|
158
|
+
def email=: (String) -> String
|
|
159
|
+
|
|
155
160
|
attr_reader incorporation_state: String?
|
|
156
161
|
|
|
157
162
|
def incorporation_state=: (String) -> String
|
|
@@ -170,6 +175,7 @@ module Increase
|
|
|
170
175
|
name: String,
|
|
171
176
|
tax_identifier: String,
|
|
172
177
|
?beneficial_ownership_exemption_reason: Increase::Models::EntityCreateParams::Corporation::beneficial_ownership_exemption_reason,
|
|
178
|
+
?email: String,
|
|
173
179
|
?incorporation_state: String,
|
|
174
180
|
?industry_code: String,
|
|
175
181
|
?website: String
|
|
@@ -181,6 +187,7 @@ module Increase
|
|
|
181
187
|
name: String,
|
|
182
188
|
tax_identifier: String,
|
|
183
189
|
beneficial_ownership_exemption_reason: Increase::Models::EntityCreateParams::Corporation::beneficial_ownership_exemption_reason,
|
|
190
|
+
email: String,
|
|
184
191
|
incorporation_state: String,
|
|
185
192
|
industry_code: String,
|
|
186
193
|
website: String
|
|
@@ -81,6 +81,7 @@ module Increase
|
|
|
81
81
|
type corporation =
|
|
82
82
|
{
|
|
83
83
|
address: Increase::EntityUpdateParams::Corporation::Address,
|
|
84
|
+
email: String,
|
|
84
85
|
industry_code: String,
|
|
85
86
|
name: String
|
|
86
87
|
}
|
|
@@ -92,6 +93,10 @@ module Increase
|
|
|
92
93
|
Increase::EntityUpdateParams::Corporation::Address
|
|
93
94
|
) -> Increase::EntityUpdateParams::Corporation::Address
|
|
94
95
|
|
|
96
|
+
attr_reader email: String?
|
|
97
|
+
|
|
98
|
+
def email=: (String) -> String
|
|
99
|
+
|
|
95
100
|
attr_reader industry_code: String?
|
|
96
101
|
|
|
97
102
|
def industry_code=: (String) -> String
|
|
@@ -102,12 +107,14 @@ module Increase
|
|
|
102
107
|
|
|
103
108
|
def initialize: (
|
|
104
109
|
?address: Increase::EntityUpdateParams::Corporation::Address,
|
|
110
|
+
?email: String,
|
|
105
111
|
?industry_code: String,
|
|
106
112
|
?name: String
|
|
107
113
|
) -> void
|
|
108
114
|
|
|
109
115
|
def to_hash: -> {
|
|
110
116
|
address: Increase::EntityUpdateParams::Corporation::Address,
|
|
117
|
+
email: String,
|
|
111
118
|
industry_code: String,
|
|
112
119
|
name: String
|
|
113
120
|
}
|
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.160.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-12-
|
|
11
|
+
date: 2025-12-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|