exnet-routing 1.2.40 → 1.2.41

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.
@@ -50,7 +50,6 @@ export declare const BillingCenterSchema: z.ZodObject<{
50
50
  emailOne: z.ZodNullable<z.ZodString>;
51
51
  emailTwo: z.ZodNullable<z.ZodString>;
52
52
  emailThree: z.ZodNullable<z.ZodString>;
53
- eori: z.ZodNullable<z.ZodString>;
54
53
  tva: z.ZodNullable<z.ZodString>;
55
54
  customerId: z.ZodNullable<z.ZodNumber>;
56
55
  customer: z.ZodOptional<z.ZodLazy<z.ZodObject<{
@@ -314,7 +313,6 @@ export declare const BillingCenterSchema: z.ZodObject<{
314
313
  isShowSecondBordereaux: boolean;
315
314
  isShowCustomerName: boolean;
316
315
  isShowCommercialValue: boolean;
317
- eori: string | null;
318
316
  country?: {
319
317
  id: number;
320
318
  createdAt: DateTime<true> | DateTime<false>;
@@ -434,7 +432,6 @@ export declare const BillingCenterSchema: z.ZodObject<{
434
432
  isShowSecondBordereaux: boolean;
435
433
  isShowCustomerName: boolean;
436
434
  isShowCommercialValue: boolean;
437
- eori: string | null;
438
435
  country?: {
439
436
  id: number;
440
437
  createdAt: Date;
@@ -553,7 +550,6 @@ export declare const BillingCenterSchemaSimple: z.ZodObject<{
553
550
  emailOne: z.ZodNullable<z.ZodString>;
554
551
  emailTwo: z.ZodNullable<z.ZodString>;
555
552
  emailThree: z.ZodNullable<z.ZodString>;
556
- eori: z.ZodNullable<z.ZodString>;
557
553
  tva: z.ZodNullable<z.ZodString>;
558
554
  customerId: z.ZodNullable<z.ZodNumber>;
559
555
  }, "strip", z.ZodTypeAny, {
@@ -608,7 +604,6 @@ export declare const BillingCenterSchemaSimple: z.ZodObject<{
608
604
  isShowSecondBordereaux: boolean;
609
605
  isShowCustomerName: boolean;
610
606
  isShowCommercialValue: boolean;
611
- eori: string | null;
612
607
  }, {
613
608
  id: number;
614
609
  createdAt: Date;
@@ -661,7 +656,6 @@ export declare const BillingCenterSchemaSimple: z.ZodObject<{
661
656
  isShowSecondBordereaux: boolean;
662
657
  isShowCustomerName: boolean;
663
658
  isShowCommercialValue: boolean;
664
- eori: string | null;
665
659
  }>;
666
660
  export declare const BillingCenterCreateSchema: z.ZodObject<{
667
661
  billingCenterName: z.ZodString;
@@ -711,7 +705,6 @@ export declare const BillingCenterCreateSchema: z.ZodObject<{
711
705
  emailOne: z.ZodOptional<z.ZodString>;
712
706
  emailTwo: z.ZodOptional<z.ZodString>;
713
707
  emailThree: z.ZodOptional<z.ZodString>;
714
- eori: z.ZodOptional<z.ZodString>;
715
708
  tva: z.ZodOptional<z.ZodString>;
716
709
  customerId: z.ZodNumber;
717
710
  }, "strip", z.ZodTypeAny, {
@@ -764,7 +757,6 @@ export declare const BillingCenterCreateSchema: z.ZodObject<{
764
757
  isShowSecondBordereaux?: boolean | undefined;
765
758
  isShowCustomerName?: boolean | undefined;
766
759
  isShowCommercialValue?: boolean | undefined;
767
- eori?: string | undefined;
768
760
  }, {
769
761
  countryId: number;
770
762
  address: string;
@@ -815,7 +807,6 @@ export declare const BillingCenterCreateSchema: z.ZodObject<{
815
807
  isShowSecondBordereaux?: boolean | undefined;
816
808
  isShowCustomerName?: boolean | undefined;
817
809
  isShowCommercialValue?: boolean | undefined;
818
- eori?: string | undefined;
819
810
  }>;
820
811
  export declare const BillingCenterUpdateSchema: z.ZodObject<{
821
812
  billingCenterName: z.ZodOptional<z.ZodString>;
@@ -865,7 +856,6 @@ export declare const BillingCenterUpdateSchema: z.ZodObject<{
865
856
  emailOne: z.ZodOptional<z.ZodString>;
866
857
  emailTwo: z.ZodOptional<z.ZodString>;
867
858
  emailThree: z.ZodOptional<z.ZodString>;
868
- eori: z.ZodOptional<z.ZodString>;
869
859
  tva: z.ZodOptional<z.ZodString>;
870
860
  customerId: z.ZodOptional<z.ZodNumber>;
871
861
  }, "strip", z.ZodTypeAny, {
@@ -917,7 +907,6 @@ export declare const BillingCenterUpdateSchema: z.ZodObject<{
917
907
  isShowSecondBordereaux?: boolean | undefined;
918
908
  isShowCustomerName?: boolean | undefined;
919
909
  isShowCommercialValue?: boolean | undefined;
920
- eori?: string | undefined;
921
910
  activeVariation?: boolean | undefined;
922
911
  }, {
923
912
  countryId?: number | undefined;
@@ -968,7 +957,6 @@ export declare const BillingCenterUpdateSchema: z.ZodObject<{
968
957
  isShowSecondBordereaux?: boolean | undefined;
969
958
  isShowCustomerName?: boolean | undefined;
970
959
  isShowCommercialValue?: boolean | undefined;
971
- eori?: string | undefined;
972
960
  activeVariation?: boolean | undefined;
973
961
  }>;
974
962
  export type IBillingCenter = z.infer<typeof BillingCenterSchema>;
@@ -56,7 +56,6 @@ exports.BillingCenterSchema = zod_1.z.object({
56
56
  emailOne: zod_1.z.string().nullable(),
57
57
  emailTwo: zod_1.z.string().nullable(),
58
58
  emailThree: zod_1.z.string().nullable(),
59
- eori: zod_1.z.string().nullable(),
60
59
  tva: zod_1.z.string().nullable(),
61
60
  customerId: zod_1.z.number().nullable(),
62
61
  customer: zod_1.z.lazy(() => _customer_1.CustomerSchema).optional(),
@@ -113,7 +112,6 @@ exports.BillingCenterSchemaSimple = zod_1.z.object({
113
112
  emailOne: zod_1.z.string().nullable(),
114
113
  emailTwo: zod_1.z.string().nullable(),
115
114
  emailThree: zod_1.z.string().nullable(),
116
- eori: zod_1.z.string().nullable(),
117
115
  tva: zod_1.z.string().nullable(),
118
116
  customerId: zod_1.z.number().nullable(),
119
117
  });
@@ -165,7 +163,6 @@ exports.BillingCenterCreateSchema = zod_1.z.object({
165
163
  emailOne: zod_1.z.string().optional(),
166
164
  emailTwo: zod_1.z.string().optional(),
167
165
  emailThree: zod_1.z.string().optional(),
168
- eori: zod_1.z.string().optional(),
169
166
  tva: zod_1.z.string().optional(),
170
167
  customerId: zod_1.z.number(),
171
168
  });
@@ -217,7 +214,6 @@ exports.BillingCenterUpdateSchema = zod_1.z.object({
217
214
  emailOne: zod_1.z.string().optional(),
218
215
  emailTwo: zod_1.z.string().optional(),
219
216
  emailThree: zod_1.z.string().optional(),
220
- eori: zod_1.z.string().optional(),
221
217
  tva: zod_1.z.string().optional(),
222
218
  customerId: zod_1.z.number().optional(),
223
219
  });
@@ -645,7 +645,6 @@ export declare const ChatSchema: z.ZodObject<{
645
645
  emailOne: z.ZodNullable<z.ZodString>;
646
646
  emailTwo: z.ZodNullable<z.ZodString>;
647
647
  emailThree: z.ZodNullable<z.ZodString>;
648
- eori: z.ZodNullable<z.ZodString>;
649
648
  tva: z.ZodNullable<z.ZodString>;
650
649
  customerId: z.ZodNullable<z.ZodNumber>;
651
650
  }, "strip", z.ZodTypeAny, {
@@ -700,7 +699,6 @@ export declare const ChatSchema: z.ZodObject<{
700
699
  isShowSecondBordereaux: boolean;
701
700
  isShowCustomerName: boolean;
702
701
  isShowCommercialValue: boolean;
703
- eori: string | null;
704
702
  }, {
705
703
  id: number;
706
704
  createdAt: Date;
@@ -753,7 +751,6 @@ export declare const ChatSchema: z.ZodObject<{
753
751
  isShowSecondBordereaux: boolean;
754
752
  isShowCustomerName: boolean;
755
753
  isShowCommercialValue: boolean;
756
- eori: string | null;
757
754
  }>>>>;
758
755
  }, "strip", z.ZodTypeAny, {
759
756
  id: number;
@@ -817,7 +814,6 @@ export declare const ChatSchema: z.ZodObject<{
817
814
  isShowSecondBordereaux: boolean;
818
815
  isShowCustomerName: boolean;
819
816
  isShowCommercialValue: boolean;
820
- eori: string | null;
821
817
  } | null | undefined;
822
818
  user?: {
823
819
  id: number;
@@ -1069,7 +1065,6 @@ export declare const ChatSchema: z.ZodObject<{
1069
1065
  isShowSecondBordereaux: boolean;
1070
1066
  isShowCustomerName: boolean;
1071
1067
  isShowCommercialValue: boolean;
1072
- eori: string | null;
1073
1068
  } | null | undefined;
1074
1069
  user?: {
1075
1070
  id: number;
@@ -2017,7 +2012,6 @@ export declare const SupportTicketDetailSchema: z.ZodObject<z.objectUtil.extendS
2017
2012
  emailOne: z.ZodNullable<z.ZodString>;
2018
2013
  emailTwo: z.ZodNullable<z.ZodString>;
2019
2014
  emailThree: z.ZodNullable<z.ZodString>;
2020
- eori: z.ZodNullable<z.ZodString>;
2021
2015
  tva: z.ZodNullable<z.ZodString>;
2022
2016
  customerId: z.ZodNullable<z.ZodNumber>;
2023
2017
  }, "strip", z.ZodTypeAny, {
@@ -2072,7 +2066,6 @@ export declare const SupportTicketDetailSchema: z.ZodObject<z.objectUtil.extendS
2072
2066
  isShowSecondBordereaux: boolean;
2073
2067
  isShowCustomerName: boolean;
2074
2068
  isShowCommercialValue: boolean;
2075
- eori: string | null;
2076
2069
  }, {
2077
2070
  id: number;
2078
2071
  createdAt: Date;
@@ -2125,7 +2118,6 @@ export declare const SupportTicketDetailSchema: z.ZodObject<z.objectUtil.extendS
2125
2118
  isShowSecondBordereaux: boolean;
2126
2119
  isShowCustomerName: boolean;
2127
2120
  isShowCommercialValue: boolean;
2128
- eori: string | null;
2129
2121
  }>>>>;
2130
2122
  }, {
2131
2123
  messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -2753,7 +2745,6 @@ export declare const SupportTicketDetailSchema: z.ZodObject<z.objectUtil.extendS
2753
2745
  emailOne: z.ZodNullable<z.ZodString>;
2754
2746
  emailTwo: z.ZodNullable<z.ZodString>;
2755
2747
  emailThree: z.ZodNullable<z.ZodString>;
2756
- eori: z.ZodNullable<z.ZodString>;
2757
2748
  tva: z.ZodNullable<z.ZodString>;
2758
2749
  customerId: z.ZodNullable<z.ZodNumber>;
2759
2750
  }, "strip", z.ZodTypeAny, {
@@ -2808,7 +2799,6 @@ export declare const SupportTicketDetailSchema: z.ZodObject<z.objectUtil.extendS
2808
2799
  isShowSecondBordereaux: boolean;
2809
2800
  isShowCustomerName: boolean;
2810
2801
  isShowCommercialValue: boolean;
2811
- eori: string | null;
2812
2802
  }, {
2813
2803
  id: number;
2814
2804
  createdAt: Date;
@@ -2861,7 +2851,6 @@ export declare const SupportTicketDetailSchema: z.ZodObject<z.objectUtil.extendS
2861
2851
  isShowSecondBordereaux: boolean;
2862
2852
  isShowCustomerName: boolean;
2863
2853
  isShowCommercialValue: boolean;
2864
- eori: string | null;
2865
2854
  }>>>>;
2866
2855
  }, "strip", z.ZodTypeAny, {
2867
2856
  id: number;
@@ -2925,7 +2914,6 @@ export declare const SupportTicketDetailSchema: z.ZodObject<z.objectUtil.extendS
2925
2914
  isShowSecondBordereaux: boolean;
2926
2915
  isShowCustomerName: boolean;
2927
2916
  isShowCommercialValue: boolean;
2928
- eori: string | null;
2929
2917
  } | null | undefined;
2930
2918
  user?: {
2931
2919
  id: number;
@@ -3177,7 +3165,6 @@ export declare const SupportTicketDetailSchema: z.ZodObject<z.objectUtil.extendS
3177
3165
  isShowSecondBordereaux: boolean;
3178
3166
  isShowCustomerName: boolean;
3179
3167
  isShowCommercialValue: boolean;
3180
- eori: string | null;
3181
3168
  } | null | undefined;
3182
3169
  user?: {
3183
3170
  id: number;
@@ -4407,7 +4394,6 @@ export declare const SupportTicketDetailSchema: z.ZodObject<z.objectUtil.extendS
4407
4394
  isShowSecondBordereaux: boolean;
4408
4395
  isShowCustomerName: boolean;
4409
4396
  isShowCommercialValue: boolean;
4410
- eori: string | null;
4411
4397
  } | null | undefined;
4412
4398
  user?: {
4413
4399
  id: number;
@@ -4848,7 +4834,6 @@ export declare const SupportTicketDetailSchema: z.ZodObject<z.objectUtil.extendS
4848
4834
  isShowSecondBordereaux: boolean;
4849
4835
  isShowCustomerName: boolean;
4850
4836
  isShowCommercialValue: boolean;
4851
- eori: string | null;
4852
4837
  } | null | undefined;
4853
4838
  user?: {
4854
4839
  id: number;
@@ -5103,7 +5088,6 @@ export declare const SupportTicketDetailSchema: z.ZodObject<z.objectUtil.extendS
5103
5088
  isShowSecondBordereaux: boolean;
5104
5089
  isShowCustomerName: boolean;
5105
5090
  isShowCommercialValue: boolean;
5106
- eori: string | null;
5107
5091
  } | null | undefined;
5108
5092
  user?: {
5109
5093
  id: number;
@@ -5543,7 +5527,6 @@ export declare const SupportTicketDetailSchema: z.ZodObject<z.objectUtil.extendS
5543
5527
  isShowSecondBordereaux: boolean;
5544
5528
  isShowCustomerName: boolean;
5545
5529
  isShowCommercialValue: boolean;
5546
- eori: string | null;
5547
5530
  } | null | undefined;
5548
5531
  user?: {
5549
5532
  id: number;
@@ -5798,7 +5781,6 @@ export declare const SupportTicketDetailSchema: z.ZodObject<z.objectUtil.extendS
5798
5781
  isShowSecondBordereaux: boolean;
5799
5782
  isShowCustomerName: boolean;
5800
5783
  isShowCommercialValue: boolean;
5801
- eori: string | null;
5802
5784
  } | null | undefined;
5803
5785
  user?: {
5804
5786
  id: number;
@@ -6238,7 +6220,6 @@ export declare const SupportTicketDetailSchema: z.ZodObject<z.objectUtil.extendS
6238
6220
  isShowSecondBordereaux: boolean;
6239
6221
  isShowCustomerName: boolean;
6240
6222
  isShowCommercialValue: boolean;
6241
- eori: string | null;
6242
6223
  } | null | undefined;
6243
6224
  user?: {
6244
6225
  id: number;
@@ -625,7 +625,6 @@ export declare const ChatMessageSchema: z.ZodObject<{
625
625
  emailOne: z.ZodNullable<z.ZodString>;
626
626
  emailTwo: z.ZodNullable<z.ZodString>;
627
627
  emailThree: z.ZodNullable<z.ZodString>;
628
- eori: z.ZodNullable<z.ZodString>;
629
628
  tva: z.ZodNullable<z.ZodString>;
630
629
  customerId: z.ZodNullable<z.ZodNumber>;
631
630
  }, "strip", z.ZodTypeAny, {
@@ -680,7 +679,6 @@ export declare const ChatMessageSchema: z.ZodObject<{
680
679
  isShowSecondBordereaux: boolean;
681
680
  isShowCustomerName: boolean;
682
681
  isShowCommercialValue: boolean;
683
- eori: string | null;
684
682
  }, {
685
683
  id: number;
686
684
  createdAt: Date;
@@ -733,7 +731,6 @@ export declare const ChatMessageSchema: z.ZodObject<{
733
731
  isShowSecondBordereaux: boolean;
734
732
  isShowCustomerName: boolean;
735
733
  isShowCommercialValue: boolean;
736
- eori: string | null;
737
734
  }>>>>;
738
735
  }, "strip", z.ZodTypeAny, {
739
736
  id: number;
@@ -797,7 +794,6 @@ export declare const ChatMessageSchema: z.ZodObject<{
797
794
  isShowSecondBordereaux: boolean;
798
795
  isShowCustomerName: boolean;
799
796
  isShowCommercialValue: boolean;
800
- eori: string | null;
801
797
  } | null | undefined;
802
798
  user?: {
803
799
  id: number;
@@ -1049,7 +1045,6 @@ export declare const ChatMessageSchema: z.ZodObject<{
1049
1045
  isShowSecondBordereaux: boolean;
1050
1046
  isShowCustomerName: boolean;
1051
1047
  isShowCommercialValue: boolean;
1052
- eori: string | null;
1053
1048
  } | null | undefined;
1054
1049
  user?: {
1055
1050
  id: number;
@@ -2279,7 +2274,6 @@ export declare const ChatMessageSchema: z.ZodObject<{
2279
2274
  isShowSecondBordereaux: boolean;
2280
2275
  isShowCustomerName: boolean;
2281
2276
  isShowCommercialValue: boolean;
2282
- eori: string | null;
2283
2277
  } | null | undefined;
2284
2278
  user?: {
2285
2279
  id: number;
@@ -2720,7 +2714,6 @@ export declare const ChatMessageSchema: z.ZodObject<{
2720
2714
  isShowSecondBordereaux: boolean;
2721
2715
  isShowCustomerName: boolean;
2722
2716
  isShowCommercialValue: boolean;
2723
- eori: string | null;
2724
2717
  } | null | undefined;
2725
2718
  user?: {
2726
2719
  id: number;
@@ -89,7 +89,6 @@ export declare const FactureSchema: z.ZodObject<{
89
89
  emailOne: z.ZodNullable<z.ZodString>;
90
90
  emailTwo: z.ZodNullable<z.ZodString>;
91
91
  emailThree: z.ZodNullable<z.ZodString>;
92
- eori: z.ZodNullable<z.ZodString>;
93
92
  tva: z.ZodNullable<z.ZodString>;
94
93
  customerId: z.ZodNullable<z.ZodNumber>;
95
94
  customer: z.ZodOptional<z.ZodLazy<z.ZodObject<{
@@ -353,7 +352,6 @@ export declare const FactureSchema: z.ZodObject<{
353
352
  isShowSecondBordereaux: boolean;
354
353
  isShowCustomerName: boolean;
355
354
  isShowCommercialValue: boolean;
356
- eori: string | null;
357
355
  country?: {
358
356
  id: number;
359
357
  createdAt: DateTime<true> | DateTime<false>;
@@ -473,7 +471,6 @@ export declare const FactureSchema: z.ZodObject<{
473
471
  isShowSecondBordereaux: boolean;
474
472
  isShowCustomerName: boolean;
475
473
  isShowCommercialValue: boolean;
476
- eori: string | null;
477
474
  country?: {
478
475
  id: number;
479
476
  createdAt: Date;
@@ -707,7 +704,6 @@ export declare const FactureSchema: z.ZodObject<{
707
704
  isShowSecondBordereaux: boolean;
708
705
  isShowCustomerName: boolean;
709
706
  isShowCommercialValue: boolean;
710
- eori: string | null;
711
707
  country?: {
712
708
  id: number;
713
709
  createdAt: DateTime<true> | DateTime<false>;
@@ -876,7 +872,6 @@ export declare const FactureSchema: z.ZodObject<{
876
872
  isShowSecondBordereaux: boolean;
877
873
  isShowCustomerName: boolean;
878
874
  isShowCommercialValue: boolean;
879
- eori: string | null;
880
875
  country?: {
881
876
  id: number;
882
877
  createdAt: Date;
@@ -96,7 +96,6 @@ export declare const FactureLineSchema: z.ZodObject<{
96
96
  emailOne: z.ZodNullable<z.ZodString>;
97
97
  emailTwo: z.ZodNullable<z.ZodString>;
98
98
  emailThree: z.ZodNullable<z.ZodString>;
99
- eori: z.ZodNullable<z.ZodString>;
100
99
  tva: z.ZodNullable<z.ZodString>;
101
100
  customerId: z.ZodNullable<z.ZodNumber>;
102
101
  customer: z.ZodOptional<z.ZodLazy<z.ZodObject<{
@@ -360,7 +359,6 @@ export declare const FactureLineSchema: z.ZodObject<{
360
359
  isShowSecondBordereaux: boolean;
361
360
  isShowCustomerName: boolean;
362
361
  isShowCommercialValue: boolean;
363
- eori: string | null;
364
362
  country?: {
365
363
  id: number;
366
364
  createdAt: DateTime<true> | DateTime<false>;
@@ -480,7 +478,6 @@ export declare const FactureLineSchema: z.ZodObject<{
480
478
  isShowSecondBordereaux: boolean;
481
479
  isShowCustomerName: boolean;
482
480
  isShowCommercialValue: boolean;
483
- eori: string | null;
484
481
  country?: {
485
482
  id: number;
486
483
  createdAt: Date;
@@ -714,7 +711,6 @@ export declare const FactureLineSchema: z.ZodObject<{
714
711
  isShowSecondBordereaux: boolean;
715
712
  isShowCustomerName: boolean;
716
713
  isShowCommercialValue: boolean;
717
- eori: string | null;
718
714
  country?: {
719
715
  id: number;
720
716
  createdAt: DateTime<true> | DateTime<false>;
@@ -883,7 +879,6 @@ export declare const FactureLineSchema: z.ZodObject<{
883
879
  isShowSecondBordereaux: boolean;
884
880
  isShowCustomerName: boolean;
885
881
  isShowCommercialValue: boolean;
886
- eori: string | null;
887
882
  country?: {
888
883
  id: number;
889
884
  createdAt: Date;
@@ -1368,7 +1363,6 @@ export declare const FactureLineSchema: z.ZodObject<{
1368
1363
  isShowSecondBordereaux: boolean;
1369
1364
  isShowCustomerName: boolean;
1370
1365
  isShowCommercialValue: boolean;
1371
- eori: string | null;
1372
1366
  country?: {
1373
1367
  id: number;
1374
1368
  createdAt: DateTime<true> | DateTime<false>;
@@ -1638,7 +1632,6 @@ export declare const FactureLineSchema: z.ZodObject<{
1638
1632
  isShowSecondBordereaux: boolean;
1639
1633
  isShowCustomerName: boolean;
1640
1634
  isShowCommercialValue: boolean;
1641
- eori: string | null;
1642
1635
  country?: {
1643
1636
  id: number;
1644
1637
  createdAt: Date;
@@ -122,7 +122,6 @@ export declare const ShippingSchema: z.ZodObject<{
122
122
  emailOne: z.ZodNullable<z.ZodString>;
123
123
  emailTwo: z.ZodNullable<z.ZodString>;
124
124
  emailThree: z.ZodNullable<z.ZodString>;
125
- eori: z.ZodNullable<z.ZodString>;
126
125
  tva: z.ZodNullable<z.ZodString>;
127
126
  customerId: z.ZodNullable<z.ZodNumber>;
128
127
  }, "strip", z.ZodTypeAny, {
@@ -177,7 +176,6 @@ export declare const ShippingSchema: z.ZodObject<{
177
176
  isShowSecondBordereaux: boolean;
178
177
  isShowCustomerName: boolean;
179
178
  isShowCommercialValue: boolean;
180
- eori: string | null;
181
179
  }, {
182
180
  id: number;
183
181
  createdAt: Date;
@@ -230,7 +228,6 @@ export declare const ShippingSchema: z.ZodObject<{
230
228
  isShowSecondBordereaux: boolean;
231
229
  isShowCustomerName: boolean;
232
230
  isShowCommercialValue: boolean;
233
- eori: string | null;
234
231
  }>>>;
235
232
  user: z.ZodOptional<z.ZodLazy<z.ZodObject<{
236
233
  id: z.ZodNumber;
@@ -1182,7 +1179,6 @@ export declare const ShippingSchema: z.ZodObject<{
1182
1179
  isShowSecondBordereaux: boolean;
1183
1180
  isShowCustomerName: boolean;
1184
1181
  isShowCommercialValue: boolean;
1185
- eori: string | null;
1186
1182
  } | undefined;
1187
1183
  user?: {
1188
1184
  id: number;
@@ -1579,7 +1575,6 @@ export declare const ShippingSchema: z.ZodObject<{
1579
1575
  isShowSecondBordereaux: boolean;
1580
1576
  isShowCustomerName: boolean;
1581
1577
  isShowCommercialValue: boolean;
1582
- eori: string | null;
1583
1578
  } | undefined;
1584
1579
  user?: {
1585
1580
  id: number;
@@ -845,7 +845,6 @@ export declare const UserBillingCenterSchema: z.ZodObject<{
845
845
  emailOne: z.ZodNullable<z.ZodString>;
846
846
  emailTwo: z.ZodNullable<z.ZodString>;
847
847
  emailThree: z.ZodNullable<z.ZodString>;
848
- eori: z.ZodNullable<z.ZodString>;
849
848
  tva: z.ZodNullable<z.ZodString>;
850
849
  customerId: z.ZodNullable<z.ZodNumber>;
851
850
  customer: z.ZodOptional<z.ZodLazy<z.ZodObject<{
@@ -1109,7 +1108,6 @@ export declare const UserBillingCenterSchema: z.ZodObject<{
1109
1108
  isShowSecondBordereaux: boolean;
1110
1109
  isShowCustomerName: boolean;
1111
1110
  isShowCommercialValue: boolean;
1112
- eori: string | null;
1113
1111
  country?: {
1114
1112
  id: number;
1115
1113
  createdAt: DateTime<true> | DateTime<false>;
@@ -1229,7 +1227,6 @@ export declare const UserBillingCenterSchema: z.ZodObject<{
1229
1227
  isShowSecondBordereaux: boolean;
1230
1228
  isShowCustomerName: boolean;
1231
1229
  isShowCommercialValue: boolean;
1232
- eori: string | null;
1233
1230
  country?: {
1234
1231
  id: number;
1235
1232
  createdAt: Date;
@@ -1356,7 +1353,6 @@ export declare const UserBillingCenterSchema: z.ZodObject<{
1356
1353
  isShowSecondBordereaux: boolean;
1357
1354
  isShowCustomerName: boolean;
1358
1355
  isShowCommercialValue: boolean;
1359
- eori: string | null;
1360
1356
  country?: {
1361
1357
  id: number;
1362
1358
  createdAt: DateTime<true> | DateTime<false>;
@@ -1662,7 +1658,6 @@ export declare const UserBillingCenterSchema: z.ZodObject<{
1662
1658
  isShowSecondBordereaux: boolean;
1663
1659
  isShowCustomerName: boolean;
1664
1660
  isShowCommercialValue: boolean;
1665
- eori: string | null;
1666
1661
  country?: {
1667
1662
  id: number;
1668
1663
  createdAt: Date;