increase 1.310.0 → 1.311.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/beneficial_owner_create_params.rb +3 -1
- data/lib/increase/models/beneficial_owner_update_params.rb +3 -1
- data/lib/increase/models/entity.rb +1 -1
- data/lib/increase/models/entity_create_params.rb +25 -13
- data/lib/increase/models/entity_update_params.rb +11 -4
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/beneficial_owner_create_params.rbi +6 -2
- data/rbi/increase/models/beneficial_owner_update_params.rbi +6 -2
- data/rbi/increase/models/entity.rbi +1 -1
- data/rbi/increase/models/entity_create_params.rbi +43 -19
- data/rbi/increase/models/entity_update_params.rbi +11 -5
- data/sig/increase/models/entity.rbs +1 -1
- data/sig/increase/models/entity_create_params.rbs +1 -1
- data/sig/increase/models/entity_update_params.rbs +1 -1
- 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: d88e22054de9abb4f3e4ec5e103aa335cf5027a0c18826a179f8f3e54e5a15fc
|
|
4
|
+
data.tar.gz: 579d5a494d5143ad22f19d988c58da191616828f8cd62069791389d372022c06
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f1e23de84c1251950b81915630f1dd57f7e38b6a51386842653064b77aa9195c98b5d0febbd8966db91eb9981d45051143cadcf1ed13ae6cbdd5603731b0be25
|
|
7
|
+
data.tar.gz: b823934d66708454849aba102b908c56e9ba2bee242342530ad789d663e1e22accb2771cb6875b4b53bd28d358ca39310fc275fac5f1c5e73e8c72962ded11b9
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.311.0 (2026-04-29)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.310.0...v1.311.0](https://github.com/Increase/increase-ruby/compare/v1.310.0...v1.311.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([e4afbd9](https://github.com/Increase/increase-ruby/commit/e4afbd9cc83a679c7e00fc163d0bac940f1768df))
|
|
10
|
+
|
|
3
11
|
## 1.310.0 (2026-04-28)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.309.0...v1.310.0](https://github.com/Increase/increase-ruby/compare/v1.309.0...v1.310.0)
|
data/README.md
CHANGED
|
@@ -171,7 +171,9 @@ module Increase
|
|
|
171
171
|
|
|
172
172
|
# @!attribute number
|
|
173
173
|
# An identification number that can be used to verify the individual's identity,
|
|
174
|
-
# such as a social security number.
|
|
174
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
175
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
176
|
+
# separators.
|
|
175
177
|
#
|
|
176
178
|
# @return [String]
|
|
177
179
|
required :number, String
|
|
@@ -126,7 +126,9 @@ module Increase
|
|
|
126
126
|
|
|
127
127
|
# @!attribute number
|
|
128
128
|
# An identification number that can be used to verify the individual's identity,
|
|
129
|
-
# such as a social security number.
|
|
129
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
130
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
131
|
+
# separators.
|
|
130
132
|
#
|
|
131
133
|
# @return [String]
|
|
132
134
|
required :number, String
|
|
@@ -547,7 +547,7 @@ module Increase
|
|
|
547
547
|
module Category
|
|
548
548
|
extend Increase::Internal::Type::Enum
|
|
549
549
|
|
|
550
|
-
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS.
|
|
550
|
+
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS; submit it as nine digits with no dashes or other separators.
|
|
551
551
|
US_EMPLOYER_IDENTIFICATION_NUMBER = :us_employer_identification_number
|
|
552
552
|
|
|
553
553
|
# A legal identifier issued by a foreign government, like a tax identification number or registration number.
|
|
@@ -450,7 +450,9 @@ module Increase
|
|
|
450
450
|
|
|
451
451
|
# @!attribute number
|
|
452
452
|
# An identification number that can be used to verify the individual's identity,
|
|
453
|
-
# such as a social security number.
|
|
453
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
454
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
455
|
+
# separators.
|
|
454
456
|
#
|
|
455
457
|
# @return [String]
|
|
456
458
|
required :number, String
|
|
@@ -668,7 +670,8 @@ module Increase
|
|
|
668
670
|
# @see Increase::Models::EntityCreateParams::Corporation#legal_identifier
|
|
669
671
|
class LegalIdentifier < Increase::Internal::Type::BaseModel
|
|
670
672
|
# @!attribute value
|
|
671
|
-
# The legal identifier.
|
|
673
|
+
# The legal identifier. For US Employer Identification Numbers, submit nine digits
|
|
674
|
+
# with no dashes or other separators.
|
|
672
675
|
#
|
|
673
676
|
# @return [String]
|
|
674
677
|
required :value, String
|
|
@@ -688,7 +691,7 @@ module Increase
|
|
|
688
691
|
# The legal identifier of the corporation. This is usually the Employer
|
|
689
692
|
# Identification Number (EIN).
|
|
690
693
|
#
|
|
691
|
-
# @param value [String] The legal identifier.
|
|
694
|
+
# @param value [String] The legal identifier. For US Employer Identification Numbers, submit nine digits
|
|
692
695
|
#
|
|
693
696
|
# @param category [Symbol, Increase::Models::EntityCreateParams::Corporation::LegalIdentifier::Category] The category of the legal identifier. If not provided, the default is `us_employ
|
|
694
697
|
|
|
@@ -699,7 +702,7 @@ module Increase
|
|
|
699
702
|
module Category
|
|
700
703
|
extend Increase::Internal::Type::Enum
|
|
701
704
|
|
|
702
|
-
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS.
|
|
705
|
+
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS; submit it as nine digits with no dashes or other separators.
|
|
703
706
|
US_EMPLOYER_IDENTIFICATION_NUMBER = :us_employer_identification_number
|
|
704
707
|
|
|
705
708
|
# A legal identifier issued by a foreign government, like a tax identification number or registration number.
|
|
@@ -763,7 +766,8 @@ module Increase
|
|
|
763
766
|
required :name, String
|
|
764
767
|
|
|
765
768
|
# @!attribute tax_identifier
|
|
766
|
-
# The Employer Identification Number (EIN) for the government authority.
|
|
769
|
+
# The Employer Identification Number (EIN) for the government authority. Submit
|
|
770
|
+
# nine digits with no dashes or other separators.
|
|
767
771
|
#
|
|
768
772
|
# @return [String]
|
|
769
773
|
required :tax_identifier, String
|
|
@@ -789,7 +793,7 @@ module Increase
|
|
|
789
793
|
#
|
|
790
794
|
# @param name [String] The legal name of the government authority.
|
|
791
795
|
#
|
|
792
|
-
# @param tax_identifier [String] The Employer Identification Number (EIN) for the government authority.
|
|
796
|
+
# @param tax_identifier [String] The Employer Identification Number (EIN) for the government authority. Submit ni
|
|
793
797
|
#
|
|
794
798
|
# @param website [String] The website of the government authority.
|
|
795
799
|
|
|
@@ -1014,7 +1018,9 @@ module Increase
|
|
|
1014
1018
|
|
|
1015
1019
|
# @!attribute number
|
|
1016
1020
|
# An identification number that can be used to verify the individual's identity,
|
|
1017
|
-
# such as a social security number.
|
|
1021
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
1022
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
1023
|
+
# separators.
|
|
1018
1024
|
#
|
|
1019
1025
|
# @return [String]
|
|
1020
1026
|
required :number, String
|
|
@@ -1339,7 +1345,9 @@ module Increase
|
|
|
1339
1345
|
|
|
1340
1346
|
# @!attribute number
|
|
1341
1347
|
# An identification number that can be used to verify the individual's identity,
|
|
1342
|
-
# such as a social security number.
|
|
1348
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
1349
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
1350
|
+
# separators.
|
|
1343
1351
|
#
|
|
1344
1352
|
# @return [String]
|
|
1345
1353
|
required :number, String
|
|
@@ -1720,8 +1728,8 @@ module Increase
|
|
|
1720
1728
|
optional :grantor, -> { Increase::EntityCreateParams::Trust::Grantor }
|
|
1721
1729
|
|
|
1722
1730
|
# @!attribute tax_identifier
|
|
1723
|
-
# The Employer Identification Number (EIN) for the trust.
|
|
1724
|
-
# is equal to `irrevocable`.
|
|
1731
|
+
# The Employer Identification Number (EIN) for the trust. Submit nine digits with
|
|
1732
|
+
# no dashes or other separators. Required if `category` is equal to `irrevocable`.
|
|
1725
1733
|
#
|
|
1726
1734
|
# @return [String, nil]
|
|
1727
1735
|
optional :tax_identifier, String
|
|
@@ -1747,7 +1755,7 @@ module Increase
|
|
|
1747
1755
|
#
|
|
1748
1756
|
# @param grantor [Increase::Models::EntityCreateParams::Trust::Grantor] The grantor of the trust. Required if `category` is equal to `revocable`.
|
|
1749
1757
|
#
|
|
1750
|
-
# @param tax_identifier [String] The Employer Identification Number (EIN) for the trust.
|
|
1758
|
+
# @param tax_identifier [String] The Employer Identification Number (EIN) for the trust. Submit nine digits with
|
|
1751
1759
|
|
|
1752
1760
|
# @see Increase::Models::EntityCreateParams::Trust#address
|
|
1753
1761
|
class Address < Increase::Internal::Type::BaseModel
|
|
@@ -1981,7 +1989,9 @@ module Increase
|
|
|
1981
1989
|
|
|
1982
1990
|
# @!attribute number
|
|
1983
1991
|
# An identification number that can be used to verify the individual's identity,
|
|
1984
|
-
# such as a social security number.
|
|
1992
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
1993
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
1994
|
+
# separators.
|
|
1985
1995
|
#
|
|
1986
1996
|
# @return [String]
|
|
1987
1997
|
required :number, String
|
|
@@ -2306,7 +2316,9 @@ module Increase
|
|
|
2306
2316
|
|
|
2307
2317
|
# @!attribute number
|
|
2308
2318
|
# An identification number that can be used to verify the individual's identity,
|
|
2309
|
-
# such as a social security number.
|
|
2319
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
2320
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
2321
|
+
# separators.
|
|
2310
2322
|
#
|
|
2311
2323
|
# @return [String]
|
|
2312
2324
|
required :number, String
|
|
@@ -221,7 +221,8 @@ module Increase
|
|
|
221
221
|
# @see Increase::Models::EntityUpdateParams::Corporation#legal_identifier
|
|
222
222
|
class LegalIdentifier < Increase::Internal::Type::BaseModel
|
|
223
223
|
# @!attribute value
|
|
224
|
-
# The identifier of the legal identifier.
|
|
224
|
+
# The identifier of the legal identifier. For US Employer Identification Numbers,
|
|
225
|
+
# submit nine digits with no dashes or other separators.
|
|
225
226
|
#
|
|
226
227
|
# @return [String]
|
|
227
228
|
required :value, String
|
|
@@ -233,10 +234,14 @@ module Increase
|
|
|
233
234
|
optional :category, enum: -> { Increase::EntityUpdateParams::Corporation::LegalIdentifier::Category }
|
|
234
235
|
|
|
235
236
|
# @!method initialize(value:, category: nil)
|
|
237
|
+
# Some parameter documentations has been truncated, see
|
|
238
|
+
# {Increase::Models::EntityUpdateParams::Corporation::LegalIdentifier} for more
|
|
239
|
+
# details.
|
|
240
|
+
#
|
|
236
241
|
# The legal identifier of the corporation. This is usually the Employer
|
|
237
242
|
# Identification Number (EIN).
|
|
238
243
|
#
|
|
239
|
-
# @param value [String] The identifier of the legal identifier.
|
|
244
|
+
# @param value [String] The identifier of the legal identifier. For US Employer Identification Numbers,
|
|
240
245
|
#
|
|
241
246
|
# @param category [Symbol, Increase::Models::EntityUpdateParams::Corporation::LegalIdentifier::Category] The category of the legal identifier.
|
|
242
247
|
|
|
@@ -246,7 +251,7 @@ module Increase
|
|
|
246
251
|
module Category
|
|
247
252
|
extend Increase::Internal::Type::Enum
|
|
248
253
|
|
|
249
|
-
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS.
|
|
254
|
+
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS; submit it as nine digits with no dashes or other separators.
|
|
250
255
|
US_EMPLOYER_IDENTIFICATION_NUMBER = :us_employer_identification_number
|
|
251
256
|
|
|
252
257
|
# A legal identifier issued by a foreign government, like a tax identification number or registration number.
|
|
@@ -451,7 +456,9 @@ module Increase
|
|
|
451
456
|
|
|
452
457
|
# @!attribute number
|
|
453
458
|
# An identification number that can be used to verify the individual's identity,
|
|
454
|
-
# such as a social security number.
|
|
459
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
460
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
461
|
+
# separators.
|
|
455
462
|
#
|
|
456
463
|
# @return [String]
|
|
457
464
|
required :number, String
|
data/lib/increase/version.rb
CHANGED
|
@@ -296,7 +296,9 @@ module Increase
|
|
|
296
296
|
attr_accessor :method_
|
|
297
297
|
|
|
298
298
|
# An identification number that can be used to verify the individual's identity,
|
|
299
|
-
# such as a social security number.
|
|
299
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
300
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
301
|
+
# separators.
|
|
300
302
|
sig { returns(String) }
|
|
301
303
|
attr_accessor :number
|
|
302
304
|
|
|
@@ -375,7 +377,9 @@ module Increase
|
|
|
375
377
|
# A method that can be used to verify the individual's identity.
|
|
376
378
|
method_:,
|
|
377
379
|
# An identification number that can be used to verify the individual's identity,
|
|
378
|
-
# such as a social security number.
|
|
380
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
381
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
382
|
+
# separators.
|
|
379
383
|
number:,
|
|
380
384
|
# Information about the United States driver's license used for identification.
|
|
381
385
|
# Required if `method` is equal to `drivers_license`.
|
|
@@ -215,7 +215,9 @@ module Increase
|
|
|
215
215
|
attr_accessor :method_
|
|
216
216
|
|
|
217
217
|
# An identification number that can be used to verify the individual's identity,
|
|
218
|
-
# such as a social security number.
|
|
218
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
219
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
220
|
+
# separators.
|
|
219
221
|
sig { returns(String) }
|
|
220
222
|
attr_accessor :number
|
|
221
223
|
|
|
@@ -294,7 +296,9 @@ module Increase
|
|
|
294
296
|
# A method that can be used to verify the individual's identity.
|
|
295
297
|
method_:,
|
|
296
298
|
# An identification number that can be used to verify the individual's identity,
|
|
297
|
-
# such as a social security number.
|
|
299
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
300
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
301
|
+
# separators.
|
|
298
302
|
number:,
|
|
299
303
|
# Information about the United States driver's license used for identification.
|
|
300
304
|
# Required if `method` is equal to `drivers_license`.
|
|
@@ -925,7 +925,7 @@ module Increase
|
|
|
925
925
|
end
|
|
926
926
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
927
927
|
|
|
928
|
-
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS.
|
|
928
|
+
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS; submit it as nine digits with no dashes or other separators.
|
|
929
929
|
US_EMPLOYER_IDENTIFICATION_NUMBER =
|
|
930
930
|
T.let(
|
|
931
931
|
:us_employer_identification_number,
|
|
@@ -837,7 +837,9 @@ module Increase
|
|
|
837
837
|
attr_accessor :method_
|
|
838
838
|
|
|
839
839
|
# An identification number that can be used to verify the individual's identity,
|
|
840
|
-
# such as a social security number.
|
|
840
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
841
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
842
|
+
# separators.
|
|
841
843
|
sig { returns(String) }
|
|
842
844
|
attr_accessor :number
|
|
843
845
|
|
|
@@ -916,7 +918,9 @@ module Increase
|
|
|
916
918
|
# A method that can be used to verify the individual's identity.
|
|
917
919
|
method_:,
|
|
918
920
|
# An identification number that can be used to verify the individual's identity,
|
|
919
|
-
# such as a social security number.
|
|
921
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
922
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
923
|
+
# separators.
|
|
920
924
|
number:,
|
|
921
925
|
# Information about the United States driver's license used for identification.
|
|
922
926
|
# Required if `method` is equal to `drivers_license`.
|
|
@@ -1250,7 +1254,8 @@ module Increase
|
|
|
1250
1254
|
)
|
|
1251
1255
|
end
|
|
1252
1256
|
|
|
1253
|
-
# The legal identifier.
|
|
1257
|
+
# The legal identifier. For US Employer Identification Numbers, submit nine digits
|
|
1258
|
+
# with no dashes or other separators.
|
|
1254
1259
|
sig { returns(String) }
|
|
1255
1260
|
attr_accessor :value
|
|
1256
1261
|
|
|
@@ -1283,7 +1288,8 @@ module Increase
|
|
|
1283
1288
|
).returns(T.attached_class)
|
|
1284
1289
|
end
|
|
1285
1290
|
def self.new(
|
|
1286
|
-
# The legal identifier.
|
|
1291
|
+
# The legal identifier. For US Employer Identification Numbers, submit nine digits
|
|
1292
|
+
# with no dashes or other separators.
|
|
1287
1293
|
value:,
|
|
1288
1294
|
# The category of the legal identifier. If not provided, the default is
|
|
1289
1295
|
# `us_employer_identification_number`.
|
|
@@ -1317,7 +1323,7 @@ module Increase
|
|
|
1317
1323
|
end
|
|
1318
1324
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
1319
1325
|
|
|
1320
|
-
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS.
|
|
1326
|
+
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS; submit it as nine digits with no dashes or other separators.
|
|
1321
1327
|
US_EMPLOYER_IDENTIFICATION_NUMBER =
|
|
1322
1328
|
T.let(
|
|
1323
1329
|
:us_employer_identification_number,
|
|
@@ -1444,7 +1450,8 @@ module Increase
|
|
|
1444
1450
|
sig { returns(String) }
|
|
1445
1451
|
attr_accessor :name
|
|
1446
1452
|
|
|
1447
|
-
# The Employer Identification Number (EIN) for the government authority.
|
|
1453
|
+
# The Employer Identification Number (EIN) for the government authority. Submit
|
|
1454
|
+
# nine digits with no dashes or other separators.
|
|
1448
1455
|
sig { returns(String) }
|
|
1449
1456
|
attr_accessor :tax_identifier
|
|
1450
1457
|
|
|
@@ -1482,7 +1489,8 @@ module Increase
|
|
|
1482
1489
|
category:,
|
|
1483
1490
|
# The legal name of the government authority.
|
|
1484
1491
|
name:,
|
|
1485
|
-
# The Employer Identification Number (EIN) for the government authority.
|
|
1492
|
+
# The Employer Identification Number (EIN) for the government authority. Submit
|
|
1493
|
+
# nine digits with no dashes or other separators.
|
|
1486
1494
|
tax_identifier:,
|
|
1487
1495
|
# The website of the government authority.
|
|
1488
1496
|
website: nil
|
|
@@ -1910,7 +1918,9 @@ module Increase
|
|
|
1910
1918
|
attr_accessor :method_
|
|
1911
1919
|
|
|
1912
1920
|
# An identification number that can be used to verify the individual's identity,
|
|
1913
|
-
# such as a social security number.
|
|
1921
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
1922
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
1923
|
+
# separators.
|
|
1914
1924
|
sig { returns(String) }
|
|
1915
1925
|
attr_accessor :number
|
|
1916
1926
|
|
|
@@ -1989,7 +1999,9 @@ module Increase
|
|
|
1989
1999
|
# A method that can be used to verify the individual's identity.
|
|
1990
2000
|
method_:,
|
|
1991
2001
|
# An identification number that can be used to verify the individual's identity,
|
|
1992
|
-
# such as a social security number.
|
|
2002
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
2003
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
2004
|
+
# separators.
|
|
1993
2005
|
number:,
|
|
1994
2006
|
# Information about the United States driver's license used for identification.
|
|
1995
2007
|
# Required if `method` is equal to `drivers_license`.
|
|
@@ -2485,7 +2497,9 @@ module Increase
|
|
|
2485
2497
|
attr_accessor :method_
|
|
2486
2498
|
|
|
2487
2499
|
# An identification number that can be used to verify the individual's identity,
|
|
2488
|
-
# such as a social security number.
|
|
2500
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
2501
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
2502
|
+
# separators.
|
|
2489
2503
|
sig { returns(String) }
|
|
2490
2504
|
attr_accessor :number
|
|
2491
2505
|
|
|
@@ -2564,7 +2578,9 @@ module Increase
|
|
|
2564
2578
|
# A method that can be used to verify the individual's identity.
|
|
2565
2579
|
method_:,
|
|
2566
2580
|
# An identification number that can be used to verify the individual's identity,
|
|
2567
|
-
# such as a social security number.
|
|
2581
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
2582
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
2583
|
+
# separators.
|
|
2568
2584
|
number:,
|
|
2569
2585
|
# Information about the United States driver's license used for identification.
|
|
2570
2586
|
# Required if `method` is equal to `drivers_license`.
|
|
@@ -3186,8 +3202,8 @@ module Increase
|
|
|
3186
3202
|
end
|
|
3187
3203
|
attr_writer :grantor
|
|
3188
3204
|
|
|
3189
|
-
# The Employer Identification Number (EIN) for the trust.
|
|
3190
|
-
# is equal to `irrevocable`.
|
|
3205
|
+
# The Employer Identification Number (EIN) for the trust. Submit nine digits with
|
|
3206
|
+
# no dashes or other separators. Required if `category` is equal to `irrevocable`.
|
|
3191
3207
|
sig { returns(T.nilable(String)) }
|
|
3192
3208
|
attr_reader :tax_identifier
|
|
3193
3209
|
|
|
@@ -3228,8 +3244,8 @@ module Increase
|
|
|
3228
3244
|
formation_state: nil,
|
|
3229
3245
|
# The grantor of the trust. Required if `category` is equal to `revocable`.
|
|
3230
3246
|
grantor: nil,
|
|
3231
|
-
# The Employer Identification Number (EIN) for the trust.
|
|
3232
|
-
# is equal to `irrevocable`.
|
|
3247
|
+
# The Employer Identification Number (EIN) for the trust. Submit nine digits with
|
|
3248
|
+
# no dashes or other separators. Required if `category` is equal to `irrevocable`.
|
|
3233
3249
|
tax_identifier: nil
|
|
3234
3250
|
)
|
|
3235
3251
|
end
|
|
@@ -3672,7 +3688,9 @@ module Increase
|
|
|
3672
3688
|
attr_accessor :method_
|
|
3673
3689
|
|
|
3674
3690
|
# An identification number that can be used to verify the individual's identity,
|
|
3675
|
-
# such as a social security number.
|
|
3691
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
3692
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
3693
|
+
# separators.
|
|
3676
3694
|
sig { returns(String) }
|
|
3677
3695
|
attr_accessor :number
|
|
3678
3696
|
|
|
@@ -3751,7 +3769,9 @@ module Increase
|
|
|
3751
3769
|
# A method that can be used to verify the individual's identity.
|
|
3752
3770
|
method_:,
|
|
3753
3771
|
# An identification number that can be used to verify the individual's identity,
|
|
3754
|
-
# such as a social security number.
|
|
3772
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
3773
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
3774
|
+
# separators.
|
|
3755
3775
|
number:,
|
|
3756
3776
|
# Information about the United States driver's license used for identification.
|
|
3757
3777
|
# Required if `method` is equal to `drivers_license`.
|
|
@@ -4246,7 +4266,9 @@ module Increase
|
|
|
4246
4266
|
attr_accessor :method_
|
|
4247
4267
|
|
|
4248
4268
|
# An identification number that can be used to verify the individual's identity,
|
|
4249
|
-
# such as a social security number.
|
|
4269
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
4270
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
4271
|
+
# separators.
|
|
4250
4272
|
sig { returns(String) }
|
|
4251
4273
|
attr_accessor :number
|
|
4252
4274
|
|
|
@@ -4325,7 +4347,9 @@ module Increase
|
|
|
4325
4347
|
# A method that can be used to verify the individual's identity.
|
|
4326
4348
|
method_:,
|
|
4327
4349
|
# An identification number that can be used to verify the individual's identity,
|
|
4328
|
-
# such as a social security number.
|
|
4350
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
4351
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
4352
|
+
# separators.
|
|
4329
4353
|
number:,
|
|
4330
4354
|
# Information about the United States driver's license used for identification.
|
|
4331
4355
|
# Required if `method` is equal to `drivers_license`.
|
|
@@ -412,7 +412,8 @@ module Increase
|
|
|
412
412
|
)
|
|
413
413
|
end
|
|
414
414
|
|
|
415
|
-
# The identifier of the legal identifier.
|
|
415
|
+
# The identifier of the legal identifier. For US Employer Identification Numbers,
|
|
416
|
+
# submit nine digits with no dashes or other separators.
|
|
416
417
|
sig { returns(String) }
|
|
417
418
|
attr_accessor :value
|
|
418
419
|
|
|
@@ -444,7 +445,8 @@ module Increase
|
|
|
444
445
|
).returns(T.attached_class)
|
|
445
446
|
end
|
|
446
447
|
def self.new(
|
|
447
|
-
# The identifier of the legal identifier.
|
|
448
|
+
# The identifier of the legal identifier. For US Employer Identification Numbers,
|
|
449
|
+
# submit nine digits with no dashes or other separators.
|
|
448
450
|
value:,
|
|
449
451
|
# The category of the legal identifier.
|
|
450
452
|
category: nil
|
|
@@ -476,7 +478,7 @@ module Increase
|
|
|
476
478
|
end
|
|
477
479
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
478
480
|
|
|
479
|
-
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS.
|
|
481
|
+
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS; submit it as nine digits with no dashes or other separators.
|
|
480
482
|
US_EMPLOYER_IDENTIFICATION_NUMBER =
|
|
481
483
|
T.let(
|
|
482
484
|
:us_employer_identification_number,
|
|
@@ -852,7 +854,9 @@ module Increase
|
|
|
852
854
|
attr_accessor :method_
|
|
853
855
|
|
|
854
856
|
# An identification number that can be used to verify the individual's identity,
|
|
855
|
-
# such as a social security number.
|
|
857
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
858
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
859
|
+
# separators.
|
|
856
860
|
sig { returns(String) }
|
|
857
861
|
attr_accessor :number
|
|
858
862
|
|
|
@@ -931,7 +935,9 @@ module Increase
|
|
|
931
935
|
# A method that can be used to verify the individual's identity.
|
|
932
936
|
method_:,
|
|
933
937
|
# An identification number that can be used to verify the individual's identity,
|
|
934
|
-
# such as a social security number.
|
|
938
|
+
# such as a social security number. For Social Security Numbers and Individual
|
|
939
|
+
# Taxpayer Identification Numbers, submit nine digits with no dashes or other
|
|
940
|
+
# separators.
|
|
935
941
|
number:,
|
|
936
942
|
# Information about the United States driver's license used for identification.
|
|
937
943
|
# Required if `method` is equal to `drivers_license`.
|
|
@@ -395,7 +395,7 @@ module Increase
|
|
|
395
395
|
module Category
|
|
396
396
|
extend Increase::Internal::Type::Enum
|
|
397
397
|
|
|
398
|
-
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS.
|
|
398
|
+
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS; submit it as nine digits with no dashes or other separators.
|
|
399
399
|
US_EMPLOYER_IDENTIFICATION_NUMBER: :us_employer_identification_number
|
|
400
400
|
|
|
401
401
|
# A legal identifier issued by a foreign government, like a tax identification number or registration number.
|
|
@@ -585,7 +585,7 @@ module Increase
|
|
|
585
585
|
module Category
|
|
586
586
|
extend Increase::Internal::Type::Enum
|
|
587
587
|
|
|
588
|
-
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS.
|
|
588
|
+
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS; submit it as nine digits with no dashes or other separators.
|
|
589
589
|
US_EMPLOYER_IDENTIFICATION_NUMBER: :us_employer_identification_number
|
|
590
590
|
|
|
591
591
|
# A legal identifier issued by a foreign government, like a tax identification number or registration number.
|
|
@@ -227,7 +227,7 @@ module Increase
|
|
|
227
227
|
module Category
|
|
228
228
|
extend Increase::Internal::Type::Enum
|
|
229
229
|
|
|
230
|
-
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS.
|
|
230
|
+
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS; submit it as nine digits with no dashes or other separators.
|
|
231
231
|
US_EMPLOYER_IDENTIFICATION_NUMBER: :us_employer_identification_number
|
|
232
232
|
|
|
233
233
|
# A legal identifier issued by a foreign government, like a tax identification number or registration number.
|
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.311.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Increase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-04-
|
|
11
|
+
date: 2026-04-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|