increase 0.502.0 → 0.503.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 +8 -0
- package/package.json +1 -1
- package/resources/entities.d.mts +161 -105
- package/resources/entities.d.mts.map +1 -1
- package/resources/entities.d.ts +161 -105
- package/resources/entities.d.ts.map +1 -1
- package/src/resources/entities.ts +175 -105
- 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
|
/**
|
|
@@ -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
|
/**
|
|
@@ -2763,30 +2823,35 @@ export namespace EntityUpdateParams {
|
|
|
2763
2823
|
*/
|
|
2764
2824
|
export interface Address {
|
|
2765
2825
|
/**
|
|
2766
|
-
* The city of the address.
|
|
2826
|
+
* The city, district, town, or village of the address.
|
|
2767
2827
|
*/
|
|
2768
2828
|
city: string;
|
|
2769
2829
|
|
|
2830
|
+
/**
|
|
2831
|
+
* The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
2832
|
+
*/
|
|
2833
|
+
country: string;
|
|
2834
|
+
|
|
2770
2835
|
/**
|
|
2771
2836
|
* The first line of the address. This is usually the street number and street.
|
|
2772
2837
|
*/
|
|
2773
2838
|
line1: string;
|
|
2774
2839
|
|
|
2775
2840
|
/**
|
|
2776
|
-
* The
|
|
2777
|
-
* the address.
|
|
2841
|
+
* The second line of the address. This might be the floor or room number.
|
|
2778
2842
|
*/
|
|
2779
|
-
|
|
2843
|
+
line2?: string;
|
|
2780
2844
|
|
|
2781
2845
|
/**
|
|
2782
|
-
* The
|
|
2846
|
+
* The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
2847
|
+
* state, province, or region of the address. Required in certain countries.
|
|
2783
2848
|
*/
|
|
2784
|
-
|
|
2849
|
+
state?: string;
|
|
2785
2850
|
|
|
2786
2851
|
/**
|
|
2787
|
-
* The
|
|
2852
|
+
* The ZIP or postal code of the address. Required in certain countries.
|
|
2788
2853
|
*/
|
|
2789
|
-
|
|
2854
|
+
zip?: string;
|
|
2790
2855
|
}
|
|
2791
2856
|
}
|
|
2792
2857
|
|
|
@@ -2865,30 +2930,35 @@ export namespace EntityUpdateParams {
|
|
|
2865
2930
|
*/
|
|
2866
2931
|
export interface Address {
|
|
2867
2932
|
/**
|
|
2868
|
-
* The city of the address.
|
|
2933
|
+
* The city, district, town, or village of the address.
|
|
2869
2934
|
*/
|
|
2870
2935
|
city: string;
|
|
2871
2936
|
|
|
2937
|
+
/**
|
|
2938
|
+
* The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
2939
|
+
*/
|
|
2940
|
+
country: string;
|
|
2941
|
+
|
|
2872
2942
|
/**
|
|
2873
2943
|
* The first line of the address. This is usually the street number and street.
|
|
2874
2944
|
*/
|
|
2875
2945
|
line1: string;
|
|
2876
2946
|
|
|
2877
2947
|
/**
|
|
2878
|
-
* The
|
|
2879
|
-
* the address.
|
|
2948
|
+
* The second line of the address. This might be the floor or room number.
|
|
2880
2949
|
*/
|
|
2881
|
-
|
|
2950
|
+
line2?: string;
|
|
2882
2951
|
|
|
2883
2952
|
/**
|
|
2884
|
-
* The
|
|
2953
|
+
* The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
2954
|
+
* state, province, or region of the address. Required in certain countries.
|
|
2885
2955
|
*/
|
|
2886
|
-
|
|
2956
|
+
state?: string;
|
|
2887
2957
|
|
|
2888
2958
|
/**
|
|
2889
|
-
* The
|
|
2959
|
+
* The ZIP or postal code of the address. Required in certain countries.
|
|
2890
2960
|
*/
|
|
2891
|
-
|
|
2961
|
+
zip?: string;
|
|
2892
2962
|
}
|
|
2893
2963
|
}
|
|
2894
2964
|
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.503.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.503.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.503.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.503.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|