exnet-routing 1.2.39 → 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.
@@ -43,7 +43,6 @@ export declare const CustomerSchema: z.ZodObject<{
43
43
  emailOne: z.ZodNullable<z.ZodString>;
44
44
  emailTwo: z.ZodNullable<z.ZodString>;
45
45
  emailThree: z.ZodNullable<z.ZodString>;
46
- eori: z.ZodNullable<z.ZodString>;
47
46
  tva: z.ZodNullable<z.ZodString>;
48
47
  isTrackingMail: z.ZodNullable<z.ZodBoolean>;
49
48
  isBillingCenter: z.ZodBoolean;
@@ -115,7 +114,6 @@ export declare const CustomerSchema: z.ZodObject<{
115
114
  emailOne: string | null;
116
115
  emailTwo: string | null;
117
116
  emailThree: string | null;
118
- eori: string | null;
119
117
  tva: string | null;
120
118
  isTrackingMail: boolean | null;
121
119
  isBillingCenter: boolean;
@@ -173,7 +171,6 @@ export declare const CustomerSchema: z.ZodObject<{
173
171
  emailOne: string | null;
174
172
  emailTwo: string | null;
175
173
  emailThree: string | null;
176
- eori: string | null;
177
174
  tva: string | null;
178
175
  isTrackingMail: boolean | null;
179
176
  isBillingCenter: boolean;
@@ -225,7 +222,6 @@ export declare const CustomerCreateSchema: z.ZodObject<{
225
222
  footer: z.ZodOptional<z.ZodAny>;
226
223
  emailOne: z.ZodOptional<z.ZodString>;
227
224
  emailThree: z.ZodOptional<z.ZodString>;
228
- eori: z.ZodOptional<z.ZodString>;
229
225
  tva: z.ZodOptional<z.ZodString>;
230
226
  isTrackingMail: z.ZodOptional<z.ZodBoolean>;
231
227
  isBillingCenter: z.ZodOptional<z.ZodBoolean>;
@@ -270,7 +266,6 @@ export declare const CustomerCreateSchema: z.ZodObject<{
270
266
  emailOne?: string | undefined;
271
267
  emailTwo?: string | undefined;
272
268
  emailThree?: string | undefined;
273
- eori?: string | undefined;
274
269
  tva?: string | undefined;
275
270
  isTrackingMail?: boolean | undefined;
276
271
  isBillingCenter?: boolean | undefined;
@@ -315,7 +310,6 @@ export declare const CustomerCreateSchema: z.ZodObject<{
315
310
  emailOne?: string | undefined;
316
311
  emailTwo?: string | undefined;
317
312
  emailThree?: string | undefined;
318
- eori?: string | undefined;
319
313
  tva?: string | undefined;
320
314
  isTrackingMail?: boolean | undefined;
321
315
  isBillingCenter?: boolean | undefined;
@@ -361,7 +355,6 @@ export declare const CustomerUpdateSchema: z.ZodObject<{
361
355
  footer: z.ZodOptional<z.ZodAny>;
362
356
  emailOne: z.ZodOptional<z.ZodString>;
363
357
  emailThree: z.ZodOptional<z.ZodString>;
364
- eori: z.ZodOptional<z.ZodString>;
365
358
  tva: z.ZodOptional<z.ZodString>;
366
359
  isTrackingMail: z.ZodOptional<z.ZodBoolean>;
367
360
  isBillingCenter: z.ZodOptional<z.ZodBoolean>;
@@ -406,7 +399,6 @@ export declare const CustomerUpdateSchema: z.ZodObject<{
406
399
  emailOne?: string | undefined;
407
400
  emailTwo?: string | undefined;
408
401
  emailThree?: string | undefined;
409
- eori?: string | undefined;
410
402
  tva?: string | undefined;
411
403
  isTrackingMail?: boolean | undefined;
412
404
  isBillingCenter?: boolean | undefined;
@@ -451,7 +443,6 @@ export declare const CustomerUpdateSchema: z.ZodObject<{
451
443
  emailOne?: string | undefined;
452
444
  emailTwo?: string | undefined;
453
445
  emailThree?: string | undefined;
454
- eori?: string | undefined;
455
446
  tva?: string | undefined;
456
447
  isTrackingMail?: boolean | undefined;
457
448
  isBillingCenter?: boolean | undefined;
@@ -47,7 +47,6 @@ exports.CustomerSchema = zod_1.z.object({
47
47
  emailOne: zod_1.z.string().nullable(),
48
48
  emailTwo: zod_1.z.string().nullable(),
49
49
  emailThree: zod_1.z.string().nullable(),
50
- eori: zod_1.z.string().nullable(),
51
50
  tva: zod_1.z.string().nullable(),
52
51
  isTrackingMail: zod_1.z.boolean().nullable(),
53
52
  isBillingCenter: zod_1.z.boolean(),
@@ -92,7 +91,6 @@ exports.CustomerCreateSchema = zod_1.z.object({
92
91
  footer: zod_1.z.any().optional(),
93
92
  emailOne: zod_1.z.string().optional(),
94
93
  emailThree: zod_1.z.string().optional(),
95
- eori: zod_1.z.string().optional(),
96
94
  tva: zod_1.z.string().optional(),
97
95
  isTrackingMail: zod_1.z.boolean().optional(),
98
96
  isBillingCenter: zod_1.z.boolean().optional(),
@@ -138,7 +136,6 @@ exports.CustomerUpdateSchema = zod_1.z.object({
138
136
  footer: zod_1.z.any().optional(),
139
137
  emailOne: zod_1.z.string().optional(),
140
138
  emailThree: zod_1.z.string().optional(),
141
- eori: zod_1.z.string().optional(),
142
139
  tva: zod_1.z.string().optional(),
143
140
  isTrackingMail: zod_1.z.boolean().optional(),
144
141
  isBillingCenter: zod_1.z.boolean().optional(),
@@ -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<{
@@ -135,7 +134,6 @@ export declare const FactureSchema: z.ZodObject<{
135
134
  emailOne: z.ZodNullable<z.ZodString>;
136
135
  emailTwo: z.ZodNullable<z.ZodString>;
137
136
  emailThree: z.ZodNullable<z.ZodString>;
138
- eori: z.ZodNullable<z.ZodString>;
139
137
  tva: z.ZodNullable<z.ZodString>;
140
138
  isTrackingMail: z.ZodNullable<z.ZodBoolean>;
141
139
  isBillingCenter: z.ZodBoolean;
@@ -207,7 +205,6 @@ export declare const FactureSchema: z.ZodObject<{
207
205
  emailOne: string | null;
208
206
  emailTwo: string | null;
209
207
  emailThree: string | null;
210
- eori: string | null;
211
208
  tva: string | null;
212
209
  isTrackingMail: boolean | null;
213
210
  isBillingCenter: boolean;
@@ -265,7 +262,6 @@ export declare const FactureSchema: z.ZodObject<{
265
262
  emailOne: string | null;
266
263
  emailTwo: string | null;
267
264
  emailThree: string | null;
268
- eori: string | null;
269
265
  tva: string | null;
270
266
  isTrackingMail: boolean | null;
271
267
  isBillingCenter: boolean;
@@ -342,7 +338,6 @@ export declare const FactureSchema: z.ZodObject<{
342
338
  emailOne: string | null;
343
339
  emailTwo: string | null;
344
340
  emailThree: string | null;
345
- eori: string | null;
346
341
  tva: string | null;
347
342
  isMailing: boolean;
348
343
  telephone: string | null;
@@ -408,7 +403,6 @@ export declare const FactureSchema: z.ZodObject<{
408
403
  emailOne: string | null;
409
404
  emailTwo: string | null;
410
405
  emailThree: string | null;
411
- eori: string | null;
412
406
  tva: string | null;
413
407
  isTrackingMail: boolean | null;
414
408
  isBillingCenter: boolean;
@@ -463,7 +457,6 @@ export declare const FactureSchema: z.ZodObject<{
463
457
  emailOne: string | null;
464
458
  emailTwo: string | null;
465
459
  emailThree: string | null;
466
- eori: string | null;
467
460
  tva: string | null;
468
461
  isMailing: boolean;
469
462
  telephone: string | null;
@@ -529,7 +522,6 @@ export declare const FactureSchema: z.ZodObject<{
529
522
  emailOne: string | null;
530
523
  emailTwo: string | null;
531
524
  emailThree: string | null;
532
- eori: string | null;
533
525
  tva: string | null;
534
526
  isTrackingMail: boolean | null;
535
527
  isBillingCenter: boolean;
@@ -698,7 +690,6 @@ export declare const FactureSchema: z.ZodObject<{
698
690
  emailOne: string | null;
699
691
  emailTwo: string | null;
700
692
  emailThree: string | null;
701
- eori: string | null;
702
693
  tva: string | null;
703
694
  isMailing: boolean;
704
695
  telephone: string | null;
@@ -764,7 +755,6 @@ export declare const FactureSchema: z.ZodObject<{
764
755
  emailOne: string | null;
765
756
  emailTwo: string | null;
766
757
  emailThree: string | null;
767
- eori: string | null;
768
758
  tva: string | null;
769
759
  isTrackingMail: boolean | null;
770
760
  isBillingCenter: boolean;
@@ -868,7 +858,6 @@ export declare const FactureSchema: z.ZodObject<{
868
858
  emailOne: string | null;
869
859
  emailTwo: string | null;
870
860
  emailThree: string | null;
871
- eori: string | null;
872
861
  tva: string | null;
873
862
  isMailing: boolean;
874
863
  telephone: string | null;
@@ -934,7 +923,6 @@ export declare const FactureSchema: z.ZodObject<{
934
923
  emailOne: string | null;
935
924
  emailTwo: string | null;
936
925
  emailThree: string | null;
937
- eori: string | null;
938
926
  tva: string | null;
939
927
  isTrackingMail: boolean | null;
940
928
  isBillingCenter: boolean;
@@ -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<{
@@ -142,7 +141,6 @@ export declare const FactureLineSchema: z.ZodObject<{
142
141
  emailOne: z.ZodNullable<z.ZodString>;
143
142
  emailTwo: z.ZodNullable<z.ZodString>;
144
143
  emailThree: z.ZodNullable<z.ZodString>;
145
- eori: z.ZodNullable<z.ZodString>;
146
144
  tva: z.ZodNullable<z.ZodString>;
147
145
  isTrackingMail: z.ZodNullable<z.ZodBoolean>;
148
146
  isBillingCenter: z.ZodBoolean;
@@ -214,7 +212,6 @@ export declare const FactureLineSchema: z.ZodObject<{
214
212
  emailOne: string | null;
215
213
  emailTwo: string | null;
216
214
  emailThree: string | null;
217
- eori: string | null;
218
215
  tva: string | null;
219
216
  isTrackingMail: boolean | null;
220
217
  isBillingCenter: boolean;
@@ -272,7 +269,6 @@ export declare const FactureLineSchema: z.ZodObject<{
272
269
  emailOne: string | null;
273
270
  emailTwo: string | null;
274
271
  emailThree: string | null;
275
- eori: string | null;
276
272
  tva: string | null;
277
273
  isTrackingMail: boolean | null;
278
274
  isBillingCenter: boolean;
@@ -349,7 +345,6 @@ export declare const FactureLineSchema: z.ZodObject<{
349
345
  emailOne: string | null;
350
346
  emailTwo: string | null;
351
347
  emailThree: string | null;
352
- eori: string | null;
353
348
  tva: string | null;
354
349
  isMailing: boolean;
355
350
  telephone: string | null;
@@ -415,7 +410,6 @@ export declare const FactureLineSchema: z.ZodObject<{
415
410
  emailOne: string | null;
416
411
  emailTwo: string | null;
417
412
  emailThree: string | null;
418
- eori: string | null;
419
413
  tva: string | null;
420
414
  isTrackingMail: boolean | null;
421
415
  isBillingCenter: boolean;
@@ -470,7 +464,6 @@ export declare const FactureLineSchema: z.ZodObject<{
470
464
  emailOne: string | null;
471
465
  emailTwo: string | null;
472
466
  emailThree: string | null;
473
- eori: string | null;
474
467
  tva: string | null;
475
468
  isMailing: boolean;
476
469
  telephone: string | null;
@@ -536,7 +529,6 @@ export declare const FactureLineSchema: z.ZodObject<{
536
529
  emailOne: string | null;
537
530
  emailTwo: string | null;
538
531
  emailThree: string | null;
539
- eori: string | null;
540
532
  tva: string | null;
541
533
  isTrackingMail: boolean | null;
542
534
  isBillingCenter: boolean;
@@ -705,7 +697,6 @@ export declare const FactureLineSchema: z.ZodObject<{
705
697
  emailOne: string | null;
706
698
  emailTwo: string | null;
707
699
  emailThree: string | null;
708
- eori: string | null;
709
700
  tva: string | null;
710
701
  isMailing: boolean;
711
702
  telephone: string | null;
@@ -771,7 +762,6 @@ export declare const FactureLineSchema: z.ZodObject<{
771
762
  emailOne: string | null;
772
763
  emailTwo: string | null;
773
764
  emailThree: string | null;
774
- eori: string | null;
775
765
  tva: string | null;
776
766
  isTrackingMail: boolean | null;
777
767
  isBillingCenter: boolean;
@@ -875,7 +865,6 @@ export declare const FactureLineSchema: z.ZodObject<{
875
865
  emailOne: string | null;
876
866
  emailTwo: string | null;
877
867
  emailThree: string | null;
878
- eori: string | null;
879
868
  tva: string | null;
880
869
  isMailing: boolean;
881
870
  telephone: string | null;
@@ -941,7 +930,6 @@ export declare const FactureLineSchema: z.ZodObject<{
941
930
  emailOne: string | null;
942
931
  emailTwo: string | null;
943
932
  emailThree: string | null;
944
- eori: string | null;
945
933
  tva: string | null;
946
934
  isTrackingMail: boolean | null;
947
935
  isBillingCenter: boolean;
@@ -1361,7 +1349,6 @@ export declare const FactureLineSchema: z.ZodObject<{
1361
1349
  emailOne: string | null;
1362
1350
  emailTwo: string | null;
1363
1351
  emailThree: string | null;
1364
- eori: string | null;
1365
1352
  tva: string | null;
1366
1353
  isMailing: boolean;
1367
1354
  telephone: string | null;
@@ -1427,7 +1414,6 @@ export declare const FactureLineSchema: z.ZodObject<{
1427
1414
  emailOne: string | null;
1428
1415
  emailTwo: string | null;
1429
1416
  emailThree: string | null;
1430
- eori: string | null;
1431
1417
  tva: string | null;
1432
1418
  isTrackingMail: boolean | null;
1433
1419
  isBillingCenter: boolean;
@@ -1632,7 +1618,6 @@ export declare const FactureLineSchema: z.ZodObject<{
1632
1618
  emailOne: string | null;
1633
1619
  emailTwo: string | null;
1634
1620
  emailThree: string | null;
1635
- eori: string | null;
1636
1621
  tva: string | null;
1637
1622
  isMailing: boolean;
1638
1623
  telephone: string | null;
@@ -1698,7 +1683,6 @@ export declare const FactureLineSchema: z.ZodObject<{
1698
1683
  emailOne: string | null;
1699
1684
  emailTwo: string | null;
1700
1685
  emailThree: string | null;
1701
- eori: string | null;
1702
1686
  tva: string | null;
1703
1687
  isTrackingMail: boolean | null;
1704
1688
  isBillingCenter: boolean;
@@ -117,7 +117,6 @@ export declare const HistoriqueActionSchema: z.ZodObject<{
117
117
  emailOne: z.ZodNullable<z.ZodString>;
118
118
  emailTwo: z.ZodNullable<z.ZodString>;
119
119
  emailThree: z.ZodNullable<z.ZodString>;
120
- eori: z.ZodNullable<z.ZodString>;
121
120
  tva: z.ZodNullable<z.ZodString>;
122
121
  isTrackingMail: z.ZodNullable<z.ZodBoolean>;
123
122
  isBillingCenter: z.ZodBoolean;
@@ -189,7 +188,6 @@ export declare const HistoriqueActionSchema: z.ZodObject<{
189
188
  emailOne: string | null;
190
189
  emailTwo: string | null;
191
190
  emailThree: string | null;
192
- eori: string | null;
193
191
  tva: string | null;
194
192
  isTrackingMail: boolean | null;
195
193
  isBillingCenter: boolean;
@@ -247,7 +245,6 @@ export declare const HistoriqueActionSchema: z.ZodObject<{
247
245
  emailOne: string | null;
248
246
  emailTwo: string | null;
249
247
  emailThree: string | null;
250
- eori: string | null;
251
248
  tva: string | null;
252
249
  isTrackingMail: boolean | null;
253
250
  isBillingCenter: boolean;
@@ -560,7 +557,6 @@ export declare const HistoriqueActionSchema: z.ZodObject<{
560
557
  emailOne: string | null;
561
558
  emailTwo: string | null;
562
559
  emailThree: string | null;
563
- eori: string | null;
564
560
  tva: string | null;
565
561
  isTrackingMail: boolean | null;
566
562
  isBillingCenter: boolean;
@@ -739,7 +735,6 @@ export declare const HistoriqueActionSchema: z.ZodObject<{
739
735
  emailOne: string | null;
740
736
  emailTwo: string | null;
741
737
  emailThree: string | null;
742
- eori: string | null;
743
738
  tva: string | null;
744
739
  isTrackingMail: boolean | null;
745
740
  isBillingCenter: boolean;
@@ -1087,7 +1082,6 @@ export declare const HistoriqueActionSchema: z.ZodObject<{
1087
1082
  emailOne: string | null;
1088
1083
  emailTwo: string | null;
1089
1084
  emailThree: string | null;
1090
- eori: string | null;
1091
1085
  tva: string | null;
1092
1086
  isTrackingMail: boolean | null;
1093
1087
  isBillingCenter: boolean;
@@ -1327,7 +1321,6 @@ export declare const HistoriqueActionSchema: z.ZodObject<{
1327
1321
  emailOne: string | null;
1328
1322
  emailTwo: string | null;
1329
1323
  emailThree: string | null;
1330
- eori: string | null;
1331
1324
  tva: string | null;
1332
1325
  isTrackingMail: boolean | null;
1333
1326
  isBillingCenter: boolean;
@@ -127,7 +127,6 @@ export declare const InformationChauffeurSchema: z.ZodObject<{
127
127
  emailOne: z.ZodNullable<z.ZodString>;
128
128
  emailTwo: z.ZodNullable<z.ZodString>;
129
129
  emailThree: z.ZodNullable<z.ZodString>;
130
- eori: z.ZodNullable<z.ZodString>;
131
130
  tva: z.ZodNullable<z.ZodString>;
132
131
  isTrackingMail: z.ZodNullable<z.ZodBoolean>;
133
132
  isBillingCenter: z.ZodBoolean;
@@ -199,7 +198,6 @@ export declare const InformationChauffeurSchema: z.ZodObject<{
199
198
  emailOne: string | null;
200
199
  emailTwo: string | null;
201
200
  emailThree: string | null;
202
- eori: string | null;
203
201
  tva: string | null;
204
202
  isTrackingMail: boolean | null;
205
203
  isBillingCenter: boolean;
@@ -257,7 +255,6 @@ export declare const InformationChauffeurSchema: z.ZodObject<{
257
255
  emailOne: string | null;
258
256
  emailTwo: string | null;
259
257
  emailThree: string | null;
260
- eori: string | null;
261
258
  tva: string | null;
262
259
  isTrackingMail: boolean | null;
263
260
  isBillingCenter: boolean;
@@ -570,7 +567,6 @@ export declare const InformationChauffeurSchema: z.ZodObject<{
570
567
  emailOne: string | null;
571
568
  emailTwo: string | null;
572
569
  emailThree: string | null;
573
- eori: string | null;
574
570
  tva: string | null;
575
571
  isTrackingMail: boolean | null;
576
572
  isBillingCenter: boolean;
@@ -749,7 +745,6 @@ export declare const InformationChauffeurSchema: z.ZodObject<{
749
745
  emailOne: string | null;
750
746
  emailTwo: string | null;
751
747
  emailThree: string | null;
752
- eori: string | null;
753
748
  tva: string | null;
754
749
  isTrackingMail: boolean | null;
755
750
  isBillingCenter: boolean;
@@ -949,7 +944,6 @@ export declare const InformationChauffeurSchema: z.ZodObject<{
949
944
  emailOne: string | null;
950
945
  emailTwo: string | null;
951
946
  emailThree: string | null;
952
- eori: string | null;
953
947
  tva: string | null;
954
948
  isTrackingMail: boolean | null;
955
949
  isBillingCenter: boolean;
@@ -1149,7 +1143,6 @@ export declare const InformationChauffeurSchema: z.ZodObject<{
1149
1143
  emailOne: string | null;
1150
1144
  emailTwo: string | null;
1151
1145
  emailThree: string | null;
1152
- eori: string | null;
1153
1146
  tva: string | null;
1154
1147
  isTrackingMail: boolean | null;
1155
1148
  isBillingCenter: boolean;
@@ -114,7 +114,6 @@ export declare const InformationImportanteSchema: z.ZodObject<{
114
114
  emailOne: z.ZodNullable<z.ZodString>;
115
115
  emailTwo: z.ZodNullable<z.ZodString>;
116
116
  emailThree: z.ZodNullable<z.ZodString>;
117
- eori: z.ZodNullable<z.ZodString>;
118
117
  tva: z.ZodNullable<z.ZodString>;
119
118
  isTrackingMail: z.ZodNullable<z.ZodBoolean>;
120
119
  isBillingCenter: z.ZodBoolean;
@@ -186,7 +185,6 @@ export declare const InformationImportanteSchema: z.ZodObject<{
186
185
  emailOne: string | null;
187
186
  emailTwo: string | null;
188
187
  emailThree: string | null;
189
- eori: string | null;
190
188
  tva: string | null;
191
189
  isTrackingMail: boolean | null;
192
190
  isBillingCenter: boolean;
@@ -244,7 +242,6 @@ export declare const InformationImportanteSchema: z.ZodObject<{
244
242
  emailOne: string | null;
245
243
  emailTwo: string | null;
246
244
  emailThree: string | null;
247
- eori: string | null;
248
245
  tva: string | null;
249
246
  isTrackingMail: boolean | null;
250
247
  isBillingCenter: boolean;
@@ -557,7 +554,6 @@ export declare const InformationImportanteSchema: z.ZodObject<{
557
554
  emailOne: string | null;
558
555
  emailTwo: string | null;
559
556
  emailThree: string | null;
560
- eori: string | null;
561
557
  tva: string | null;
562
558
  isTrackingMail: boolean | null;
563
559
  isBillingCenter: boolean;
@@ -736,7 +732,6 @@ export declare const InformationImportanteSchema: z.ZodObject<{
736
732
  emailOne: string | null;
737
733
  emailTwo: string | null;
738
734
  emailThree: string | null;
739
- eori: string | null;
740
735
  tva: string | null;
741
736
  isTrackingMail: boolean | null;
742
737
  isBillingCenter: boolean;
@@ -1082,7 +1077,6 @@ export declare const InformationImportanteSchema: z.ZodObject<{
1082
1077
  emailOne: string | null;
1083
1078
  emailTwo: string | null;
1084
1079
  emailThree: string | null;
1085
- eori: string | null;
1086
1080
  tva: string | null;
1087
1081
  isTrackingMail: boolean | null;
1088
1082
  isBillingCenter: boolean;
@@ -1320,7 +1314,6 @@ export declare const InformationImportanteSchema: z.ZodObject<{
1320
1314
  emailOne: string | null;
1321
1315
  emailTwo: string | null;
1322
1316
  emailThree: string | null;
1323
- eori: string | null;
1324
1317
  tva: string | null;
1325
1318
  isTrackingMail: boolean | null;
1326
1319
  isBillingCenter: boolean;
@@ -114,7 +114,6 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
114
114
  emailOne: z.ZodNullable<z.ZodString>;
115
115
  emailTwo: z.ZodNullable<z.ZodString>;
116
116
  emailThree: z.ZodNullable<z.ZodString>;
117
- eori: z.ZodNullable<z.ZodString>;
118
117
  tva: z.ZodNullable<z.ZodString>;
119
118
  isTrackingMail: z.ZodNullable<z.ZodBoolean>;
120
119
  isBillingCenter: z.ZodBoolean;
@@ -186,7 +185,6 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
186
185
  emailOne: string | null;
187
186
  emailTwo: string | null;
188
187
  emailThree: string | null;
189
- eori: string | null;
190
188
  tva: string | null;
191
189
  isTrackingMail: boolean | null;
192
190
  isBillingCenter: boolean;
@@ -244,7 +242,6 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
244
242
  emailOne: string | null;
245
243
  emailTwo: string | null;
246
244
  emailThree: string | null;
247
- eori: string | null;
248
245
  tva: string | null;
249
246
  isTrackingMail: boolean | null;
250
247
  isBillingCenter: boolean;
@@ -557,7 +554,6 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
557
554
  emailOne: string | null;
558
555
  emailTwo: string | null;
559
556
  emailThree: string | null;
560
- eori: string | null;
561
557
  tva: string | null;
562
558
  isTrackingMail: boolean | null;
563
559
  isBillingCenter: boolean;
@@ -736,7 +732,6 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
736
732
  emailOne: string | null;
737
733
  emailTwo: string | null;
738
734
  emailThree: string | null;
739
- eori: string | null;
740
735
  tva: string | null;
741
736
  isTrackingMail: boolean | null;
742
737
  isBillingCenter: boolean;
@@ -1082,7 +1077,6 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
1082
1077
  emailOne: string | null;
1083
1078
  emailTwo: string | null;
1084
1079
  emailThree: string | null;
1085
- eori: string | null;
1086
1080
  tva: string | null;
1087
1081
  isTrackingMail: boolean | null;
1088
1082
  isBillingCenter: boolean;
@@ -1320,7 +1314,6 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
1320
1314
  emailOne: string | null;
1321
1315
  emailTwo: string | null;
1322
1316
  emailThree: string | null;
1323
- eori: string | null;
1324
1317
  tva: string | null;
1325
1318
  isTrackingMail: boolean | null;
1326
1319
  isBillingCenter: boolean;
@@ -148,7 +148,6 @@ export declare const PriseDePosteSchema: z.ZodObject<{
148
148
  emailOne: z.ZodNullable<z.ZodString>;
149
149
  emailTwo: z.ZodNullable<z.ZodString>;
150
150
  emailThree: z.ZodNullable<z.ZodString>;
151
- eori: z.ZodNullable<z.ZodString>;
152
151
  tva: z.ZodNullable<z.ZodString>;
153
152
  isTrackingMail: z.ZodNullable<z.ZodBoolean>;
154
153
  isBillingCenter: z.ZodBoolean;
@@ -220,7 +219,6 @@ export declare const PriseDePosteSchema: z.ZodObject<{
220
219
  emailOne: string | null;
221
220
  emailTwo: string | null;
222
221
  emailThree: string | null;
223
- eori: string | null;
224
222
  tva: string | null;
225
223
  isTrackingMail: boolean | null;
226
224
  isBillingCenter: boolean;
@@ -278,7 +276,6 @@ export declare const PriseDePosteSchema: z.ZodObject<{
278
276
  emailOne: string | null;
279
277
  emailTwo: string | null;
280
278
  emailThree: string | null;
281
- eori: string | null;
282
279
  tva: string | null;
283
280
  isTrackingMail: boolean | null;
284
281
  isBillingCenter: boolean;
@@ -591,7 +588,6 @@ export declare const PriseDePosteSchema: z.ZodObject<{
591
588
  emailOne: string | null;
592
589
  emailTwo: string | null;
593
590
  emailThree: string | null;
594
- eori: string | null;
595
591
  tva: string | null;
596
592
  isTrackingMail: boolean | null;
597
593
  isBillingCenter: boolean;
@@ -770,7 +766,6 @@ export declare const PriseDePosteSchema: z.ZodObject<{
770
766
  emailOne: string | null;
771
767
  emailTwo: string | null;
772
768
  emailThree: string | null;
773
- eori: string | null;
774
769
  tva: string | null;
775
770
  isTrackingMail: boolean | null;
776
771
  isBillingCenter: boolean;
@@ -987,7 +982,6 @@ export declare const PriseDePosteSchema: z.ZodObject<{
987
982
  emailOne: string | null;
988
983
  emailTwo: string | null;
989
984
  emailThree: string | null;
990
- eori: string | null;
991
985
  tva: string | null;
992
986
  isTrackingMail: boolean | null;
993
987
  isBillingCenter: boolean;
@@ -1208,7 +1202,6 @@ export declare const PriseDePosteSchema: z.ZodObject<{
1208
1202
  emailOne: string | null;
1209
1203
  emailTwo: string | null;
1210
1204
  emailThree: string | null;
1211
- eori: string | null;
1212
1205
  tva: string | null;
1213
1206
  isTrackingMail: boolean | null;
1214
1207
  isBillingCenter: boolean;
@@ -120,7 +120,6 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
120
120
  emailOne: z.ZodNullable<z.ZodString>;
121
121
  emailTwo: z.ZodNullable<z.ZodString>;
122
122
  emailThree: z.ZodNullable<z.ZodString>;
123
- eori: z.ZodNullable<z.ZodString>;
124
123
  tva: z.ZodNullable<z.ZodString>;
125
124
  isTrackingMail: z.ZodNullable<z.ZodBoolean>;
126
125
  isBillingCenter: z.ZodBoolean;
@@ -192,7 +191,6 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
192
191
  emailOne: string | null;
193
192
  emailTwo: string | null;
194
193
  emailThree: string | null;
195
- eori: string | null;
196
194
  tva: string | null;
197
195
  isTrackingMail: boolean | null;
198
196
  isBillingCenter: boolean;
@@ -250,7 +248,6 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
250
248
  emailOne: string | null;
251
249
  emailTwo: string | null;
252
250
  emailThree: string | null;
253
- eori: string | null;
254
251
  tva: string | null;
255
252
  isTrackingMail: boolean | null;
256
253
  isBillingCenter: boolean;
@@ -563,7 +560,6 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
563
560
  emailOne: string | null;
564
561
  emailTwo: string | null;
565
562
  emailThree: string | null;
566
- eori: string | null;
567
563
  tva: string | null;
568
564
  isTrackingMail: boolean | null;
569
565
  isBillingCenter: boolean;
@@ -742,7 +738,6 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
742
738
  emailOne: string | null;
743
739
  emailTwo: string | null;
744
740
  emailThree: string | null;
745
- eori: string | null;
746
741
  tva: string | null;
747
742
  isTrackingMail: boolean | null;
748
743
  isBillingCenter: boolean;
@@ -1094,7 +1089,6 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
1094
1089
  emailOne: string | null;
1095
1090
  emailTwo: string | null;
1096
1091
  emailThree: string | null;
1097
- eori: string | null;
1098
1092
  tva: string | null;
1099
1093
  isTrackingMail: boolean | null;
1100
1094
  isBillingCenter: boolean;
@@ -1338,7 +1332,6 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
1338
1332
  emailOne: string | null;
1339
1333
  emailTwo: string | null;
1340
1334
  emailThree: string | null;
1341
- eori: string | null;
1342
1335
  tva: string | null;
1343
1336
  isTrackingMail: boolean | null;
1344
1337
  isBillingCenter: boolean;
@@ -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, {
@@ -163,7 +162,6 @@ export declare const ShippingSchema: z.ZodObject<{
163
162
  emailOne: string | null;
164
163
  emailTwo: string | null;
165
164
  emailThree: string | null;
166
- eori: string | null;
167
165
  tva: string | null;
168
166
  isMailing: boolean;
169
167
  telephone: string | null;
@@ -216,7 +214,6 @@ export declare const ShippingSchema: z.ZodObject<{
216
214
  emailOne: string | null;
217
215
  emailTwo: string | null;
218
216
  emailThree: string | null;
219
- eori: string | null;
220
217
  tva: string | null;
221
218
  isMailing: boolean;
222
219
  telephone: string | null;
@@ -1168,7 +1165,6 @@ export declare const ShippingSchema: z.ZodObject<{
1168
1165
  emailOne: string | null;
1169
1166
  emailTwo: string | null;
1170
1167
  emailThree: string | null;
1171
- eori: string | null;
1172
1168
  tva: string | null;
1173
1169
  isMailing: boolean;
1174
1170
  telephone: string | null;
@@ -1565,7 +1561,6 @@ export declare const ShippingSchema: z.ZodObject<{
1565
1561
  emailOne: string | null;
1566
1562
  emailTwo: string | null;
1567
1563
  emailThree: string | null;
1568
- eori: string | null;
1569
1564
  tva: string | null;
1570
1565
  isMailing: boolean;
1571
1566
  telephone: string | null;