increase 1.270.0 → 1.273.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 +183 -0
- data/README.md +1 -1
- data/lib/increase/internal/util.rb +1 -2
- data/lib/increase/models/entity.rb +194 -100
- data/lib/increase/models/entity_create_params.rb +185 -99
- data/lib/increase/models/entity_update_params.rb +52 -36
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/entity.rbi +283 -127
- data/rbi/increase/models/entity_create_params.rbi +299 -113
- data/rbi/increase/models/entity_update_params.rbi +70 -42
- data/sig/increase/models/entity.rbs +160 -89
- data/sig/increase/models/entity_create_params.rbs +145 -60
- data/sig/increase/models/entity_update_params.rbs +40 -22
- metadata +2 -2
|
@@ -138,8 +138,8 @@ module Increase
|
|
|
138
138
|
{
|
|
139
139
|
address: Increase::EntityCreateParams::Corporation::Address,
|
|
140
140
|
beneficial_owners: ::Array[Increase::EntityCreateParams::Corporation::BeneficialOwner],
|
|
141
|
+
legal_identifier: Increase::EntityCreateParams::Corporation::LegalIdentifier,
|
|
141
142
|
name: String,
|
|
142
|
-
tax_identifier: String,
|
|
143
143
|
beneficial_ownership_exemption_reason: Increase::Models::EntityCreateParams::Corporation::beneficial_ownership_exemption_reason,
|
|
144
144
|
email: String,
|
|
145
145
|
incorporation_state: String,
|
|
@@ -152,9 +152,9 @@ module Increase
|
|
|
152
152
|
|
|
153
153
|
attr_accessor beneficial_owners: ::Array[Increase::EntityCreateParams::Corporation::BeneficialOwner]
|
|
154
154
|
|
|
155
|
-
attr_accessor
|
|
155
|
+
attr_accessor legal_identifier: Increase::EntityCreateParams::Corporation::LegalIdentifier
|
|
156
156
|
|
|
157
|
-
attr_accessor
|
|
157
|
+
attr_accessor name: String
|
|
158
158
|
|
|
159
159
|
attr_reader beneficial_ownership_exemption_reason: Increase::Models::EntityCreateParams::Corporation::beneficial_ownership_exemption_reason?
|
|
160
160
|
|
|
@@ -181,8 +181,8 @@ module Increase
|
|
|
181
181
|
def initialize: (
|
|
182
182
|
address: Increase::EntityCreateParams::Corporation::Address,
|
|
183
183
|
beneficial_owners: ::Array[Increase::EntityCreateParams::Corporation::BeneficialOwner],
|
|
184
|
+
legal_identifier: Increase::EntityCreateParams::Corporation::LegalIdentifier,
|
|
184
185
|
name: String,
|
|
185
|
-
tax_identifier: String,
|
|
186
186
|
?beneficial_ownership_exemption_reason: Increase::Models::EntityCreateParams::Corporation::beneficial_ownership_exemption_reason,
|
|
187
187
|
?email: String,
|
|
188
188
|
?incorporation_state: String,
|
|
@@ -193,8 +193,8 @@ module Increase
|
|
|
193
193
|
def to_hash: -> {
|
|
194
194
|
address: Increase::EntityCreateParams::Corporation::Address,
|
|
195
195
|
beneficial_owners: ::Array[Increase::EntityCreateParams::Corporation::BeneficialOwner],
|
|
196
|
+
legal_identifier: Increase::EntityCreateParams::Corporation::LegalIdentifier,
|
|
196
197
|
name: String,
|
|
197
|
-
tax_identifier: String,
|
|
198
198
|
beneficial_ownership_exemption_reason: Increase::Models::EntityCreateParams::Corporation::beneficial_ownership_exemption_reason,
|
|
199
199
|
email: String,
|
|
200
200
|
incorporation_state: String,
|
|
@@ -205,39 +205,48 @@ module Increase
|
|
|
205
205
|
type address =
|
|
206
206
|
{
|
|
207
207
|
city: String,
|
|
208
|
+
country: String,
|
|
208
209
|
:line1 => String,
|
|
210
|
+
:line2 => String,
|
|
209
211
|
state: String,
|
|
210
|
-
zip: String
|
|
211
|
-
:line2 => String
|
|
212
|
+
zip: String
|
|
212
213
|
}
|
|
213
214
|
|
|
214
215
|
class Address < Increase::Internal::Type::BaseModel
|
|
215
216
|
attr_accessor city: String
|
|
216
217
|
|
|
217
|
-
attr_accessor
|
|
218
|
-
|
|
219
|
-
attr_accessor state: String
|
|
218
|
+
attr_accessor country: String
|
|
220
219
|
|
|
221
|
-
attr_accessor
|
|
220
|
+
attr_accessor line1: String
|
|
222
221
|
|
|
223
222
|
attr_reader line2: String?
|
|
224
223
|
|
|
225
224
|
def line2=: (String) -> String
|
|
226
225
|
|
|
226
|
+
attr_reader state: String?
|
|
227
|
+
|
|
228
|
+
def state=: (String) -> String
|
|
229
|
+
|
|
230
|
+
attr_reader zip: String?
|
|
231
|
+
|
|
232
|
+
def zip=: (String) -> String
|
|
233
|
+
|
|
227
234
|
def initialize: (
|
|
228
235
|
city: String,
|
|
236
|
+
country: String,
|
|
229
237
|
line1: String,
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
?
|
|
238
|
+
?line2: String,
|
|
239
|
+
?state: String,
|
|
240
|
+
?zip: String
|
|
233
241
|
) -> void
|
|
234
242
|
|
|
235
243
|
def to_hash: -> {
|
|
236
244
|
city: String,
|
|
245
|
+
country: String,
|
|
237
246
|
:line1 => String,
|
|
247
|
+
:line2 => String,
|
|
238
248
|
state: String,
|
|
239
|
-
zip: String
|
|
240
|
-
:line2 => String
|
|
249
|
+
zip: String
|
|
241
250
|
}
|
|
242
251
|
end
|
|
243
252
|
|
|
@@ -546,6 +555,46 @@ module Increase
|
|
|
546
555
|
end
|
|
547
556
|
end
|
|
548
557
|
|
|
558
|
+
type legal_identifier =
|
|
559
|
+
{
|
|
560
|
+
value: String,
|
|
561
|
+
category: Increase::Models::EntityCreateParams::Corporation::LegalIdentifier::category
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
class LegalIdentifier < Increase::Internal::Type::BaseModel
|
|
565
|
+
attr_accessor value: String
|
|
566
|
+
|
|
567
|
+
attr_reader category: Increase::Models::EntityCreateParams::Corporation::LegalIdentifier::category?
|
|
568
|
+
|
|
569
|
+
def category=: (
|
|
570
|
+
Increase::Models::EntityCreateParams::Corporation::LegalIdentifier::category
|
|
571
|
+
) -> Increase::Models::EntityCreateParams::Corporation::LegalIdentifier::category
|
|
572
|
+
|
|
573
|
+
def initialize: (
|
|
574
|
+
value: String,
|
|
575
|
+
?category: Increase::Models::EntityCreateParams::Corporation::LegalIdentifier::category
|
|
576
|
+
) -> void
|
|
577
|
+
|
|
578
|
+
def to_hash: -> {
|
|
579
|
+
value: String,
|
|
580
|
+
category: Increase::Models::EntityCreateParams::Corporation::LegalIdentifier::category
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
type category = :us_employer_identification_number | :other
|
|
584
|
+
|
|
585
|
+
module Category
|
|
586
|
+
extend Increase::Internal::Type::Enum
|
|
587
|
+
|
|
588
|
+
# The Employer Identification Number (EIN) for the company. The EIN is a 9-digit number assigned by the IRS.
|
|
589
|
+
US_EMPLOYER_IDENTIFICATION_NUMBER: :us_employer_identification_number
|
|
590
|
+
|
|
591
|
+
# A legal identifier issued by a foreign government, like a tax identification number or registration number.
|
|
592
|
+
OTHER: :other
|
|
593
|
+
|
|
594
|
+
def self?.values: -> ::Array[Increase::Models::EntityCreateParams::Corporation::LegalIdentifier::category]
|
|
595
|
+
end
|
|
596
|
+
end
|
|
597
|
+
|
|
549
598
|
type beneficial_ownership_exemption_reason =
|
|
550
599
|
:regulated_financial_institution
|
|
551
600
|
| :publicly_traded_company
|
|
@@ -742,39 +791,48 @@ module Increase
|
|
|
742
791
|
type address =
|
|
743
792
|
{
|
|
744
793
|
city: String,
|
|
794
|
+
country: String,
|
|
745
795
|
:line1 => String,
|
|
796
|
+
:line2 => String,
|
|
746
797
|
state: String,
|
|
747
|
-
zip: String
|
|
748
|
-
:line2 => String
|
|
798
|
+
zip: String
|
|
749
799
|
}
|
|
750
800
|
|
|
751
801
|
class Address < Increase::Internal::Type::BaseModel
|
|
752
802
|
attr_accessor city: String
|
|
753
803
|
|
|
754
|
-
attr_accessor
|
|
755
|
-
|
|
756
|
-
attr_accessor state: String
|
|
804
|
+
attr_accessor country: String
|
|
757
805
|
|
|
758
|
-
attr_accessor
|
|
806
|
+
attr_accessor line1: String
|
|
759
807
|
|
|
760
808
|
attr_reader line2: String?
|
|
761
809
|
|
|
762
810
|
def line2=: (String) -> String
|
|
763
811
|
|
|
812
|
+
attr_reader state: String?
|
|
813
|
+
|
|
814
|
+
def state=: (String) -> String
|
|
815
|
+
|
|
816
|
+
attr_reader zip: String?
|
|
817
|
+
|
|
818
|
+
def zip=: (String) -> String
|
|
819
|
+
|
|
764
820
|
def initialize: (
|
|
765
821
|
city: String,
|
|
822
|
+
country: String,
|
|
766
823
|
line1: String,
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
?
|
|
824
|
+
?line2: String,
|
|
825
|
+
?state: String,
|
|
826
|
+
?zip: String
|
|
770
827
|
) -> void
|
|
771
828
|
|
|
772
829
|
def to_hash: -> {
|
|
773
830
|
city: String,
|
|
831
|
+
country: String,
|
|
774
832
|
:line1 => String,
|
|
833
|
+
:line2 => String,
|
|
775
834
|
state: String,
|
|
776
|
-
zip: String
|
|
777
|
-
:line2 => String
|
|
835
|
+
zip: String
|
|
778
836
|
}
|
|
779
837
|
end
|
|
780
838
|
|
|
@@ -996,39 +1054,48 @@ module Increase
|
|
|
996
1054
|
type address =
|
|
997
1055
|
{
|
|
998
1056
|
city: String,
|
|
1057
|
+
country: String,
|
|
999
1058
|
:line1 => String,
|
|
1059
|
+
:line2 => String,
|
|
1000
1060
|
state: String,
|
|
1001
|
-
zip: String
|
|
1002
|
-
:line2 => String
|
|
1061
|
+
zip: String
|
|
1003
1062
|
}
|
|
1004
1063
|
|
|
1005
1064
|
class Address < Increase::Internal::Type::BaseModel
|
|
1006
1065
|
attr_accessor city: String
|
|
1007
1066
|
|
|
1008
|
-
attr_accessor
|
|
1067
|
+
attr_accessor country: String
|
|
1009
1068
|
|
|
1010
|
-
attr_accessor
|
|
1011
|
-
|
|
1012
|
-
attr_accessor zip: String
|
|
1069
|
+
attr_accessor line1: String
|
|
1013
1070
|
|
|
1014
1071
|
attr_reader line2: String?
|
|
1015
1072
|
|
|
1016
1073
|
def line2=: (String) -> String
|
|
1017
1074
|
|
|
1075
|
+
attr_reader state: String?
|
|
1076
|
+
|
|
1077
|
+
def state=: (String) -> String
|
|
1078
|
+
|
|
1079
|
+
attr_reader zip: String?
|
|
1080
|
+
|
|
1081
|
+
def zip=: (String) -> String
|
|
1082
|
+
|
|
1018
1083
|
def initialize: (
|
|
1019
1084
|
city: String,
|
|
1085
|
+
country: String,
|
|
1020
1086
|
line1: String,
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
?
|
|
1087
|
+
?line2: String,
|
|
1088
|
+
?state: String,
|
|
1089
|
+
?zip: String
|
|
1024
1090
|
) -> void
|
|
1025
1091
|
|
|
1026
1092
|
def to_hash: -> {
|
|
1027
1093
|
city: String,
|
|
1094
|
+
country: String,
|
|
1028
1095
|
:line1 => String,
|
|
1096
|
+
:line2 => String,
|
|
1029
1097
|
state: String,
|
|
1030
|
-
zip: String
|
|
1031
|
-
:line2 => String
|
|
1098
|
+
zip: String
|
|
1032
1099
|
}
|
|
1033
1100
|
end
|
|
1034
1101
|
|
|
@@ -1516,39 +1583,48 @@ module Increase
|
|
|
1516
1583
|
type address =
|
|
1517
1584
|
{
|
|
1518
1585
|
city: String,
|
|
1586
|
+
country: String,
|
|
1519
1587
|
:line1 => String,
|
|
1588
|
+
:line2 => String,
|
|
1520
1589
|
state: String,
|
|
1521
|
-
zip: String
|
|
1522
|
-
:line2 => String
|
|
1590
|
+
zip: String
|
|
1523
1591
|
}
|
|
1524
1592
|
|
|
1525
1593
|
class Address < Increase::Internal::Type::BaseModel
|
|
1526
1594
|
attr_accessor city: String
|
|
1527
1595
|
|
|
1528
|
-
attr_accessor
|
|
1529
|
-
|
|
1530
|
-
attr_accessor state: String
|
|
1596
|
+
attr_accessor country: String
|
|
1531
1597
|
|
|
1532
|
-
attr_accessor
|
|
1598
|
+
attr_accessor line1: String
|
|
1533
1599
|
|
|
1534
1600
|
attr_reader line2: String?
|
|
1535
1601
|
|
|
1536
1602
|
def line2=: (String) -> String
|
|
1537
1603
|
|
|
1604
|
+
attr_reader state: String?
|
|
1605
|
+
|
|
1606
|
+
def state=: (String) -> String
|
|
1607
|
+
|
|
1608
|
+
attr_reader zip: String?
|
|
1609
|
+
|
|
1610
|
+
def zip=: (String) -> String
|
|
1611
|
+
|
|
1538
1612
|
def initialize: (
|
|
1539
1613
|
city: String,
|
|
1614
|
+
country: String,
|
|
1540
1615
|
line1: String,
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
?
|
|
1616
|
+
?line2: String,
|
|
1617
|
+
?state: String,
|
|
1618
|
+
?zip: String
|
|
1544
1619
|
) -> void
|
|
1545
1620
|
|
|
1546
1621
|
def to_hash: -> {
|
|
1547
1622
|
city: String,
|
|
1623
|
+
country: String,
|
|
1548
1624
|
:line1 => String,
|
|
1625
|
+
:line2 => String,
|
|
1549
1626
|
state: String,
|
|
1550
|
-
zip: String
|
|
1551
|
-
:line2 => String
|
|
1627
|
+
zip: String
|
|
1552
1628
|
}
|
|
1553
1629
|
end
|
|
1554
1630
|
|
|
@@ -1770,39 +1846,48 @@ module Increase
|
|
|
1770
1846
|
type address =
|
|
1771
1847
|
{
|
|
1772
1848
|
city: String,
|
|
1849
|
+
country: String,
|
|
1773
1850
|
:line1 => String,
|
|
1851
|
+
:line2 => String,
|
|
1774
1852
|
state: String,
|
|
1775
|
-
zip: String
|
|
1776
|
-
:line2 => String
|
|
1853
|
+
zip: String
|
|
1777
1854
|
}
|
|
1778
1855
|
|
|
1779
1856
|
class Address < Increase::Internal::Type::BaseModel
|
|
1780
1857
|
attr_accessor city: String
|
|
1781
1858
|
|
|
1782
|
-
attr_accessor
|
|
1783
|
-
|
|
1784
|
-
attr_accessor state: String
|
|
1859
|
+
attr_accessor country: String
|
|
1785
1860
|
|
|
1786
|
-
attr_accessor
|
|
1861
|
+
attr_accessor line1: String
|
|
1787
1862
|
|
|
1788
1863
|
attr_reader line2: String?
|
|
1789
1864
|
|
|
1790
1865
|
def line2=: (String) -> String
|
|
1791
1866
|
|
|
1867
|
+
attr_reader state: String?
|
|
1868
|
+
|
|
1869
|
+
def state=: (String) -> String
|
|
1870
|
+
|
|
1871
|
+
attr_reader zip: String?
|
|
1872
|
+
|
|
1873
|
+
def zip=: (String) -> String
|
|
1874
|
+
|
|
1792
1875
|
def initialize: (
|
|
1793
1876
|
city: String,
|
|
1877
|
+
country: String,
|
|
1794
1878
|
line1: String,
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
?
|
|
1879
|
+
?line2: String,
|
|
1880
|
+
?state: String,
|
|
1881
|
+
?zip: String
|
|
1798
1882
|
) -> void
|
|
1799
1883
|
|
|
1800
1884
|
def to_hash: -> {
|
|
1801
1885
|
city: String,
|
|
1886
|
+
country: String,
|
|
1802
1887
|
:line1 => String,
|
|
1888
|
+
:line2 => String,
|
|
1803
1889
|
state: String,
|
|
1804
|
-
zip: String
|
|
1805
|
-
:line2 => String
|
|
1890
|
+
zip: String
|
|
1806
1891
|
}
|
|
1807
1892
|
end
|
|
1808
1893
|
|
|
@@ -141,39 +141,48 @@ module Increase
|
|
|
141
141
|
type address =
|
|
142
142
|
{
|
|
143
143
|
city: String,
|
|
144
|
+
country: String,
|
|
144
145
|
:line1 => String,
|
|
146
|
+
:line2 => String,
|
|
145
147
|
state: String,
|
|
146
|
-
zip: String
|
|
147
|
-
:line2 => String
|
|
148
|
+
zip: String
|
|
148
149
|
}
|
|
149
150
|
|
|
150
151
|
class Address < Increase::Internal::Type::BaseModel
|
|
151
152
|
attr_accessor city: String
|
|
152
153
|
|
|
153
|
-
attr_accessor
|
|
154
|
-
|
|
155
|
-
attr_accessor state: String
|
|
154
|
+
attr_accessor country: String
|
|
156
155
|
|
|
157
|
-
attr_accessor
|
|
156
|
+
attr_accessor line1: String
|
|
158
157
|
|
|
159
158
|
attr_reader line2: String?
|
|
160
159
|
|
|
161
160
|
def line2=: (String) -> String
|
|
162
161
|
|
|
162
|
+
attr_reader state: String?
|
|
163
|
+
|
|
164
|
+
def state=: (String) -> String
|
|
165
|
+
|
|
166
|
+
attr_reader zip: String?
|
|
167
|
+
|
|
168
|
+
def zip=: (String) -> String
|
|
169
|
+
|
|
163
170
|
def initialize: (
|
|
164
171
|
city: String,
|
|
172
|
+
country: String,
|
|
165
173
|
line1: String,
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
?
|
|
174
|
+
?line2: String,
|
|
175
|
+
?state: String,
|
|
176
|
+
?zip: String
|
|
169
177
|
) -> void
|
|
170
178
|
|
|
171
179
|
def to_hash: -> {
|
|
172
180
|
city: String,
|
|
181
|
+
country: String,
|
|
173
182
|
:line1 => String,
|
|
183
|
+
:line2 => String,
|
|
174
184
|
state: String,
|
|
175
|
-
zip: String
|
|
176
|
-
:line2 => String
|
|
185
|
+
zip: String
|
|
177
186
|
}
|
|
178
187
|
end
|
|
179
188
|
end
|
|
@@ -275,39 +284,48 @@ module Increase
|
|
|
275
284
|
type address =
|
|
276
285
|
{
|
|
277
286
|
city: String,
|
|
287
|
+
country: String,
|
|
278
288
|
:line1 => String,
|
|
289
|
+
:line2 => String,
|
|
279
290
|
state: String,
|
|
280
|
-
zip: String
|
|
281
|
-
:line2 => String
|
|
291
|
+
zip: String
|
|
282
292
|
}
|
|
283
293
|
|
|
284
294
|
class Address < Increase::Internal::Type::BaseModel
|
|
285
295
|
attr_accessor city: String
|
|
286
296
|
|
|
287
|
-
attr_accessor
|
|
288
|
-
|
|
289
|
-
attr_accessor state: String
|
|
297
|
+
attr_accessor country: String
|
|
290
298
|
|
|
291
|
-
attr_accessor
|
|
299
|
+
attr_accessor line1: String
|
|
292
300
|
|
|
293
301
|
attr_reader line2: String?
|
|
294
302
|
|
|
295
303
|
def line2=: (String) -> String
|
|
296
304
|
|
|
305
|
+
attr_reader state: String?
|
|
306
|
+
|
|
307
|
+
def state=: (String) -> String
|
|
308
|
+
|
|
309
|
+
attr_reader zip: String?
|
|
310
|
+
|
|
311
|
+
def zip=: (String) -> String
|
|
312
|
+
|
|
297
313
|
def initialize: (
|
|
298
314
|
city: String,
|
|
315
|
+
country: String,
|
|
299
316
|
line1: String,
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
?
|
|
317
|
+
?line2: String,
|
|
318
|
+
?state: String,
|
|
319
|
+
?zip: String
|
|
303
320
|
) -> void
|
|
304
321
|
|
|
305
322
|
def to_hash: -> {
|
|
306
323
|
city: String,
|
|
324
|
+
country: String,
|
|
307
325
|
:line1 => String,
|
|
326
|
+
:line2 => String,
|
|
308
327
|
state: String,
|
|
309
|
-
zip: String
|
|
310
|
-
:line2 => String
|
|
328
|
+
zip: String
|
|
311
329
|
}
|
|
312
330
|
end
|
|
313
331
|
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.273.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-03-
|
|
11
|
+
date: 2026-03-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|