exnet-routing 1.2.38 → 1.2.40
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/models/_billing_center.d.ts +16 -31
- package/dist/models/_chat.d.ts +40 -67
- package/dist/models/_chat_message.d.ts +18 -39
- package/dist/models/_contact.d.ts +6 -27
- package/dist/models/_contact_visible.d.ts +12 -54
- package/dist/models/_customer.d.ts +0 -15
- package/dist/models/_customer.js +0 -5
- package/dist/models/_facture.d.ts +8 -29
- package/dist/models/_facture_line.d.ts +12 -39
- package/dist/models/_historique_action.d.ts +6 -27
- package/dist/models/_information_chauffeur.d.ts +6 -27
- package/dist/models/_information_importante.d.ts +6 -27
- package/dist/models/_livraison_chauffeur.d.ts +6 -27
- package/dist/models/_prise_de_poste.d.ts +6 -27
- package/dist/models/_ramassage_chauffeur.d.ts +6 -27
- package/dist/models/_salarie.d.ts +6 -6
- package/dist/models/_shipping.d.ts +8 -8
- package/dist/models/_shipping_affected.d.ts +6 -27
- package/dist/models/_shipping_comment.d.ts +6 -27
- package/dist/models/_shipping_course.d.ts +6 -27
- package/dist/models/_shipping_document.d.ts +6 -27
- package/dist/models/_shipping_tracking.d.ts +6 -27
- package/dist/models/_tracking_visible.d.ts +12 -54
- package/dist/models/_user.d.ts +4 -19
- package/dist/models/_user_billing_center.d.ts +14 -56
- package/dist/models/_user_login_historie.d.ts +6 -27
- package/dist/models/_vehicule_affected.d.ts +6 -27
- package/dist/routes/admin.d.ts +416 -1637
- package/dist/routes/ops.d.ts +744 -1209
- package/dist/routes/public.d.ts +16 -70
- package/dist/routes/user.d.ts +358 -649
- package/package.json +1 -1
|
@@ -104,10 +104,8 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
104
104
|
city: z.ZodString;
|
|
105
105
|
telephoneOne: z.ZodString;
|
|
106
106
|
telephoneTwo: z.ZodNullable<z.ZodString>;
|
|
107
|
-
comptaResponsible: z.ZodString;
|
|
108
107
|
invoiceMail: z.ZodString;
|
|
109
108
|
dafResponsibleName: z.ZodString;
|
|
110
|
-
telephone: z.ZodString;
|
|
111
109
|
email: z.ZodNullable<z.ZodString>;
|
|
112
110
|
intraVatNumber: z.ZodNullable<z.ZodString>;
|
|
113
111
|
submittedToFrenchVat: z.ZodBoolean;
|
|
@@ -137,7 +135,6 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
137
135
|
emailOne: z.ZodNullable<z.ZodString>;
|
|
138
136
|
emailTwo: z.ZodNullable<z.ZodString>;
|
|
139
137
|
emailThree: z.ZodNullable<z.ZodString>;
|
|
140
|
-
eori: z.ZodNullable<z.ZodString>;
|
|
141
138
|
tva: z.ZodNullable<z.ZodString>;
|
|
142
139
|
isTrackingMail: z.ZodNullable<z.ZodBoolean>;
|
|
143
140
|
isBillingCenter: z.ZodBoolean;
|
|
@@ -178,10 +175,8 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
178
175
|
city: string;
|
|
179
176
|
telephoneOne: string;
|
|
180
177
|
telephoneTwo: string | null;
|
|
181
|
-
comptaResponsible: string;
|
|
182
178
|
invoiceMail: string;
|
|
183
179
|
dafResponsibleName: string;
|
|
184
|
-
telephone: string;
|
|
185
180
|
email: string | null;
|
|
186
181
|
intraVatNumber: string | null;
|
|
187
182
|
submittedToFrenchVat: boolean;
|
|
@@ -211,7 +206,6 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
211
206
|
emailOne: string | null;
|
|
212
207
|
emailTwo: string | null;
|
|
213
208
|
emailThree: string | null;
|
|
214
|
-
eori: string | null;
|
|
215
209
|
tva: string | null;
|
|
216
210
|
isTrackingMail: boolean | null;
|
|
217
211
|
isBillingCenter: boolean;
|
|
@@ -238,10 +232,8 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
238
232
|
city: string;
|
|
239
233
|
telephoneOne: string;
|
|
240
234
|
telephoneTwo: string | null;
|
|
241
|
-
comptaResponsible: string;
|
|
242
235
|
invoiceMail: string;
|
|
243
236
|
dafResponsibleName: string;
|
|
244
|
-
telephone: string;
|
|
245
237
|
email: string | null;
|
|
246
238
|
intraVatNumber: string | null;
|
|
247
239
|
submittedToFrenchVat: boolean;
|
|
@@ -271,7 +263,6 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
271
263
|
emailOne: string | null;
|
|
272
264
|
emailTwo: string | null;
|
|
273
265
|
emailThree: string | null;
|
|
274
|
-
eori: string | null;
|
|
275
266
|
tva: string | null;
|
|
276
267
|
isTrackingMail: boolean | null;
|
|
277
268
|
isBillingCenter: boolean;
|
|
@@ -322,7 +313,6 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
322
313
|
telephoneOne: string;
|
|
323
314
|
telephoneTwo: string | null;
|
|
324
315
|
dafResponsibleName: string | null;
|
|
325
|
-
telephone: string | null;
|
|
326
316
|
email: string | null;
|
|
327
317
|
intraVatNumber: string | null;
|
|
328
318
|
numeroEori: string | null;
|
|
@@ -349,9 +339,9 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
349
339
|
emailOne: string | null;
|
|
350
340
|
emailTwo: string | null;
|
|
351
341
|
emailThree: string | null;
|
|
352
|
-
eori: string | null;
|
|
353
342
|
tva: string | null;
|
|
354
343
|
isMailing: boolean;
|
|
344
|
+
telephone: string | null;
|
|
355
345
|
billingCenterName: string;
|
|
356
346
|
customerId: number | null;
|
|
357
347
|
numeroSiren: string | null;
|
|
@@ -363,6 +353,7 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
363
353
|
isShowSecondBordereaux: boolean;
|
|
364
354
|
isShowCustomerName: boolean;
|
|
365
355
|
isShowCommercialValue: boolean;
|
|
356
|
+
eori: string | null;
|
|
366
357
|
country?: {
|
|
367
358
|
id: number;
|
|
368
359
|
createdAt: DateTime<true> | DateTime<false>;
|
|
@@ -383,10 +374,8 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
383
374
|
city: string;
|
|
384
375
|
telephoneOne: string;
|
|
385
376
|
telephoneTwo: string | null;
|
|
386
|
-
comptaResponsible: string;
|
|
387
377
|
invoiceMail: string;
|
|
388
378
|
dafResponsibleName: string;
|
|
389
|
-
telephone: string;
|
|
390
379
|
email: string | null;
|
|
391
380
|
intraVatNumber: string | null;
|
|
392
381
|
submittedToFrenchVat: boolean;
|
|
@@ -416,7 +405,6 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
416
405
|
emailOne: string | null;
|
|
417
406
|
emailTwo: string | null;
|
|
418
407
|
emailThree: string | null;
|
|
419
|
-
eori: string | null;
|
|
420
408
|
tva: string | null;
|
|
421
409
|
isTrackingMail: boolean | null;
|
|
422
410
|
isBillingCenter: boolean;
|
|
@@ -445,7 +433,6 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
445
433
|
telephoneOne: string;
|
|
446
434
|
telephoneTwo: string | null;
|
|
447
435
|
dafResponsibleName: string | null;
|
|
448
|
-
telephone: string | null;
|
|
449
436
|
email: string | null;
|
|
450
437
|
intraVatNumber: string | null;
|
|
451
438
|
numeroEori: string | null;
|
|
@@ -472,9 +459,9 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
472
459
|
emailOne: string | null;
|
|
473
460
|
emailTwo: string | null;
|
|
474
461
|
emailThree: string | null;
|
|
475
|
-
eori: string | null;
|
|
476
462
|
tva: string | null;
|
|
477
463
|
isMailing: boolean;
|
|
464
|
+
telephone: string | null;
|
|
478
465
|
billingCenterName: string;
|
|
479
466
|
customerId: number | null;
|
|
480
467
|
numeroSiren: string | null;
|
|
@@ -486,6 +473,7 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
486
473
|
isShowSecondBordereaux: boolean;
|
|
487
474
|
isShowCustomerName: boolean;
|
|
488
475
|
isShowCommercialValue: boolean;
|
|
476
|
+
eori: string | null;
|
|
489
477
|
country?: {
|
|
490
478
|
id: number;
|
|
491
479
|
createdAt: Date;
|
|
@@ -506,10 +494,8 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
506
494
|
city: string;
|
|
507
495
|
telephoneOne: string;
|
|
508
496
|
telephoneTwo: string | null;
|
|
509
|
-
comptaResponsible: string;
|
|
510
497
|
invoiceMail: string;
|
|
511
498
|
dafResponsibleName: string;
|
|
512
|
-
telephone: string;
|
|
513
499
|
email: string | null;
|
|
514
500
|
intraVatNumber: string | null;
|
|
515
501
|
submittedToFrenchVat: boolean;
|
|
@@ -539,7 +525,6 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
539
525
|
emailOne: string | null;
|
|
540
526
|
emailTwo: string | null;
|
|
541
527
|
emailThree: string | null;
|
|
542
|
-
eori: string | null;
|
|
543
528
|
tva: string | null;
|
|
544
529
|
isTrackingMail: boolean | null;
|
|
545
530
|
isBillingCenter: boolean;
|
|
@@ -682,7 +667,6 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
682
667
|
telephoneOne: string;
|
|
683
668
|
telephoneTwo: string | null;
|
|
684
669
|
dafResponsibleName: string | null;
|
|
685
|
-
telephone: string | null;
|
|
686
670
|
email: string | null;
|
|
687
671
|
intraVatNumber: string | null;
|
|
688
672
|
numeroEori: string | null;
|
|
@@ -709,9 +693,9 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
709
693
|
emailOne: string | null;
|
|
710
694
|
emailTwo: string | null;
|
|
711
695
|
emailThree: string | null;
|
|
712
|
-
eori: string | null;
|
|
713
696
|
tva: string | null;
|
|
714
697
|
isMailing: boolean;
|
|
698
|
+
telephone: string | null;
|
|
715
699
|
billingCenterName: string;
|
|
716
700
|
customerId: number | null;
|
|
717
701
|
numeroSiren: string | null;
|
|
@@ -723,6 +707,7 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
723
707
|
isShowSecondBordereaux: boolean;
|
|
724
708
|
isShowCustomerName: boolean;
|
|
725
709
|
isShowCommercialValue: boolean;
|
|
710
|
+
eori: string | null;
|
|
726
711
|
country?: {
|
|
727
712
|
id: number;
|
|
728
713
|
createdAt: DateTime<true> | DateTime<false>;
|
|
@@ -743,10 +728,8 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
743
728
|
city: string;
|
|
744
729
|
telephoneOne: string;
|
|
745
730
|
telephoneTwo: string | null;
|
|
746
|
-
comptaResponsible: string;
|
|
747
731
|
invoiceMail: string;
|
|
748
732
|
dafResponsibleName: string;
|
|
749
|
-
telephone: string;
|
|
750
733
|
email: string | null;
|
|
751
734
|
intraVatNumber: string | null;
|
|
752
735
|
submittedToFrenchVat: boolean;
|
|
@@ -776,7 +759,6 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
776
759
|
emailOne: string | null;
|
|
777
760
|
emailTwo: string | null;
|
|
778
761
|
emailThree: string | null;
|
|
779
|
-
eori: string | null;
|
|
780
762
|
tva: string | null;
|
|
781
763
|
isTrackingMail: boolean | null;
|
|
782
764
|
isBillingCenter: boolean;
|
|
@@ -854,7 +836,6 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
854
836
|
telephoneOne: string;
|
|
855
837
|
telephoneTwo: string | null;
|
|
856
838
|
dafResponsibleName: string | null;
|
|
857
|
-
telephone: string | null;
|
|
858
839
|
email: string | null;
|
|
859
840
|
intraVatNumber: string | null;
|
|
860
841
|
numeroEori: string | null;
|
|
@@ -881,9 +862,9 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
881
862
|
emailOne: string | null;
|
|
882
863
|
emailTwo: string | null;
|
|
883
864
|
emailThree: string | null;
|
|
884
|
-
eori: string | null;
|
|
885
865
|
tva: string | null;
|
|
886
866
|
isMailing: boolean;
|
|
867
|
+
telephone: string | null;
|
|
887
868
|
billingCenterName: string;
|
|
888
869
|
customerId: number | null;
|
|
889
870
|
numeroSiren: string | null;
|
|
@@ -895,6 +876,7 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
895
876
|
isShowSecondBordereaux: boolean;
|
|
896
877
|
isShowCustomerName: boolean;
|
|
897
878
|
isShowCommercialValue: boolean;
|
|
879
|
+
eori: string | null;
|
|
898
880
|
country?: {
|
|
899
881
|
id: number;
|
|
900
882
|
createdAt: Date;
|
|
@@ -915,10 +897,8 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
915
897
|
city: string;
|
|
916
898
|
telephoneOne: string;
|
|
917
899
|
telephoneTwo: string | null;
|
|
918
|
-
comptaResponsible: string;
|
|
919
900
|
invoiceMail: string;
|
|
920
901
|
dafResponsibleName: string;
|
|
921
|
-
telephone: string;
|
|
922
902
|
email: string | null;
|
|
923
903
|
intraVatNumber: string | null;
|
|
924
904
|
submittedToFrenchVat: boolean;
|
|
@@ -948,7 +928,6 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
948
928
|
emailOne: string | null;
|
|
949
929
|
emailTwo: string | null;
|
|
950
930
|
emailThree: string | null;
|
|
951
|
-
eori: string | null;
|
|
952
931
|
tva: string | null;
|
|
953
932
|
isTrackingMail: boolean | null;
|
|
954
933
|
isBillingCenter: boolean;
|
|
@@ -111,10 +111,8 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
111
111
|
city: z.ZodString;
|
|
112
112
|
telephoneOne: z.ZodString;
|
|
113
113
|
telephoneTwo: z.ZodNullable<z.ZodString>;
|
|
114
|
-
comptaResponsible: z.ZodString;
|
|
115
114
|
invoiceMail: z.ZodString;
|
|
116
115
|
dafResponsibleName: z.ZodString;
|
|
117
|
-
telephone: z.ZodString;
|
|
118
116
|
email: z.ZodNullable<z.ZodString>;
|
|
119
117
|
intraVatNumber: z.ZodNullable<z.ZodString>;
|
|
120
118
|
submittedToFrenchVat: z.ZodBoolean;
|
|
@@ -144,7 +142,6 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
144
142
|
emailOne: z.ZodNullable<z.ZodString>;
|
|
145
143
|
emailTwo: z.ZodNullable<z.ZodString>;
|
|
146
144
|
emailThree: z.ZodNullable<z.ZodString>;
|
|
147
|
-
eori: z.ZodNullable<z.ZodString>;
|
|
148
145
|
tva: z.ZodNullable<z.ZodString>;
|
|
149
146
|
isTrackingMail: z.ZodNullable<z.ZodBoolean>;
|
|
150
147
|
isBillingCenter: z.ZodBoolean;
|
|
@@ -185,10 +182,8 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
185
182
|
city: string;
|
|
186
183
|
telephoneOne: string;
|
|
187
184
|
telephoneTwo: string | null;
|
|
188
|
-
comptaResponsible: string;
|
|
189
185
|
invoiceMail: string;
|
|
190
186
|
dafResponsibleName: string;
|
|
191
|
-
telephone: string;
|
|
192
187
|
email: string | null;
|
|
193
188
|
intraVatNumber: string | null;
|
|
194
189
|
submittedToFrenchVat: boolean;
|
|
@@ -218,7 +213,6 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
218
213
|
emailOne: string | null;
|
|
219
214
|
emailTwo: string | null;
|
|
220
215
|
emailThree: string | null;
|
|
221
|
-
eori: string | null;
|
|
222
216
|
tva: string | null;
|
|
223
217
|
isTrackingMail: boolean | null;
|
|
224
218
|
isBillingCenter: boolean;
|
|
@@ -245,10 +239,8 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
245
239
|
city: string;
|
|
246
240
|
telephoneOne: string;
|
|
247
241
|
telephoneTwo: string | null;
|
|
248
|
-
comptaResponsible: string;
|
|
249
242
|
invoiceMail: string;
|
|
250
243
|
dafResponsibleName: string;
|
|
251
|
-
telephone: string;
|
|
252
244
|
email: string | null;
|
|
253
245
|
intraVatNumber: string | null;
|
|
254
246
|
submittedToFrenchVat: boolean;
|
|
@@ -278,7 +270,6 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
278
270
|
emailOne: string | null;
|
|
279
271
|
emailTwo: string | null;
|
|
280
272
|
emailThree: string | null;
|
|
281
|
-
eori: string | null;
|
|
282
273
|
tva: string | null;
|
|
283
274
|
isTrackingMail: boolean | null;
|
|
284
275
|
isBillingCenter: boolean;
|
|
@@ -329,7 +320,6 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
329
320
|
telephoneOne: string;
|
|
330
321
|
telephoneTwo: string | null;
|
|
331
322
|
dafResponsibleName: string | null;
|
|
332
|
-
telephone: string | null;
|
|
333
323
|
email: string | null;
|
|
334
324
|
intraVatNumber: string | null;
|
|
335
325
|
numeroEori: string | null;
|
|
@@ -356,9 +346,9 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
356
346
|
emailOne: string | null;
|
|
357
347
|
emailTwo: string | null;
|
|
358
348
|
emailThree: string | null;
|
|
359
|
-
eori: string | null;
|
|
360
349
|
tva: string | null;
|
|
361
350
|
isMailing: boolean;
|
|
351
|
+
telephone: string | null;
|
|
362
352
|
billingCenterName: string;
|
|
363
353
|
customerId: number | null;
|
|
364
354
|
numeroSiren: string | null;
|
|
@@ -370,6 +360,7 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
370
360
|
isShowSecondBordereaux: boolean;
|
|
371
361
|
isShowCustomerName: boolean;
|
|
372
362
|
isShowCommercialValue: boolean;
|
|
363
|
+
eori: string | null;
|
|
373
364
|
country?: {
|
|
374
365
|
id: number;
|
|
375
366
|
createdAt: DateTime<true> | DateTime<false>;
|
|
@@ -390,10 +381,8 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
390
381
|
city: string;
|
|
391
382
|
telephoneOne: string;
|
|
392
383
|
telephoneTwo: string | null;
|
|
393
|
-
comptaResponsible: string;
|
|
394
384
|
invoiceMail: string;
|
|
395
385
|
dafResponsibleName: string;
|
|
396
|
-
telephone: string;
|
|
397
386
|
email: string | null;
|
|
398
387
|
intraVatNumber: string | null;
|
|
399
388
|
submittedToFrenchVat: boolean;
|
|
@@ -423,7 +412,6 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
423
412
|
emailOne: string | null;
|
|
424
413
|
emailTwo: string | null;
|
|
425
414
|
emailThree: string | null;
|
|
426
|
-
eori: string | null;
|
|
427
415
|
tva: string | null;
|
|
428
416
|
isTrackingMail: boolean | null;
|
|
429
417
|
isBillingCenter: boolean;
|
|
@@ -452,7 +440,6 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
452
440
|
telephoneOne: string;
|
|
453
441
|
telephoneTwo: string | null;
|
|
454
442
|
dafResponsibleName: string | null;
|
|
455
|
-
telephone: string | null;
|
|
456
443
|
email: string | null;
|
|
457
444
|
intraVatNumber: string | null;
|
|
458
445
|
numeroEori: string | null;
|
|
@@ -479,9 +466,9 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
479
466
|
emailOne: string | null;
|
|
480
467
|
emailTwo: string | null;
|
|
481
468
|
emailThree: string | null;
|
|
482
|
-
eori: string | null;
|
|
483
469
|
tva: string | null;
|
|
484
470
|
isMailing: boolean;
|
|
471
|
+
telephone: string | null;
|
|
485
472
|
billingCenterName: string;
|
|
486
473
|
customerId: number | null;
|
|
487
474
|
numeroSiren: string | null;
|
|
@@ -493,6 +480,7 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
493
480
|
isShowSecondBordereaux: boolean;
|
|
494
481
|
isShowCustomerName: boolean;
|
|
495
482
|
isShowCommercialValue: boolean;
|
|
483
|
+
eori: string | null;
|
|
496
484
|
country?: {
|
|
497
485
|
id: number;
|
|
498
486
|
createdAt: Date;
|
|
@@ -513,10 +501,8 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
513
501
|
city: string;
|
|
514
502
|
telephoneOne: string;
|
|
515
503
|
telephoneTwo: string | null;
|
|
516
|
-
comptaResponsible: string;
|
|
517
504
|
invoiceMail: string;
|
|
518
505
|
dafResponsibleName: string;
|
|
519
|
-
telephone: string;
|
|
520
506
|
email: string | null;
|
|
521
507
|
intraVatNumber: string | null;
|
|
522
508
|
submittedToFrenchVat: boolean;
|
|
@@ -546,7 +532,6 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
546
532
|
emailOne: string | null;
|
|
547
533
|
emailTwo: string | null;
|
|
548
534
|
emailThree: string | null;
|
|
549
|
-
eori: string | null;
|
|
550
535
|
tva: string | null;
|
|
551
536
|
isTrackingMail: boolean | null;
|
|
552
537
|
isBillingCenter: boolean;
|
|
@@ -689,7 +674,6 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
689
674
|
telephoneOne: string;
|
|
690
675
|
telephoneTwo: string | null;
|
|
691
676
|
dafResponsibleName: string | null;
|
|
692
|
-
telephone: string | null;
|
|
693
677
|
email: string | null;
|
|
694
678
|
intraVatNumber: string | null;
|
|
695
679
|
numeroEori: string | null;
|
|
@@ -716,9 +700,9 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
716
700
|
emailOne: string | null;
|
|
717
701
|
emailTwo: string | null;
|
|
718
702
|
emailThree: string | null;
|
|
719
|
-
eori: string | null;
|
|
720
703
|
tva: string | null;
|
|
721
704
|
isMailing: boolean;
|
|
705
|
+
telephone: string | null;
|
|
722
706
|
billingCenterName: string;
|
|
723
707
|
customerId: number | null;
|
|
724
708
|
numeroSiren: string | null;
|
|
@@ -730,6 +714,7 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
730
714
|
isShowSecondBordereaux: boolean;
|
|
731
715
|
isShowCustomerName: boolean;
|
|
732
716
|
isShowCommercialValue: boolean;
|
|
717
|
+
eori: string | null;
|
|
733
718
|
country?: {
|
|
734
719
|
id: number;
|
|
735
720
|
createdAt: DateTime<true> | DateTime<false>;
|
|
@@ -750,10 +735,8 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
750
735
|
city: string;
|
|
751
736
|
telephoneOne: string;
|
|
752
737
|
telephoneTwo: string | null;
|
|
753
|
-
comptaResponsible: string;
|
|
754
738
|
invoiceMail: string;
|
|
755
739
|
dafResponsibleName: string;
|
|
756
|
-
telephone: string;
|
|
757
740
|
email: string | null;
|
|
758
741
|
intraVatNumber: string | null;
|
|
759
742
|
submittedToFrenchVat: boolean;
|
|
@@ -783,7 +766,6 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
783
766
|
emailOne: string | null;
|
|
784
767
|
emailTwo: string | null;
|
|
785
768
|
emailThree: string | null;
|
|
786
|
-
eori: string | null;
|
|
787
769
|
tva: string | null;
|
|
788
770
|
isTrackingMail: boolean | null;
|
|
789
771
|
isBillingCenter: boolean;
|
|
@@ -861,7 +843,6 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
861
843
|
telephoneOne: string;
|
|
862
844
|
telephoneTwo: string | null;
|
|
863
845
|
dafResponsibleName: string | null;
|
|
864
|
-
telephone: string | null;
|
|
865
846
|
email: string | null;
|
|
866
847
|
intraVatNumber: string | null;
|
|
867
848
|
numeroEori: string | null;
|
|
@@ -888,9 +869,9 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
888
869
|
emailOne: string | null;
|
|
889
870
|
emailTwo: string | null;
|
|
890
871
|
emailThree: string | null;
|
|
891
|
-
eori: string | null;
|
|
892
872
|
tva: string | null;
|
|
893
873
|
isMailing: boolean;
|
|
874
|
+
telephone: string | null;
|
|
894
875
|
billingCenterName: string;
|
|
895
876
|
customerId: number | null;
|
|
896
877
|
numeroSiren: string | null;
|
|
@@ -902,6 +883,7 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
902
883
|
isShowSecondBordereaux: boolean;
|
|
903
884
|
isShowCustomerName: boolean;
|
|
904
885
|
isShowCommercialValue: boolean;
|
|
886
|
+
eori: string | null;
|
|
905
887
|
country?: {
|
|
906
888
|
id: number;
|
|
907
889
|
createdAt: Date;
|
|
@@ -922,10 +904,8 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
922
904
|
city: string;
|
|
923
905
|
telephoneOne: string;
|
|
924
906
|
telephoneTwo: string | null;
|
|
925
|
-
comptaResponsible: string;
|
|
926
907
|
invoiceMail: string;
|
|
927
908
|
dafResponsibleName: string;
|
|
928
|
-
telephone: string;
|
|
929
909
|
email: string | null;
|
|
930
910
|
intraVatNumber: string | null;
|
|
931
911
|
submittedToFrenchVat: boolean;
|
|
@@ -955,7 +935,6 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
955
935
|
emailOne: string | null;
|
|
956
936
|
emailTwo: string | null;
|
|
957
937
|
emailThree: string | null;
|
|
958
|
-
eori: string | null;
|
|
959
938
|
tva: string | null;
|
|
960
939
|
isTrackingMail: boolean | null;
|
|
961
940
|
isBillingCenter: boolean;
|
|
@@ -1349,7 +1328,6 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
1349
1328
|
telephoneOne: string;
|
|
1350
1329
|
telephoneTwo: string | null;
|
|
1351
1330
|
dafResponsibleName: string | null;
|
|
1352
|
-
telephone: string | null;
|
|
1353
1331
|
email: string | null;
|
|
1354
1332
|
intraVatNumber: string | null;
|
|
1355
1333
|
numeroEori: string | null;
|
|
@@ -1376,9 +1354,9 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
1376
1354
|
emailOne: string | null;
|
|
1377
1355
|
emailTwo: string | null;
|
|
1378
1356
|
emailThree: string | null;
|
|
1379
|
-
eori: string | null;
|
|
1380
1357
|
tva: string | null;
|
|
1381
1358
|
isMailing: boolean;
|
|
1359
|
+
telephone: string | null;
|
|
1382
1360
|
billingCenterName: string;
|
|
1383
1361
|
customerId: number | null;
|
|
1384
1362
|
numeroSiren: string | null;
|
|
@@ -1390,6 +1368,7 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
1390
1368
|
isShowSecondBordereaux: boolean;
|
|
1391
1369
|
isShowCustomerName: boolean;
|
|
1392
1370
|
isShowCommercialValue: boolean;
|
|
1371
|
+
eori: string | null;
|
|
1393
1372
|
country?: {
|
|
1394
1373
|
id: number;
|
|
1395
1374
|
createdAt: DateTime<true> | DateTime<false>;
|
|
@@ -1410,10 +1389,8 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
1410
1389
|
city: string;
|
|
1411
1390
|
telephoneOne: string;
|
|
1412
1391
|
telephoneTwo: string | null;
|
|
1413
|
-
comptaResponsible: string;
|
|
1414
1392
|
invoiceMail: string;
|
|
1415
1393
|
dafResponsibleName: string;
|
|
1416
|
-
telephone: string;
|
|
1417
1394
|
email: string | null;
|
|
1418
1395
|
intraVatNumber: string | null;
|
|
1419
1396
|
submittedToFrenchVat: boolean;
|
|
@@ -1443,7 +1420,6 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
1443
1420
|
emailOne: string | null;
|
|
1444
1421
|
emailTwo: string | null;
|
|
1445
1422
|
emailThree: string | null;
|
|
1446
|
-
eori: string | null;
|
|
1447
1423
|
tva: string | null;
|
|
1448
1424
|
isTrackingMail: boolean | null;
|
|
1449
1425
|
isBillingCenter: boolean;
|
|
@@ -1622,7 +1598,6 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
1622
1598
|
telephoneOne: string;
|
|
1623
1599
|
telephoneTwo: string | null;
|
|
1624
1600
|
dafResponsibleName: string | null;
|
|
1625
|
-
telephone: string | null;
|
|
1626
1601
|
email: string | null;
|
|
1627
1602
|
intraVatNumber: string | null;
|
|
1628
1603
|
numeroEori: string | null;
|
|
@@ -1649,9 +1624,9 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
1649
1624
|
emailOne: string | null;
|
|
1650
1625
|
emailTwo: string | null;
|
|
1651
1626
|
emailThree: string | null;
|
|
1652
|
-
eori: string | null;
|
|
1653
1627
|
tva: string | null;
|
|
1654
1628
|
isMailing: boolean;
|
|
1629
|
+
telephone: string | null;
|
|
1655
1630
|
billingCenterName: string;
|
|
1656
1631
|
customerId: number | null;
|
|
1657
1632
|
numeroSiren: string | null;
|
|
@@ -1663,6 +1638,7 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
1663
1638
|
isShowSecondBordereaux: boolean;
|
|
1664
1639
|
isShowCustomerName: boolean;
|
|
1665
1640
|
isShowCommercialValue: boolean;
|
|
1641
|
+
eori: string | null;
|
|
1666
1642
|
country?: {
|
|
1667
1643
|
id: number;
|
|
1668
1644
|
createdAt: Date;
|
|
@@ -1683,10 +1659,8 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
1683
1659
|
city: string;
|
|
1684
1660
|
telephoneOne: string;
|
|
1685
1661
|
telephoneTwo: string | null;
|
|
1686
|
-
comptaResponsible: string;
|
|
1687
1662
|
invoiceMail: string;
|
|
1688
1663
|
dafResponsibleName: string;
|
|
1689
|
-
telephone: string;
|
|
1690
1664
|
email: string | null;
|
|
1691
1665
|
intraVatNumber: string | null;
|
|
1692
1666
|
submittedToFrenchVat: boolean;
|
|
@@ -1716,7 +1690,6 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
1716
1690
|
emailOne: string | null;
|
|
1717
1691
|
emailTwo: string | null;
|
|
1718
1692
|
emailThree: string | null;
|
|
1719
|
-
eori: string | null;
|
|
1720
1693
|
tva: string | null;
|
|
1721
1694
|
isTrackingMail: boolean | null;
|
|
1722
1695
|
isBillingCenter: boolean;
|