@deliverart/sdk-js-customer 0.0.2 → 0.0.4

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
@@ -154,7 +154,7 @@ declare const customerAddressSchema: z.ZodObject<{
154
154
  id: z.ZodString;
155
155
  address: z.ZodObject<{
156
156
  line1: z.ZodString;
157
- line2: z.ZodOptional<z.ZodString>;
157
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
158
158
  city: z.ZodString;
159
159
  region: z.ZodString;
160
160
  postalCode: z.ZodString;
@@ -165,14 +165,14 @@ declare const customerAddressSchema: z.ZodObject<{
165
165
  region: string;
166
166
  postalCode: string;
167
167
  country: string;
168
- line2?: string | undefined;
168
+ line2?: string | null | undefined;
169
169
  }, {
170
170
  line1: string;
171
171
  city: string;
172
172
  region: string;
173
173
  postalCode: string;
174
174
  country: string;
175
- line2?: string | undefined;
175
+ line2?: string | null | undefined;
176
176
  }>;
177
177
  location: z.ZodObject<{
178
178
  latitude: z.ZodNumber;
@@ -196,7 +196,7 @@ declare const customerAddressSchema: z.ZodObject<{
196
196
  region: string;
197
197
  postalCode: string;
198
198
  country: string;
199
- line2?: string | undefined;
199
+ line2?: string | null | undefined;
200
200
  };
201
201
  location: {
202
202
  latitude: number;
@@ -212,7 +212,7 @@ declare const customerAddressSchema: z.ZodObject<{
212
212
  region: string;
213
213
  postalCode: string;
214
214
  country: string;
215
- line2?: string | undefined;
215
+ line2?: string | null | undefined;
216
216
  };
217
217
  location: {
218
218
  latitude: number;
@@ -224,7 +224,7 @@ declare const customerAddressDetailsSchema: z.ZodObject<{
224
224
  id: z.ZodString;
225
225
  address: z.ZodObject<{
226
226
  line1: z.ZodString;
227
- line2: z.ZodOptional<z.ZodString>;
227
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
228
228
  city: z.ZodString;
229
229
  region: z.ZodString;
230
230
  postalCode: z.ZodString;
@@ -235,14 +235,14 @@ declare const customerAddressDetailsSchema: z.ZodObject<{
235
235
  region: string;
236
236
  postalCode: string;
237
237
  country: string;
238
- line2?: string | undefined;
238
+ line2?: string | null | undefined;
239
239
  }, {
240
240
  line1: string;
241
241
  city: string;
242
242
  region: string;
243
243
  postalCode: string;
244
244
  country: string;
245
- line2?: string | undefined;
245
+ line2?: string | null | undefined;
246
246
  }>;
247
247
  location: z.ZodObject<{
248
248
  latitude: z.ZodNumber;
@@ -268,7 +268,7 @@ declare const customerAddressDetailsSchema: z.ZodObject<{
268
268
  region: string;
269
269
  postalCode: string;
270
270
  country: string;
271
- line2?: string | undefined;
271
+ line2?: string | null | undefined;
272
272
  };
273
273
  location: {
274
274
  latitude: number;
@@ -285,7 +285,7 @@ declare const customerAddressDetailsSchema: z.ZodObject<{
285
285
  region: string;
286
286
  postalCode: string;
287
287
  country: string;
288
- line2?: string | undefined;
288
+ line2?: string | null | undefined;
289
289
  };
290
290
  location: {
291
291
  latitude: number;
@@ -298,7 +298,7 @@ declare const writableCreateCustomerAddressSchema: z.ZodObject<Pick<{
298
298
  id: z.ZodString;
299
299
  address: z.ZodObject<{
300
300
  line1: z.ZodString;
301
- line2: z.ZodOptional<z.ZodString>;
301
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
302
302
  city: z.ZodString;
303
303
  region: z.ZodString;
304
304
  postalCode: z.ZodString;
@@ -309,14 +309,14 @@ declare const writableCreateCustomerAddressSchema: z.ZodObject<Pick<{
309
309
  region: string;
310
310
  postalCode: string;
311
311
  country: string;
312
- line2?: string | undefined;
312
+ line2?: string | null | undefined;
313
313
  }, {
314
314
  line1: string;
315
315
  city: string;
316
316
  region: string;
317
317
  postalCode: string;
318
318
  country: string;
319
- line2?: string | undefined;
319
+ line2?: string | null | undefined;
320
320
  }>;
321
321
  location: z.ZodObject<{
322
322
  latitude: z.ZodNumber;
@@ -339,7 +339,7 @@ declare const writableCreateCustomerAddressSchema: z.ZodObject<Pick<{
339
339
  region: string;
340
340
  postalCode: string;
341
341
  country: string;
342
- line2?: string | undefined;
342
+ line2?: string | null | undefined;
343
343
  };
344
344
  customer: string;
345
345
  }, {
@@ -349,7 +349,7 @@ declare const writableCreateCustomerAddressSchema: z.ZodObject<Pick<{
349
349
  region: string;
350
350
  postalCode: string;
351
351
  country: string;
352
- line2?: string | undefined;
352
+ line2?: string | null | undefined;
353
353
  };
354
354
  customer: string;
355
355
  }>;
@@ -357,7 +357,7 @@ declare const writableCustomerAddressSchema: z.ZodObject<Omit<Pick<{
357
357
  id: z.ZodString;
358
358
  address: z.ZodObject<{
359
359
  line1: z.ZodString;
360
- line2: z.ZodOptional<z.ZodString>;
360
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
361
361
  city: z.ZodString;
362
362
  region: z.ZodString;
363
363
  postalCode: z.ZodString;
@@ -368,14 +368,14 @@ declare const writableCustomerAddressSchema: z.ZodObject<Omit<Pick<{
368
368
  region: string;
369
369
  postalCode: string;
370
370
  country: string;
371
- line2?: string | undefined;
371
+ line2?: string | null | undefined;
372
372
  }, {
373
373
  line1: string;
374
374
  city: string;
375
375
  region: string;
376
376
  postalCode: string;
377
377
  country: string;
378
- line2?: string | undefined;
378
+ line2?: string | null | undefined;
379
379
  }>;
380
380
  location: z.ZodObject<{
381
381
  latitude: z.ZodNumber;
@@ -398,7 +398,7 @@ declare const writableCustomerAddressSchema: z.ZodObject<Omit<Pick<{
398
398
  region: string;
399
399
  postalCode: string;
400
400
  country: string;
401
- line2?: string | undefined;
401
+ line2?: string | null | undefined;
402
402
  };
403
403
  }, {
404
404
  address: {
@@ -407,7 +407,7 @@ declare const writableCustomerAddressSchema: z.ZodObject<Omit<Pick<{
407
407
  region: string;
408
408
  postalCode: string;
409
409
  country: string;
410
- line2?: string | undefined;
410
+ line2?: string | null | undefined;
411
411
  };
412
412
  }>;
413
413
  declare const customerBusinessProfileSchema: z.ZodObject<{
@@ -417,7 +417,7 @@ declare const customerBusinessProfileSchema: z.ZodObject<{
417
417
  taxCode: z.ZodString;
418
418
  billingAddress: z.ZodObject<{
419
419
  line1: z.ZodString;
420
- line2: z.ZodOptional<z.ZodString>;
420
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
421
421
  city: z.ZodString;
422
422
  region: z.ZodString;
423
423
  postalCode: z.ZodString;
@@ -428,14 +428,14 @@ declare const customerBusinessProfileSchema: z.ZodObject<{
428
428
  region: string;
429
429
  postalCode: string;
430
430
  country: string;
431
- line2?: string | undefined;
431
+ line2?: string | null | undefined;
432
432
  }, {
433
433
  line1: string;
434
434
  city: string;
435
435
  region: string;
436
436
  postalCode: string;
437
437
  country: string;
438
- line2?: string | undefined;
438
+ line2?: string | null | undefined;
439
439
  }>;
440
440
  billingData: z.ZodEffects<z.ZodObject<{
441
441
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -468,7 +468,7 @@ declare const customerBusinessProfileSchema: z.ZodObject<{
468
468
  region: string;
469
469
  postalCode: string;
470
470
  country: string;
471
- line2?: string | undefined;
471
+ line2?: string | null | undefined;
472
472
  };
473
473
  billingData: {
474
474
  sdi?: string | null | undefined;
@@ -487,7 +487,7 @@ declare const customerBusinessProfileSchema: z.ZodObject<{
487
487
  region: string;
488
488
  postalCode: string;
489
489
  country: string;
490
- line2?: string | undefined;
490
+ line2?: string | null | undefined;
491
491
  };
492
492
  billingData: {
493
493
  sdi?: string | null | undefined;
@@ -502,7 +502,7 @@ declare const customerBusinessProfileDetailsSchema: z.ZodObject<{
502
502
  taxCode: z.ZodString;
503
503
  billingAddress: z.ZodObject<{
504
504
  line1: z.ZodString;
505
- line2: z.ZodOptional<z.ZodString>;
505
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
506
506
  city: z.ZodString;
507
507
  region: z.ZodString;
508
508
  postalCode: z.ZodString;
@@ -513,14 +513,14 @@ declare const customerBusinessProfileDetailsSchema: z.ZodObject<{
513
513
  region: string;
514
514
  postalCode: string;
515
515
  country: string;
516
- line2?: string | undefined;
516
+ line2?: string | null | undefined;
517
517
  }, {
518
518
  line1: string;
519
519
  city: string;
520
520
  region: string;
521
521
  postalCode: string;
522
522
  country: string;
523
- line2?: string | undefined;
523
+ line2?: string | null | undefined;
524
524
  }>;
525
525
  billingData: z.ZodEffects<z.ZodObject<{
526
526
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -556,7 +556,7 @@ declare const customerBusinessProfileDetailsSchema: z.ZodObject<{
556
556
  region: string;
557
557
  postalCode: string;
558
558
  country: string;
559
- line2?: string | undefined;
559
+ line2?: string | null | undefined;
560
560
  };
561
561
  billingData: {
562
562
  sdi?: string | null | undefined;
@@ -576,7 +576,7 @@ declare const customerBusinessProfileDetailsSchema: z.ZodObject<{
576
576
  region: string;
577
577
  postalCode: string;
578
578
  country: string;
579
- line2?: string | undefined;
579
+ line2?: string | null | undefined;
580
580
  };
581
581
  billingData: {
582
582
  sdi?: string | null | undefined;
@@ -591,7 +591,7 @@ declare const writableCreateCustomerBusinessProfileSchema: z.ZodObject<Pick<{
591
591
  taxCode: z.ZodString;
592
592
  billingAddress: z.ZodObject<{
593
593
  line1: z.ZodString;
594
- line2: z.ZodOptional<z.ZodString>;
594
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
595
595
  city: z.ZodString;
596
596
  region: z.ZodString;
597
597
  postalCode: z.ZodString;
@@ -602,14 +602,14 @@ declare const writableCreateCustomerBusinessProfileSchema: z.ZodObject<Pick<{
602
602
  region: string;
603
603
  postalCode: string;
604
604
  country: string;
605
- line2?: string | undefined;
605
+ line2?: string | null | undefined;
606
606
  }, {
607
607
  line1: string;
608
608
  city: string;
609
609
  region: string;
610
610
  postalCode: string;
611
611
  country: string;
612
- line2?: string | undefined;
612
+ line2?: string | null | undefined;
613
613
  }>;
614
614
  billingData: z.ZodEffects<z.ZodObject<{
615
615
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -642,7 +642,7 @@ declare const writableCreateCustomerBusinessProfileSchema: z.ZodObject<Pick<{
642
642
  region: string;
643
643
  postalCode: string;
644
644
  country: string;
645
- line2?: string | undefined;
645
+ line2?: string | null | undefined;
646
646
  };
647
647
  billingData: {
648
648
  sdi?: string | null | undefined;
@@ -659,7 +659,7 @@ declare const writableCreateCustomerBusinessProfileSchema: z.ZodObject<Pick<{
659
659
  region: string;
660
660
  postalCode: string;
661
661
  country: string;
662
- line2?: string | undefined;
662
+ line2?: string | null | undefined;
663
663
  };
664
664
  billingData: {
665
665
  sdi?: string | null | undefined;
@@ -673,7 +673,7 @@ declare const writableCustomerBusinessProfileSchema: z.ZodObject<Omit<Pick<{
673
673
  taxCode: z.ZodString;
674
674
  billingAddress: z.ZodObject<{
675
675
  line1: z.ZodString;
676
- line2: z.ZodOptional<z.ZodString>;
676
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
677
677
  city: z.ZodString;
678
678
  region: z.ZodString;
679
679
  postalCode: z.ZodString;
@@ -684,14 +684,14 @@ declare const writableCustomerBusinessProfileSchema: z.ZodObject<Omit<Pick<{
684
684
  region: string;
685
685
  postalCode: string;
686
686
  country: string;
687
- line2?: string | undefined;
687
+ line2?: string | null | undefined;
688
688
  }, {
689
689
  line1: string;
690
690
  city: string;
691
691
  region: string;
692
692
  postalCode: string;
693
693
  country: string;
694
- line2?: string | undefined;
694
+ line2?: string | null | undefined;
695
695
  }>;
696
696
  billingData: z.ZodEffects<z.ZodObject<{
697
697
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -723,7 +723,7 @@ declare const writableCustomerBusinessProfileSchema: z.ZodObject<Omit<Pick<{
723
723
  region: string;
724
724
  postalCode: string;
725
725
  country: string;
726
- line2?: string | undefined;
726
+ line2?: string | null | undefined;
727
727
  };
728
728
  billingData: {
729
729
  sdi?: string | null | undefined;
@@ -739,7 +739,7 @@ declare const writableCustomerBusinessProfileSchema: z.ZodObject<Omit<Pick<{
739
739
  region: string;
740
740
  postalCode: string;
741
741
  country: string;
742
- line2?: string | undefined;
742
+ line2?: string | null | undefined;
743
743
  };
744
744
  billingData: {
745
745
  sdi?: string | null | undefined;
@@ -750,7 +750,7 @@ declare const writableCustomerBusinessProfileSchema: z.ZodObject<Omit<Pick<{
750
750
  declare const createCustomerAddressInputSchema: z.ZodObject<{
751
751
  address: z.ZodObject<{
752
752
  line1: z.ZodString;
753
- line2: z.ZodOptional<z.ZodString>;
753
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
754
754
  city: z.ZodString;
755
755
  region: z.ZodString;
756
756
  postalCode: z.ZodString;
@@ -761,14 +761,14 @@ declare const createCustomerAddressInputSchema: z.ZodObject<{
761
761
  region: string;
762
762
  postalCode: string;
763
763
  country: string;
764
- line2?: string | undefined;
764
+ line2?: string | null | undefined;
765
765
  }, {
766
766
  line1: string;
767
767
  city: string;
768
768
  region: string;
769
769
  postalCode: string;
770
770
  country: string;
771
- line2?: string | undefined;
771
+ line2?: string | null | undefined;
772
772
  }>;
773
773
  customer: z.ZodEffects<z.ZodString, string, string>;
774
774
  }, "strip", z.ZodTypeAny, {
@@ -778,7 +778,7 @@ declare const createCustomerAddressInputSchema: z.ZodObject<{
778
778
  region: string;
779
779
  postalCode: string;
780
780
  country: string;
781
- line2?: string | undefined;
781
+ line2?: string | null | undefined;
782
782
  };
783
783
  customer: string;
784
784
  }, {
@@ -788,7 +788,7 @@ declare const createCustomerAddressInputSchema: z.ZodObject<{
788
788
  region: string;
789
789
  postalCode: string;
790
790
  country: string;
791
- line2?: string | undefined;
791
+ line2?: string | null | undefined;
792
792
  };
793
793
  customer: string;
794
794
  }>;
@@ -797,7 +797,7 @@ declare const createCustomerAddressResponseSchema: z.ZodObject<{
797
797
  id: z.ZodString;
798
798
  address: z.ZodObject<{
799
799
  line1: z.ZodString;
800
- line2: z.ZodOptional<z.ZodString>;
800
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
801
801
  city: z.ZodString;
802
802
  region: z.ZodString;
803
803
  postalCode: z.ZodString;
@@ -808,14 +808,14 @@ declare const createCustomerAddressResponseSchema: z.ZodObject<{
808
808
  region: string;
809
809
  postalCode: string;
810
810
  country: string;
811
- line2?: string | undefined;
811
+ line2?: string | null | undefined;
812
812
  }, {
813
813
  line1: string;
814
814
  city: string;
815
815
  region: string;
816
816
  postalCode: string;
817
817
  country: string;
818
- line2?: string | undefined;
818
+ line2?: string | null | undefined;
819
819
  }>;
820
820
  location: z.ZodObject<{
821
821
  latitude: z.ZodNumber;
@@ -841,7 +841,7 @@ declare const createCustomerAddressResponseSchema: z.ZodObject<{
841
841
  region: string;
842
842
  postalCode: string;
843
843
  country: string;
844
- line2?: string | undefined;
844
+ line2?: string | null | undefined;
845
845
  };
846
846
  location: {
847
847
  latitude: number;
@@ -858,7 +858,7 @@ declare const createCustomerAddressResponseSchema: z.ZodObject<{
858
858
  region: string;
859
859
  postalCode: string;
860
860
  country: string;
861
- line2?: string | undefined;
861
+ line2?: string | null | undefined;
862
862
  };
863
863
  location: {
864
864
  latitude: number;
@@ -874,7 +874,7 @@ declare class CreateCustomerAddress extends AbstractApiRequest<CreateCustomerAdd
874
874
  readonly inputSchema: z.ZodObject<{
875
875
  address: z.ZodObject<{
876
876
  line1: z.ZodString;
877
- line2: z.ZodOptional<z.ZodString>;
877
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
878
878
  city: z.ZodString;
879
879
  region: z.ZodString;
880
880
  postalCode: z.ZodString;
@@ -885,14 +885,14 @@ declare class CreateCustomerAddress extends AbstractApiRequest<CreateCustomerAdd
885
885
  region: string;
886
886
  postalCode: string;
887
887
  country: string;
888
- line2?: string | undefined;
888
+ line2?: string | null | undefined;
889
889
  }, {
890
890
  line1: string;
891
891
  city: string;
892
892
  region: string;
893
893
  postalCode: string;
894
894
  country: string;
895
- line2?: string | undefined;
895
+ line2?: string | null | undefined;
896
896
  }>;
897
897
  customer: z.ZodEffects<z.ZodString, string, string>;
898
898
  }, "strip", z.ZodTypeAny, {
@@ -902,7 +902,7 @@ declare class CreateCustomerAddress extends AbstractApiRequest<CreateCustomerAdd
902
902
  region: string;
903
903
  postalCode: string;
904
904
  country: string;
905
- line2?: string | undefined;
905
+ line2?: string | null | undefined;
906
906
  };
907
907
  customer: string;
908
908
  }, {
@@ -912,7 +912,7 @@ declare class CreateCustomerAddress extends AbstractApiRequest<CreateCustomerAdd
912
912
  region: string;
913
913
  postalCode: string;
914
914
  country: string;
915
- line2?: string | undefined;
915
+ line2?: string | null | undefined;
916
916
  };
917
917
  customer: string;
918
918
  }>;
@@ -920,7 +920,7 @@ declare class CreateCustomerAddress extends AbstractApiRequest<CreateCustomerAdd
920
920
  id: z.ZodString;
921
921
  address: z.ZodObject<{
922
922
  line1: z.ZodString;
923
- line2: z.ZodOptional<z.ZodString>;
923
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
924
924
  city: z.ZodString;
925
925
  region: z.ZodString;
926
926
  postalCode: z.ZodString;
@@ -931,14 +931,14 @@ declare class CreateCustomerAddress extends AbstractApiRequest<CreateCustomerAdd
931
931
  region: string;
932
932
  postalCode: string;
933
933
  country: string;
934
- line2?: string | undefined;
934
+ line2?: string | null | undefined;
935
935
  }, {
936
936
  line1: string;
937
937
  city: string;
938
938
  region: string;
939
939
  postalCode: string;
940
940
  country: string;
941
- line2?: string | undefined;
941
+ line2?: string | null | undefined;
942
942
  }>;
943
943
  location: z.ZodObject<{
944
944
  latitude: z.ZodNumber;
@@ -964,7 +964,7 @@ declare class CreateCustomerAddress extends AbstractApiRequest<CreateCustomerAdd
964
964
  region: string;
965
965
  postalCode: string;
966
966
  country: string;
967
- line2?: string | undefined;
967
+ line2?: string | null | undefined;
968
968
  };
969
969
  location: {
970
970
  latitude: number;
@@ -981,7 +981,7 @@ declare class CreateCustomerAddress extends AbstractApiRequest<CreateCustomerAdd
981
981
  region: string;
982
982
  postalCode: string;
983
983
  country: string;
984
- line2?: string | undefined;
984
+ line2?: string | null | undefined;
985
985
  };
986
986
  location: {
987
987
  latitude: number;
@@ -1015,7 +1015,7 @@ declare const getCustomerAddressDetailsResponseSchema: z.ZodObject<{
1015
1015
  id: z.ZodString;
1016
1016
  address: z.ZodObject<{
1017
1017
  line1: z.ZodString;
1018
- line2: z.ZodOptional<z.ZodString>;
1018
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1019
1019
  city: z.ZodString;
1020
1020
  region: z.ZodString;
1021
1021
  postalCode: z.ZodString;
@@ -1026,14 +1026,14 @@ declare const getCustomerAddressDetailsResponseSchema: z.ZodObject<{
1026
1026
  region: string;
1027
1027
  postalCode: string;
1028
1028
  country: string;
1029
- line2?: string | undefined;
1029
+ line2?: string | null | undefined;
1030
1030
  }, {
1031
1031
  line1: string;
1032
1032
  city: string;
1033
1033
  region: string;
1034
1034
  postalCode: string;
1035
1035
  country: string;
1036
- line2?: string | undefined;
1036
+ line2?: string | null | undefined;
1037
1037
  }>;
1038
1038
  location: z.ZodObject<{
1039
1039
  latitude: z.ZodNumber;
@@ -1059,7 +1059,7 @@ declare const getCustomerAddressDetailsResponseSchema: z.ZodObject<{
1059
1059
  region: string;
1060
1060
  postalCode: string;
1061
1061
  country: string;
1062
- line2?: string | undefined;
1062
+ line2?: string | null | undefined;
1063
1063
  };
1064
1064
  location: {
1065
1065
  latitude: number;
@@ -1076,7 +1076,7 @@ declare const getCustomerAddressDetailsResponseSchema: z.ZodObject<{
1076
1076
  region: string;
1077
1077
  postalCode: string;
1078
1078
  country: string;
1079
- line2?: string | undefined;
1079
+ line2?: string | null | undefined;
1080
1080
  };
1081
1081
  location: {
1082
1082
  latitude: number;
@@ -1094,7 +1094,7 @@ declare class GetCustomerAddressDetails extends AbstractApiRequest<void, GetCust
1094
1094
  id: z.ZodString;
1095
1095
  address: z.ZodObject<{
1096
1096
  line1: z.ZodString;
1097
- line2: z.ZodOptional<z.ZodString>;
1097
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1098
1098
  city: z.ZodString;
1099
1099
  region: z.ZodString;
1100
1100
  postalCode: z.ZodString;
@@ -1105,14 +1105,14 @@ declare class GetCustomerAddressDetails extends AbstractApiRequest<void, GetCust
1105
1105
  region: string;
1106
1106
  postalCode: string;
1107
1107
  country: string;
1108
- line2?: string | undefined;
1108
+ line2?: string | null | undefined;
1109
1109
  }, {
1110
1110
  line1: string;
1111
1111
  city: string;
1112
1112
  region: string;
1113
1113
  postalCode: string;
1114
1114
  country: string;
1115
- line2?: string | undefined;
1115
+ line2?: string | null | undefined;
1116
1116
  }>;
1117
1117
  location: z.ZodObject<{
1118
1118
  latitude: z.ZodNumber;
@@ -1138,7 +1138,7 @@ declare class GetCustomerAddressDetails extends AbstractApiRequest<void, GetCust
1138
1138
  region: string;
1139
1139
  postalCode: string;
1140
1140
  country: string;
1141
- line2?: string | undefined;
1141
+ line2?: string | null | undefined;
1142
1142
  };
1143
1143
  location: {
1144
1144
  latitude: number;
@@ -1155,7 +1155,7 @@ declare class GetCustomerAddressDetails extends AbstractApiRequest<void, GetCust
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
  location: {
1161
1161
  latitude: number;
@@ -1214,7 +1214,7 @@ declare const getCustomerAddressesResponseSchema: z.ZodObject<{
1214
1214
  id: z.ZodString;
1215
1215
  address: z.ZodObject<{
1216
1216
  line1: z.ZodString;
1217
- line2: z.ZodOptional<z.ZodString>;
1217
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1218
1218
  city: z.ZodString;
1219
1219
  region: z.ZodString;
1220
1220
  postalCode: z.ZodString;
@@ -1225,14 +1225,14 @@ declare const getCustomerAddressesResponseSchema: z.ZodObject<{
1225
1225
  region: string;
1226
1226
  postalCode: string;
1227
1227
  country: string;
1228
- line2?: string | undefined;
1228
+ line2?: string | null | undefined;
1229
1229
  }, {
1230
1230
  line1: string;
1231
1231
  city: string;
1232
1232
  region: string;
1233
1233
  postalCode: string;
1234
1234
  country: string;
1235
- line2?: string | undefined;
1235
+ line2?: string | null | undefined;
1236
1236
  }>;
1237
1237
  location: z.ZodObject<{
1238
1238
  latitude: z.ZodNumber;
@@ -1256,7 +1256,7 @@ declare const getCustomerAddressesResponseSchema: z.ZodObject<{
1256
1256
  region: string;
1257
1257
  postalCode: string;
1258
1258
  country: string;
1259
- line2?: string | undefined;
1259
+ line2?: string | null | undefined;
1260
1260
  };
1261
1261
  location: {
1262
1262
  latitude: number;
@@ -1272,7 +1272,7 @@ declare const getCustomerAddressesResponseSchema: z.ZodObject<{
1272
1272
  region: string;
1273
1273
  postalCode: string;
1274
1274
  country: string;
1275
- line2?: string | undefined;
1275
+ line2?: string | null | undefined;
1276
1276
  };
1277
1277
  location: {
1278
1278
  latitude: number;
@@ -1312,7 +1312,7 @@ declare const getCustomerAddressesResponseSchema: z.ZodObject<{
1312
1312
  region: string;
1313
1313
  postalCode: string;
1314
1314
  country: string;
1315
- line2?: string | undefined;
1315
+ line2?: string | null | undefined;
1316
1316
  };
1317
1317
  location: {
1318
1318
  latitude: number;
@@ -1338,7 +1338,7 @@ declare const getCustomerAddressesResponseSchema: z.ZodObject<{
1338
1338
  region: string;
1339
1339
  postalCode: string;
1340
1340
  country: string;
1341
- line2?: string | undefined;
1341
+ line2?: string | null | undefined;
1342
1342
  };
1343
1343
  location: {
1344
1344
  latitude: number;
@@ -1366,7 +1366,7 @@ declare class GetCustomerAddresses extends AbstractApiRequest<void, GetCustomerA
1366
1366
  id: z.ZodString;
1367
1367
  address: z.ZodObject<{
1368
1368
  line1: z.ZodString;
1369
- line2: z.ZodOptional<z.ZodString>;
1369
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1370
1370
  city: z.ZodString;
1371
1371
  region: z.ZodString;
1372
1372
  postalCode: z.ZodString;
@@ -1377,14 +1377,14 @@ declare class GetCustomerAddresses extends AbstractApiRequest<void, GetCustomerA
1377
1377
  region: string;
1378
1378
  postalCode: string;
1379
1379
  country: string;
1380
- line2?: string | undefined;
1380
+ line2?: string | null | undefined;
1381
1381
  }, {
1382
1382
  line1: string;
1383
1383
  city: string;
1384
1384
  region: string;
1385
1385
  postalCode: string;
1386
1386
  country: string;
1387
- line2?: string | undefined;
1387
+ line2?: string | null | undefined;
1388
1388
  }>;
1389
1389
  location: z.ZodObject<{
1390
1390
  latitude: z.ZodNumber;
@@ -1408,7 +1408,7 @@ declare class GetCustomerAddresses extends AbstractApiRequest<void, GetCustomerA
1408
1408
  region: string;
1409
1409
  postalCode: string;
1410
1410
  country: string;
1411
- line2?: string | undefined;
1411
+ line2?: string | null | undefined;
1412
1412
  };
1413
1413
  location: {
1414
1414
  latitude: number;
@@ -1424,7 +1424,7 @@ declare class GetCustomerAddresses extends AbstractApiRequest<void, GetCustomerA
1424
1424
  region: string;
1425
1425
  postalCode: string;
1426
1426
  country: string;
1427
- line2?: string | undefined;
1427
+ line2?: string | null | undefined;
1428
1428
  };
1429
1429
  location: {
1430
1430
  latitude: number;
@@ -1464,7 +1464,7 @@ declare class GetCustomerAddresses extends AbstractApiRequest<void, GetCustomerA
1464
1464
  region: string;
1465
1465
  postalCode: string;
1466
1466
  country: string;
1467
- line2?: string | undefined;
1467
+ line2?: string | null | undefined;
1468
1468
  };
1469
1469
  location: {
1470
1470
  latitude: number;
@@ -1490,7 +1490,7 @@ declare class GetCustomerAddresses extends AbstractApiRequest<void, GetCustomerA
1490
1490
  region: string;
1491
1491
  postalCode: string;
1492
1492
  country: string;
1493
- line2?: string | undefined;
1493
+ line2?: string | null | undefined;
1494
1494
  };
1495
1495
  location: {
1496
1496
  latitude: number;
@@ -1592,7 +1592,7 @@ declare const getCustomerAddressesForCustomerResponseSchema: z.ZodArray<z.ZodObj
1592
1592
  id: z.ZodString;
1593
1593
  address: z.ZodObject<{
1594
1594
  line1: z.ZodString;
1595
- line2: z.ZodOptional<z.ZodString>;
1595
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1596
1596
  city: z.ZodString;
1597
1597
  region: z.ZodString;
1598
1598
  postalCode: z.ZodString;
@@ -1603,14 +1603,14 @@ declare const getCustomerAddressesForCustomerResponseSchema: z.ZodArray<z.ZodObj
1603
1603
  region: string;
1604
1604
  postalCode: string;
1605
1605
  country: string;
1606
- line2?: string | undefined;
1606
+ line2?: string | null | undefined;
1607
1607
  }, {
1608
1608
  line1: string;
1609
1609
  city: string;
1610
1610
  region: string;
1611
1611
  postalCode: string;
1612
1612
  country: string;
1613
- line2?: string | undefined;
1613
+ line2?: string | null | undefined;
1614
1614
  }>;
1615
1615
  location: z.ZodObject<{
1616
1616
  latitude: z.ZodNumber;
@@ -1634,7 +1634,7 @@ declare const getCustomerAddressesForCustomerResponseSchema: z.ZodArray<z.ZodObj
1634
1634
  region: string;
1635
1635
  postalCode: string;
1636
1636
  country: string;
1637
- line2?: string | undefined;
1637
+ line2?: string | null | undefined;
1638
1638
  };
1639
1639
  location: {
1640
1640
  latitude: number;
@@ -1650,7 +1650,7 @@ declare const getCustomerAddressesForCustomerResponseSchema: z.ZodArray<z.ZodObj
1650
1650
  region: string;
1651
1651
  postalCode: string;
1652
1652
  country: string;
1653
- line2?: string | undefined;
1653
+ line2?: string | null | undefined;
1654
1654
  };
1655
1655
  location: {
1656
1656
  latitude: number;
@@ -1668,7 +1668,7 @@ declare class GetCustomerAddressesForCustomer extends AbstractApiRequest<void, G
1668
1668
  id: z.ZodString;
1669
1669
  address: z.ZodObject<{
1670
1670
  line1: z.ZodString;
1671
- line2: z.ZodOptional<z.ZodString>;
1671
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1672
1672
  city: z.ZodString;
1673
1673
  region: z.ZodString;
1674
1674
  postalCode: z.ZodString;
@@ -1679,14 +1679,14 @@ declare class GetCustomerAddressesForCustomer extends AbstractApiRequest<void, G
1679
1679
  region: string;
1680
1680
  postalCode: string;
1681
1681
  country: string;
1682
- line2?: string | undefined;
1682
+ line2?: string | null | undefined;
1683
1683
  }, {
1684
1684
  line1: string;
1685
1685
  city: string;
1686
1686
  region: string;
1687
1687
  postalCode: string;
1688
1688
  country: string;
1689
- line2?: string | undefined;
1689
+ line2?: string | null | undefined;
1690
1690
  }>;
1691
1691
  location: z.ZodObject<{
1692
1692
  latitude: z.ZodNumber;
@@ -1710,7 +1710,7 @@ declare class GetCustomerAddressesForCustomer extends AbstractApiRequest<void, G
1710
1710
  region: string;
1711
1711
  postalCode: string;
1712
1712
  country: string;
1713
- line2?: string | undefined;
1713
+ line2?: string | null | undefined;
1714
1714
  };
1715
1715
  location: {
1716
1716
  latitude: number;
@@ -1726,7 +1726,7 @@ declare class GetCustomerAddressesForCustomer extends AbstractApiRequest<void, G
1726
1726
  region: string;
1727
1727
  postalCode: string;
1728
1728
  country: string;
1729
- line2?: string | undefined;
1729
+ line2?: string | null | undefined;
1730
1730
  };
1731
1731
  location: {
1732
1732
  latitude: number;
@@ -1780,7 +1780,7 @@ declare class GetCustomerAddressesForCustomer extends AbstractApiRequest<void, G
1780
1780
  declare const updateCustomerAddressInputSchema: z.ZodObject<{
1781
1781
  address: z.ZodOptional<z.ZodObject<{
1782
1782
  line1: z.ZodString;
1783
- line2: z.ZodOptional<z.ZodString>;
1783
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1784
1784
  city: z.ZodString;
1785
1785
  region: z.ZodString;
1786
1786
  postalCode: z.ZodString;
@@ -1791,14 +1791,14 @@ declare const updateCustomerAddressInputSchema: z.ZodObject<{
1791
1791
  region: string;
1792
1792
  postalCode: string;
1793
1793
  country: string;
1794
- line2?: string | undefined;
1794
+ line2?: string | null | undefined;
1795
1795
  }, {
1796
1796
  line1: string;
1797
1797
  city: string;
1798
1798
  region: string;
1799
1799
  postalCode: string;
1800
1800
  country: string;
1801
- line2?: string | undefined;
1801
+ line2?: string | null | undefined;
1802
1802
  }>>;
1803
1803
  }, "strip", z.ZodTypeAny, {
1804
1804
  address?: {
@@ -1807,7 +1807,7 @@ declare const updateCustomerAddressInputSchema: z.ZodObject<{
1807
1807
  region: string;
1808
1808
  postalCode: string;
1809
1809
  country: string;
1810
- line2?: string | undefined;
1810
+ line2?: string | null | undefined;
1811
1811
  } | undefined;
1812
1812
  }, {
1813
1813
  address?: {
@@ -1816,7 +1816,7 @@ declare const updateCustomerAddressInputSchema: z.ZodObject<{
1816
1816
  region: string;
1817
1817
  postalCode: string;
1818
1818
  country: string;
1819
- line2?: string | undefined;
1819
+ line2?: string | null | undefined;
1820
1820
  } | undefined;
1821
1821
  }>;
1822
1822
  type UpdateCustomerAddressInput = z.infer<typeof updateCustomerAddressInputSchema>;
@@ -1824,7 +1824,7 @@ declare const updateCustomerAddressResponseSchema: z.ZodObject<{
1824
1824
  id: z.ZodString;
1825
1825
  address: z.ZodObject<{
1826
1826
  line1: z.ZodString;
1827
- line2: z.ZodOptional<z.ZodString>;
1827
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1828
1828
  city: z.ZodString;
1829
1829
  region: z.ZodString;
1830
1830
  postalCode: z.ZodString;
@@ -1835,14 +1835,14 @@ declare const updateCustomerAddressResponseSchema: z.ZodObject<{
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
  line1: string;
1841
1841
  city: string;
1842
1842
  region: string;
1843
1843
  postalCode: string;
1844
1844
  country: string;
1845
- line2?: string | undefined;
1845
+ line2?: string | null | undefined;
1846
1846
  }>;
1847
1847
  location: z.ZodObject<{
1848
1848
  latitude: z.ZodNumber;
@@ -1868,7 +1868,7 @@ declare const updateCustomerAddressResponseSchema: z.ZodObject<{
1868
1868
  region: string;
1869
1869
  postalCode: string;
1870
1870
  country: string;
1871
- line2?: string | undefined;
1871
+ line2?: string | null | undefined;
1872
1872
  };
1873
1873
  location: {
1874
1874
  latitude: number;
@@ -1885,7 +1885,7 @@ declare const updateCustomerAddressResponseSchema: z.ZodObject<{
1885
1885
  region: string;
1886
1886
  postalCode: string;
1887
1887
  country: string;
1888
- line2?: string | undefined;
1888
+ line2?: string | null | undefined;
1889
1889
  };
1890
1890
  location: {
1891
1891
  latitude: number;
@@ -1901,7 +1901,7 @@ declare class UpdateCustomerAddress extends AbstractApiRequest<UpdateCustomerAdd
1901
1901
  readonly inputSchema: z.ZodObject<{
1902
1902
  address: z.ZodOptional<z.ZodObject<{
1903
1903
  line1: z.ZodString;
1904
- line2: z.ZodOptional<z.ZodString>;
1904
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1905
1905
  city: z.ZodString;
1906
1906
  region: z.ZodString;
1907
1907
  postalCode: z.ZodString;
@@ -1912,14 +1912,14 @@ declare class UpdateCustomerAddress extends AbstractApiRequest<UpdateCustomerAdd
1912
1912
  region: string;
1913
1913
  postalCode: string;
1914
1914
  country: string;
1915
- line2?: string | undefined;
1915
+ line2?: string | null | undefined;
1916
1916
  }, {
1917
1917
  line1: string;
1918
1918
  city: string;
1919
1919
  region: string;
1920
1920
  postalCode: string;
1921
1921
  country: string;
1922
- line2?: string | undefined;
1922
+ line2?: string | null | undefined;
1923
1923
  }>>;
1924
1924
  }, "strip", z.ZodTypeAny, {
1925
1925
  address?: {
@@ -1928,7 +1928,7 @@ declare class UpdateCustomerAddress extends AbstractApiRequest<UpdateCustomerAdd
1928
1928
  region: string;
1929
1929
  postalCode: string;
1930
1930
  country: string;
1931
- line2?: string | undefined;
1931
+ line2?: string | null | undefined;
1932
1932
  } | undefined;
1933
1933
  }, {
1934
1934
  address?: {
@@ -1937,14 +1937,14 @@ declare class UpdateCustomerAddress extends AbstractApiRequest<UpdateCustomerAdd
1937
1937
  region: string;
1938
1938
  postalCode: string;
1939
1939
  country: string;
1940
- line2?: string | undefined;
1940
+ line2?: string | null | undefined;
1941
1941
  } | undefined;
1942
1942
  }>;
1943
1943
  readonly outputSchema: z.ZodObject<{
1944
1944
  id: z.ZodString;
1945
1945
  address: z.ZodObject<{
1946
1946
  line1: z.ZodString;
1947
- line2: z.ZodOptional<z.ZodString>;
1947
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1948
1948
  city: z.ZodString;
1949
1949
  region: z.ZodString;
1950
1950
  postalCode: z.ZodString;
@@ -1955,14 +1955,14 @@ declare class UpdateCustomerAddress extends AbstractApiRequest<UpdateCustomerAdd
1955
1955
  region: string;
1956
1956
  postalCode: string;
1957
1957
  country: string;
1958
- line2?: string | undefined;
1958
+ line2?: string | null | undefined;
1959
1959
  }, {
1960
1960
  line1: string;
1961
1961
  city: string;
1962
1962
  region: string;
1963
1963
  postalCode: string;
1964
1964
  country: string;
1965
- line2?: string | undefined;
1965
+ line2?: string | null | undefined;
1966
1966
  }>;
1967
1967
  location: z.ZodObject<{
1968
1968
  latitude: z.ZodNumber;
@@ -1988,7 +1988,7 @@ declare class UpdateCustomerAddress extends AbstractApiRequest<UpdateCustomerAdd
1988
1988
  region: string;
1989
1989
  postalCode: string;
1990
1990
  country: string;
1991
- line2?: string | undefined;
1991
+ line2?: string | null | undefined;
1992
1992
  };
1993
1993
  location: {
1994
1994
  latitude: number;
@@ -2005,7 +2005,7 @@ declare class UpdateCustomerAddress extends AbstractApiRequest<UpdateCustomerAdd
2005
2005
  region: string;
2006
2006
  postalCode: string;
2007
2007
  country: string;
2008
- line2?: string | undefined;
2008
+ line2?: string | null | undefined;
2009
2009
  };
2010
2010
  location: {
2011
2011
  latitude: number;
@@ -2027,7 +2027,7 @@ declare const createCustomerBusinessProfileInputSchema: z.ZodObject<{
2027
2027
  taxCode: z.ZodString;
2028
2028
  billingAddress: z.ZodObject<{
2029
2029
  line1: z.ZodString;
2030
- line2: z.ZodOptional<z.ZodString>;
2030
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2031
2031
  city: z.ZodString;
2032
2032
  region: z.ZodString;
2033
2033
  postalCode: z.ZodString;
@@ -2038,14 +2038,14 @@ declare const createCustomerBusinessProfileInputSchema: z.ZodObject<{
2038
2038
  region: string;
2039
2039
  postalCode: string;
2040
2040
  country: string;
2041
- line2?: string | undefined;
2041
+ line2?: string | null | undefined;
2042
2042
  }, {
2043
2043
  line1: string;
2044
2044
  city: string;
2045
2045
  region: string;
2046
2046
  postalCode: string;
2047
2047
  country: string;
2048
- line2?: string | undefined;
2048
+ line2?: string | null | undefined;
2049
2049
  }>;
2050
2050
  billingData: z.ZodEffects<z.ZodObject<{
2051
2051
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -2074,7 +2074,7 @@ declare const createCustomerBusinessProfileInputSchema: z.ZodObject<{
2074
2074
  region: string;
2075
2075
  postalCode: string;
2076
2076
  country: string;
2077
- line2?: string | undefined;
2077
+ line2?: string | null | undefined;
2078
2078
  };
2079
2079
  billingData: {
2080
2080
  sdi?: string | null | undefined;
@@ -2091,7 +2091,7 @@ declare const createCustomerBusinessProfileInputSchema: z.ZodObject<{
2091
2091
  region: string;
2092
2092
  postalCode: string;
2093
2093
  country: string;
2094
- line2?: string | undefined;
2094
+ line2?: string | null | undefined;
2095
2095
  };
2096
2096
  billingData: {
2097
2097
  sdi?: string | null | undefined;
@@ -2106,7 +2106,7 @@ declare const createCustomerBusinessProfileResponseSchema: z.ZodObject<{
2106
2106
  taxCode: z.ZodString;
2107
2107
  billingAddress: z.ZodObject<{
2108
2108
  line1: z.ZodString;
2109
- line2: z.ZodOptional<z.ZodString>;
2109
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2110
2110
  city: z.ZodString;
2111
2111
  region: z.ZodString;
2112
2112
  postalCode: z.ZodString;
@@ -2117,14 +2117,14 @@ declare const createCustomerBusinessProfileResponseSchema: z.ZodObject<{
2117
2117
  region: string;
2118
2118
  postalCode: string;
2119
2119
  country: string;
2120
- line2?: string | undefined;
2120
+ line2?: string | null | undefined;
2121
2121
  }, {
2122
2122
  line1: string;
2123
2123
  city: string;
2124
2124
  region: string;
2125
2125
  postalCode: string;
2126
2126
  country: string;
2127
- line2?: string | undefined;
2127
+ line2?: string | null | undefined;
2128
2128
  }>;
2129
2129
  billingData: z.ZodEffects<z.ZodObject<{
2130
2130
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -2160,7 +2160,7 @@ declare const createCustomerBusinessProfileResponseSchema: z.ZodObject<{
2160
2160
  region: string;
2161
2161
  postalCode: string;
2162
2162
  country: string;
2163
- line2?: string | undefined;
2163
+ line2?: string | null | undefined;
2164
2164
  };
2165
2165
  billingData: {
2166
2166
  sdi?: string | null | undefined;
@@ -2180,7 +2180,7 @@ declare const createCustomerBusinessProfileResponseSchema: z.ZodObject<{
2180
2180
  region: string;
2181
2181
  postalCode: string;
2182
2182
  country: string;
2183
- line2?: string | undefined;
2183
+ line2?: string | null | undefined;
2184
2184
  };
2185
2185
  billingData: {
2186
2186
  sdi?: string | null | undefined;
@@ -2199,7 +2199,7 @@ declare class CreateCustomerBusinessProfile extends AbstractApiRequest<CreateCus
2199
2199
  taxCode: z.ZodString;
2200
2200
  billingAddress: z.ZodObject<{
2201
2201
  line1: z.ZodString;
2202
- line2: z.ZodOptional<z.ZodString>;
2202
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2203
2203
  city: z.ZodString;
2204
2204
  region: z.ZodString;
2205
2205
  postalCode: z.ZodString;
@@ -2210,14 +2210,14 @@ declare class CreateCustomerBusinessProfile extends AbstractApiRequest<CreateCus
2210
2210
  region: string;
2211
2211
  postalCode: string;
2212
2212
  country: string;
2213
- line2?: string | undefined;
2213
+ line2?: string | null | undefined;
2214
2214
  }, {
2215
2215
  line1: string;
2216
2216
  city: string;
2217
2217
  region: string;
2218
2218
  postalCode: string;
2219
2219
  country: string;
2220
- line2?: string | undefined;
2220
+ line2?: string | null | undefined;
2221
2221
  }>;
2222
2222
  billingData: z.ZodEffects<z.ZodObject<{
2223
2223
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -2246,7 +2246,7 @@ declare class CreateCustomerBusinessProfile extends AbstractApiRequest<CreateCus
2246
2246
  region: string;
2247
2247
  postalCode: string;
2248
2248
  country: string;
2249
- line2?: string | undefined;
2249
+ line2?: string | null | undefined;
2250
2250
  };
2251
2251
  billingData: {
2252
2252
  sdi?: string | null | undefined;
@@ -2263,7 +2263,7 @@ declare class CreateCustomerBusinessProfile extends AbstractApiRequest<CreateCus
2263
2263
  region: string;
2264
2264
  postalCode: string;
2265
2265
  country: string;
2266
- line2?: string | undefined;
2266
+ line2?: string | null | undefined;
2267
2267
  };
2268
2268
  billingData: {
2269
2269
  sdi?: string | null | undefined;
@@ -2277,7 +2277,7 @@ declare class CreateCustomerBusinessProfile extends AbstractApiRequest<CreateCus
2277
2277
  taxCode: z.ZodString;
2278
2278
  billingAddress: z.ZodObject<{
2279
2279
  line1: z.ZodString;
2280
- line2: z.ZodOptional<z.ZodString>;
2280
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2281
2281
  city: z.ZodString;
2282
2282
  region: z.ZodString;
2283
2283
  postalCode: z.ZodString;
@@ -2288,14 +2288,14 @@ declare class CreateCustomerBusinessProfile extends AbstractApiRequest<CreateCus
2288
2288
  region: string;
2289
2289
  postalCode: string;
2290
2290
  country: string;
2291
- line2?: string | undefined;
2291
+ line2?: string | null | undefined;
2292
2292
  }, {
2293
2293
  line1: string;
2294
2294
  city: string;
2295
2295
  region: string;
2296
2296
  postalCode: string;
2297
2297
  country: string;
2298
- line2?: string | undefined;
2298
+ line2?: string | null | undefined;
2299
2299
  }>;
2300
2300
  billingData: z.ZodEffects<z.ZodObject<{
2301
2301
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -2331,7 +2331,7 @@ declare class CreateCustomerBusinessProfile extends AbstractApiRequest<CreateCus
2331
2331
  region: string;
2332
2332
  postalCode: string;
2333
2333
  country: string;
2334
- line2?: string | undefined;
2334
+ line2?: string | null | undefined;
2335
2335
  };
2336
2336
  billingData: {
2337
2337
  sdi?: string | null | undefined;
@@ -2351,7 +2351,7 @@ declare class CreateCustomerBusinessProfile extends AbstractApiRequest<CreateCus
2351
2351
  region: string;
2352
2352
  postalCode: string;
2353
2353
  country: string;
2354
- line2?: string | undefined;
2354
+ line2?: string | null | undefined;
2355
2355
  };
2356
2356
  billingData: {
2357
2357
  sdi?: string | null | undefined;
@@ -2387,7 +2387,7 @@ declare const getCustomerBusinessProfileDetailsResponseSchema: z.ZodObject<{
2387
2387
  taxCode: z.ZodString;
2388
2388
  billingAddress: z.ZodObject<{
2389
2389
  line1: z.ZodString;
2390
- line2: z.ZodOptional<z.ZodString>;
2390
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2391
2391
  city: z.ZodString;
2392
2392
  region: z.ZodString;
2393
2393
  postalCode: z.ZodString;
@@ -2398,14 +2398,14 @@ declare const getCustomerBusinessProfileDetailsResponseSchema: z.ZodObject<{
2398
2398
  region: string;
2399
2399
  postalCode: string;
2400
2400
  country: string;
2401
- line2?: string | undefined;
2401
+ line2?: string | null | undefined;
2402
2402
  }, {
2403
2403
  line1: string;
2404
2404
  city: string;
2405
2405
  region: string;
2406
2406
  postalCode: string;
2407
2407
  country: string;
2408
- line2?: string | undefined;
2408
+ line2?: string | null | undefined;
2409
2409
  }>;
2410
2410
  billingData: z.ZodEffects<z.ZodObject<{
2411
2411
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -2441,7 +2441,7 @@ declare const getCustomerBusinessProfileDetailsResponseSchema: z.ZodObject<{
2441
2441
  region: string;
2442
2442
  postalCode: string;
2443
2443
  country: string;
2444
- line2?: string | undefined;
2444
+ line2?: string | null | undefined;
2445
2445
  };
2446
2446
  billingData: {
2447
2447
  sdi?: string | null | undefined;
@@ -2461,7 +2461,7 @@ declare const getCustomerBusinessProfileDetailsResponseSchema: z.ZodObject<{
2461
2461
  region: string;
2462
2462
  postalCode: string;
2463
2463
  country: string;
2464
- line2?: string | undefined;
2464
+ line2?: string | null | undefined;
2465
2465
  };
2466
2466
  billingData: {
2467
2467
  sdi?: string | null | undefined;
@@ -2481,7 +2481,7 @@ declare class GetCustomerBusinessProfileDetails extends AbstractApiRequest<void,
2481
2481
  taxCode: z.ZodString;
2482
2482
  billingAddress: z.ZodObject<{
2483
2483
  line1: z.ZodString;
2484
- line2: z.ZodOptional<z.ZodString>;
2484
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2485
2485
  city: z.ZodString;
2486
2486
  region: z.ZodString;
2487
2487
  postalCode: z.ZodString;
@@ -2492,14 +2492,14 @@ declare class GetCustomerBusinessProfileDetails extends AbstractApiRequest<void,
2492
2492
  region: string;
2493
2493
  postalCode: string;
2494
2494
  country: string;
2495
- line2?: string | undefined;
2495
+ line2?: string | null | undefined;
2496
2496
  }, {
2497
2497
  line1: string;
2498
2498
  city: string;
2499
2499
  region: string;
2500
2500
  postalCode: string;
2501
2501
  country: string;
2502
- line2?: string | undefined;
2502
+ line2?: string | null | undefined;
2503
2503
  }>;
2504
2504
  billingData: z.ZodEffects<z.ZodObject<{
2505
2505
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -2535,7 +2535,7 @@ declare class GetCustomerBusinessProfileDetails extends AbstractApiRequest<void,
2535
2535
  region: string;
2536
2536
  postalCode: string;
2537
2537
  country: string;
2538
- line2?: string | undefined;
2538
+ line2?: string | null | undefined;
2539
2539
  };
2540
2540
  billingData: {
2541
2541
  sdi?: string | null | undefined;
@@ -2555,7 +2555,7 @@ declare class GetCustomerBusinessProfileDetails extends AbstractApiRequest<void,
2555
2555
  region: string;
2556
2556
  postalCode: string;
2557
2557
  country: string;
2558
- line2?: string | undefined;
2558
+ line2?: string | null | undefined;
2559
2559
  };
2560
2560
  billingData: {
2561
2561
  sdi?: string | null | undefined;
@@ -2628,7 +2628,7 @@ declare const getCustomerBusinessProfilesResponseSchema: z.ZodObject<{
2628
2628
  taxCode: z.ZodString;
2629
2629
  billingAddress: z.ZodObject<{
2630
2630
  line1: z.ZodString;
2631
- line2: z.ZodOptional<z.ZodString>;
2631
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2632
2632
  city: z.ZodString;
2633
2633
  region: z.ZodString;
2634
2634
  postalCode: z.ZodString;
@@ -2639,14 +2639,14 @@ declare const getCustomerBusinessProfilesResponseSchema: z.ZodObject<{
2639
2639
  region: string;
2640
2640
  postalCode: string;
2641
2641
  country: string;
2642
- line2?: string | undefined;
2642
+ line2?: string | null | undefined;
2643
2643
  }, {
2644
2644
  line1: string;
2645
2645
  city: string;
2646
2646
  region: string;
2647
2647
  postalCode: string;
2648
2648
  country: string;
2649
- line2?: string | undefined;
2649
+ line2?: string | null | undefined;
2650
2650
  }>;
2651
2651
  billingData: z.ZodEffects<z.ZodObject<{
2652
2652
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -2679,7 +2679,7 @@ declare const getCustomerBusinessProfilesResponseSchema: z.ZodObject<{
2679
2679
  region: string;
2680
2680
  postalCode: string;
2681
2681
  country: string;
2682
- line2?: string | undefined;
2682
+ line2?: string | null | undefined;
2683
2683
  };
2684
2684
  billingData: {
2685
2685
  sdi?: string | null | undefined;
@@ -2698,7 +2698,7 @@ declare const getCustomerBusinessProfilesResponseSchema: z.ZodObject<{
2698
2698
  region: string;
2699
2699
  postalCode: string;
2700
2700
  country: string;
2701
- line2?: string | undefined;
2701
+ line2?: string | null | undefined;
2702
2702
  };
2703
2703
  billingData: {
2704
2704
  sdi?: string | null | undefined;
@@ -2741,7 +2741,7 @@ declare const getCustomerBusinessProfilesResponseSchema: z.ZodObject<{
2741
2741
  region: string;
2742
2742
  postalCode: string;
2743
2743
  country: string;
2744
- line2?: string | undefined;
2744
+ line2?: string | null | undefined;
2745
2745
  };
2746
2746
  billingData: {
2747
2747
  sdi?: string | null | undefined;
@@ -2770,7 +2770,7 @@ declare const getCustomerBusinessProfilesResponseSchema: z.ZodObject<{
2770
2770
  region: string;
2771
2771
  postalCode: string;
2772
2772
  country: string;
2773
- line2?: string | undefined;
2773
+ line2?: string | null | undefined;
2774
2774
  };
2775
2775
  billingData: {
2776
2776
  sdi?: string | null | undefined;
@@ -2801,7 +2801,7 @@ declare class GetCustomerBusinessProfiles extends AbstractApiRequest<void, GetCu
2801
2801
  taxCode: z.ZodString;
2802
2802
  billingAddress: z.ZodObject<{
2803
2803
  line1: z.ZodString;
2804
- line2: z.ZodOptional<z.ZodString>;
2804
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2805
2805
  city: z.ZodString;
2806
2806
  region: z.ZodString;
2807
2807
  postalCode: z.ZodString;
@@ -2812,14 +2812,14 @@ declare class GetCustomerBusinessProfiles extends AbstractApiRequest<void, GetCu
2812
2812
  region: string;
2813
2813
  postalCode: string;
2814
2814
  country: string;
2815
- line2?: string | undefined;
2815
+ line2?: string | null | undefined;
2816
2816
  }, {
2817
2817
  line1: string;
2818
2818
  city: string;
2819
2819
  region: string;
2820
2820
  postalCode: string;
2821
2821
  country: string;
2822
- line2?: string | undefined;
2822
+ line2?: string | null | undefined;
2823
2823
  }>;
2824
2824
  billingData: z.ZodEffects<z.ZodObject<{
2825
2825
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -2852,7 +2852,7 @@ declare class GetCustomerBusinessProfiles extends AbstractApiRequest<void, GetCu
2852
2852
  region: string;
2853
2853
  postalCode: string;
2854
2854
  country: string;
2855
- line2?: string | undefined;
2855
+ line2?: string | null | undefined;
2856
2856
  };
2857
2857
  billingData: {
2858
2858
  sdi?: string | null | undefined;
@@ -2871,7 +2871,7 @@ declare class GetCustomerBusinessProfiles extends AbstractApiRequest<void, GetCu
2871
2871
  region: string;
2872
2872
  postalCode: string;
2873
2873
  country: string;
2874
- line2?: string | undefined;
2874
+ line2?: string | null | undefined;
2875
2875
  };
2876
2876
  billingData: {
2877
2877
  sdi?: string | null | undefined;
@@ -2914,7 +2914,7 @@ declare class GetCustomerBusinessProfiles extends AbstractApiRequest<void, GetCu
2914
2914
  region: string;
2915
2915
  postalCode: string;
2916
2916
  country: string;
2917
- line2?: string | undefined;
2917
+ line2?: string | null | undefined;
2918
2918
  };
2919
2919
  billingData: {
2920
2920
  sdi?: string | null | undefined;
@@ -2943,7 +2943,7 @@ declare class GetCustomerBusinessProfiles extends AbstractApiRequest<void, GetCu
2943
2943
  region: string;
2944
2944
  postalCode: string;
2945
2945
  country: string;
2946
- line2?: string | undefined;
2946
+ line2?: string | null | undefined;
2947
2947
  };
2948
2948
  billingData: {
2949
2949
  sdi?: string | null | undefined;
@@ -3072,7 +3072,7 @@ declare const getCustomerBusinessProfilesForCustomerResponseSchema: z.ZodArray<z
3072
3072
  taxCode: z.ZodString;
3073
3073
  billingAddress: z.ZodObject<{
3074
3074
  line1: z.ZodString;
3075
- line2: z.ZodOptional<z.ZodString>;
3075
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3076
3076
  city: z.ZodString;
3077
3077
  region: z.ZodString;
3078
3078
  postalCode: z.ZodString;
@@ -3083,14 +3083,14 @@ declare const getCustomerBusinessProfilesForCustomerResponseSchema: z.ZodArray<z
3083
3083
  region: string;
3084
3084
  postalCode: string;
3085
3085
  country: string;
3086
- line2?: string | undefined;
3086
+ line2?: string | null | undefined;
3087
3087
  }, {
3088
3088
  line1: string;
3089
3089
  city: string;
3090
3090
  region: string;
3091
3091
  postalCode: string;
3092
3092
  country: string;
3093
- line2?: string | undefined;
3093
+ line2?: string | null | undefined;
3094
3094
  }>;
3095
3095
  billingData: z.ZodEffects<z.ZodObject<{
3096
3096
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -3123,7 +3123,7 @@ declare const getCustomerBusinessProfilesForCustomerResponseSchema: z.ZodArray<z
3123
3123
  region: string;
3124
3124
  postalCode: string;
3125
3125
  country: string;
3126
- line2?: string | undefined;
3126
+ line2?: string | null | undefined;
3127
3127
  };
3128
3128
  billingData: {
3129
3129
  sdi?: string | null | undefined;
@@ -3142,7 +3142,7 @@ declare const getCustomerBusinessProfilesForCustomerResponseSchema: z.ZodArray<z
3142
3142
  region: string;
3143
3143
  postalCode: string;
3144
3144
  country: string;
3145
- line2?: string | undefined;
3145
+ line2?: string | null | undefined;
3146
3146
  };
3147
3147
  billingData: {
3148
3148
  sdi?: string | null | undefined;
@@ -3163,7 +3163,7 @@ declare class GetCustomerBusinessProfilesForCustomer extends AbstractApiRequest<
3163
3163
  taxCode: z.ZodString;
3164
3164
  billingAddress: z.ZodObject<{
3165
3165
  line1: z.ZodString;
3166
- line2: z.ZodOptional<z.ZodString>;
3166
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3167
3167
  city: z.ZodString;
3168
3168
  region: z.ZodString;
3169
3169
  postalCode: z.ZodString;
@@ -3174,14 +3174,14 @@ declare class GetCustomerBusinessProfilesForCustomer extends AbstractApiRequest<
3174
3174
  region: string;
3175
3175
  postalCode: string;
3176
3176
  country: string;
3177
- line2?: string | undefined;
3177
+ line2?: string | null | undefined;
3178
3178
  }, {
3179
3179
  line1: string;
3180
3180
  city: string;
3181
3181
  region: string;
3182
3182
  postalCode: string;
3183
3183
  country: string;
3184
- line2?: string | undefined;
3184
+ line2?: string | null | undefined;
3185
3185
  }>;
3186
3186
  billingData: z.ZodEffects<z.ZodObject<{
3187
3187
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -3214,7 +3214,7 @@ declare class GetCustomerBusinessProfilesForCustomer extends AbstractApiRequest<
3214
3214
  region: string;
3215
3215
  postalCode: string;
3216
3216
  country: string;
3217
- line2?: string | undefined;
3217
+ line2?: string | null | undefined;
3218
3218
  };
3219
3219
  billingData: {
3220
3220
  sdi?: string | null | undefined;
@@ -3233,7 +3233,7 @@ declare class GetCustomerBusinessProfilesForCustomer extends AbstractApiRequest<
3233
3233
  region: string;
3234
3234
  postalCode: string;
3235
3235
  country: string;
3236
- line2?: string | undefined;
3236
+ line2?: string | null | undefined;
3237
3237
  };
3238
3238
  billingData: {
3239
3239
  sdi?: string | null | undefined;
@@ -3302,7 +3302,7 @@ declare const updateCustomerBusinessProfileInputSchema: z.ZodObject<{
3302
3302
  taxCode: z.ZodOptional<z.ZodString>;
3303
3303
  billingAddress: z.ZodOptional<z.ZodObject<{
3304
3304
  line1: z.ZodString;
3305
- line2: z.ZodOptional<z.ZodString>;
3305
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3306
3306
  city: z.ZodString;
3307
3307
  region: z.ZodString;
3308
3308
  postalCode: z.ZodString;
@@ -3313,14 +3313,14 @@ declare const updateCustomerBusinessProfileInputSchema: z.ZodObject<{
3313
3313
  region: string;
3314
3314
  postalCode: string;
3315
3315
  country: string;
3316
- line2?: string | undefined;
3316
+ line2?: string | null | undefined;
3317
3317
  }, {
3318
3318
  line1: string;
3319
3319
  city: string;
3320
3320
  region: string;
3321
3321
  postalCode: string;
3322
3322
  country: string;
3323
- line2?: string | undefined;
3323
+ line2?: string | null | undefined;
3324
3324
  }>>;
3325
3325
  billingData: z.ZodOptional<z.ZodEffects<z.ZodObject<{
3326
3326
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -3348,7 +3348,7 @@ declare const updateCustomerBusinessProfileInputSchema: z.ZodObject<{
3348
3348
  region: string;
3349
3349
  postalCode: string;
3350
3350
  country: string;
3351
- line2?: string | undefined;
3351
+ line2?: string | null | undefined;
3352
3352
  } | undefined;
3353
3353
  billingData?: {
3354
3354
  sdi?: string | null | undefined;
@@ -3364,7 +3364,7 @@ declare const updateCustomerBusinessProfileInputSchema: z.ZodObject<{
3364
3364
  region: string;
3365
3365
  postalCode: string;
3366
3366
  country: string;
3367
- line2?: string | undefined;
3367
+ line2?: string | null | undefined;
3368
3368
  } | undefined;
3369
3369
  billingData?: {
3370
3370
  sdi?: string | null | undefined;
@@ -3379,7 +3379,7 @@ declare const updateCustomerBusinessProfileResponseSchema: z.ZodObject<{
3379
3379
  taxCode: z.ZodString;
3380
3380
  billingAddress: z.ZodObject<{
3381
3381
  line1: z.ZodString;
3382
- line2: z.ZodOptional<z.ZodString>;
3382
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3383
3383
  city: z.ZodString;
3384
3384
  region: z.ZodString;
3385
3385
  postalCode: z.ZodString;
@@ -3390,14 +3390,14 @@ declare const updateCustomerBusinessProfileResponseSchema: z.ZodObject<{
3390
3390
  region: string;
3391
3391
  postalCode: string;
3392
3392
  country: string;
3393
- line2?: string | undefined;
3393
+ line2?: string | null | undefined;
3394
3394
  }, {
3395
3395
  line1: string;
3396
3396
  city: string;
3397
3397
  region: string;
3398
3398
  postalCode: string;
3399
3399
  country: string;
3400
- line2?: string | undefined;
3400
+ line2?: string | null | undefined;
3401
3401
  }>;
3402
3402
  billingData: z.ZodEffects<z.ZodObject<{
3403
3403
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -3433,7 +3433,7 @@ declare const updateCustomerBusinessProfileResponseSchema: z.ZodObject<{
3433
3433
  region: string;
3434
3434
  postalCode: string;
3435
3435
  country: string;
3436
- line2?: string | undefined;
3436
+ line2?: string | null | undefined;
3437
3437
  };
3438
3438
  billingData: {
3439
3439
  sdi?: string | null | undefined;
@@ -3453,7 +3453,7 @@ declare const updateCustomerBusinessProfileResponseSchema: z.ZodObject<{
3453
3453
  region: string;
3454
3454
  postalCode: string;
3455
3455
  country: string;
3456
- line2?: string | undefined;
3456
+ line2?: string | null | undefined;
3457
3457
  };
3458
3458
  billingData: {
3459
3459
  sdi?: string | null | undefined;
@@ -3471,7 +3471,7 @@ declare class UpdateCustomerBusinessProfile extends AbstractApiRequest<UpdateCus
3471
3471
  taxCode: z.ZodOptional<z.ZodString>;
3472
3472
  billingAddress: z.ZodOptional<z.ZodObject<{
3473
3473
  line1: z.ZodString;
3474
- line2: z.ZodOptional<z.ZodString>;
3474
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3475
3475
  city: z.ZodString;
3476
3476
  region: z.ZodString;
3477
3477
  postalCode: z.ZodString;
@@ -3482,14 +3482,14 @@ declare class UpdateCustomerBusinessProfile extends AbstractApiRequest<UpdateCus
3482
3482
  region: string;
3483
3483
  postalCode: string;
3484
3484
  country: string;
3485
- line2?: string | undefined;
3485
+ line2?: string | null | undefined;
3486
3486
  }, {
3487
3487
  line1: string;
3488
3488
  city: string;
3489
3489
  region: string;
3490
3490
  postalCode: string;
3491
3491
  country: string;
3492
- line2?: string | undefined;
3492
+ line2?: string | null | undefined;
3493
3493
  }>>;
3494
3494
  billingData: z.ZodOptional<z.ZodEffects<z.ZodObject<{
3495
3495
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -3517,7 +3517,7 @@ declare class UpdateCustomerBusinessProfile extends AbstractApiRequest<UpdateCus
3517
3517
  region: string;
3518
3518
  postalCode: string;
3519
3519
  country: string;
3520
- line2?: string | undefined;
3520
+ line2?: string | null | undefined;
3521
3521
  } | undefined;
3522
3522
  billingData?: {
3523
3523
  sdi?: string | null | undefined;
@@ -3533,7 +3533,7 @@ declare class UpdateCustomerBusinessProfile extends AbstractApiRequest<UpdateCus
3533
3533
  region: string;
3534
3534
  postalCode: string;
3535
3535
  country: string;
3536
- line2?: string | undefined;
3536
+ line2?: string | null | undefined;
3537
3537
  } | undefined;
3538
3538
  billingData?: {
3539
3539
  sdi?: string | null | undefined;
@@ -3547,7 +3547,7 @@ declare class UpdateCustomerBusinessProfile extends AbstractApiRequest<UpdateCus
3547
3547
  taxCode: z.ZodString;
3548
3548
  billingAddress: z.ZodObject<{
3549
3549
  line1: z.ZodString;
3550
- line2: z.ZodOptional<z.ZodString>;
3550
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3551
3551
  city: z.ZodString;
3552
3552
  region: z.ZodString;
3553
3553
  postalCode: z.ZodString;
@@ -3558,14 +3558,14 @@ declare class UpdateCustomerBusinessProfile extends AbstractApiRequest<UpdateCus
3558
3558
  region: string;
3559
3559
  postalCode: string;
3560
3560
  country: string;
3561
- line2?: string | undefined;
3561
+ line2?: string | null | undefined;
3562
3562
  }, {
3563
3563
  line1: string;
3564
3564
  city: string;
3565
3565
  region: string;
3566
3566
  postalCode: string;
3567
3567
  country: string;
3568
- line2?: string | undefined;
3568
+ line2?: string | null | undefined;
3569
3569
  }>;
3570
3570
  billingData: z.ZodEffects<z.ZodObject<{
3571
3571
  sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -3601,7 +3601,7 @@ declare class UpdateCustomerBusinessProfile extends AbstractApiRequest<UpdateCus
3601
3601
  region: string;
3602
3602
  postalCode: string;
3603
3603
  country: string;
3604
- line2?: string | undefined;
3604
+ line2?: string | null | undefined;
3605
3605
  };
3606
3606
  billingData: {
3607
3607
  sdi?: string | null | undefined;
@@ -3621,7 +3621,7 @@ declare class UpdateCustomerBusinessProfile extends AbstractApiRequest<UpdateCus
3621
3621
  region: string;
3622
3622
  postalCode: string;
3623
3623
  country: string;
3624
- line2?: string | undefined;
3624
+ line2?: string | null | undefined;
3625
3625
  };
3626
3626
  billingData: {
3627
3627
  sdi?: string | null | undefined;