@deliverart/sdk-js-integration 0.0.1 → 0.0.2

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/dist/index.d.ts CHANGED
@@ -935,7 +935,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
935
935
  name: z.ZodString;
936
936
  address: z.ZodObject<{
937
937
  line1: z.ZodString;
938
- line2: z.ZodOptional<z.ZodString>;
938
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
939
939
  city: z.ZodString;
940
940
  region: z.ZodString;
941
941
  postalCode: z.ZodString;
@@ -946,14 +946,14 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
946
946
  region: string;
947
947
  postalCode: string;
948
948
  country: string;
949
- line2?: string | undefined;
949
+ line2?: string | null | undefined;
950
950
  }, {
951
951
  line1: string;
952
952
  city: string;
953
953
  region: string;
954
954
  postalCode: string;
955
955
  country: string;
956
- line2?: string | undefined;
956
+ line2?: string | null | undefined;
957
957
  }>;
958
958
  timezone: z.ZodString;
959
959
  location: z.ZodObject<{
@@ -979,7 +979,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
979
979
  region: string;
980
980
  postalCode: string;
981
981
  country: string;
982
- line2?: string | undefined;
982
+ line2?: string | null | undefined;
983
983
  };
984
984
  timezone: string;
985
985
  location: {
@@ -999,7 +999,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
999
999
  region: string;
1000
1000
  postalCode: string;
1001
1001
  country: string;
1002
- line2?: string | undefined;
1002
+ line2?: string | null | undefined;
1003
1003
  };
1004
1004
  timezone: string;
1005
1005
  location: {
@@ -1082,7 +1082,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1082
1082
  region: string;
1083
1083
  postalCode: string;
1084
1084
  country: string;
1085
- line2?: string | undefined;
1085
+ line2?: string | null | undefined;
1086
1086
  };
1087
1087
  timezone: string;
1088
1088
  location: {
@@ -1126,7 +1126,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1126
1126
  region: string;
1127
1127
  postalCode: string;
1128
1128
  country: string;
1129
- line2?: string | undefined;
1129
+ line2?: string | null | undefined;
1130
1130
  };
1131
1131
  timezone: string;
