increase 0.502.0 → 0.504.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.
- package/CHANGELOG.md +21 -0
- package/package.json +1 -1
- package/resources/entities.d.mts +187 -110
- package/resources/entities.d.mts.map +1 -1
- package/resources/entities.d.ts +187 -110
- package/resources/entities.d.ts.map +1 -1
- package/src/resources/entities.ts +204 -110
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -269,9 +269,14 @@ export namespace Entity {
|
|
|
269
269
|
*/
|
|
270
270
|
export interface Address {
|
|
271
271
|
/**
|
|
272
|
-
* The city of the address.
|
|
272
|
+
* The city, district, town, or village of the address.
|
|
273
273
|
*/
|
|
274
|
-
city: string;
|
|
274
|
+
city: string | null;
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
278
|
+
*/
|
|
279
|
+
country: string;
|
|
275
280
|
|
|
276
281
|
/**
|
|
277
282
|
* The first line of the address.
|
|
@@ -284,15 +289,15 @@ export namespace Entity {
|
|
|
284
289
|
line2: string | null;
|
|
285
290
|
|
|
286
291
|
/**
|
|
287
|
-
* The two-letter United States Postal Service (USPS) abbreviation for the
|
|
288
|
-
* the address.
|
|
292
|
+
* The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
293
|
+
* state, province, or region of the address.
|
|
289
294
|
*/
|
|
290
|
-
state: string;
|
|
295
|
+
state: string | null;
|
|
291
296
|
|
|
292
297
|
/**
|
|
293
|
-
* The ZIP code of the address.
|
|
298
|
+
* The ZIP or postal code of the address.
|
|
294
299
|
*/
|
|
295
|
-
zip: string;
|
|
300
|
+
zip: string | null;
|
|
296
301
|
}
|
|
297
302
|
|
|
298
303
|
export interface BeneficialOwner {
|
|
@@ -482,9 +487,14 @@ export namespace Entity {
|
|
|
482
487
|
*/
|
|
483
488
|
export interface Address {
|
|
484
489
|
/**
|
|
485
|
-
* The city of the address.
|
|
490
|
+
* The city, district, town, or village of the address.
|
|
486
491
|
*/
|
|
487
|
-
city: string;
|
|
492
|
+
city: string | null;
|
|
493
|
+
|
|
494
|
+
/**
|
|
495
|
+
* The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
496
|
+
*/
|
|
497
|
+
country: string;
|
|
488
498
|
|
|
489
499
|
/**
|
|
490
500
|
* The first line of the address.
|
|
@@ -497,15 +507,15 @@ export namespace Entity {
|
|
|
497
507
|
line2: string | null;
|
|
498
508
|
|
|
499
509
|
/**
|
|
500
|
-
* The two-letter United States Postal Service (USPS) abbreviation for the
|
|
501
|
-
* the address.
|
|
510
|
+
* The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
511
|
+
* state, province, or region of the address.
|
|
502
512
|
*/
|
|
503
|
-
state: string;
|
|
513
|
+
state: string | null;
|
|
504
514
|
|
|
505
515
|
/**
|
|
506
|
-
* The ZIP code of the address.
|
|
516
|
+
* The ZIP or postal code of the address.
|
|
507
517
|
*/
|
|
508
|
-
zip: string;
|
|
518
|
+
zip: string | null;
|
|
509
519
|
}
|
|
510
520
|
|
|
511
521
|
export interface AuthorizedPerson {
|
|
@@ -565,9 +575,14 @@ export namespace Entity {
|
|
|
565
575
|
*/
|
|
566
576
|
export interface Address {
|
|
567
577
|
/**
|
|
568
|
-
* The city of the address.
|
|
578
|
+
* The city, district, town, or village of the address.
|
|
569
579
|
*/
|
|
570
|
-
city: string;
|
|
580
|
+
city: string | null;
|
|
581
|
+
|
|
582
|
+
/**
|
|
583
|
+
* The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
584
|
+
*/
|
|
585
|
+
country: string;
|
|
571
586
|
|
|
572
587
|
/**
|
|
573
588
|
* The first line of the address.
|
|
@@ -580,15 +595,15 @@ export namespace Entity {
|
|
|
580
595
|
line2: string | null;
|
|
581
596
|
|
|
582
597
|
/**
|
|
583
|
-
* The two-letter United States Postal Service (USPS) abbreviation for the
|
|
584
|
-
* the address.
|
|
598
|
+
* The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
599
|
+
* state, province, or region of the address.
|
|
585
600
|
*/
|
|
586
|
-
state: string;
|
|
601
|
+
state: string | null;
|
|
587
602
|
|
|
588
603
|
/**
|
|
589
|
-
* The ZIP code of the address.
|
|
604
|
+
* The ZIP or postal code of the address.
|
|
590
605
|
*/
|
|
591
|
-
zip: string;
|
|
606
|
+
zip: string | null;
|
|
592
607
|
}
|
|
593
608
|
|
|
594
609
|
/**
|
|
@@ -655,9 +670,14 @@ export namespace Entity {
|
|
|
655
670
|
*/
|
|
656
671
|
export interface Address {
|
|
657
672
|
/**
|
|
658
|
-
* The city of the address.
|
|
673
|
+
* The city, district, town, or village of the address.
|
|
659
674
|
*/
|
|
660
|
-
city: string;
|
|
675
|
+
city: string | null;
|
|
676
|
+
|
|
677
|
+
/**
|
|
678
|
+
* The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
679
|
+
*/
|
|
680
|
+
country: string;
|
|
661
681
|
|
|
662
682
|
/**
|
|
663
683
|
* The first line of the address.
|
|
@@ -670,15 +690,15 @@ export namespace Entity {
|
|
|
670
690
|
line2: string | null;
|
|
671
691
|
|
|
672
692
|
/**
|
|
673
|
-
* The two-letter United States Postal Service (USPS) abbreviation for the
|
|
674
|
-
* the address.
|
|
693
|
+
* The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
694
|
+
* state, province, or region of the address.
|
|
675
695
|
*/
|
|
676
|
-
state: string;
|
|
696
|
+
state: string | null;
|
|
677
697
|
|
|
678
698
|
/**
|
|
679
|
-
* The ZIP code of the address.
|
|
699
|
+
* The ZIP or postal code of the address.
|
|
680
700
|
*/
|
|
681
|
-
zip: string;
|
|
701
|
+
zip: string | null;
|
|
682
702
|
}
|
|
683
703
|
|
|
684
704
|
/**
|
|
@@ -828,9 +848,14 @@ export namespace Entity {
|
|
|
828
848
|
*/
|
|
829
849
|
export interface Address {
|
|
830
850
|
/**
|
|
831
|
-
* The city of the address.
|
|
851
|
+
* The city, district, town, or village of the address.
|
|
832
852
|
*/
|
|
833
|
-
city: string;
|
|
853
|
+
city: string | null;
|
|
854
|
+
|
|
855
|
+
/**
|
|
856
|
+
* The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
857
|
+
*/
|
|
858
|
+
country: string;
|
|
834
859
|
|
|
835
860
|
/**
|
|
836
861
|
* The first line of the address.
|
|
@@ -843,15 +868,15 @@ export namespace Entity {
|
|
|
843
868
|
line2: string | null;
|
|
844
869
|
|
|
845
870
|
/**
|
|
846
|
-
* The two-letter United States Postal Service (USPS) abbreviation for the
|
|
847
|
-
* the address.
|
|
871
|
+
* The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
872
|
+
* state, province, or region of the address.
|
|
848
873
|
*/
|
|
849
|
-
state: string;
|
|
874
|
+
state: string | null;
|
|
850
875
|
|
|
851
876
|
/**
|
|
852
|
-
* The ZIP code of the address.
|
|
877
|
+
* The ZIP or postal code of the address.
|
|
853
878
|
*/
|
|
854
|
-
zip: string;
|
|
879
|
+
zip: string | null;
|
|
855
880
|
}
|
|
856
881
|
|
|
857
882
|
/**
|
|
@@ -885,9 +910,14 @@ export namespace Entity {
|
|
|
885
910
|
*/
|
|
886
911
|
export interface Address {
|
|
887
912
|
/**
|
|
888
|
-
* The city of the address.
|
|
913
|
+
* The city, district, town, or village of the address.
|
|
889
914
|
*/
|
|
890
|
-
city: string;
|
|
915
|
+
city: string | null;
|
|
916
|
+
|
|
917
|
+
/**
|
|
918
|
+
* The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
919
|
+
*/
|
|
920
|
+
country: string;
|
|
891
921
|
|
|
892
922
|
/**
|
|
893
923
|
* The first line of the address.
|
|
@@ -900,15 +930,15 @@ export namespace Entity {
|
|
|
900
930
|
line2: string | null;
|
|
901
931
|
|
|
902
932
|
/**
|
|
903
|
-
* The two-letter United States Postal Service (USPS) abbreviation for the
|
|
904
|
-
* the address.
|
|
933
|
+
* The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
934
|
+
* state, province, or region of the address.
|
|
905
935
|
*/
|
|
906
|
-
state: string;
|
|
936
|
+
state: string | null;
|
|
907
937
|
|
|
908
938
|
/**
|
|
909
|
-
* The ZIP code of the address.
|
|
939
|
+
* The ZIP or postal code of the address.
|
|
910
940
|
*/
|
|
911
|
-
zip: string;
|
|
941
|
+
zip: string | null;
|
|
912
942
|
}
|
|
913
943
|
|
|
914
944
|
/**
|
|
@@ -990,9 +1020,14 @@ export namespace Entity {
|
|
|
990
1020
|
*/
|
|
991
1021
|
export interface Address {
|
|
992
1022
|
/**
|
|
993
|
-
* The city of the address.
|
|
1023
|
+
* The city, district, town, or village of the address.
|
|
994
1024
|
*/
|
|
995
|
-
city: string;
|
|
1025
|
+
city: string | null;
|
|
1026
|
+
|
|
1027
|
+
/**
|
|
1028
|
+
* The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
1029
|
+
*/
|
|
1030
|
+
country: string;
|
|
996
1031
|
|
|
997
1032
|
/**
|
|
998
1033
|
* The first line of the address.
|
|
@@ -1005,15 +1040,15 @@ export namespace Entity {
|
|
|
1005
1040
|
line2: string | null;
|
|
1006
1041
|
|
|
1007
1042
|
/**
|
|
1008
|
-
* The two-letter United States Postal Service (USPS) abbreviation for the
|
|
1009
|
-
* the address.
|
|
1043
|
+
* The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
1044
|
+
* state, province, or region of the address.
|
|
1010
1045
|
*/
|
|
1011
|
-
state: string;
|
|
1046
|
+
state: string | null;
|
|
1012
1047
|
|
|
1013
1048
|
/**
|
|
1014
|
-
* The ZIP code of the address.
|
|
1049
|
+
* The ZIP or postal code of the address.
|
|
1015
1050
|
*/
|
|
1016
|
-
zip: string;
|
|
1051
|
+
zip: string | null;
|
|
1017
1052
|
}
|
|
1018
1053
|
|
|
1019
1054
|
/**
|
|
@@ -1088,7 +1123,7 @@ export namespace Entity {
|
|
|
1088
1123
|
*
|
|
1089
1124
|
* - `entity_tax_identifier` - The entity's tax identifier could not be validated.
|
|
1090
1125
|
* Update the tax ID with the
|
|
1091
|
-
* [update an entity API](/documentation/api/entities#update-an-entity.corporation.
|
|
1126
|
+
* [update an entity API](/documentation/api/entities#update-an-entity.corporation.legal_identifier).
|
|
1092
1127
|
* - `entity_address` - The entity's address could not be validated. Update the
|
|
1093
1128
|
* address with the
|
|
1094
1129
|
* [update an entity API](/documentation/api/entities#update-an-entity.corporation.address).
|
|
@@ -1324,30 +1359,35 @@ export namespace EntityCreateParams {
|
|
|
1324
1359
|
*/
|
|
1325
1360
|
export interface Address {
|
|
1326
1361
|
/**
|
|
1327
|
-
* The city of the address.
|
|
1362
|
+
* The city, district, town, or village of the address.
|
|
1328
1363
|
*/
|
|
1329
1364
|
city: string;
|
|
1330
1365
|
|
|
1366
|
+
/**
|
|
1367
|
+
* The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
1368
|
+
*/
|
|
1369
|
+
country: string;
|
|
1370
|
+
|
|
1331
1371
|
/**
|
|
1332
1372
|
* The first line of the address. This is usually the street number and street.
|
|
1333
1373
|
*/
|
|
1334
1374
|
line1: string;
|
|
1335
1375
|
|
|
1336
1376
|
/**
|
|
1337
|
-
* The
|
|
1338
|
-
* the address.
|
|
1377
|
+
* The second line of the address. This might be the floor or room number.
|
|
1339
1378
|
*/
|
|
1340
|
-
|
|
1379
|
+
line2?: string;
|
|
1341
1380
|
|
|
1342
1381
|
/**
|
|
1343
|
-
* The
|
|
1382
|
+
* The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
1383
|
+
* state, province, or region of the address. Required in certain countries.
|
|
1344
1384
|
*/
|
|
1345
|
-
|
|
1385
|
+
state?: string;
|
|
1346
1386
|
|
|
1347
1387
|
/**
|
|
1348
|
-
* The
|
|
1388
|
+
* The ZIP or postal code of the address. Required in certain countries.
|
|
1349
1389
|
*/
|
|
1350
|
-
|
|
1390
|
+
zip?: string;
|
|
1351
1391
|
}
|
|
1352
1392
|
|
|
1353
1393
|
export interface BeneficialOwner {
|
|
@@ -1733,30 +1773,35 @@ export namespace EntityCreateParams {
|
|
|
1733
1773
|
*/
|
|
1734
1774
|
export interface Address {
|
|
1735
1775
|
/**
|
|
1736
|
-
* The city of the address.
|
|
1776
|
+
* The city, district, town, or village of the address.
|
|
1737
1777
|
*/
|
|
1738
1778
|
city: string;
|
|
1739
1779
|
|
|
1780
|
+
/**
|
|
1781
|
+
* The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
1782
|
+
*/
|
|
1783
|
+
country: string;
|
|
1784
|
+
|
|
1740
1785
|
/**
|
|
1741
1786
|
* The first line of the address. This is usually the street number and street.
|
|
1742
1787
|
*/
|
|
1743
1788
|
line1: string;
|
|
1744
1789
|
|
|
1745
1790
|
/**
|
|
1746
|
-
* The
|
|
1747
|
-
* the address.
|
|
1791
|
+
* The second line of the address. This might be the floor or room number.
|
|
1748
1792
|
*/
|
|
1749
|
-
|
|
1793
|
+
line2?: string;
|
|
1750
1794
|
|
|
1751
1795
|
/**
|
|
1752
|
-
* The
|
|
1796
|
+
* The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
1797
|
+
* state, province, or region of the address. Required in certain countries.
|
|
1753
1798
|
*/
|
|
1754
|
-
|
|
1799
|
+
state?: string;
|
|
1755
1800
|
|
|
1756
1801
|
/**
|
|
1757
|
-
* The
|
|
1802
|
+
* The ZIP or postal code of the address. Required in certain countries.
|
|
1758
1803
|
*/
|
|
1759
|
-
|
|
1804
|
+
zip?: string;
|
|
1760
1805
|
}
|
|
1761
1806
|
|
|
1762
1807
|
/**
|
|
@@ -1936,30 +1981,35 @@ export namespace EntityCreateParams {
|
|
|
1936
1981
|
*/
|
|
1937
1982
|
export interface Address {
|
|
1938
1983
|
/**
|
|
1939
|
-
* The city of the address.
|
|
1984
|
+
* The city, district, town, or village of the address.
|
|
1940
1985
|
*/
|
|
1941
1986
|
city: string;
|
|
1942
1987
|
|
|
1988
|
+
/**
|
|
1989
|
+
* The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
1990
|
+
*/
|
|
1991
|
+
country: string;
|
|
1992
|
+
|
|
1943
1993
|
/**
|
|
1944
1994
|
* The first line of the address. This is usually the street number and street.
|
|
1945
1995
|
*/
|
|
1946
1996
|
line1: string;
|
|
1947
1997
|
|
|
1948
1998
|
/**
|
|
1949
|
-
* The
|
|
1950
|
-
* the address.
|
|
1999
|
+
* The second line of the address. This might be the floor or room number.
|
|
1951
2000
|
*/
|
|
1952
|
-
|
|
2001
|
+
line2?: string;
|
|
1953
2002
|
|
|
1954
2003
|
/**
|
|
1955
|
-
* The
|
|
2004
|
+
* The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
2005
|
+
* state, province, or region of the address. Required in certain countries.
|
|
1956
2006
|
*/
|
|
1957
|
-
|
|
2007
|
+
state?: string;
|
|
1958
2008
|
|
|
1959
2009
|
/**
|
|
1960
|
-
* The
|
|
2010
|
+
* The ZIP or postal code of the address. Required in certain countries.
|
|
1961
2011
|
*/
|
|
1962
|
-
|
|
2012
|
+
zip?: string;
|
|
1963
2013
|
}
|
|
1964
2014
|
|
|
1965
2015
|
/**
|
|
@@ -2307,30 +2357,35 @@ export namespace EntityCreateParams {
|
|
|
2307
2357
|
*/
|
|
2308
2358
|
export interface Address {
|
|
2309
2359
|
/**
|
|
2310
|
-
* The city of the address.
|
|
2360
|
+
* The city, district, town, or village of the address.
|
|
2311
2361
|
*/
|
|
2312
2362
|
city: string;
|
|
2313
2363
|
|
|
2364
|
+
/**
|
|
2365
|
+
* The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
2366
|
+
*/
|
|
2367
|
+
country: string;
|
|
2368
|
+
|
|
2314
2369
|
/**
|
|
2315
2370
|
* The first line of the address. This is usually the street number and street.
|
|
2316
2371
|
*/
|
|
2317
2372
|
line1: string;
|
|
2318
2373
|
|
|
2319
2374
|
/**
|
|
2320
|
-
* The
|
|
2321
|
-
* the address.
|
|
2375
|
+
* The second line of the address. This might be the floor or room number.
|
|
2322
2376
|
*/
|
|
2323
|
-
|
|
2377
|
+
line2?: string;
|
|
2324
2378
|
|
|
2325
2379
|
/**
|
|
2326
|
-
* The
|
|
2380
|
+
* The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
2381
|
+
* state, province, or region of the address. Required in certain countries.
|
|
2327
2382
|
*/
|
|
2328
|
-
|
|
2383
|
+
state?: string;
|
|
2329
2384
|
|
|
2330
2385
|
/**
|
|
2331
|
-
* The
|
|
2386
|
+
* The ZIP or postal code of the address. Required in certain countries.
|
|
2332
2387
|
*/
|
|
2333
|
-
|
|
2388
|
+
zip?: string;
|
|
2334
2389
|
}
|
|
2335
2390
|
|
|
2336
2391
|
/**
|
|
@@ -2507,30 +2562,35 @@ export namespace EntityCreateParams {
|
|
|
2507
2562
|
*/
|
|
2508
2563
|
export interface Address {
|
|
2509
2564
|
/**
|
|
2510
|
-
* The city of the address.
|
|
2565
|
+
* The city, district, town, or village of the address.
|
|
2511
2566
|
*/
|
|
2512
2567
|
city: string;
|
|
2513
2568
|
|
|
2569
|
+
/**
|
|
2570
|
+
* The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
2571
|
+
*/
|
|
2572
|
+
country: string;
|
|
2573
|
+
|
|
2514
2574
|
/**
|
|
2515
2575
|
* The first line of the address. This is usually the street number and street.
|
|
2516
2576
|
*/
|
|
2517
2577
|
line1: string;
|
|
2518
2578
|
|
|
2519
2579
|
/**
|
|
2520
|
-
* The
|
|
2521
|
-
* the address.
|
|
2580
|
+
* The second line of the address. This might be the floor or room number.
|
|
2522
2581
|
*/
|
|
2523
|
-
|
|
2582
|
+
line2?: string;
|
|
2524
2583
|
|
|
2525
2584
|
/**
|
|
2526
|
-
* The
|
|
2585
|
+
* The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
2586
|
+
* state, province, or region of the address. Required in certain countries.
|
|
2527
2587
|
*/
|
|
2528
|
-
|
|
2588
|
+
state?: string;
|
|
2529
2589
|
|
|
2530
2590
|
/**
|
|
2531
|
-
* The
|
|
2591
|
+
* The ZIP or postal code of the address. Required in certain countries.
|
|
2532
2592
|
*/
|
|
2533
|
-
|
|
2593
|
+
zip?: string;
|
|
2534
2594
|
}
|
|
2535
2595
|
|
|
2536
2596
|
/**
|
|
@@ -2746,14 +2806,17 @@ export namespace EntityUpdateParams {
|
|
|
2746
2806
|
industry_code?: string;
|
|
2747
2807
|
|
|
2748
2808
|
/**
|
|
2749
|
-
* The legal
|
|
2809
|
+
* The legal identifier of the corporation. This is usually the Employer
|
|
2810
|
+
* Identification Number (EIN).
|
|
2750
2811
|
*/
|
|
2751
|
-
|
|
2812
|
+
legal_identifier?: Corporation.LegalIdentifier;
|
|
2752
2813
|
|
|
2753
2814
|
/**
|
|
2754
|
-
* The
|
|
2815
|
+
* The legal name of the corporation.
|
|
2755
2816
|
*/
|
|
2756
|
-
|
|
2817
|
+
name?: string;
|
|
2818
|
+
|
|
2819
|
+
[k: string]: unknown;
|
|
2757
2820
|
}
|
|
2758
2821
|
|
|
2759
2822
|
export namespace Corporation {
|
|
@@ -2763,30 +2826,56 @@ export namespace EntityUpdateParams {
|
|
|
2763
2826
|
*/
|
|
2764
2827
|
export interface Address {
|
|
2765
2828
|
/**
|
|
2766
|
-
* The city of the address.
|
|
2829
|
+
* The city, district, town, or village of the address.
|
|
2767
2830
|
*/
|
|
2768
2831
|
city: string;
|
|
2769
2832
|
|
|
2833
|
+
/**
|
|
2834
|
+
* The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
2835
|
+
*/
|
|
2836
|
+
country: string;
|
|
2837
|
+
|
|
2770
2838
|
/**
|
|
2771
2839
|
* The first line of the address. This is usually the street number and street.
|
|
2772
2840
|
*/
|
|
2773
2841
|
line1: string;
|
|
2774
2842
|
|
|
2775
2843
|
/**
|
|
2776
|
-
* The
|
|
2777
|
-
* the address.
|
|
2844
|
+
* The second line of the address. This might be the floor or room number.
|
|
2778
2845
|
*/
|
|
2779
|
-
|
|
2846
|
+
line2?: string;
|
|
2780
2847
|
|
|
2781
2848
|
/**
|
|
2782
|
-
* The
|
|
2849
|
+
* The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
2850
|
+
* state, province, or region of the address. Required in certain countries.
|
|
2783
2851
|
*/
|
|
2784
|
-
|
|
2852
|
+
state?: string;
|
|
2785
2853
|
|
|
2786
2854
|
/**
|
|
2787
|
-
* The
|
|
2855
|
+
* The ZIP or postal code of the address. Required in certain countries.
|
|
2788
2856
|
*/
|
|
2789
|
-
|
|
2857
|
+
zip?: string;
|
|
2858
|
+
}
|
|
2859
|
+
|
|
2860
|
+
/**
|
|
2861
|
+
* The legal identifier of the corporation. This is usually the Employer
|
|
2862
|
+
* Identification Number (EIN).
|
|
2863
|
+
*/
|
|
2864
|
+
export interface LegalIdentifier {
|
|
2865
|
+
/**
|
|
2866
|
+
* The identifier of the legal identifier.
|
|
2867
|
+
*/
|
|
2868
|
+
value: string;
|
|
2869
|
+
|
|
2870
|
+
/**
|
|
2871
|
+
* The category of the legal identifier.
|
|
2872
|
+
*
|
|
2873
|
+
* - `us_employer_identification_number` - The Employer Identification Number (EIN)
|
|
2874
|
+
* for the company. The EIN is a 9-digit number assigned by the IRS.
|
|
2875
|
+
* - `other` - A legal identifier issued by a foreign government, like a tax
|
|
2876
|
+
* identification number or registration number.
|
|
2877
|
+
*/
|
|
2878
|
+
category?: 'us_employer_identification_number' | 'other';
|
|
2790
2879
|
}
|
|
2791
2880
|
}
|
|
2792
2881
|
|
|
@@ -2865,30 +2954,35 @@ export namespace EntityUpdateParams {
|
|
|
2865
2954
|
*/
|
|
2866
2955
|
export interface Address {
|
|
2867
2956
|
/**
|
|
2868
|
-
* The city of the address.
|
|
2957
|
+
* The city, district, town, or village of the address.
|
|
2869
2958
|
*/
|
|
2870
2959
|
city: string;
|
|
2871
2960
|
|
|
2961
|
+
/**
|
|
2962
|
+
* The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
2963
|
+
*/
|
|
2964
|
+
country: string;
|
|
2965
|
+
|
|
2872
2966
|
/**
|
|
2873
2967
|
* The first line of the address. This is usually the street number and street.
|
|
2874
2968
|
*/
|
|
2875
2969
|
line1: string;
|
|
2876
2970
|
|
|
2877
2971
|
/**
|
|
2878
|
-
* The
|
|
2879
|
-
* the address.
|
|
2972
|
+
* The second line of the address. This might be the floor or room number.
|
|
2880
2973
|
*/
|
|
2881
|
-
|
|
2974
|
+
line2?: string;
|
|
2882
2975
|
|
|
2883
2976
|
/**
|
|
2884
|
-
* The
|
|
2977
|
+
* The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
2978
|
+
* state, province, or region of the address. Required in certain countries.
|
|
2885
2979
|
*/
|
|
2886
|
-
|
|
2980
|
+
state?: string;
|
|
2887
2981
|
|
|
2888
2982
|
/**
|
|
2889
|
-
* The
|
|
2983
|
+
* The ZIP or postal code of the address. Required in certain countries.
|
|
2890
2984
|
*/
|
|
2891
|
-
|
|
2985
|
+
zip?: string;
|
|
2892
2986
|
}
|
|
2893
2987
|
}
|
|
2894
2988
|
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.504.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.504.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.504.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.504.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|