1132
1132
  location: {
@@ -1144,7 +1144,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1144
1144
  name: z.ZodString;
1145
1145
  address: z.ZodObject<{
1146
1146
  line1: z.ZodString;
1147
- line2: z.ZodOptional<z.ZodString>;
1147
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1148
1148
  city: z.ZodString;
1149
1149
  region: z.ZodString;
1150
1150
  postalCode: z.ZodString;
@@ -1155,14 +1155,14 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1155
1155
  region: string;
1156
1156
  postalCode: string;
1157
1157
  country: string;
1158
- line2?: string | undefined;
1158
+ line2?: string | null | undefined;
1159
1159
  }, {
1160
1160
  line1: string;
1161
1161
  city: string;
1162
1162
  region: string;
1163
1163
  postalCode: string;
1164
1164
  country: string;
1165
- line2?: string | undefined;
1165
+ line2?: string | null | undefined;
1166
1166
  }>;
1167
1167
  timezone: z.ZodString;
1168
1168
  location: z.ZodObject<{
@@ -1188,7 +1188,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1188
1188
  region: string;
1189
1189
  postalCode: string;
1190
1190
  country: string;
1191
- line2?: string | undefined;
1191
+ line2?: string | null | undefined;
1192
1192
  };
1193
1193
  timezone: string;
1194
1194
  location: {
@@ -1208,7 +1208,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1208
1208
  region: string;
1209
1209
  postalCode: string;
1210
1210
  country: string;
1211
- line2?: string | undefined;
1211
+ line2?: string | null | undefined;
1212
1212
  };
1213
1213
  timezone: string;
1214
1214
  location: {
@@ -1287,7 +1287,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1287
1287
  region: string;
1288
1288
  postalCode: string;
1289
1289
  country: string;
1290
- line2?: string | undefined;
1290
+ line2?: string | null | undefined;
1291
1291
  };
1292
1292
  timezone: string;
1293
1293
  location: {
@@ -1330,7 +1330,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1330
1330
  region: string;
1331
1331
  postalCode: string;
1332
1332
  country: string;
1333
- line2?: string | undefined;
1333
+ line2?: string | null | undefined;
1334
1334
  };
1335
1335
  timezone: string;
1336
1336
  location: {
@@ -1348,7 +1348,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1348
1348
  name: z.ZodString;
1349
1349
  address: z.ZodObject<{
1350
1350
  line1: z.ZodString;
1351
- line2: z.ZodOptional<z.ZodString>;
1351
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1352
1352
  city: z.ZodString;
1353
1353
  region: z.ZodString;
1354
1354
  postalCode: z.ZodString;
@@ -1359,14 +1359,14 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1359
1359
  region: string;
1360
1360
  postalCode: string;
1361
1361
  country: string;
1362
- line2?: string | undefined;
1362
+ line2?: string | null | undefined;
1363
1363
  }, {
1364
1364
  line1: string;
1365
1365
  city: string;
1366
1366
  region: string;
1367
1367
  postalCode: string;
1368
1368
  country: string;
1369
- line2?: string | undefined;
1369
+ line2?: string | null | undefined;
1370
1370
  }>;
1371
1371
  timezone: z.ZodString;
1372
1372
  location: z.ZodObject<{
@@ -1392,7 +1392,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1392
1392
  region: string;
1393
1393
  postalCode: string;
1394
1394
  country: string;
1395
- line2?: string | undefined;
1395
+ line2?: string | null | undefined;
1396
1396
  };
1397
1397
  timezone: string;
1398
1398
  location: {
@@ -1412,7 +1412,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1412
1412
  region: string;
1413
1413
  postalCode: string;
1414
1414
  country: string;
1415
- line2?: string | undefined;
1415
+ line2?: string | null | undefined;
1416
1416
  };
1417
1417
  timezone: string;
1418
1418
  location: {
@@ -1491,7 +1491,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1491
1491
  region: string;
1492
1492
  postalCode: string;
1493
1493
  country: string;
1494
- line2?: string | undefined;
1494
+ line2?: string | null | undefined;
1495
1495
  };
1496
1496
  timezone: string;
1497
1497
  location: {
@@ -1534,7 +1534,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1534
1534
  region: string;
1535
1535
  postalCode: string;
1536
1536
  country: string;
1537
- line2?: string | undefined;
1537
+ line2?: string | null | undefined;
1538
1538
  };
1539
1539
  timezone: string;
1540
1540
  location: {
@@ -1552,7 +1552,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1552
1552
  name: z.ZodString;
1553
1553
  address: z.ZodObject<{
1554
1554
  line1: z.ZodString;
1555
- line2: z.ZodOptional<z.ZodString>;
1555
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1556
1556
  city: z.ZodString;
1557
1557
  region: z.ZodString;
1558
1558
  postalCode: z.ZodString;
@@ -1563,14 +1563,14 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1563
1563
  region: string;
1564
1564
  postalCode: string;
1565
1565
  country: string;
1566
- line2?: string | undefined;
1566
+ line2?: string | null | undefined;
1567
1567
  }, {
1568
1568
  line1: string;
1569
1569
  city: string;
1570
1570
  region: string;
1571
1571
  postalCode: string;
1572
1572
  country: string;
1573
- line2?: string | undefined;
1573
+ line2?: string | null | undefined;
1574
1574
  }>;
1575
1575
  timezone: z.ZodString;
1576
1576
  location: z.ZodObject<{
@@ -1596,7 +1596,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1596
1596
  region: string;
1597
1597
  postalCode: string;
1598
1598
  country: string;
1599
- line2?: string | undefined;
1599
+ line2?: string | null | undefined;
1600
1600
  };
1601
1601
  timezone: string;
1602
1602
  location: {
@@ -1616,7 +1616,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1616
1616
  region: string;
1617
1617
  postalCode: string;
1618
1618
  country: string;
1619
- line2?: string | undefined;
1619
+ line2?: string | null | undefined;
1620
1620
  };
1621
1621
  timezone: string;
1622
1622
  location: {
@@ -1703,7 +1703,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1703
1703
  region: string;
1704
1704
  postalCode: string;
1705
1705
  country: string;
1706
- line2?: string | undefined;
1706
+ line2?: string | null | undefined;
1707
1707
  };
1708
1708
  timezone: string;
1709
1709
  location: {
@@ -1748,7 +1748,7 @@ declare const integrationActivationRequestDetailsSchema: z.ZodDiscriminatedUnion
1748
1748
  region: string;
1749
1749
  postalCode: string;
1750
1750
  country: string;
1751
- line2?: string | undefined;
1751
+ line2?: string | null | undefined;
1752
1752
  };
1753
1753
  timezone: string;
1754
1754
  location: {
@@ -1817,7 +1817,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
1817
1817
  name: z.ZodString;
1818
1818
  address: z.ZodObject<{
1819
1819
  line1: z.ZodString;
1820
- line2: z.ZodOptional<z.ZodString>;
1820
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1821
1821
  city: z.ZodString;
1822
1822
  region: z.ZodString;
1823
1823
  postalCode: z.ZodString;
@@ -1828,14 +1828,14 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
1828
1828
  region: string;
1829
1829
  postalCode: string;
1830
1830
  country: string;
1831
- line2?: string | undefined;
1831
+ line2?: string | null | undefined;
1832
1832
  }, {
1833
1833
  line1: string;
1834
1834
  city: string;
1835
1835
  region: string;
1836
1836
  postalCode: string;
1837
1837
  country: string;
1838
- line2?: string | undefined;
1838
+ line2?: string | null | undefined;
1839
1839
  }>;
1840
1840
  timezone: z.ZodString;
1841
1841
  location: z.ZodObject<{
@@ -1861,7 +1861,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
1861
1861
  region: string;
1862
1862
  postalCode: string;
1863
1863
  country: string;
1864
- line2?: string | undefined;
1864
+ line2?: string | null | undefined;
1865
1865
  };
1866
1866
  timezone: string;
1867
1867
  location: {
@@ -1881,7 +1881,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
1881
1881
  region: string;
1882
1882
  postalCode: string;
1883
1883
  country: string;
1884
- line2?: string | undefined;
1884
+ line2?: string | null | undefined;
1885
1885
  };
1886
1886
  timezone: string;
1887
1887
  location: {
@@ -1964,7 +1964,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
1964
1964
  region: string;
1965
1965
  postalCode: string;
1966
1966
  country: string;
1967
- line2?: string | undefined;
1967
+ line2?: string | null | undefined;
1968
1968
  };
1969
1969
  timezone: string;
1970
1970
  location: {
@@ -2008,7 +2008,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2008
2008
  region: string;
2009
2009
  postalCode: string;
2010
2010
  country: string;
2011
- line2?: string | undefined;
2011
+ line2?: string | null | undefined;
2012
2012
  };
2013
2013
  timezone: string;
2014
2014
  location: {
@@ -2026,7 +2026,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2026
2026
  name: z.ZodString;
2027
2027
  address: z.ZodObject<{
2028
2028
  line1: z.ZodString;
2029
- line2: z.ZodOptional<z.ZodString>;
2029
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2030
2030
  city: z.ZodString;
2031
2031
  region: z.ZodString;
2032
2032
  postalCode: z.ZodString;
@@ -2037,14 +2037,14 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2037
2037
  region: string;
2038
2038
  postalCode: string;
2039
2039
  country: string;
2040
- line2?: string | undefined;
2040
+ line2?: string | null | undefined;
2041
2041
  }, {
2042
2042
  line1: string;
2043
2043
  city: string;
2044
2044
  region: string;
2045
2045
  postalCode: string;
2046
2046
  country: string;
2047
- line2?: string | undefined;
2047
+ line2?: string | null | undefined;
2048
2048
  }>;
2049
2049
  timezone: z.ZodString;
2050
2050
  location: z.ZodObject<{
@@ -2070,7 +2070,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2070
2070
  region: string;
2071
2071
  postalCode: string;
2072
2072
  country: string;
2073
- line2?: string | undefined;
2073
+ line2?: string | null | undefined;
2074
2074
  };
2075
2075
  timezone: string;
2076
2076
  location: {
@@ -2090,7 +2090,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2090
2090
  region: string;
2091
2091
  postalCode: string;
2092
2092
  country: string;
2093
- line2?: string | undefined;
2093
+ line2?: string | null | undefined;
2094
2094
  };
2095
2095
  timezone: string;
2096
2096
  location: {
@@ -2169,7 +2169,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2169
2169
  region: string;
2170
2170
  postalCode: string;
2171
2171
  country: string;
2172
- line2?: string | undefined;
2172
+ line2?: string | null | undefined;
2173
2173
  };
2174
2174
  timezone: string;
2175
2175
  location: {
@@ -2212,7 +2212,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2212
2212
  region: string;
2213
2213
  postalCode: string;
2214
2214
  country: string;
2215
- line2?: string | undefined;
2215
+ line2?: string | null | undefined;
2216
2216
  };
2217
2217
  timezone: string;
2218
2218
  location: {
@@ -2230,7 +2230,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2230
2230
  name: z.ZodString;
2231
2231
  address: z.ZodObject<{
2232
2232
  line1: z.ZodString;
2233
- line2: z.ZodOptional<z.ZodString>;
2233
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2234
2234
  city: z.ZodString;
2235
2235
  region: z.ZodString;
2236
2236
  postalCode: z.ZodString;
@@ -2241,14 +2241,14 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2241
2241
  region: string;
2242
2242
  postalCode: string;
2243
2243
  country: string;
2244
- line2?: string | undefined;
2244
+ line2?: string | null | undefined;
2245
2245
  }, {
2246
2246
  line1: string;
2247
2247
  city: string;
2248
2248
  region: string;
2249
2249
  postalCode: string;
2250
2250
  country: string;
2251
- line2?: string | undefined;
2251
+ line2?: string | null | undefined;
2252
2252
  }>;
2253
2253
  timezone: z.ZodString;
2254
2254
  location: z.ZodObject<{
@@ -2274,7 +2274,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2274
2274
  region: string;
2275
2275
  postalCode: string;
2276
2276
  country: string;
2277
- line2?: string | undefined;
2277
+ line2?: string | null | undefined;
2278
2278
  };
2279
2279
  timezone: string;
2280
2280
  location: {
@@ -2294,7 +2294,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2294
2294
  region: string;
2295
2295
  postalCode: string;
2296
2296
  country: string;
2297
- line2?: string | undefined;
2297
+ line2?: string | null | undefined;
2298
2298
  };
2299
2299
  timezone: string;
2300
2300
  location: {
@@ -2373,7 +2373,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2373
2373
  region: string;
2374
2374
  postalCode: string;
2375
2375
  country: string;
2376
- line2?: string | undefined;
2376
+ line2?: string | null | undefined;
2377
2377
  };
2378
2378
  timezone: string;
2379
2379
  location: {
@@ -2416,7 +2416,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2416
2416
  region: string;
2417
2417
  postalCode: string;
2418
2418
  country: string;
2419
- line2?: string | undefined;
2419
+ line2?: string | null | undefined;
2420
2420
  };
2421
2421
  timezone: string;
2422
2422
  location: {
@@ -2434,7 +2434,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2434
2434
  name: z.ZodString;
2435
2435
  address: z.ZodObject<{
2436
2436
  line1: z.ZodString;
2437
- line2: z.ZodOptional<z.ZodString>;
2437
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2438
2438
  city: z.ZodString;
2439
2439
  region: z.ZodString;
2440
2440
  postalCode: z.ZodString;
@@ -2445,14 +2445,14 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2445
2445
  region: string;
2446
2446
  postalCode: string;
2447
2447
  country: string;
2448
- line2?: string | undefined;
2448
+ line2?: string | null | undefined;
2449
2449
  }, {
2450
2450
  line1: string;
2451
2451
  city: string;
2452
2452
  region: string;
2453
2453
  postalCode: string;
2454
2454
  country: string;
2455
- line2?: string | undefined;
2455
+ line2?: string | null | undefined;
2456
2456
  }>;
2457
2457
  timezone: z.ZodString;
2458
2458
  location: z.ZodObject<{
@@ -2478,7 +2478,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2478
2478
  region: string;
2479
2479
  postalCode: string;
2480
2480
  country: string;
2481
- line2?: string | undefined;
2481
+ line2?: string | null | undefined;
2482
2482
  };
2483
2483
  timezone: string;
2484
2484
  location: {
@@ -2498,7 +2498,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2498
2498
  region: string;
2499
2499
  postalCode: string;
2500
2500
  country: string;
2501
- line2?: string | undefined;
2501
+ line2?: string | null | undefined;
2502
2502
  };
2503
2503
  timezone: string;
2504
2504
  location: {
@@ -2585,7 +2585,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2585
2585
  region: string;
2586
2586
  postalCode: string;
2587
2587
  country: string;
2588
- line2?: string | undefined;
2588
+ line2?: string | null | undefined;
2589
2589
  };
2590
2590
  timezone: string;
2591
2591
  location: {
@@ -2630,7 +2630,7 @@ declare const activateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
2630
2630
  region: string;
2631
2631
  postalCode: string;
2632
2632
  country: string;
2633
- line2?: string | undefined;
2633
+ line2?: string | null | undefined;
2634
2634
  };
2635
2635
  timezone: string;
2636
2636
  location: {
@@ -2655,7 +2655,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
2655
2655
  name: z.ZodString;
2656
2656
  address: z.ZodObject<{
2657
2657
  line1: z.ZodString;
2658
- line2: z.ZodOptional<z.ZodString>;
2658
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2659
2659
  city: z.ZodString;
2660
2660
  region: z.ZodString;
2661
2661
  postalCode: z.ZodString;
@@ -2666,14 +2666,14 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
2666
2666
  region: string;
2667
2667
  postalCode: string;
2668
2668
  country: string;
2669
- line2?: string | undefined;
2669
+ line2?: string | null | undefined;
2670
2670
  }, {
2671
2671
  line1: string;
2672
2672
  city: string;
2673
2673
  region: string;
2674
2674
  postalCode: string;
2675
2675
  country: string;
2676
- line2?: string | undefined;
2676
+ line2?: string | null | undefined;
2677
2677
  }>;
2678
2678
  timezone: z.ZodString;
2679
2679
  location: z.ZodObject<{
@@ -2699,7 +2699,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
2699
2699
  region: string;
2700
2700
  postalCode: string;
2701
2701
  country: string;
2702
- line2?: string | undefined;
2702
+ line2?: string | null | undefined;
2703
2703
  };
2704
2704
  timezone: string;
2705
2705
  location: {
@@ -2719,7 +2719,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
2719
2719
  region: string;
2720
2720
  postalCode: string;
2721
2721
  country: string;
2722
- line2?: string | undefined;
2722
+ line2?: string | null | undefined;
2723
2723
  };
2724
2724
  timezone: string;
2725
2725
  location: {
@@ -2802,7 +2802,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
2802
2802
  region: string;
2803
2803
  postalCode: string;
2804
2804
  country: string;
2805
- line2?: string | undefined;
2805
+ line2?: string | null | undefined;
2806
2806
  };
2807
2807
  timezone: string;
2808
2808
  location: {
@@ -2846,7 +2846,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
2846
2846
  region: string;
2847
2847
  postalCode: string;
2848
2848
  country: string;
2849
- line2?: string | undefined;
2849
+ line2?: string | null | undefined;
2850
2850
  };
2851
2851
  timezone: string;
2852
2852
  location: {
@@ -2864,7 +2864,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
2864
2864
  name: z.ZodString;
2865
2865
  address: z.ZodObject<{
2866
2866
  line1: z.ZodString;
2867
- line2: z.ZodOptional<z.ZodString>;
2867
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2868
2868
  city: z.ZodString;
2869
2869
  region: z.ZodString;
2870
2870
  postalCode: z.ZodString;
@@ -2875,14 +2875,14 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
2875
2875
  region: string;
2876
2876
  postalCode: string;
2877
2877
  country: string;
2878
- line2?: string | undefined;
2878
+ line2?: string | null | undefined;
2879
2879
  }, {
2880
2880
  line1: string;
2881
2881
  city: string;
2882
2882
  region: string;
2883
2883
  postalCode: string;
2884
2884
  country: string;
2885
- line2?: string | undefined;
2885
+ line2?: string | null | undefined;
2886
2886
  }>;
2887
2887
  timezone: z.ZodString;
2888
2888
  location: z.ZodObject<{
@@ -2908,7 +2908,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
2908
2908
  region: string;
2909
2909
  postalCode: string;
2910
2910
  country: string;
2911
- line2?: string | undefined;
2911
+ line2?: string | null | undefined;
2912
2912
  };
2913
2913
  timezone: string;
2914
2914
  location: {
@@ -2928,7 +2928,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
2928
2928
  region: string;
2929
2929
  postalCode: string;
2930
2930
  country: string;
2931
- line2?: string | undefined;
2931
+ line2?: string | null | undefined;
2932
2932
  };
2933
2933
  timezone: string;
2934
2934
  location: {
@@ -3007,7 +3007,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
3007
3007
  region: string;
3008
3008
  postalCode: string;
3009
3009
  country: string;
3010
- line2?: string | undefined;
3010
+ line2?: string | null | undefined;
3011
3011
  };
3012
3012
  timezone: string;
3013
3013
  location: {
@@ -3050,7 +3050,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
3050
3050
  region: string;
3051
3051
  postalCode: string;
3052
3052
  country: string;
3053
- line2?: string | undefined;
3053
+ line2?: string | null | undefined;
3054
3054
  };
3055
3055
  timezone: string;
3056
3056
  location: {
@@ -3068,7 +3068,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
3068
3068
  name: z.ZodString;
3069
3069
  address: z.ZodObject<{
3070
3070
  line1: z.ZodString;
3071
- line2: z.ZodOptional<z.ZodString>;
3071
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3072
3072
  city: z.ZodString;
3073
3073
  region: z.ZodString;
3074
3074
  postalCode: z.ZodString;
@@ -3079,14 +3079,14 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
3079
3079
  region: string;
3080
3080
  postalCode: string;
3081
3081
  country: string;
3082
- line2?: string | undefined;
3082
+ line2?: string | null | undefined;
3083
3083
  }, {
3084
3084
  line1: string;
3085
3085
  city: string;
3086
3086
  region: string;
3087
3087
  postalCode: string;
3088
3088
  country: string;
3089
- line2?: string | undefined;
3089
+ line2?: string | null | undefined;
3090
3090
  }>;
3091
3091
  timezone: z.ZodString;
3092
3092
  location: z.ZodObject<{
@@ -3112,7 +3112,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
3112
3112
  region: string;
3113
3113
  postalCode: string;
3114
3114
  country: string;
3115
- line2?: string | undefined;
3115
+ line2?: string | null | undefined;
3116
3116
  };
3117
3117
  timezone: string;
3118
3118
  location: {
@@ -3132,7 +3132,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
3132
3132
  region: string;
3133
3133
  postalCode: string;
3134
3134
  country: string;
3135
- line2?: string | undefined;
3135
+ line2?: string | null | undefined;
3136
3136
  };
3137
3137
  timezone: string;
3138
3138
  location: {
@@ -3211,7 +3211,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
3211
3211
  region: string;
3212
3212
  postalCode: string;
3213
3213
  country: string;
3214
- line2?: string | undefined;
3214
+ line2?: string | null | undefined;
3215
3215
  };
3216
3216
  timezone: string;
3217
3217
  location: {
@@ -3254,7 +3254,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
3254
3254
  region: string;
3255
3255
  postalCode: string;
3256
3256
  country: string;
3257
- line2?: string | undefined;
3257
+ line2?: string | null | undefined;
3258
3258
  };
3259
3259
  timezone: string;
3260
3260
  location: {
@@ -3272,7 +3272,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
3272
3272
  name: z.ZodString;
3273
3273
  address: z.ZodObject<{
3274
3274
  line1: z.ZodString;
3275
- line2: z.ZodOptional<z.ZodString>;
3275
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3276
3276
  city: z.ZodString;
3277
3277
  region: z.ZodString;
3278
3278
  postalCode: z.ZodString;
@@ -3283,14 +3283,14 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
3283
3283
  region: string;
3284
3284
  postalCode: string;
3285
3285
  country: string;
3286
- line2?: string | undefined;
3286
+ line2?: string | null | undefined;
3287
3287
  }, {
3288
3288
  line1: string;
3289
3289
  city: string;
3290
3290
  region: string;
3291
3291
  postalCode: string;
3292
3292
  country: string;
3293
- line2?: string | undefined;
3293
+ line2?: string | null | undefined;
3294
3294
  }>;
3295
3295
  timezone: z.ZodString;
3296
3296
  location: z.ZodObject<{
@@ -3316,7 +3316,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
3316
3316
  region: string;
3317
3317
  postalCode: string;
3318
3318
  country: string;
3319
- line2?: string | undefined;
3319
+ line2?: string | null | undefined;
3320
3320
  };
3321
3321
  timezone: string;
3322
3322
  location: {
@@ -3336,7 +3336,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
3336
3336
  region: string;
3337
3337
  postalCode: string;
3338
3338
  country: string;
3339
- line2?: string | undefined;
3339
+ line2?: string | null | undefined;
3340
3340
  };
3341
3341
  timezone: string;
3342
3342
  location: {
@@ -3423,7 +3423,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
3423
3423
  region: string;
3424
3424
  postalCode: string;
3425
3425
  country: string;
3426
- line2?: string | undefined;
3426
+ line2?: string | null | undefined;
3427
3427
  };
3428
3428
  timezone: string;
3429
3429
  location: {
@@ -3468,7 +3468,7 @@ declare class ActivateIntegrationActivationRequest extends AbstractApiRequest<vo
3468
3468
  region: string;
3469
3469
  postalCode: string;
3470
3470
  country: string;
3471
- line2?: string | undefined;
3471
+ line2?: string | null | undefined;
3472
3472
  };
3473
3473
  timezone: string;
3474
3474
  location: {
@@ -3502,7 +3502,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
3502
3502
  name: z.ZodString;
3503
3503
  address: z.ZodObject<{
3504
3504
  line1: z.ZodString;
3505
- line2: z.ZodOptional<z.ZodString>;
3505
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3506
3506
  city: z.ZodString;
3507
3507
  region: z.ZodString;
3508
3508
  postalCode: z.ZodString;
@@ -3513,14 +3513,14 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
3513
3513
  region: string;
3514
3514
  postalCode: string;
3515
3515
  country: string;
3516
- line2?: string | undefined;
3516
+ line2?: string | null | undefined;
3517
3517
  }, {
3518
3518
  line1: string;
3519
3519
  city: string;
3520
3520
  region: string;
3521
3521
  postalCode: string;
3522
3522
  country: string;
3523
- line2?: string | undefined;
3523
+ line2?: string | null | undefined;
3524
3524
  }>;
3525
3525
  timezone: z.ZodString;
3526
3526
  location: z.ZodObject<{
@@ -3546,7 +3546,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
3546
3546
  region: string;
3547
3547
  postalCode: string;
3548
3548
  country: string;
3549
- line2?: string | undefined;
3549
+ line2?: string | null | undefined;
3550
3550
  };
3551
3551
  timezone: string;
3552
3552
  location: {
@@ -3566,7 +3566,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
3566
3566
  region: string;
3567
3567
  postalCode: string;
3568
3568
  country: string;
3569
- line2?: string | undefined;
3569
+ line2?: string | null | undefined;
3570
3570
  };
3571
3571
  timezone: string;
3572
3572
  location: {
@@ -3649,7 +3649,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
3649
3649
  region: string;
3650
3650
  postalCode: string;
3651
3651
  country: string;
3652
- line2?: string | undefined;
3652
+ line2?: string | null | undefined;
3653
3653
  };
3654
3654
  timezone: string;
3655
3655
  location: {
@@ -3693,7 +3693,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
3693
3693
  region: string;
3694
3694
  postalCode: string;
3695
3695
  country: string;
3696
- line2?: string | undefined;
3696
+ line2?: string | null | undefined;
3697
3697
  };
3698
3698
  timezone: string;
3699
3699
  location: {
@@ -3711,7 +3711,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
3711
3711
  name: z.ZodString;
3712
3712
  address: z.ZodObject<{
3713
3713
  line1: z.ZodString;
3714
- line2: z.ZodOptional<z.ZodString>;
3714
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3715
3715
  city: z.ZodString;
3716
3716
  region: z.ZodString;
3717
3717
  postalCode: z.ZodString;
@@ -3722,14 +3722,14 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
3722
3722
  region: string;
3723
3723
  postalCode: string;
3724
3724
  country: string;
3725
- line2?: string | undefined;
3725
+ line2?: string | null | undefined;
3726
3726
  }, {
3727
3727
  line1: string;
3728
3728
  city: string;
3729
3729
  region: string;
3730
3730
  postalCode: string;
3731
3731
  country: string;
3732
- line2?: string | undefined;
3732
+ line2?: string | null | undefined;
3733
3733
  }>;
3734
3734
  timezone: z.ZodString;
3735
3735
  location: z.ZodObject<{
@@ -3755,7 +3755,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
3755
3755
  region: string;
3756
3756
  postalCode: string;
3757
3757
  country: string;
3758
- line2?: string | undefined;
3758
+ line2?: string | null | undefined;
3759
3759
  };
3760
3760
  timezone: string;
3761
3761
  location: {
@@ -3775,7 +3775,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
3775
3775
  region: string;
3776
3776
  postalCode: string;
3777
3777
  country: string;
3778
- line2?: string | undefined;
3778
+ line2?: string | null | undefined;
3779
3779
  };
3780
3780
  timezone: string;
3781
3781
  location: {
@@ -3854,7 +3854,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
3854
3854
  region: string;
3855
3855
  postalCode: string;
3856
3856
  country: string;
3857
- line2?: string | undefined;
3857
+ line2?: string | null | undefined;
3858
3858
  };
3859
3859
  timezone: string;
3860
3860
  location: {
@@ -3897,7 +3897,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
3897
3897
  region: string;
3898
3898
  postalCode: string;
3899
3899
  country: string;
3900
- line2?: string | undefined;
3900
+ line2?: string | null | undefined;
3901
3901
  };
3902
3902
  timezone: string;
3903
3903
  location: {
@@ -3915,7 +3915,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
3915
3915
  name: z.ZodString;
3916
3916
  address: z.ZodObject<{
3917
3917
  line1: z.ZodString;
3918
- line2: z.ZodOptional<z.ZodString>;
3918
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3919
3919
  city: z.ZodString;
3920
3920
  region: z.ZodString;
3921
3921
  postalCode: z.ZodString;
@@ -3926,14 +3926,14 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
3926
3926
  region: string;
3927
3927
  postalCode: string;
3928
3928
  country: string;
3929
- line2?: string | undefined;
3929
+ line2?: string | null | undefined;
3930
3930
  }, {
3931
3931
  line1: string;
3932
3932
  city: string;
3933
3933
  region: string;
3934
3934
  postalCode: string;
3935
3935
  country: string;
3936
- line2?: string | undefined;
3936
+ line2?: string | null | undefined;
3937
3937
  }>;
3938
3938
  timezone: z.ZodString;
3939
3939
  location: z.ZodObject<{
@@ -3959,7 +3959,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
3959
3959
  region: string;
3960
3960
  postalCode: string;
3961
3961
  country: string;
3962
- line2?: string | undefined;
3962
+ line2?: string | null | undefined;
3963
3963
  };
3964
3964
  timezone: string;
3965
3965
  location: {
@@ -3979,7 +3979,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
3979
3979
  region: string;
3980
3980
  postalCode: string;
3981
3981
  country: string;
3982
- line2?: string | undefined;
3982
+ line2?: string | null | undefined;
3983
3983
  };
3984
3984
  timezone: string;
3985
3985
  location: {
@@ -4058,7 +4058,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
4058
4058
  region: string;
4059
4059
  postalCode: string;
4060
4060
  country: string;
4061
- line2?: string | undefined;
4061
+ line2?: string | null | undefined;
4062
4062
  };
4063
4063
  timezone: string;
4064
4064
  location: {
@@ -4101,7 +4101,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
4101
4101
  region: string;
4102
4102
  postalCode: string;
4103
4103
  country: string;
4104
- line2?: string | undefined;
4104
+ line2?: string | null | undefined;
4105
4105
  };
4106
4106
  timezone: string;
4107
4107
  location: {
@@ -4119,7 +4119,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
4119
4119
  name: z.ZodString;
4120
4120
  address: z.ZodObject<{
4121
4121
  line1: z.ZodString;
4122
- line2: z.ZodOptional<z.ZodString>;
4122
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4123
4123
  city: z.ZodString;
4124
4124
  region: z.ZodString;
4125
4125
  postalCode: z.ZodString;
@@ -4130,14 +4130,14 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
4130
4130
  region: string;
4131
4131
  postalCode: string;
4132
4132
  country: string;
4133
- line2?: string | undefined;
4133
+ line2?: string | null | undefined;
4134
4134
  }, {
4135
4135
  line1: string;
4136
4136
  city: string;
4137
4137
  region: string;
4138
4138
  postalCode: string;
4139
4139
  country: string;
4140
- line2?: string | undefined;
4140
+ line2?: string | null | undefined;
4141
4141
  }>;
4142
4142
  timezone: z.ZodString;
4143
4143
  location: z.ZodObject<{
@@ -4163,7 +4163,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
4163
4163
  region: string;
4164
4164
  postalCode: string;
4165
4165
  country: string;
4166
- line2?: string | undefined;
4166
+ line2?: string | null | undefined;
4167
4167
  };
4168
4168
  timezone: string;
4169
4169
  location: {
@@ -4183,7 +4183,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
4183
4183
  region: string;
4184
4184
  postalCode: string;
4185
4185
  country: string;
4186
- line2?: string | undefined;
4186
+ line2?: string | null | undefined;
4187
4187
  };
4188
4188
  timezone: string;
4189
4189
  location: {
@@ -4270,7 +4270,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
4270
4270
  region: string;
4271
4271
  postalCode: string;
4272
4272
  country: string;
4273
- line2?: string | undefined;
4273
+ line2?: string | null | undefined;
4274
4274
  };
4275
4275
  timezone: string;
4276
4276
  location: {
@@ -4315,7 +4315,7 @@ declare const annotateIntegrationActivationRequestResponseSchema: z.ZodDiscrimin
4315
4315
  region: string;
4316
4316
  postalCode: string;
4317
4317
  country: string;
4318
- line2?: string | undefined;
4318
+ line2?: string | null | undefined;
4319
4319
  };
4320
4320
  timezone: string;
4321
4321
  location: {
@@ -4346,7 +4346,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4346
4346
  name: z.ZodString;
4347
4347
  address: z.ZodObject<{
4348
4348
  line1: z.ZodString;
4349
- line2: z.ZodOptional<z.ZodString>;
4349
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4350
4350
  city: z.ZodString;
4351
4351
  region: z.ZodString;
4352
4352
  postalCode: z.ZodString;
@@ -4357,14 +4357,14 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4357
4357
  region: string;
4358
4358
  postalCode: string;
4359
4359
  country: string;
4360
- line2?: string | undefined;
4360
+ line2?: string | null | undefined;
4361
4361
  }, {
4362
4362
  line1: string;
4363
4363
  city: string;
4364
4364
  region: string;
4365
4365
  postalCode: string;
4366
4366
  country: string;
4367
- line2?: string | undefined;
4367
+ line2?: string | null | undefined;
4368
4368
  }>;
4369
4369
  timezone: z.ZodString;
4370
4370
  location: z.ZodObject<{
@@ -4390,7 +4390,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4390
4390
  region: string;
4391
4391
  postalCode: string;
4392
4392
  country: string;
4393
- line2?: string | undefined;
4393
+ line2?: string | null | undefined;
4394
4394
  };
4395
4395
  timezone: string;
4396
4396
  location: {
@@ -4410,7 +4410,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4410
4410
  region: string;
4411
4411
  postalCode: string;
4412
4412
  country: string;
4413
- line2?: string | undefined;
4413
+ line2?: string | null | undefined;
4414
4414
  };
4415
4415
  timezone: string;
4416
4416
  location: {
@@ -4493,7 +4493,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4493
4493
  region: string;
4494
4494
  postalCode: string;
4495
4495
  country: string;
4496
- line2?: string | undefined;
4496
+ line2?: string | null | undefined;
4497
4497
  };
4498
4498
  timezone: string;
4499
4499
  location: {
@@ -4537,7 +4537,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4537
4537
  region: string;
4538
4538
  postalCode: string;
4539
4539
  country: string;
4540
- line2?: string | undefined;
4540
+ line2?: string | null | undefined;
4541
4541
  };
4542
4542
  timezone: string;
4543
4543
  location: {
@@ -4555,7 +4555,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4555
4555
  name: z.ZodString;
4556
4556
  address: z.ZodObject<{
4557
4557
  line1: z.ZodString;
4558
- line2: z.ZodOptional<z.ZodString>;
4558
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4559
4559
  city: z.ZodString;
4560
4560
  region: z.ZodString;
4561
4561
  postalCode: z.ZodString;
@@ -4566,14 +4566,14 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4566
4566
  region: string;
4567
4567
  postalCode: string;
4568
4568
  country: string;
4569
- line2?: string | undefined;
4569
+ line2?: string | null | undefined;
4570
4570
  }, {
4571
4571
  line1: string;
4572
4572
  city: string;
4573
4573
  region: string;
4574
4574
  postalCode: string;
4575
4575
  country: string;
4576
- line2?: string | undefined;
4576
+ line2?: string | null | undefined;
4577
4577
  }>;
4578
4578
  timezone: z.ZodString;
4579
4579
  location: z.ZodObject<{
@@ -4599,7 +4599,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4599
4599
  region: string;
4600
4600
  postalCode: string;
4601
4601
  country: string;
4602
- line2?: string | undefined;
4602
+ line2?: string | null | undefined;
4603
4603
  };
4604
4604
  timezone: string;
4605
4605
  location: {
@@ -4619,7 +4619,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4619
4619
  region: string;
4620
4620
  postalCode: string;
4621
4621
  country: string;
4622
- line2?: string | undefined;
4622
+ line2?: string | null | undefined;
4623
4623
  };
4624
4624
  timezone: string;
4625
4625
  location: {
@@ -4698,7 +4698,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4698
4698
  region: string;
4699
4699
  postalCode: string;
4700
4700
  country: string;
4701
- line2?: string | undefined;
4701
+ line2?: string | null | undefined;
4702
4702
  };
4703
4703
  timezone: string;
4704
4704
  location: {
@@ -4741,7 +4741,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4741
4741
  region: string;
4742
4742
  postalCode: string;
4743
4743
  country: string;
4744
- line2?: string | undefined;
4744
+ line2?: string | null | undefined;
4745
4745
  };
4746
4746
  timezone: string;
4747
4747
  location: {
@@ -4759,7 +4759,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4759
4759
  name: z.ZodString;
4760
4760
  address: z.ZodObject<{
4761
4761
  line1: z.ZodString;
4762
- line2: z.ZodOptional<z.ZodString>;
4762
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4763
4763
  city: z.ZodString;
4764
4764
  region: z.ZodString;
4765
4765
  postalCode: z.ZodString;
@@ -4770,14 +4770,14 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4770
4770
  region: string;
4771
4771
  postalCode: string;
4772
4772
  country: string;
4773
- line2?: string | undefined;
4773
+ line2?: string | null | undefined;
4774
4774
  }, {
4775
4775
  line1: string;
4776
4776
  city: string;
4777
4777
  region: string;
4778
4778
  postalCode: string;
4779
4779
  country: string;
4780
- line2?: string | undefined;
4780
+ line2?: string | null | undefined;
4781
4781
  }>;
4782
4782
  timezone: z.ZodString;
4783
4783
  location: z.ZodObject<{
@@ -4803,7 +4803,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4803
4803
  region: string;
4804
4804
  postalCode: string;
4805
4805
  country: string;
4806
- line2?: string | undefined;
4806
+ line2?: string | null | undefined;
4807
4807
  };
4808
4808
  timezone: string;
4809
4809
  location: {
@@ -4823,7 +4823,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4823
4823
  region: string;
4824
4824
  postalCode: string;
4825
4825
  country: string;
4826
- line2?: string | undefined;
4826
+ line2?: string | null | undefined;
4827
4827
  };
4828
4828
  timezone: string;
4829
4829
  location: {
@@ -4902,7 +4902,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4902
4902
  region: string;
4903
4903
  postalCode: string;
4904
4904
  country: string;
4905
- line2?: string | undefined;
4905
+ line2?: string | null | undefined;
4906
4906
  };
4907
4907
  timezone: string;
4908
4908
  location: {
@@ -4945,7 +4945,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4945
4945
  region: string;
4946
4946
  postalCode: string;
4947
4947
  country: string;
4948
- line2?: string | undefined;
4948
+ line2?: string | null | undefined;
4949
4949
  };
4950
4950
  timezone: string;
4951
4951
  location: {
@@ -4963,7 +4963,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4963
4963
  name: z.ZodString;
4964
4964
  address: z.ZodObject<{
4965
4965
  line1: z.ZodString;
4966
- line2: z.ZodOptional<z.ZodString>;
4966
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4967
4967
  city: z.ZodString;
4968
4968
  region: z.ZodString;
4969
4969
  postalCode: z.ZodString;
@@ -4974,14 +4974,14 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
4974
4974
  region: string;
4975
4975
  postalCode: string;
4976
4976
  country: string;
4977
- line2?: string | undefined;
4977
+ line2?: string | null | undefined;
4978
4978
  }, {
4979
4979
  line1: string;
4980
4980
  city: string;
4981
4981
  region: string;
4982
4982
  postalCode: string;
4983
4983
  country: string;
4984
- line2?: string | undefined;
4984
+ line2?: string | null | undefined;
4985
4985
  }>;
4986
4986
  timezone: z.ZodString;
4987
4987
  location: z.ZodObject<{
@@ -5007,7 +5007,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
5007
5007
  region: string;
5008
5008
  postalCode: string;
5009
5009
  country: string;
5010
- line2?: string | undefined;
5010
+ line2?: string | null | undefined;
5011
5011
  };
5012
5012
  timezone: string;
5013
5013
  location: {
@@ -5027,7 +5027,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
5027
5027
  region: string;
5028
5028
  postalCode: string;
5029
5029
  country: string;
5030
- line2?: string | undefined;
5030
+ line2?: string | null | undefined;
5031
5031
  };
5032
5032
  timezone: string;
5033
5033
  location: {
@@ -5114,7 +5114,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
5114
5114
  region: string;
5115
5115
  postalCode: string;
5116
5116
  country: string;
5117
- line2?: string | undefined;
5117
+ line2?: string | null | undefined;
5118
5118
  };
5119
5119
  timezone: string;
5120
5120
  location: {
@@ -5159,7 +5159,7 @@ declare class AnnotateIntegrationActivationRequest extends AbstractApiRequest<An
5159
5159
  region: string;
5160
5160
  postalCode: string;
5161
5161
  country: string;
5162
- line2?: string | undefined;
5162
+ line2?: string | null | undefined;
5163
5163
  };
5164
5164
  timezone: string;
5165
5165
  location: {
@@ -5338,7 +5338,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5338
5338
  name: z.ZodString;
5339
5339
  address: z.ZodObject<{
5340
5340
  line1: z.ZodString;
5341
- line2: z.ZodOptional<z.ZodString>;
5341
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5342
5342
  city: z.ZodString;
5343
5343
  region: z.ZodString;
5344
5344
  postalCode: z.ZodString;
@@ -5349,14 +5349,14 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5349
5349
  region: string;
5350
5350
  postalCode: string;
5351
5351
  country: string;
5352
- line2?: string | undefined;
5352
+ line2?: string | null | undefined;
5353
5353
  }, {
5354
5354
  line1: string;
5355
5355
  city: string;
5356
5356
  region: string;
5357
5357
  postalCode: string;
5358
5358
  country: string;
5359
- line2?: string | undefined;
5359
+ line2?: string | null | undefined;
5360
5360
  }>;
5361
5361
  timezone: z.ZodString;
5362
5362
  location: z.ZodObject<{
@@ -5382,7 +5382,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5382
5382
  region: string;
5383
5383
  postalCode: string;
5384
5384
  country: string;
5385
- line2?: string | undefined;
5385
+ line2?: string | null | undefined;
5386
5386
  };
5387
5387
  timezone: string;
5388
5388
  location: {
@@ -5402,7 +5402,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5402
5402
  region: string;
5403
5403
  postalCode: string;
5404
5404
  country: string;
5405
- line2?: string | undefined;
5405
+ line2?: string | null | undefined;
5406
5406
  };
5407
5407
  timezone: string;
5408
5408
  location: {
@@ -5485,7 +5485,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5485
5485
  region: string;
5486
5486
  postalCode: string;
5487
5487
  country: string;
5488
- line2?: string | undefined;
5488
+ line2?: string | null | undefined;
5489
5489
  };
5490
5490
  timezone: string;
5491
5491
  location: {
@@ -5529,7 +5529,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5529
5529
  region: string;
5530
5530
  postalCode: string;
5531
5531
  country: string;
5532
- line2?: string | undefined;
5532
+ line2?: string | null | undefined;
5533
5533
  };
5534
5534
  timezone: string;
5535
5535
  location: {
@@ -5547,7 +5547,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5547
5547
  name: z.ZodString;
5548
5548
  address: z.ZodObject<{
5549
5549
  line1: z.ZodString;
5550
- line2: z.ZodOptional<z.ZodString>;
5550
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5551
5551
  city: z.ZodString;
5552
5552
  region: z.ZodString;
5553
5553
  postalCode: z.ZodString;
@@ -5558,14 +5558,14 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5558
5558
  region: string;
5559
5559
  postalCode: string;
5560
5560
  country: string;
5561
- line2?: string | undefined;
5561
+ line2?: string | null | undefined;
5562
5562
  }, {
5563
5563
  line1: string;
5564
5564
  city: string;
5565
5565
  region: string;
5566
5566
  postalCode: string;
5567
5567
  country: string;
5568
- line2?: string | undefined;
5568
+ line2?: string | null | undefined;
5569
5569
  }>;
5570
5570
  timezone: z.ZodString;
5571
5571
  location: z.ZodObject<{
@@ -5591,7 +5591,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5591
5591
  region: string;
5592
5592
  postalCode: string;
5593
5593
  country: string;
5594
- line2?: string | undefined;
5594
+ line2?: string | null | undefined;
5595
5595
  };
5596
5596
  timezone: string;
5597
5597
  location: {
@@ -5611,7 +5611,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5611
5611
  region: string;
5612
5612
  postalCode: string;
5613
5613
  country: string;
5614
- line2?: string | undefined;
5614
+ line2?: string | null | undefined;
5615
5615
  };
5616
5616
  timezone: string;
5617
5617
  location: {
@@ -5690,7 +5690,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5690
5690
  region: string;
5691
5691
  postalCode: string;
5692
5692
  country: string;
5693
- line2?: string | undefined;
5693
+ line2?: string | null | undefined;
5694
5694
  };
5695
5695
  timezone: string;
5696
5696
  location: {
@@ -5733,7 +5733,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5733
5733
  region: string;
5734
5734
  postalCode: string;
5735
5735
  country: string;
5736
- line2?: string | undefined;
5736
+ line2?: string | null | undefined;
5737
5737
  };
5738
5738
  timezone: string;
5739
5739
  location: {
@@ -5751,7 +5751,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5751
5751
  name: z.ZodString;
5752
5752
  address: z.ZodObject<{
5753
5753
  line1: z.ZodString;
5754
- line2: z.ZodOptional<z.ZodString>;
5754
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5755
5755
  city: z.ZodString;
5756
5756
  region: z.ZodString;
5757
5757
  postalCode: z.ZodString;
@@ -5762,14 +5762,14 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5762
5762
  region: string;
5763
5763
  postalCode: string;
5764
5764
  country: string;
5765
- line2?: string | undefined;
5765
+ line2?: string | null | undefined;
5766
5766
  }, {
5767
5767
  line1: string;
5768
5768
  city: string;
5769
5769
  region: string;
5770
5770
  postalCode: string;
5771
5771
  country: string;
5772
- line2?: string | undefined;
5772
+ line2?: string | null | undefined;
5773
5773
  }>;
5774
5774
  timezone: z.ZodString;
5775
5775
  location: z.ZodObject<{
@@ -5795,7 +5795,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5795
5795
  region: string;
5796
5796
  postalCode: string;
5797
5797
  country: string;
5798
- line2?: string | undefined;
5798
+ line2?: string | null | undefined;
5799
5799
  };
5800
5800
  timezone: string;
5801
5801
  location: {
@@ -5815,7 +5815,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5815
5815
  region: string;
5816
5816
  postalCode: string;
5817
5817
  country: string;
5818
- line2?: string | undefined;
5818
+ line2?: string | null | undefined;
5819
5819
  };
5820
5820
  timezone: string;
5821
5821
  location: {
@@ -5894,7 +5894,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5894
5894
  region: string;
5895
5895
  postalCode: string;
5896
5896
  country: string;
5897
- line2?: string | undefined;
5897
+ line2?: string | null | undefined;
5898
5898
  };
5899
5899
  timezone: string;
5900
5900
  location: {
@@ -5937,7 +5937,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5937
5937
  region: string;
5938
5938
  postalCode: string;
5939
5939
  country: string;
5940
- line2?: string | undefined;
5940
+ line2?: string | null | undefined;
5941
5941
  };
5942
5942
  timezone: string;
5943
5943
  location: {
@@ -5955,7 +5955,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5955
5955
  name: z.ZodString;
5956
5956
  address: z.ZodObject<{
5957
5957
  line1: z.ZodString;
5958
- line2: z.ZodOptional<z.ZodString>;
5958
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5959
5959
  city: z.ZodString;
5960
5960
  region: z.ZodString;
5961
5961
  postalCode: z.ZodString;
@@ -5966,14 +5966,14 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5966
5966
  region: string;
5967
5967
  postalCode: string;
5968
5968
  country: string;
5969
- line2?: string | undefined;
5969
+ line2?: string | null | undefined;
5970
5970
  }, {
5971
5971
  line1: string;
5972
5972
  city: string;
5973
5973
  region: string;
5974
5974
  postalCode: string;
5975
5975
  country: string;
5976
- line2?: string | undefined;
5976
+ line2?: string | null | undefined;
5977
5977
  }>;
5978
5978
  timezone: z.ZodString;
5979
5979
  location: z.ZodObject<{
@@ -5999,7 +5999,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
5999
5999
  region: string;
6000
6000
  postalCode: string;
6001
6001
  country: string;
6002
- line2?: string | undefined;
6002
+ line2?: string | null | undefined;
6003
6003
  };
6004
6004
  timezone: string;
6005
6005
  location: {
@@ -6019,7 +6019,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
6019
6019
  region: string;
6020
6020
  postalCode: string;
6021
6021
  country: string;
6022
- line2?: string | undefined;
6022
+ line2?: string | null | undefined;
6023
6023
  };
6024
6024
  timezone: string;
6025
6025
  location: {
@@ -6106,7 +6106,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
6106
6106
  region: string;
6107
6107
  postalCode: string;
6108
6108
  country: string;
6109
- line2?: string | undefined;
6109
+ line2?: string | null | undefined;
6110
6110
  };
6111
6111
  timezone: string;
6112
6112
  location: {
@@ -6151,7 +6151,7 @@ declare const createIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
6151
6151
  region: string;
6152
6152
  postalCode: string;
6153
6153
  country: string;
6154
- line2?: string | undefined;
6154
+ line2?: string | null | undefined;
6155
6155
  };
6156
6156
  timezone: string;
6157
6157
  location: {
@@ -6327,7 +6327,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6327
6327
  name: z.ZodString;
6328
6328
  address: z.ZodObject<{
6329
6329
  line1: z.ZodString;
6330
- line2: z.ZodOptional<z.ZodString>;
6330
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6331
6331
  city: z.ZodString;
6332
6332
  region: z.ZodString;
6333
6333
  postalCode: z.ZodString;
@@ -6338,14 +6338,14 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6338
6338
  region: string;
6339
6339
  postalCode: string;
6340
6340
  country: string;
6341
- line2?: string | undefined;
6341
+ line2?: string | null | undefined;
6342
6342
  }, {
6343
6343
  line1: string;
6344
6344
  city: string;
6345
6345
  region: string;
6346
6346
  postalCode: string;
6347
6347
  country: string;
6348
- line2?: string | undefined;
6348
+ line2?: string | null | undefined;
6349
6349
  }>;
6350
6350
  timezone: z.ZodString;
6351
6351
  location: z.ZodObject<{
@@ -6371,7 +6371,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6371
6371
  region: string;
6372
6372
  postalCode: string;
6373
6373
  country: string;
6374
- line2?: string | undefined;
6374
+ line2?: string | null | undefined;
6375
6375
  };
6376
6376
  timezone: string;
6377
6377
  location: {
@@ -6391,7 +6391,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6391
6391
  region: string;
6392
6392
  postalCode: string;
6393
6393
  country: string;
6394
- line2?: string | undefined;
6394
+ line2?: string | null | undefined;
6395
6395
  };
6396
6396
  timezone: string;
6397
6397
  location: {
@@ -6474,7 +6474,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6474
6474
  region: string;
6475
6475
  postalCode: string;
6476
6476
  country: string;
6477
- line2?: string | undefined;
6477
+ line2?: string | null | undefined;
6478
6478
  };
6479
6479
  timezone: string;
6480
6480
  location: {
@@ -6518,7 +6518,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6518
6518
  region: string;
6519
6519
  postalCode: string;
6520
6520
  country: string;
6521
- line2?: string | undefined;
6521
+ line2?: string | null | undefined;
6522
6522
  };
6523
6523
  timezone: string;
6524
6524
  location: {
@@ -6536,7 +6536,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6536
6536
  name: z.ZodString;
6537
6537
  address: z.ZodObject<{
6538
6538
  line1: z.ZodString;
6539
- line2: z.ZodOptional<z.ZodString>;
6539
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6540
6540
  city: z.ZodString;
6541
6541
  region: z.ZodString;
6542
6542
  postalCode: z.ZodString;
@@ -6547,14 +6547,14 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6547
6547
  region: string;
6548
6548
  postalCode: string;
6549
6549
  country: string;
6550
- line2?: string | undefined;
6550
+ line2?: string | null | undefined;
6551
6551
  }, {
6552
6552
  line1: string;
6553
6553
  city: string;
6554
6554
  region: string;
6555
6555
  postalCode: string;
6556
6556
  country: string;
6557
- line2?: string | undefined;
6557
+ line2?: string | null | undefined;
6558
6558
  }>;
6559
6559
  timezone: z.ZodString;
6560
6560
  location: z.ZodObject<{
@@ -6580,7 +6580,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6580
6580
  region: string;
6581
6581
  postalCode: string;
6582
6582
  country: string;
6583
- line2?: string | undefined;
6583
+ line2?: string | null | undefined;
6584
6584
  };
6585
6585
  timezone: string;
6586
6586
  location: {
@@ -6600,7 +6600,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6600
6600
  region: string;
6601
6601
  postalCode: string;
6602
6602
  country: string;
6603
- line2?: string | undefined;
6603
+ line2?: string | null | undefined;
6604
6604
  };
6605
6605
  timezone: string;
6606
6606
  location: {
@@ -6679,7 +6679,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6679
6679
  region: string;
6680
6680
  postalCode: string;
6681
6681
  country: string;
6682
- line2?: string | undefined;
6682
+ line2?: string | null | undefined;
6683
6683
  };
6684
6684
  timezone: string;
6685
6685
  location: {
@@ -6722,7 +6722,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6722
6722
  region: string;
6723
6723
  postalCode: string;
6724
6724
  country: string;
6725
- line2?: string | undefined;
6725
+ line2?: string | null | undefined;
6726
6726
  };
6727
6727
  timezone: string;
6728
6728
  location: {
@@ -6740,7 +6740,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6740
6740
  name: z.ZodString;
6741
6741
  address: z.ZodObject<{
6742
6742
  line1: z.ZodString;
6743
- line2: z.ZodOptional<z.ZodString>;
6743
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6744
6744
  city: z.ZodString;
6745
6745
  region: z.ZodString;
6746
6746
  postalCode: z.ZodString;
@@ -6751,14 +6751,14 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6751
6751
  region: string;
6752
6752
  postalCode: string;
6753
6753
  country: string;
6754
- line2?: string | undefined;
6754
+ line2?: string | null | undefined;
6755
6755
  }, {
6756
6756
  line1: string;
6757
6757
  city: string;
6758
6758
  region: string;
6759
6759
  postalCode: string;
6760
6760
  country: string;
6761
- line2?: string | undefined;
6761
+ line2?: string | null | undefined;
6762
6762
  }>;
6763
6763
  timezone: z.ZodString;
6764
6764
  location: z.ZodObject<{
@@ -6784,7 +6784,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6784
6784
  region: string;
6785
6785
  postalCode: string;
6786
6786
  country: string;
6787
- line2?: string | undefined;
6787
+ line2?: string | null | undefined;
6788
6788
  };
6789
6789
  timezone: string;
6790
6790
  location: {
@@ -6804,7 +6804,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6804
6804
  region: string;
6805
6805
  postalCode: string;
6806
6806
  country: string;
6807
- line2?: string | undefined;
6807
+ line2?: string | null | undefined;
6808
6808
  };
6809
6809
  timezone: string;
6810
6810
  location: {
@@ -6883,7 +6883,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6883
6883
  region: string;
6884
6884
  postalCode: string;
6885
6885
  country: string;
6886
- line2?: string | undefined;
6886
+ line2?: string | null | undefined;
6887
6887
  };
6888
6888
  timezone: string;
6889
6889
  location: {
@@ -6926,7 +6926,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6926
6926
  region: string;
6927
6927
  postalCode: string;
6928
6928
  country: string;
6929
- line2?: string | undefined;
6929
+ line2?: string | null | undefined;
6930
6930
  };
6931
6931
  timezone: string;
6932
6932
  location: {
@@ -6944,7 +6944,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6944
6944
  name: z.ZodString;
6945
6945
  address: z.ZodObject<{
6946
6946
  line1: z.ZodString;
6947
- line2: z.ZodOptional<z.ZodString>;
6947
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6948
6948
  city: z.ZodString;
6949
6949
  region: z.ZodString;
6950
6950
  postalCode: z.ZodString;
@@ -6955,14 +6955,14 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6955
6955
  region: string;
6956
6956
  postalCode: string;
6957
6957
  country: string;
6958
- line2?: string | undefined;
6958
+ line2?: string | null | undefined;
6959
6959
  }, {
6960
6960
  line1: string;
6961
6961
  city: string;
6962
6962
  region: string;
6963
6963
  postalCode: string;
6964
6964
  country: string;
6965
- line2?: string | undefined;
6965
+ line2?: string | null | undefined;
6966
6966
  }>;
6967
6967
  timezone: z.ZodString;
6968
6968
  location: z.ZodObject<{
@@ -6988,7 +6988,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
6988
6988
  region: string;
6989
6989
  postalCode: string;
6990
6990
  country: string;
6991
- line2?: string | undefined;
6991
+ line2?: string | null | undefined;
6992
6992
  };
6993
6993
  timezone: string;
6994
6994
  location: {
@@ -7008,7 +7008,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
7008
7008
  region: string;
7009
7009
  postalCode: string;
7010
7010
  country: string;
7011
- line2?: string | undefined;
7011
+ line2?: string | null | undefined;
7012
7012
  };
7013
7013
  timezone: string;
7014
7014
  location: {
@@ -7095,7 +7095,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
7095
7095
  region: string;
7096
7096
  postalCode: string;
7097
7097
  country: string;
7098
- line2?: string | undefined;
7098
+ line2?: string | null | undefined;
7099
7099
  };
7100
7100
  timezone: string;
7101
7101
  location: {
@@ -7140,7 +7140,7 @@ declare class CreateIntegrationActivationRequest extends AbstractApiRequest<Crea
7140
7140
  region: string;
7141
7141
  postalCode: string;
7142
7142
  country: string;
7143
- line2?: string | undefined;
7143
+ line2?: string | null | undefined;
7144
7144
  };
7145
7145
  timezone: string;
7146
7146
  location: {
@@ -7181,7 +7181,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7181
7181
  name: z.ZodString;
7182
7182
  address: z.ZodObject<{
7183
7183
  line1: z.ZodString;
7184
- line2: z.ZodOptional<z.ZodString>;
7184
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7185
7185
  city: z.ZodString;
7186
7186
  region: z.ZodString;
7187
7187
  postalCode: z.ZodString;
@@ -7192,14 +7192,14 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7192
7192
  region: string;
7193
7193
  postalCode: string;
7194
7194
  country: string;
7195
- line2?: string | undefined;
7195
+ line2?: string | null | undefined;
7196
7196
  }, {
7197
7197
  line1: string;
7198
7198
  city: string;
7199
7199
  region: string;
7200
7200
  postalCode: string;
7201
7201
  country: string;
7202
- line2?: string | undefined;
7202
+ line2?: string | null | undefined;
7203
7203
  }>;
7204
7204
  timezone: z.ZodString;
7205
7205
  location: z.ZodObject<{
@@ -7225,7 +7225,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7225
7225
  region: string;
7226
7226
  postalCode: string;
7227
7227
  country: string;
7228
- line2?: string | undefined;
7228
+ line2?: string | null | undefined;
7229
7229
  };
7230
7230
  timezone: string;
7231
7231
  location: {
@@ -7245,7 +7245,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7245
7245
  region: string;
7246
7246
  postalCode: string;
7247
7247
  country: string;
7248
- line2?: string | undefined;
7248
+ line2?: string | null | undefined;
7249
7249
  };
7250
7250
  timezone: string;
7251
7251
  location: {
@@ -7328,7 +7328,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7328
7328
  region: string;
7329
7329
  postalCode: string;
7330
7330
  country: string;
7331
- line2?: string | undefined;
7331
+ line2?: string | null | undefined;
7332
7332
  };
7333
7333
  timezone: string;
7334
7334
  location: {
@@ -7372,7 +7372,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7372
7372
  region: string;
7373
7373
  postalCode: string;
7374
7374
  country: string;
7375
- line2?: string | undefined;
7375
+ line2?: string | null | undefined;
7376
7376
  };
7377
7377
  timezone: string;
7378
7378
  location: {
@@ -7390,7 +7390,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7390
7390
  name: z.ZodString;
7391
7391
  address: z.ZodObject<{
7392
7392
  line1: z.ZodString;
7393
- line2: z.ZodOptional<z.ZodString>;
7393
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7394
7394
  city: z.ZodString;
7395
7395
  region: z.ZodString;
7396
7396
  postalCode: z.ZodString;
@@ -7401,14 +7401,14 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7401
7401
  region: string;
7402
7402
  postalCode: string;
7403
7403
  country: string;
7404
- line2?: string | undefined;
7404
+ line2?: string | null | undefined;
7405
7405
  }, {
7406
7406
  line1: string;
7407
7407
  city: string;
7408
7408
  region: string;
7409
7409
  postalCode: string;
7410
7410
  country: string;
7411
- line2?: string | undefined;
7411
+ line2?: string | null | undefined;
7412
7412
  }>;
7413
7413
  timezone: z.ZodString;
7414
7414
  location: z.ZodObject<{
@@ -7434,7 +7434,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7434
7434
  region: string;
7435
7435
  postalCode: string;
7436
7436
  country: string;
7437
- line2?: string | undefined;
7437
+ line2?: string | null | undefined;
7438
7438
  };
7439
7439
  timezone: string;
7440
7440
  location: {
@@ -7454,7 +7454,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7454
7454
  region: string;
7455
7455
  postalCode: string;
7456
7456
  country: string;
7457
- line2?: string | undefined;
7457
+ line2?: string | null | undefined;
7458
7458
  };
7459
7459
  timezone: string;
7460
7460
  location: {
@@ -7533,7 +7533,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7533
7533
  region: string;
7534
7534
  postalCode: string;
7535
7535
  country: string;
7536
- line2?: string | undefined;
7536
+ line2?: string | null | undefined;
7537
7537
  };
7538
7538
  timezone: string;
7539
7539
  location: {
@@ -7576,7 +7576,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7576
7576
  region: string;
7577
7577
  postalCode: string;
7578
7578
  country: string;
7579
- line2?: string | undefined;
7579
+ line2?: string | null | undefined;
7580
7580
  };
7581
7581
  timezone: string;
7582
7582
  location: {
@@ -7594,7 +7594,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7594
7594
  name: z.ZodString;
7595
7595
  address: z.ZodObject<{
7596
7596
  line1: z.ZodString;
7597
- line2: z.ZodOptional<z.ZodString>;
7597
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7598
7598
  city: z.ZodString;
7599
7599
  region: z.ZodString;
7600
7600
  postalCode: z.ZodString;
@@ -7605,14 +7605,14 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7605
7605
  region: string;
7606
7606
  postalCode: string;
7607
7607
  country: string;
7608
- line2?: string | undefined;
7608
+ line2?: string | null | undefined;
7609
7609
  }, {
7610
7610
  line1: string;
7611
7611
  city: string;
7612
7612
  region: string;
7613
7613
  postalCode: string;
7614
7614
  country: string;
7615
- line2?: string | undefined;
7615
+ line2?: string | null | undefined;
7616
7616
  }>;
7617
7617
  timezone: z.ZodString;
7618
7618
  location: z.ZodObject<{
@@ -7638,7 +7638,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7638
7638
  region: string;
7639
7639
  postalCode: string;
7640
7640
  country: string;
7641
- line2?: string | undefined;
7641
+ line2?: string | null | undefined;
7642
7642
  };
7643
7643
  timezone: string;
7644
7644
  location: {
@@ -7658,7 +7658,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7658
7658
  region: string;
7659
7659
  postalCode: string;
7660
7660
  country: string;
7661
- line2?: string | undefined;
7661
+ line2?: string | null | undefined;
7662
7662
  };
7663
7663
  timezone: string;
7664
7664
  location: {
@@ -7737,7 +7737,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7737
7737
  region: string;
7738
7738
  postalCode: string;
7739
7739
  country: string;
7740
- line2?: string | undefined;
7740
+ line2?: string | null | undefined;
7741
7741
  };
7742
7742
  timezone: string;
7743
7743
  location: {
@@ -7780,7 +7780,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7780
7780
  region: string;
7781
7781
  postalCode: string;
7782
7782
  country: string;
7783
- line2?: string | undefined;
7783
+ line2?: string | null | undefined;
7784
7784
  };
7785
7785
  timezone: string;
7786
7786
  location: {
@@ -7798,7 +7798,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7798
7798
  name: z.ZodString;
7799
7799
  address: z.ZodObject<{
7800
7800
  line1: z.ZodString;
7801
- line2: z.ZodOptional<z.ZodString>;
7801
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7802
7802
  city: z.ZodString;
7803
7803
  region: z.ZodString;
7804
7804
  postalCode: z.ZodString;
@@ -7809,14 +7809,14 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7809
7809
  region: string;
7810
7810
  postalCode: string;
7811
7811
  country: string;
7812
- line2?: string | undefined;
7812
+ line2?: string | null | undefined;
7813
7813
  }, {
7814
7814
  line1: string;
7815
7815
  city: string;
7816
7816
  region: string;
7817
7817
  postalCode: string;
7818
7818
  country: string;
7819
- line2?: string | undefined;
7819
+ line2?: string | null | undefined;
7820
7820
  }>;
7821
7821
  timezone: z.ZodString;
7822
7822
  location: z.ZodObject<{
@@ -7842,7 +7842,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7842
7842
  region: string;
7843
7843
  postalCode: string;
7844
7844
  country: string;
7845
- line2?: string | undefined;
7845
+ line2?: string | null | undefined;
7846
7846
  };
7847
7847
  timezone: string;
7848
7848
  location: {
@@ -7862,7 +7862,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7862
7862
  region: string;
7863
7863
  postalCode: string;
7864
7864
  country: string;
7865
- line2?: string | undefined;
7865
+ line2?: string | null | undefined;
7866
7866
  };
7867
7867
  timezone: string;
7868
7868
  location: {
@@ -7949,7 +7949,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7949
7949
  region: string;
7950
7950
  postalCode: string;
7951
7951
  country: string;
7952
- line2?: string | undefined;
7952
+ line2?: string | null | undefined;
7953
7953
  };
7954
7954
  timezone: string;
7955
7955
  location: {
@@ -7994,7 +7994,7 @@ declare const getIntegrationActivationRequestDetailsResponseSchema: z.ZodDiscrim
7994
7994
  region: string;
7995
7995
  postalCode: string;
7996
7996
  country: string;
7997
- line2?: string | undefined;
7997
+ line2?: string | null | undefined;
7998
7998
  };
7999
7999
  timezone: string;
8000
8000
  location: {
@@ -8019,7 +8019,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8019
8019
  name: z.ZodString;
8020
8020
  address: z.ZodObject<{
8021
8021
  line1: z.ZodString;
8022
- line2: z.ZodOptional<z.ZodString>;
8022
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8023
8023
  city: z.ZodString;
8024
8024
  region: z.ZodString;
8025
8025
  postalCode: z.ZodString;
@@ -8030,14 +8030,14 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8030
8030
  region: string;
8031
8031
  postalCode: string;
8032
8032
  country: string;
8033
- line2?: string | undefined;
8033
+ line2?: string | null | undefined;
8034
8034
  }, {
8035
8035
  line1: string;
8036
8036
  city: string;
8037
8037
  region: string;
8038
8038
  postalCode: string;
8039
8039
  country: string;
8040
- line2?: string | undefined;
8040
+ line2?: string | null | undefined;
8041
8041
  }>;
8042
8042
  timezone: z.ZodString;
8043
8043
  location: z.ZodObject<{
@@ -8063,7 +8063,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8063
8063
  region: string;
8064
8064
  postalCode: string;
8065
8065
  country: string;
8066
- line2?: string | undefined;
8066
+ line2?: string | null | undefined;
8067
8067
  };
8068
8068
  timezone: string;
8069
8069
  location: {
@@ -8083,7 +8083,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8083
8083
  region: string;
8084
8084
  postalCode: string;
8085
8085
  country: string;
8086
- line2?: string | undefined;
8086
+ line2?: string | null | undefined;
8087
8087
  };
8088
8088
  timezone: string;
8089
8089
  location: {
@@ -8166,7 +8166,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8166
8166
  region: string;
8167
8167
  postalCode: string;
8168
8168
  country: string;
8169
- line2?: string | undefined;
8169
+ line2?: string | null | undefined;
8170
8170
  };
8171
8171
  timezone: string;
8172
8172
  location: {
@@ -8210,7 +8210,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8210
8210
  region: string;
8211
8211
  postalCode: string;
8212
8212
  country: string;
8213
- line2?: string | undefined;
8213
+ line2?: string | null | undefined;
8214
8214
  };
8215
8215
  timezone: string;
8216
8216
  location: {
@@ -8228,7 +8228,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8228
8228
  name: z.ZodString;
8229
8229
  address: z.ZodObject<{
8230
8230
  line1: z.ZodString;
8231
- line2: z.ZodOptional<z.ZodString>;
8231
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8232
8232
  city: z.ZodString;
8233
8233
  region: z.ZodString;
8234
8234
  postalCode: z.ZodString;
@@ -8239,14 +8239,14 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8239
8239
  region: string;
8240
8240
  postalCode: string;
8241
8241
  country: string;
8242
- line2?: string | undefined;
8242
+ line2?: string | null | undefined;
8243
8243
  }, {
8244
8244
  line1: string;
8245
8245
  city: string;
8246
8246
  region: string;
8247
8247
  postalCode: string;
8248
8248
  country: string;
8249
- line2?: string | undefined;
8249
+ line2?: string | null | undefined;
8250
8250
  }>;
8251
8251
  timezone: z.ZodString;
8252
8252
  location: z.ZodObject<{
@@ -8272,7 +8272,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8272
8272
  region: string;
8273
8273
  postalCode: string;
8274
8274
  country: string;
8275
- line2?: string | undefined;
8275
+ line2?: string | null | undefined;
8276
8276
  };
8277
8277
  timezone: string;
8278
8278
  location: {
@@ -8292,7 +8292,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8292
8292
  region: string;
8293
8293
  postalCode: string;
8294
8294
  country: string;
8295
- line2?: string | undefined;
8295
+ line2?: string | null | undefined;
8296
8296
  };
8297
8297
  timezone: string;
8298
8298
  location: {
@@ -8371,7 +8371,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8371
8371
  region: string;
8372
8372
  postalCode: string;
8373
8373
  country: string;
8374
- line2?: string | undefined;
8374
+ line2?: string | null | undefined;
8375
8375
  };
8376
8376
  timezone: string;
8377
8377
  location: {
@@ -8414,7 +8414,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8414
8414
  region: string;
8415
8415
  postalCode: string;
8416
8416
  country: string;
8417
- line2?: string | undefined;
8417
+ line2?: string | null | undefined;
8418
8418
  };
8419
8419
  timezone: string;
8420
8420
  location: {
@@ -8432,7 +8432,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8432
8432
  name: z.ZodString;
8433
8433
  address: z.ZodObject<{
8434
8434
  line1: z.ZodString;
8435
- line2: z.ZodOptional<z.ZodString>;
8435
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8436
8436
  city: z.ZodString;
8437
8437
  region: z.ZodString;
8438
8438
  postalCode: z.ZodString;
@@ -8443,14 +8443,14 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8443
8443
  region: string;
8444
8444
  postalCode: string;
8445
8445
  country: string;
8446
- line2?: string | undefined;
8446
+ line2?: string | null | undefined;
8447
8447
  }, {
8448
8448
  line1: string;
8449
8449
  city: string;
8450
8450
  region: string;
8451
8451
  postalCode: string;
8452
8452
  country: string;
8453
- line2?: string | undefined;
8453
+ line2?: string | null | undefined;
8454
8454
  }>;
8455
8455
  timezone: z.ZodString;
8456
8456
  location: z.ZodObject<{
@@ -8476,7 +8476,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8476
8476
  region: string;
8477
8477
  postalCode: string;
8478
8478
  country: string;
8479
- line2?: string | undefined;
8479
+ line2?: string | null | undefined;
8480
8480
  };
8481
8481
  timezone: string;
8482
8482
  location: {
@@ -8496,7 +8496,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8496
8496
  region: string;
8497
8497
  postalCode: string;
8498
8498
  country: string;
8499
- line2?: string | undefined;
8499
+ line2?: string | null | undefined;
8500
8500
  };
8501
8501
  timezone: string;
8502
8502
  location: {
@@ -8575,7 +8575,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8575
8575
  region: string;
8576
8576
  postalCode: string;
8577
8577
  country: string;
8578
- line2?: string | undefined;
8578
+ line2?: string | null | undefined;
8579
8579
  };
8580
8580
  timezone: string;
8581
8581
  location: {
@@ -8618,7 +8618,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8618
8618
  region: string;
8619
8619
  postalCode: string;
8620
8620
  country: string;
8621
- line2?: string | undefined;
8621
+ line2?: string | null | undefined;
8622
8622
  };
8623
8623
  timezone: string;
8624
8624
  location: {
@@ -8636,7 +8636,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8636
8636
  name: z.ZodString;
8637
8637
  address: z.ZodObject<{
8638
8638
  line1: z.ZodString;
8639
- line2: z.ZodOptional<z.ZodString>;
8639
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8640
8640
  city: z.ZodString;
8641
8641
  region: z.ZodString;
8642
8642
  postalCode: z.ZodString;
@@ -8647,14 +8647,14 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8647
8647
  region: string;
8648
8648
  postalCode: string;
8649
8649
  country: string;
8650
- line2?: string | undefined;
8650
+ line2?: string | null | undefined;
8651
8651
  }, {
8652
8652
  line1: string;
8653
8653
  city: string;
8654
8654
  region: string;
8655
8655
  postalCode: string;
8656
8656
  country: string;
8657
- line2?: string | undefined;
8657
+ line2?: string | null | undefined;
8658
8658
  }>;
8659
8659
  timezone: z.ZodString;
8660
8660
  location: z.ZodObject<{
@@ -8680,7 +8680,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8680
8680
  region: string;
8681
8681
  postalCode: string;
8682
8682
  country: string;
8683
- line2?: string | undefined;
8683
+ line2?: string | null | undefined;
8684
8684
  };
8685
8685
  timezone: string;
8686
8686
  location: {
@@ -8700,7 +8700,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8700
8700
  region: string;
8701
8701
  postalCode: string;
8702
8702
  country: string;
8703
- line2?: string | undefined;
8703
+ line2?: string | null | undefined;
8704
8704
  };
8705
8705
  timezone: string;
8706
8706
  location: {
@@ -8787,7 +8787,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8787
8787
  region: string;
8788
8788
  postalCode: string;
8789
8789
  country: string;
8790
- line2?: string | undefined;
8790
+ line2?: string | null | undefined;
8791
8791
  };
8792
8792
  timezone: string;
8793
8793
  location: {
@@ -8832,7 +8832,7 @@ declare class GetIntegrationActivationRequestDetails extends AbstractApiRequest<
8832
8832
  region: string;
8833
8833
  postalCode: string;
8834
8834
  country: string;
8835
- line2?: string | undefined;
8835
+ line2?: string | null | undefined;
8836
8836
  };
8837
8837
  timezone: string;
8838
8838
  location: {
@@ -10248,7 +10248,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10248
10248
  name: z.ZodString;
10249
10249
  address: z.ZodObject<{
10250
10250
  line1: z.ZodString;
10251
- line2: z.ZodOptional<z.ZodString>;
10251
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10252
10252
  city: z.ZodString;
10253
10253
  region: z.ZodString;
10254
10254
  postalCode: z.ZodString;
@@ -10259,14 +10259,14 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10259
10259
  region: string;
10260
10260
  postalCode: string;
10261
10261
  country: string;
10262
- line2?: string | undefined;
10262
+ line2?: string | null | undefined;
10263
10263
  }, {
10264
10264
  line1: string;
10265
10265
  city: string;
10266
10266
  region: string;
10267
10267
  postalCode: string;
10268
10268
  country: string;
10269
- line2?: string | undefined;
10269
+ line2?: string | null | undefined;
10270
10270
  }>;
10271
10271
  timezone: z.ZodString;
10272
10272
  location: z.ZodObject<{
@@ -10292,7 +10292,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10292
10292
  region: string;
10293
10293
  postalCode: string;
10294
10294
  country: string;
10295
- line2?: string | undefined;
10295
+ line2?: string | null | undefined;
10296
10296
  };
10297
10297
  timezone: string;
10298
10298
  location: {
@@ -10312,7 +10312,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10312
10312
  region: string;
10313
10313
  postalCode: string;
10314
10314
  country: string;
10315
- line2?: string | undefined;
10315
+ line2?: string | null | undefined;
10316
10316
  };
10317
10317
  timezone: string;
10318
10318
  location: {
@@ -10395,7 +10395,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10395
10395
  region: string;
10396
10396
  postalCode: string;
10397
10397
  country: string;
10398
- line2?: string | undefined;
10398
+ line2?: string | null | undefined;
10399
10399
  };
10400
10400
  timezone: string;
10401
10401
  location: {
@@ -10439,7 +10439,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10439
10439
  region: string;
10440
10440
  postalCode: string;
10441
10441
  country: string;
10442
- line2?: string | undefined;
10442
+ line2?: string | null | undefined;
10443
10443
  };
10444
10444
  timezone: string;
10445
10445
  location: {
@@ -10457,7 +10457,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10457
10457
  name: z.ZodString;
10458
10458
  address: z.ZodObject<{
10459
10459
  line1: z.ZodString;
10460
- line2: z.ZodOptional<z.ZodString>;
10460
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10461
10461
  city: z.ZodString;
10462
10462
  region: z.ZodString;
10463
10463
  postalCode: z.ZodString;
@@ -10468,14 +10468,14 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10468
10468
  region: string;
10469
10469
  postalCode: string;
10470
10470
  country: string;
10471
- line2?: string | undefined;
10471
+ line2?: string | null | undefined;
10472
10472
  }, {
10473
10473
  line1: string;
10474
10474
  city: string;
10475
10475
  region: string;
10476
10476
  postalCode: string;
10477
10477
  country: string;
10478
- line2?: string | undefined;
10478
+ line2?: string | null | undefined;
10479
10479
  }>;
10480
10480
  timezone: z.ZodString;
10481
10481
  location: z.ZodObject<{
@@ -10501,7 +10501,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10501
10501
  region: string;
10502
10502
  postalCode: string;
10503
10503
  country: string;
10504
- line2?: string | undefined;
10504
+ line2?: string | null | undefined;
10505
10505
  };
10506
10506
  timezone: string;
10507
10507
  location: {
@@ -10521,7 +10521,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10521
10521
  region: string;
10522
10522
  postalCode: string;
10523
10523
  country: string;
10524
- line2?: string | undefined;
10524
+ line2?: string | null | undefined;
10525
10525
  };
10526
10526
  timezone: string;
10527
10527
  location: {
@@ -10600,7 +10600,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10600
10600
  region: string;
10601
10601
  postalCode: string;
10602
10602
  country: string;
10603
- line2?: string | undefined;
10603
+ line2?: string | null | undefined;
10604
10604
  };
10605
10605
  timezone: string;
10606
10606
  location: {
@@ -10643,7 +10643,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10643
10643
  region: string;
10644
10644
  postalCode: string;
10645
10645
  country: string;
10646
- line2?: string | undefined;
10646
+ line2?: string | null | undefined;
10647
10647
  };
10648
10648
  timezone: string;
10649
10649
  location: {
@@ -10661,7 +10661,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10661
10661
  name: z.ZodString;
10662
10662
  address: z.ZodObject<{
10663
10663
  line1: z.ZodString;
10664
- line2: z.ZodOptional<z.ZodString>;
10664
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10665
10665
  city: z.ZodString;
10666
10666
  region: z.ZodString;
10667
10667
  postalCode: z.ZodString;
@@ -10672,14 +10672,14 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10672
10672
  region: string;
10673
10673
  postalCode: string;
10674
10674
  country: string;
10675
- line2?: string | undefined;
10675
+ line2?: string | null | undefined;
10676
10676
  }, {
10677
10677
  line1: string;
10678
10678
  city: string;
10679
10679
  region: string;
10680
10680
  postalCode: string;
10681
10681
  country: string;
10682
- line2?: string | undefined;
10682
+ line2?: string | null | undefined;
10683
10683
  }>;
10684
10684
  timezone: z.ZodString;
10685
10685
  location: z.ZodObject<{
@@ -10705,7 +10705,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10705
10705
  region: string;
10706
10706
  postalCode: string;
10707
10707
  country: string;
10708
- line2?: string | undefined;
10708
+ line2?: string | null | undefined;
10709
10709
  };
10710
10710
  timezone: string;
10711
10711
  location: {
@@ -10725,7 +10725,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10725
10725
  region: string;
10726
10726
  postalCode: string;
10727
10727
  country: string;
10728
- line2?: string | undefined;
10728
+ line2?: string | null | undefined;
10729
10729
  };
10730
10730
  timezone: string;
10731
10731
  location: {
@@ -10804,7 +10804,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10804
10804
  region: string;
10805
10805
  postalCode: string;
10806
10806
  country: string;
10807
- line2?: string | undefined;
10807
+ line2?: string | null | undefined;
10808
10808
  };
10809
10809
  timezone: string;
10810
10810
  location: {
@@ -10847,7 +10847,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10847
10847
  region: string;
10848
10848
  postalCode: string;
10849
10849
  country: string;
10850
- line2?: string | undefined;
10850
+ line2?: string | null | undefined;
10851
10851
  };
10852
10852
  timezone: string;
10853
10853
  location: {
@@ -10865,7 +10865,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10865
10865
  name: z.ZodString;
10866
10866
  address: z.ZodObject<{
10867
10867
  line1: z.ZodString;
10868
- line2: z.ZodOptional<z.ZodString>;
10868
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10869
10869
  city: z.ZodString;
10870
10870
  region: z.ZodString;
10871
10871
  postalCode: z.ZodString;
@@ -10876,14 +10876,14 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10876
10876
  region: string;
10877
10877
  postalCode: string;
10878
10878
  country: string;
10879
- line2?: string | undefined;
10879
+ line2?: string | null | undefined;
10880
10880
  }, {
10881
10881
  line1: string;
10882
10882
  city: string;
10883
10883
  region: string;
10884
10884
  postalCode: string;
10885
10885
  country: string;
10886
- line2?: string | undefined;
10886
+ line2?: string | null | undefined;
10887
10887
  }>;
10888
10888
  timezone: z.ZodString;
10889
10889
  location: z.ZodObject<{
@@ -10909,7 +10909,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10909
10909
  region: string;
10910
10910
  postalCode: string;
10911
10911
  country: string;
10912
- line2?: string | undefined;
10912
+ line2?: string | null | undefined;
10913
10913
  };
10914
10914
  timezone: string;
10915
10915
  location: {
@@ -10929,7 +10929,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
10929
10929
  region: string;
10930
10930
  postalCode: string;
10931
10931
  country: string;
10932
- line2?: string | undefined;
10932
+ line2?: string | null | undefined;
10933
10933
  };
10934
10934
  timezone: string;
10935
10935
  location: {
@@ -11016,7 +11016,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
11016
11016
  region: string;
11017
11017
  postalCode: string;
11018
11018
  country: string;
11019
- line2?: string | undefined;
11019
+ line2?: string | null | undefined;
11020
11020
  };
11021
11021
  timezone: string;
11022
11022
  location: {
@@ -11061,7 +11061,7 @@ declare const respondIntegrationActivationRequestResponseSchema: z.ZodDiscrimina
11061
11061
  region: string;
11062
11062
  postalCode: string;
11063
11063
  country: string;
11064
- line2?: string | undefined;
11064
+ line2?: string | null | undefined;
11065
11065
  };
11066
11066
  timezone: string;
11067
11067
  location: {
@@ -11170,7 +11170,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11170
11170
  name: z.ZodString;
11171
11171
  address: z.ZodObject<{
11172
11172
  line1: z.ZodString;
11173
- line2: z.ZodOptional<z.ZodString>;
11173
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11174
11174
  city: z.ZodString;
11175
11175
  region: z.ZodString;
11176
11176
  postalCode: z.ZodString;
@@ -11181,14 +11181,14 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11181
11181
  region: string;
11182
11182
  postalCode: string;
11183
11183
  country: string;
11184
- line2?: string | undefined;
11184
+ line2?: string | null | undefined;
11185
11185
  }, {
11186
11186
  line1: string;
11187
11187
  city: string;
11188
11188
  region: string;
11189
11189
  postalCode: string;
11190
11190
  country: string;
11191
- line2?: string | undefined;
11191
+ line2?: string | null | undefined;
11192
11192
  }>;
11193
11193
  timezone: z.ZodString;
11194
11194
  location: z.ZodObject<{
@@ -11214,7 +11214,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11214
11214
  region: string;
11215
11215
  postalCode: string;
11216
11216
  country: string;
11217
- line2?: string | undefined;
11217
+ line2?: string | null | undefined;
11218
11218
  };
11219
11219
  timezone: string;
11220
11220
  location: {
@@ -11234,7 +11234,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11234
11234
  region: string;
11235
11235
  postalCode: string;
11236
11236
  country: string;
11237
- line2?: string | undefined;
11237
+ line2?: string | null | undefined;
11238
11238
  };
11239
11239
  timezone: string;
11240
11240
  location: {
@@ -11317,7 +11317,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11317
11317
  region: string;
11318
11318
  postalCode: string;
11319
11319
  country: string;
11320
- line2?: string | undefined;
11320
+ line2?: string | null | undefined;
11321
11321
  };
11322
11322
  timezone: string;
11323
11323
  location: {
@@ -11361,7 +11361,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11361
11361
  region: string;
11362
11362
  postalCode: string;
11363
11363
  country: string;
11364
- line2?: string | undefined;
11364
+ line2?: string | null | undefined;
11365
11365
  };
11366
11366
  timezone: string;
11367
11367
  location: {
@@ -11379,7 +11379,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11379
11379
  name: z.ZodString;
11380
11380
  address: z.ZodObject<{
11381
11381
  line1: z.ZodString;
11382
- line2: z.ZodOptional<z.ZodString>;
11382
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11383
11383
  city: z.ZodString;
11384
11384
  region: z.ZodString;
11385
11385
  postalCode: z.ZodString;
@@ -11390,14 +11390,14 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11390
11390
  region: string;
11391
11391
  postalCode: string;
11392
11392
  country: string;
11393
- line2?: string | undefined;
11393
+ line2?: string | null | undefined;
11394
11394
  }, {
11395
11395
  line1: string;
11396
11396
  city: string;
11397
11397
  region: string;
11398
11398
  postalCode: string;
11399
11399
  country: string;
11400
- line2?: string | undefined;
11400
+ line2?: string | null | undefined;
11401
11401
  }>;
11402
11402
  timezone: z.ZodString;
11403
11403
  location: z.ZodObject<{
@@ -11423,7 +11423,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11423
11423
  region: string;
11424
11424
  postalCode: string;
11425
11425
  country: string;
11426
- line2?: string | undefined;
11426
+ line2?: string | null | undefined;
11427
11427
  };
11428
11428
  timezone: string;
11429
11429
  location: {
@@ -11443,7 +11443,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11443
11443
  region: string;
11444
11444
  postalCode: string;
11445
11445
  country: string;
11446
- line2?: string | undefined;
11446
+ line2?: string | null | undefined;
11447
11447
  };
11448
11448
  timezone: string;
11449
11449
  location: {
@@ -11522,7 +11522,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11522
11522
  region: string;
11523
11523
  postalCode: string;
11524
11524
  country: string;
11525
- line2?: string | undefined;
11525
+ line2?: string | null | undefined;
11526
11526
  };
11527
11527
  timezone: string;
11528
11528
  location: {
@@ -11565,7 +11565,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11565
11565
  region: string;
11566
11566
  postalCode: string;
11567
11567
  country: string;
11568
- line2?: string | undefined;
11568
+ line2?: string | null | undefined;
11569
11569
  };
11570
11570
  timezone: string;
11571
11571
  location: {
@@ -11583,7 +11583,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11583
11583
  name: z.ZodString;
11584
11584
  address: z.ZodObject<{
11585
11585
  line1: z.ZodString;
11586
- line2: z.ZodOptional<z.ZodString>;
11586
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11587
11587
  city: z.ZodString;
11588
11588
  region: z.ZodString;
11589
11589
  postalCode: z.ZodString;
@@ -11594,14 +11594,14 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11594
11594
  region: string;
11595
11595
  postalCode: string;
11596
11596
  country: string;
11597
- line2?: string | undefined;
11597
+ line2?: string | null | undefined;
11598
11598
  }, {
11599
11599
  line1: string;
11600
11600
  city: string;
11601
11601
  region: string;
11602
11602
  postalCode: string;
11603
11603
  country: string;
11604
- line2?: string | undefined;
11604
+ line2?: string | null | undefined;
11605
11605
  }>;
11606
11606
  timezone: z.ZodString;
11607
11607
  location: z.ZodObject<{
@@ -11627,7 +11627,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11627
11627
  region: string;
11628
11628
  postalCode: string;
11629
11629
  country: string;
11630
- line2?: string | undefined;
11630
+ line2?: string | null | undefined;
11631
11631
  };
11632
11632
  timezone: string;
11633
11633
  location: {
@@ -11647,7 +11647,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11647
11647
  region: string;
11648
11648
  postalCode: string;
11649
11649
  country: string;
11650
- line2?: string | undefined;
11650
+ line2?: string | null | undefined;
11651
11651
  };
11652
11652
  timezone: string;
11653
11653
  location: {
@@ -11726,7 +11726,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11726
11726
  region: string;
11727
11727
  postalCode: string;
11728
11728
  country: string;
11729
- line2?: string | undefined;
11729
+ line2?: string | null | undefined;
11730
11730
  };
11731
11731
  timezone: string;
11732
11732
  location: {
@@ -11769,7 +11769,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11769
11769
  region: string;
11770
11770
  postalCode: string;
11771
11771
  country: string;
11772
- line2?: string | undefined;
11772
+ line2?: string | null | undefined;
11773
11773
  };
11774
11774
  timezone: string;
11775
11775
  location: {
@@ -11787,7 +11787,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11787
11787
  name: z.ZodString;
11788
11788
  address: z.ZodObject<{
11789
11789
  line1: z.ZodString;
11790
- line2: z.ZodOptional<z.ZodString>;
11790
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11791
11791
  city: z.ZodString;
11792
11792
  region: z.ZodString;
11793
11793
  postalCode: z.ZodString;
@@ -11798,14 +11798,14 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11798
11798
  region: string;
11799
11799
  postalCode: string;
11800
11800
  country: string;
11801
- line2?: string | undefined;
11801
+ line2?: string | null | undefined;
11802
11802
  }, {
11803
11803
  line1: string;
11804
11804
  city: string;
11805
11805
  region: string;
11806
11806
  postalCode: string;
11807
11807
  country: string;
11808
- line2?: string | undefined;
11808
+ line2?: string | null | undefined;
11809
11809
  }>;
11810
11810
  timezone: z.ZodString;
11811
11811
  location: z.ZodObject<{
@@ -11831,7 +11831,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11831
11831
  region: string;
11832
11832
  postalCode: string;
11833
11833
  country: string;
11834
- line2?: string | undefined;
11834
+ line2?: string | null | undefined;
11835
11835
  };
11836
11836
  timezone: string;
11837
11837
  location: {
@@ -11851,7 +11851,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11851
11851
  region: string;
11852
11852
  postalCode: string;
11853
11853
  country: string;
11854
- line2?: string | undefined;
11854
+ line2?: string | null | undefined;
11855
11855
  };
11856
11856
  timezone: string;
11857
11857
  location: {
@@ -11938,7 +11938,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11938
11938
  region: string;
11939
11939
  postalCode: string;
11940
11940
  country: string;
11941
- line2?: string | undefined;
11941
+ line2?: string | null | undefined;
11942
11942
  };
11943
11943
  timezone: string;
11944
11944
  location: {
@@ -11983,7 +11983,7 @@ declare class RespondIntegrationActivationRequest extends AbstractApiRequest<Res
11983
11983
  region: string;
11984
11984
  postalCode: string;
11985
11985
  country: string;
11986
- line2?: string | undefined;
11986
+ line2?: string | null | undefined;
11987
11987
  };
11988
11988
  timezone: string;
11989
11989
  location: {
@@ -12010,7 +12010,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12010
12010
  name: z.ZodString;
12011
12011
  address: z.ZodObject<{
12012
12012
  line1: z.ZodString;
12013
- line2: z.ZodOptional<z.ZodString>;
12013
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12014
12014
  city: z.ZodString;
12015
12015
  region: z.ZodString;
12016
12016
  postalCode: z.ZodString;
@@ -12021,14 +12021,14 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12021
12021
  region: string;
12022
12022
  postalCode: string;
12023
12023
  country: string;
12024
- line2?: string | undefined;
12024
+ line2?: string | null | undefined;
12025
12025
  }, {
12026
12026
  line1: string;
12027
12027
  city: string;
12028
12028
  region: string;
12029
12029
  postalCode: string;
12030
12030
  country: string;
12031
- line2?: string | undefined;
12031
+ line2?: string | null | undefined;
12032
12032
  }>;
12033
12033
  timezone: z.ZodString;
12034
12034
  location: z.ZodObject<{
@@ -12054,7 +12054,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12054
12054
  region: string;
12055
12055
  postalCode: string;
12056
12056
  country: string;
12057
- line2?: string | undefined;
12057
+ line2?: string | null | undefined;
12058
12058
  };
12059
12059
  timezone: string;
12060
12060
  location: {
@@ -12074,7 +12074,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12074
12074
  region: string;
12075
12075
  postalCode: string;
12076
12076
  country: string;
12077
- line2?: string | undefined;
12077
+ line2?: string | null | undefined;
12078
12078
  };
12079
12079
  timezone: string;
12080
12080
  location: {
@@ -12157,7 +12157,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12157
12157
  region: string;
12158
12158
  postalCode: string;
12159
12159
  country: string;
12160
- line2?: string | undefined;
12160
+ line2?: string | null | undefined;
12161
12161
  };
12162
12162
  timezone: string;
12163
12163
  location: {
@@ -12201,7 +12201,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12201
12201
  region: string;
12202
12202
  postalCode: string;
12203
12203
  country: string;
12204
- line2?: string | undefined;
12204
+ line2?: string | null | undefined;
12205
12205
  };
12206
12206
  timezone: string;
12207
12207
  location: {
@@ -12219,7 +12219,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12219
12219
  name: z.ZodString;
12220
12220
  address: z.ZodObject<{
12221
12221
  line1: z.ZodString;
12222
- line2: z.ZodOptional<z.ZodString>;
12222
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12223
12223
  city: z.ZodString;
12224
12224
  region: z.ZodString;
12225
12225
  postalCode: z.ZodString;
@@ -12230,14 +12230,14 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12230
12230
  region: string;
12231
12231
  postalCode: string;
12232
12232
  country: string;
12233
- line2?: string | undefined;
12233
+ line2?: string | null | undefined;
12234
12234
  }, {
12235
12235
  line1: string;
12236
12236
  city: string;
12237
12237
  region: string;
12238
12238
  postalCode: string;
12239
12239
  country: string;
12240
- line2?: string | undefined;
12240
+ line2?: string | null | undefined;
12241
12241
  }>;
12242
12242
  timezone: z.ZodString;
12243
12243
  location: z.ZodObject<{
@@ -12263,7 +12263,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12263
12263
  region: string;
12264
12264
  postalCode: string;
12265
12265
  country: string;
12266
- line2?: string | undefined;
12266
+ line2?: string | null | undefined;
12267
12267
  };
12268
12268
  timezone: string;
12269
12269
  location: {
@@ -12283,7 +12283,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12283
12283
  region: string;
12284
12284
  postalCode: string;
12285
12285
  country: string;
12286
- line2?: string | undefined;
12286
+ line2?: string | null | undefined;
12287
12287
  };
12288
12288
  timezone: string;
12289
12289
  location: {
@@ -12362,7 +12362,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12362
12362
  region: string;
12363
12363
  postalCode: string;
12364
12364
  country: string;
12365
- line2?: string | undefined;
12365
+ line2?: string | null | undefined;
12366
12366
  };
12367
12367
  timezone: string;
12368
12368
  location: {
@@ -12405,7 +12405,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12405
12405
  region: string;
12406
12406
  postalCode: string;
12407
12407
  country: string;
12408
- line2?: string | undefined;
12408
+ line2?: string | null | undefined;
12409
12409
  };
12410
12410
  timezone: string;
12411
12411
  location: {
@@ -12423,7 +12423,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12423
12423
  name: z.ZodString;
12424
12424
  address: z.ZodObject<{
12425
12425
  line1: z.ZodString;
12426
- line2: z.ZodOptional<z.ZodString>;
12426
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12427
12427
  city: z.ZodString;
12428
12428
  region: z.ZodString;
12429
12429
  postalCode: z.ZodString;
@@ -12434,14 +12434,14 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12434
12434
  region: string;
12435
12435
  postalCode: string;
12436
12436
  country: string;
12437
- line2?: string | undefined;
12437
+ line2?: string | null | undefined;
12438
12438
  }, {
12439
12439
  line1: string;
12440
12440
  city: string;
12441
12441
  region: string;
12442
12442
  postalCode: string;
12443
12443
  country: string;
12444
- line2?: string | undefined;
12444
+ line2?: string | null | undefined;
12445
12445
  }>;
12446
12446
  timezone: z.ZodString;
12447
12447
  location: z.ZodObject<{
@@ -12467,7 +12467,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12467
12467
  region: string;
12468
12468
  postalCode: string;
12469
12469
  country: string;
12470
- line2?: string | undefined;
12470
+ line2?: string | null | undefined;
12471
12471
  };
12472
12472
  timezone: string;
12473
12473
  location: {
@@ -12487,7 +12487,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12487
12487
  region: string;
12488
12488
  postalCode: string;
12489
12489
  country: string;
12490
- line2?: string | undefined;
12490
+ line2?: string | null | undefined;
12491
12491
  };
12492
12492
  timezone: string;
12493
12493
  location: {
@@ -12566,7 +12566,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12566
12566
  region: string;
12567
12567
  postalCode: string;
12568
12568
  country: string;
12569
- line2?: string | undefined;
12569
+ line2?: string | null | undefined;
12570
12570
  };
12571
12571
  timezone: string;
12572
12572
  location: {
@@ -12609,7 +12609,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12609
12609
  region: string;
12610
12610
  postalCode: string;
12611
12611
  country: string;
12612
- line2?: string | undefined;
12612
+ line2?: string | null | undefined;
12613
12613
  };
12614
12614
  timezone: string;
12615
12615
  location: {
@@ -12627,7 +12627,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12627
12627
  name: z.ZodString;
12628
12628
  address: z.ZodObject<{
12629
12629
  line1: z.ZodString;
12630
- line2: z.ZodOptional<z.ZodString>;
12630
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12631
12631
  city: z.ZodString;
12632
12632
  region: z.ZodString;
12633
12633
  postalCode: z.ZodString;
@@ -12638,14 +12638,14 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12638
12638
  region: string;
12639
12639
  postalCode: string;
12640
12640
  country: string;
12641
- line2?: string | undefined;
12641
+ line2?: string | null | undefined;
12642
12642
  }, {
12643
12643
  line1: string;
12644
12644
  city: string;
12645
12645
  region: string;
12646
12646
  postalCode: string;
12647
12647
  country: string;
12648
- line2?: string | undefined;
12648
+ line2?: string | null | undefined;
12649
12649
  }>;
12650
12650
  timezone: z.ZodString;
12651
12651
  location: z.ZodObject<{
@@ -12671,7 +12671,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12671
12671
  region: string;
12672
12672
  postalCode: string;
12673
12673
  country: string;
12674
- line2?: string | undefined;
12674
+ line2?: string | null | undefined;
12675
12675
  };
12676
12676
  timezone: string;
12677
12677
  location: {
@@ -12691,7 +12691,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12691
12691
  region: string;
12692
12692
  postalCode: string;
12693
12693
  country: string;
12694
- line2?: string | undefined;
12694
+ line2?: string | null | undefined;
12695
12695
  };
12696
12696
  timezone: string;
12697
12697
  location: {
@@ -12778,7 +12778,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12778
12778
  region: string;
12779
12779
  postalCode: string;
12780
12780
  country: string;
12781
- line2?: string | undefined;
12781
+ line2?: string | null | undefined;
12782
12782
  };
12783
12783
  timezone: string;
12784
12784
  location: {
@@ -12823,7 +12823,7 @@ declare const sendIntegrationActivationRequestToPartnerResponseSchema: z.ZodDisc
12823
12823
  region: string;
12824
12824
  postalCode: string;
12825
12825
  country: string;
12826
- line2?: string | undefined;
12826
+ line2?: string | null | undefined;
12827
12827
  };
12828
12828
  timezone: string;
12829
12829
  location: {
@@ -12848,7 +12848,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
12848
12848
  name: z.ZodString;
12849
12849
  address: z.ZodObject<{
12850
12850
  line1: z.ZodString;
12851
- line2: z.ZodOptional<z.ZodString>;
12851
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12852
12852
  city: z.ZodString;
12853
12853
  region: z.ZodString;
12854
12854
  postalCode: z.ZodString;
@@ -12859,14 +12859,14 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
12859
12859
  region: string;
12860
12860
  postalCode: string;
12861
12861
  country: string;
12862
- line2?: string | undefined;
12862
+ line2?: string | null | undefined;
12863
12863
  }, {
12864
12864
  line1: string;
12865
12865
  city: string;
12866
12866
  region: string;
12867
12867
  postalCode: string;
12868
12868
  country: string;
12869
- line2?: string | undefined;
12869
+ line2?: string | null | undefined;
12870
12870
  }>;
12871
12871
  timezone: z.ZodString;
12872
12872
  location: z.ZodObject<{
@@ -12892,7 +12892,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
12892
12892
  region: string;
12893
12893
  postalCode: string;
12894
12894
  country: string;
12895
- line2?: string | undefined;
12895
+ line2?: string | null | undefined;
12896
12896
  };
12897
12897
  timezone: string;
12898
12898
  location: {
@@ -12912,7 +12912,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
12912
12912
  region: string;
12913
12913
  postalCode: string;
12914
12914
  country: string;
12915
- line2?: string | undefined;
12915
+ line2?: string | null | undefined;
12916
12916
  };
12917
12917
  timezone: string;
12918
12918
  location: {
@@ -12995,7 +12995,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
12995
12995
  region: string;
12996
12996
  postalCode: string;
12997
12997
  country: string;
12998
- line2?: string | undefined;
12998
+ line2?: string | null | undefined;
12999
12999
  };
13000
13000
  timezone: string;
13001
13001
  location: {
@@ -13039,7 +13039,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13039
13039
  region: string;
13040
13040
  postalCode: string;
13041
13041
  country: string;
13042
- line2?: string | undefined;
13042
+ line2?: string | null | undefined;
13043
13043
  };
13044
13044
  timezone: string;
13045
13045
  location: {
@@ -13057,7 +13057,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13057
13057
  name: z.ZodString;
13058
13058
  address: z.ZodObject<{
13059
13059
  line1: z.ZodString;
13060
- line2: z.ZodOptional<z.ZodString>;
13060
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13061
13061
  city: z.ZodString;
13062
13062
  region: z.ZodString;
13063
13063
  postalCode: z.ZodString;
@@ -13068,14 +13068,14 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13068
13068
  region: string;
13069
13069
  postalCode: string;
13070
13070
  country: string;
13071
- line2?: string | undefined;
13071
+ line2?: string | null | undefined;
13072
13072
  }, {
13073
13073
  line1: string;
13074
13074
  city: string;
13075
13075
  region: string;
13076
13076
  postalCode: string;
13077
13077
  country: string;
13078
- line2?: string | undefined;
13078
+ line2?: string | null | undefined;
13079
13079
  }>;
13080
13080
  timezone: z.ZodString;
13081
13081
  location: z.ZodObject<{
@@ -13101,7 +13101,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13101
13101
  region: string;
13102
13102
  postalCode: string;
13103
13103
  country: string;
13104
- line2?: string | undefined;
13104
+ line2?: string | null | undefined;
13105
13105
  };
13106
13106
  timezone: string;
13107
13107
  location: {
@@ -13121,7 +13121,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13121
13121
  region: string;
13122
13122
  postalCode: string;
13123
13123
  country: string;
13124
- line2?: string | undefined;
13124
+ line2?: string | null | undefined;
13125
13125
  };
13126
13126
  timezone: string;
13127
13127
  location: {
@@ -13200,7 +13200,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13200
13200
  region: string;
13201
13201
  postalCode: string;
13202
13202
  country: string;
13203
- line2?: string | undefined;
13203
+ line2?: string | null | undefined;
13204
13204
  };
13205
13205
  timezone: string;
13206
13206
  location: {
@@ -13243,7 +13243,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13243
13243
  region: string;
13244
13244
  postalCode: string;
13245
13245
  country: string;
13246
- line2?: string | undefined;
13246
+ line2?: string | null | undefined;
13247
13247
  };
13248
13248
  timezone: string;
13249
13249
  location: {
@@ -13261,7 +13261,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13261
13261
  name: z.ZodString;
13262
13262
  address: z.ZodObject<{
13263
13263
  line1: z.ZodString;
13264
- line2: z.ZodOptional<z.ZodString>;
13264
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13265
13265
  city: z.ZodString;
13266
13266
  region: z.ZodString;
13267
13267
  postalCode: z.ZodString;
@@ -13272,14 +13272,14 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13272
13272
  region: string;
13273
13273
  postalCode: string;
13274
13274
  country: string;
13275
- line2?: string | undefined;
13275
+ line2?: string | null | undefined;
13276
13276
  }, {
13277
13277
  line1: string;
13278
13278
  city: string;
13279
13279
  region: string;
13280
13280
  postalCode: string;
13281
13281
  country: string;
13282
- line2?: string | undefined;
13282
+ line2?: string | null | undefined;
13283
13283
  }>;
13284
13284
  timezone: z.ZodString;
13285
13285
  location: z.ZodObject<{
@@ -13305,7 +13305,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13305
13305
  region: string;
13306
13306
  postalCode: string;
13307
13307
  country: string;
13308
- line2?: string | undefined;
13308
+ line2?: string | null | undefined;
13309
13309
  };
13310
13310
  timezone: string;
13311
13311
  location: {
@@ -13325,7 +13325,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13325
13325
  region: string;
13326
13326
  postalCode: string;
13327
13327
  country: string;
13328
- line2?: string | undefined;
13328
+ line2?: string | null | undefined;
13329
13329
  };
13330
13330
  timezone: string;
13331
13331
  location: {
@@ -13404,7 +13404,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13404
13404
  region: string;
13405
13405
  postalCode: string;
13406
13406
  country: string;
13407
- line2?: string | undefined;
13407
+ line2?: string | null | undefined;
13408
13408
  };
13409
13409
  timezone: string;
13410
13410
  location: {
@@ -13447,7 +13447,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13447
13447
  region: string;
13448
13448
  postalCode: string;
13449
13449
  country: string;
13450
- line2?: string | undefined;
13450
+ line2?: string | null | undefined;
13451
13451
  };
13452
13452
  timezone: string;
13453
13453
  location: {
@@ -13465,7 +13465,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13465
13465
  name: z.ZodString;
13466
13466
  address: z.ZodObject<{
13467
13467
  line1: z.ZodString;
13468
- line2: z.ZodOptional<z.ZodString>;
13468
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13469
13469
  city: z.ZodString;
13470
13470
  region: z.ZodString;
13471
13471
  postalCode: z.ZodString;
@@ -13476,14 +13476,14 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13476
13476
  region: string;
13477
13477
  postalCode: string;
13478
13478
  country: string;
13479
- line2?: string | undefined;
13479
+ line2?: string | null | undefined;
13480
13480
  }, {
13481
13481
  line1: string;
13482
13482
  city: string;
13483
13483
  region: string;
13484
13484
  postalCode: string;
13485
13485
  country: string;
13486
- line2?: string | undefined;
13486
+ line2?: string | null | undefined;
13487
13487
  }>;
13488
13488
  timezone: z.ZodString;
13489
13489
  location: z.ZodObject<{
@@ -13509,7 +13509,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13509
13509
  region: string;
13510
13510
  postalCode: string;
13511
13511
  country: string;
13512
- line2?: string | undefined;
13512
+ line2?: string | null | undefined;
13513
13513
  };
13514
13514
  timezone: string;
13515
13515
  location: {
@@ -13529,7 +13529,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13529
13529
  region: string;
13530
13530
  postalCode: string;
13531
13531
  country: string;
13532
- line2?: string | undefined;
13532
+ line2?: string | null | undefined;
13533
13533
  };
13534
13534
  timezone: string;
13535
13535
  location: {
@@ -13616,7 +13616,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13616
13616
  region: string;
13617
13617
  postalCode: string;
13618
13618
  country: string;
13619
- line2?: string | undefined;
13619
+ line2?: string | null | undefined;
13620
13620
  };
13621
13621
  timezone: string;
13622
13622
  location: {
@@ -13661,7 +13661,7 @@ declare class SendIntegrationActivationRequestToPartner extends AbstractApiReque
13661
13661
  region: string;
13662
13662
  postalCode: string;
13663
13663
  country: string;
13664
- line2?: string | undefined;
13664
+ line2?: string | null | undefined;
13665
13665
  };
13666
13666
  timezone: string;
13667
13667
  location: {
@@ -13864,7 +13864,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
13864
13864
  name: z.ZodString;
13865
13865
  address: z.ZodObject<{
13866
13866
  line1: z.ZodString;
13867
- line2: z.ZodOptional<z.ZodString>;
13867
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13868
13868
  city: z.ZodString;
13869
13869
  region: z.ZodString;
13870
13870
  postalCode: z.ZodString;
@@ -13875,14 +13875,14 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
13875
13875
  region: string;
13876
13876
  postalCode: string;
13877
13877
  country: string;
13878
- line2?: string | undefined;
13878
+ line2?: string | null | undefined;
13879
13879
  }, {
13880
13880
  line1: string;
13881
13881
  city: string;
13882
13882
  region: string;
13883
13883
  postalCode: string;
13884
13884
  country: string;
13885
- line2?: string | undefined;
13885
+ line2?: string | null | undefined;
13886
13886
  }>;
13887
13887
  timezone: z.ZodString;
13888
13888
  location: z.ZodObject<{
@@ -13908,7 +13908,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
13908
13908
  region: string;
13909
13909
  postalCode: string;
13910
13910
  country: string;
13911
- line2?: string | undefined;
13911
+ line2?: string | null | undefined;
13912
13912
  };
13913
13913
  timezone: string;
13914
13914
  location: {
@@ -13928,7 +13928,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
13928
13928
  region: string;
13929
13929
  postalCode: string;
13930
13930
  country: string;
13931
- line2?: string | undefined;
13931
+ line2?: string | null | undefined;
13932
13932
  };
13933
13933
  timezone: string;
13934
13934
  location: {
@@ -14011,7 +14011,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14011
14011
  region: string;
14012
14012
  postalCode: string;
14013
14013
  country: string;
14014
- line2?: string | undefined;
14014
+ line2?: string | null | undefined;
14015
14015
  };
14016
14016
  timezone: string;
14017
14017
  location: {
@@ -14055,7 +14055,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14055
14055
  region: string;
14056
14056
  postalCode: string;
14057
14057
  country: string;
14058
- line2?: string | undefined;
14058
+ line2?: string | null | undefined;
14059
14059
  };
14060
14060
  timezone: string;
14061
14061
  location: {
@@ -14073,7 +14073,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14073
14073
  name: z.ZodString;
14074
14074
  address: z.ZodObject<{
14075
14075
  line1: z.ZodString;
14076
- line2: z.ZodOptional<z.ZodString>;
14076
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14077
14077
  city: z.ZodString;
14078
14078
  region: z.ZodString;
14079
14079
  postalCode: z.ZodString;
@@ -14084,14 +14084,14 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14084
14084
  region: string;
14085
14085
  postalCode: string;
14086
14086
  country: string;
14087
- line2?: string | undefined;
14087
+ line2?: string | null | undefined;
14088
14088
  }, {
14089
14089
  line1: string;
14090
14090
  city: string;
14091
14091
  region: string;
14092
14092
  postalCode: string;
14093
14093
  country: string;
14094
- line2?: string | undefined;
14094
+ line2?: string | null | undefined;
14095
14095
  }>;
14096
14096
  timezone: z.ZodString;
14097
14097
  location: z.ZodObject<{
@@ -14117,7 +14117,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14117
14117
  region: string;
14118
14118
  postalCode: string;
14119
14119
  country: string;
14120
- line2?: string | undefined;
14120
+ line2?: string | null | undefined;
14121
14121
  };
14122
14122
  timezone: string;
14123
14123
  location: {
@@ -14137,7 +14137,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14137
14137
  region: string;
14138
14138
  postalCode: string;
14139
14139
  country: string;
14140
- line2?: string | undefined;
14140
+ line2?: string | null | undefined;
14141
14141
  };
14142
14142
  timezone: string;
14143
14143
  location: {
@@ -14216,7 +14216,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14216
14216
  region: string;
14217
14217
  postalCode: string;
14218
14218
  country: string;
14219
- line2?: string | undefined;
14219
+ line2?: string | null | undefined;
14220
14220
  };
14221
14221
  timezone: string;
14222
14222
  location: {
@@ -14259,7 +14259,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14259
14259
  region: string;
14260
14260
  postalCode: string;
14261
14261
  country: string;
14262
- line2?: string | undefined;
14262
+ line2?: string | null | undefined;
14263
14263
  };
14264
14264
  timezone: string;
14265
14265
  location: {
@@ -14277,7 +14277,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14277
14277
  name: z.ZodString;
14278
14278
  address: z.ZodObject<{
14279
14279
  line1: z.ZodString;
14280
- line2: z.ZodOptional<z.ZodString>;
14280
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14281
14281
  city: z.ZodString;
14282
14282
  region: z.ZodString;
14283
14283
  postalCode: z.ZodString;
@@ -14288,14 +14288,14 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14288
14288
  region: string;
14289
14289
  postalCode: string;
14290
14290
  country: string;
14291
- line2?: string | undefined;
14291
+ line2?: string | null | undefined;
14292
14292
  }, {
14293
14293
  line1: string;
14294
14294
  city: string;
14295
14295
  region: string;
14296
14296
  postalCode: string;
14297
14297
  country: string;
14298
- line2?: string | undefined;
14298
+ line2?: string | null | undefined;
14299
14299
  }>;
14300
14300
  timezone: z.ZodString;
14301
14301
  location: z.ZodObject<{
@@ -14321,7 +14321,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14321
14321
  region: string;
14322
14322
  postalCode: string;
14323
14323
  country: string;
14324
- line2?: string | undefined;
14324
+ line2?: string | null | undefined;
14325
14325
  };
14326
14326
  timezone: string;
14327
14327
  location: {
@@ -14341,7 +14341,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14341
14341
  region: string;
14342
14342
  postalCode: string;
14343
14343
  country: string;
14344
- line2?: string | undefined;
14344
+ line2?: string | null | undefined;
14345
14345
  };
14346
14346
  timezone: string;
14347
14347
  location: {
@@ -14420,7 +14420,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14420
14420
  region: string;
14421
14421
  postalCode: string;
14422
14422
  country: string;
14423
- line2?: string | undefined;
14423
+ line2?: string | null | undefined;
14424
14424
  };
14425
14425
  timezone: string;
14426
14426
  location: {
@@ -14463,7 +14463,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14463
14463
  region: string;
14464
14464
  postalCode: string;
14465
14465
  country: string;
14466
- line2?: string | undefined;
14466
+ line2?: string | null | undefined;
14467
14467
  };
14468
14468
  timezone: string;
14469
14469
  location: {
@@ -14481,7 +14481,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14481
14481
  name: z.ZodString;
14482
14482
  address: z.ZodObject<{
14483
14483
  line1: z.ZodString;
14484
- line2: z.ZodOptional<z.ZodString>;
14484
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14485
14485
  city: z.ZodString;
14486
14486
  region: z.ZodString;
14487
14487
  postalCode: z.ZodString;
@@ -14492,14 +14492,14 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14492
14492
  region: string;
14493
14493
  postalCode: string;
14494
14494
  country: string;
14495
- line2?: string | undefined;
14495
+ line2?: string | null | undefined;
14496
14496
  }, {
14497
14497
  line1: string;
14498
14498
  city: string;
14499
14499
  region: string;
14500
14500
  postalCode: string;
14501
14501
  country: string;
14502
- line2?: string | undefined;
14502
+ line2?: string | null | undefined;
14503
14503
  }>;
14504
14504
  timezone: z.ZodString;
14505
14505
  location: z.ZodObject<{
@@ -14525,7 +14525,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14525
14525
  region: string;
14526
14526
  postalCode: string;
14527
14527
  country: string;
14528
- line2?: string | undefined;
14528
+ line2?: string | null | undefined;
14529
14529
  };
14530
14530
  timezone: string;
14531
14531
  location: {
@@ -14545,7 +14545,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14545
14545
  region: string;
14546
14546
  postalCode: string;
14547
14547
  country: string;
14548
- line2?: string | undefined;
14548
+ line2?: string | null | undefined;
14549
14549
  };
14550
14550
  timezone: string;
14551
14551
  location: {
@@ -14632,7 +14632,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14632
14632
  region: string;
14633
14633
  postalCode: string;
14634
14634
  country: string;
14635
- line2?: string | undefined;
14635
+ line2?: string | null | undefined;
14636
14636
  };
14637
14637
  timezone: string;
14638
14638
  location: {
@@ -14677,7 +14677,7 @@ declare const updateIntegrationActivationRequestResponseSchema: z.ZodDiscriminat
14677
14677
  region: string;
14678
14678
  postalCode: string;
14679
14679
  country: string;
14680
- line2?: string | undefined;
14680
+ line2?: string | null | undefined;
14681
14681
  };
14682
14682
  timezone: string;
14683
14683
  location: {
@@ -14877,7 +14877,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
14877
14877
  name: z.ZodString;
14878
14878
  address: z.ZodObject<{
14879
14879
  line1: z.ZodString;
14880
- line2: z.ZodOptional<z.ZodString>;
14880
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14881
14881
  city: z.ZodString;
14882
14882
  region: z.ZodString;
14883
14883
  postalCode: z.ZodString;
@@ -14888,14 +14888,14 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
14888
14888
  region: string;
14889
14889
  postalCode: string;
14890
14890
  country: string;
14891
- line2?: string | undefined;
14891
+ line2?: string | null | undefined;
14892
14892
  }, {
14893
14893
  line1: string;
14894
14894
  city: string;
14895
14895
  region: string;
14896
14896
  postalCode: string;
14897
14897
  country: string;
14898
- line2?: string | undefined;
14898
+ line2?: string | null | undefined;
14899
14899
  }>;
14900
14900
  timezone: z.ZodString;
14901
14901
  location: z.ZodObject<{
@@ -14921,7 +14921,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
14921
14921
  region: string;
14922
14922
  postalCode: string;
14923
14923
  country: string;
14924
- line2?: string | undefined;
14924
+ line2?: string | null | undefined;
14925
14925
  };
14926
14926
  timezone: string;
14927
14927
  location: {
@@ -14941,7 +14941,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
14941
14941
  region: string;
14942
14942
  postalCode: string;
14943
14943
  country: string;
14944
- line2?: string | undefined;
14944
+ line2?: string | null | undefined;
14945
14945
  };
14946
14946
  timezone: string;
14947
14947
  location: {
@@ -15024,7 +15024,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15024
15024
  region: string;
15025
15025
  postalCode: string;
15026
15026
  country: string;
15027
- line2?: string | undefined;
15027
+ line2?: string | null | undefined;
15028
15028
  };
15029
15029
  timezone: string;
15030
15030
  location: {
@@ -15068,7 +15068,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15068
15068
  region: string;
15069
15069
  postalCode: string;
15070
15070
  country: string;
15071
- line2?: string | undefined;
15071
+ line2?: string | null | undefined;
15072
15072
  };
15073
15073
  timezone: string;
15074
15074
  location: {
@@ -15086,7 +15086,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15086
15086
  name: z.ZodString;
15087
15087
  address: z.ZodObject<{
15088
15088
  line1: z.ZodString;
15089
- line2: z.ZodOptional<z.ZodString>;
15089
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15090
15090
  city: z.ZodString;
15091
15091
  region: z.ZodString;
15092
15092
  postalCode: z.ZodString;
@@ -15097,14 +15097,14 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15097
15097
  region: string;
15098
15098
  postalCode: string;
15099
15099
  country: string;
15100
- line2?: string | undefined;
15100
+ line2?: string | null | undefined;
15101
15101
  }, {
15102
15102
  line1: string;
15103
15103
  city: string;
15104
15104
  region: string;
15105
15105
  postalCode: string;
15106
15106
  country: string;
15107
- line2?: string | undefined;
15107
+ line2?: string | null | undefined;
15108
15108
  }>;
15109
15109
  timezone: z.ZodString;
15110
15110
  location: z.ZodObject<{
@@ -15130,7 +15130,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15130
15130
  region: string;
15131
15131
  postalCode: string;
15132
15132
  country: string;
15133
- line2?: string | undefined;
15133
+ line2?: string | null | undefined;
15134
15134
  };
15135
15135
  timezone: string;
15136
15136
  location: {
@@ -15150,7 +15150,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15150
15150
  region: string;
15151
15151
  postalCode: string;
15152
15152
  country: string;
15153
- line2?: string | undefined;
15153
+ line2?: string | null | undefined;
15154
15154
  };
15155
15155
  timezone: string;
15156
15156
  location: {
@@ -15229,7 +15229,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15229
15229
  region: string;
15230
15230
  postalCode: string;
15231
15231
  country: string;
15232
- line2?: string | undefined;
15232
+ line2?: string | null | undefined;
15233
15233
  };
15234
15234
  timezone: string;
15235
15235
  location: {
@@ -15272,7 +15272,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15272
15272
  region: string;
15273
15273
  postalCode: string;
15274
15274
  country: string;
15275
- line2?: string | undefined;
15275
+ line2?: string | null | undefined;
15276
15276
  };
15277
15277
  timezone: string;
15278
15278
  location: {
@@ -15290,7 +15290,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15290
15290
  name: z.ZodString;
15291
15291
  address: z.ZodObject<{
15292
15292
  line1: z.ZodString;
15293
- line2: z.ZodOptional<z.ZodString>;
15293
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15294
15294
  city: z.ZodString;
15295
15295
  region: z.ZodString;
15296
15296
  postalCode: z.ZodString;
@@ -15301,14 +15301,14 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15301
15301
  region: string;
15302
15302
  postalCode: string;
15303
15303
  country: string;
15304
- line2?: string | undefined;
15304
+ line2?: string | null | undefined;
15305
15305
  }, {
15306
15306
  line1: string;
15307
15307
  city: string;
15308
15308
  region: string;
15309
15309
  postalCode: string;
15310
15310
  country: string;
15311
- line2?: string | undefined;
15311
+ line2?: string | null | undefined;
15312
15312
  }>;
15313
15313
  timezone: z.ZodString;
15314
15314
  location: z.ZodObject<{
@@ -15334,7 +15334,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15334
15334
  region: string;
15335
15335
  postalCode: string;
15336
15336
  country: string;
15337
- line2?: string | undefined;
15337
+ line2?: string | null | undefined;
15338
15338
  };
15339
15339
  timezone: string;
15340
15340
  location: {
@@ -15354,7 +15354,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15354
15354
  region: string;
15355
15355
  postalCode: string;
15356
15356
  country: string;
15357
- line2?: string | undefined;
15357
+ line2?: string | null | undefined;
15358
15358
  };
15359
15359
  timezone: string;
15360
15360
  location: {
@@ -15433,7 +15433,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15433
15433
  region: string;
15434
15434
  postalCode: string;
15435
15435
  country: string;
15436
- line2?: string | undefined;
15436
+ line2?: string | null | undefined;
15437
15437
  };
15438
15438
  timezone: string;
15439
15439
  location: {
@@ -15476,7 +15476,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15476
15476
  region: string;
15477
15477
  postalCode: string;
15478
15478
  country: string;
15479
- line2?: string | undefined;
15479
+ line2?: string | null | undefined;
15480
15480
  };
15481
15481
  timezone: string;
15482
15482
  location: {
@@ -15494,7 +15494,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15494
15494
  name: z.ZodString;
15495
15495
  address: z.ZodObject<{
15496
15496
  line1: z.ZodString;
15497
- line2: z.ZodOptional<z.ZodString>;
15497
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15498
15498
  city: z.ZodString;
15499
15499
  region: z.ZodString;
15500
15500
  postalCode: z.ZodString;
@@ -15505,14 +15505,14 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15505
15505
  region: string;
15506
15506
  postalCode: string;
15507
15507
  country: string;
15508
- line2?: string | undefined;
15508
+ line2?: string | null | undefined;
15509
15509
  }, {
15510
15510
  line1: string;
15511
15511
  city: string;
15512
15512
  region: string;
15513
15513
  postalCode: string;
15514
15514
  country: string;
15515
- line2?: string | undefined;
15515
+ line2?: string | null | undefined;
15516
15516
  }>;
15517
15517
  timezone: z.ZodString;
15518
15518
  location: z.ZodObject<{
@@ -15538,7 +15538,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15538
15538
  region: string;
15539
15539
  postalCode: string;
15540
15540
  country: string;
15541
- line2?: string | undefined;
15541
+ line2?: string | null | undefined;
15542
15542
  };
15543
15543
  timezone: string;
15544
15544
  location: {
@@ -15558,7 +15558,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15558
15558
  region: string;
15559
15559
  postalCode: string;
15560
15560
  country: string;
15561
- line2?: string | undefined;
15561
+ line2?: string | null | undefined;
15562
15562
  };
15563
15563
  timezone: string;
15564
15564
  location: {
@@ -15645,7 +15645,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15645
15645
  region: string;
15646
15646
  postalCode: string;
15647
15647
  country: string;
15648
- line2?: string | undefined;
15648
+ line2?: string | null | undefined;
15649
15649
  };
15650
15650
  timezone: string;
15651
15651
  location: {
@@ -15690,7 +15690,7 @@ declare class UpdateIntegrationActivationRequest extends AbstractApiRequest<Upda
15690
15690
  region: string;
15691
15691
  postalCode: string;
15692
15692
  country: string;
15693
- line2?: string | undefined;
15693
+ line2?: string | null | undefined;
15694
15694
  };
15695
15695
  timezone: string;
15696
15696
  location: {