exnet-routing 1.2.15 → 1.2.16
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 +28 -13
- package/dist/models/_chat_message.d.ts +28 -7
- package/dist/models/_contact.d.ts +28 -7
- package/dist/models/_contact_visible.d.ts +56 -14
- package/dist/models/_customer.d.ts +36 -9
- package/dist/models/_customer.js +12 -3
- package/dist/models/_facture.d.ts +32 -11
- package/dist/models/_facture_line.d.ts +42 -15
- package/dist/models/_historique_action.d.ts +28 -7
- package/dist/models/_information_chauffeur.d.ts +28 -7
- package/dist/models/_information_importante.d.ts +28 -7
- package/dist/models/_livraison_chauffeur.d.ts +28 -7
- package/dist/models/_prise_de_poste.d.ts +28 -7
- package/dist/models/_ramassage_chauffeur.d.ts +28 -7
- package/dist/models/_shipping.d.ts +4 -4
- package/dist/models/_shipping_affected.d.ts +28 -7
- package/dist/models/_shipping_comment.d.ts +28 -7
- package/dist/models/_shipping_course.d.ts +28 -7
- package/dist/models/_shipping_document.d.ts +28 -7
- package/dist/models/_shipping_tracking.d.ts +28 -7
- package/dist/models/_tracking_visible.d.ts +56 -14
- package/dist/models/_user.d.ts +26 -11
- package/dist/models/_user_billing_center.d.ts +60 -18
- package/dist/models/_user_login_historie.d.ts +28 -7
- package/dist/models/_vehicule_affected.d.ts +28 -7
- package/dist/routes/admin.d.ts +1710 -477
- package/dist/routes/ops.d.ts +810 -411
- package/dist/routes/public.d.ts +72 -18
- package/dist/routes/user.d.ts +400 -169
- package/package.json +1 -1
|
@@ -98,7 +98,10 @@ export declare const BillingCenterSchema: z.ZodObject<{
|
|
|
98
98
|
emailThree: z.ZodNullable<z.ZodString>;
|
|
99
99
|
eori: z.ZodNullable<z.ZodString>;
|
|
100
100
|
tva: z.ZodNullable<z.ZodString>;
|
|
101
|
-
|
|
101
|
+
isTrackingMail: z.ZodNullable<z.ZodBoolean>;
|
|
102
|
+
isBillingCenter: z.ZodBoolean;
|
|
103
|
+
isShowNameCustomer: z.ZodBoolean;
|
|
104
|
+
isMailing: z.ZodBoolean;
|
|
102
105
|
numeroSiret: z.ZodNullable<z.ZodString>;
|
|
103
106
|
country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
104
107
|
id: z.ZodNumber;
|
|
@@ -169,7 +172,10 @@ export declare const BillingCenterSchema: z.ZodObject<{
|
|
|
169
172
|
emailThree: string | null;
|
|
170
173
|
eori: string | null;
|
|
171
174
|
tva: string | null;
|
|
172
|
-
|
|
175
|
+
isTrackingMail: boolean | null;
|
|
176
|
+
isBillingCenter: boolean;
|
|
177
|
+
isShowNameCustomer: boolean;
|
|
178
|
+
isMailing: boolean;
|
|
173
179
|
numeroSiret: string | null;
|
|
174
180
|
country?: {
|
|
175
181
|
id: number;
|
|
@@ -226,7 +232,10 @@ export declare const BillingCenterSchema: z.ZodObject<{
|
|
|
226
232
|
emailThree: string | null;
|
|
227
233
|
eori: string | null;
|
|
228
234
|
tva: string | null;
|
|
229
|
-
|
|
235
|
+
isTrackingMail: boolean | null;
|
|
236
|
+
isBillingCenter: boolean;
|
|
237
|
+
isShowNameCustomer: boolean;
|
|
238
|
+
isMailing: boolean;
|
|
230
239
|
numeroSiret: string | null;
|
|
231
240
|
country?: {
|
|
232
241
|
id: number;
|
|
@@ -300,6 +309,7 @@ export declare const BillingCenterSchema: z.ZodObject<{
|
|
|
300
309
|
emailThree: string | null;
|
|
301
310
|
eori: string | null;
|
|
302
311
|
tva: string | null;
|
|
312
|
+
isMailing: boolean;
|
|
303
313
|
billingCenterName: string;
|
|
304
314
|
numeroSiren: string | null;
|
|
305
315
|
invoiceMailOne: string;
|
|
@@ -307,7 +317,6 @@ export declare const BillingCenterSchema: z.ZodObject<{
|
|
|
307
317
|
isSubmittedToFrenchVat: boolean;
|
|
308
318
|
isActiveMailInstruction: boolean;
|
|
309
319
|
isActiveVariation: boolean;
|
|
310
|
-
isMailing: boolean;
|
|
311
320
|
deuxBordereaux: string | null;
|
|
312
321
|
customerId: number | null;
|
|
313
322
|
country?: {
|
|
@@ -365,7 +374,10 @@ export declare const BillingCenterSchema: z.ZodObject<{
|
|
|
365
374
|
emailThree: string | null;
|
|
366
375
|
eori: string | null;
|
|
367
376
|
tva: string | null;
|
|
368
|
-
|
|
377
|
+
isTrackingMail: boolean | null;
|
|
378
|
+
isBillingCenter: boolean;
|
|
379
|
+
isShowNameCustomer: boolean;
|
|
380
|
+
isMailing: boolean;
|
|
369
381
|
numeroSiret: string | null;
|
|
370
382
|
country?: {
|
|
371
383
|
id: number;
|
|
@@ -417,6 +429,7 @@ export declare const BillingCenterSchema: z.ZodObject<{
|
|
|
417
429
|
emailThree: string | null;
|
|
418
430
|
eori: string | null;
|
|
419
431
|
tva: string | null;
|
|
432
|
+
isMailing: boolean;
|
|
420
433
|
billingCenterName: string;
|
|
421
434
|
numeroSiren: string | null;
|
|
422
435
|
invoiceMailOne: string;
|
|
@@ -424,7 +437,6 @@ export declare const BillingCenterSchema: z.ZodObject<{
|
|
|
424
437
|
isSubmittedToFrenchVat: boolean;
|
|
425
438
|
isActiveMailInstruction: boolean;
|
|
426
439
|
isActiveVariation: boolean;
|
|
427
|
-
isMailing: boolean;
|
|
428
440
|
deuxBordereaux: string | null;
|
|
429
441
|
customerId: number | null;
|
|
430
442
|
country?: {
|
|
@@ -482,7 +494,10 @@ export declare const BillingCenterSchema: z.ZodObject<{
|
|
|
482
494
|
emailThree: string | null;
|
|
483
495
|
eori: string | null;
|
|
484
496
|
tva: string | null;
|
|
485
|
-
|
|
497
|
+
isTrackingMail: boolean | null;
|
|
498
|
+
isBillingCenter: boolean;
|
|
499
|
+
isShowNameCustomer: boolean;
|
|
500
|
+
isMailing: boolean;
|
|
486
501
|
numeroSiret: string | null;
|
|
487
502
|
country?: {
|
|
488
503
|
id: number;
|
|
@@ -586,6 +601,7 @@ export declare const BillingCenterSchemaSimple: z.ZodObject<{
|
|
|
586
601
|
emailThree: string | null;
|
|
587
602
|
eori: string | null;
|
|
588
603
|
tva: string | null;
|
|
604
|
+
isMailing: boolean;
|
|
589
605
|
billingCenterName: string;
|
|
590
606
|
numeroSiren: string | null;
|
|
591
607
|
invoiceMailOne: string;
|
|
@@ -593,7 +609,6 @@ export declare const BillingCenterSchemaSimple: z.ZodObject<{
|
|
|
593
609
|
isSubmittedToFrenchVat: boolean;
|
|
594
610
|
isActiveMailInstruction: boolean;
|
|
595
611
|
isActiveVariation: boolean;
|
|
596
|
-
isMailing: boolean;
|
|
597
612
|
deuxBordereaux: string | null;
|
|
598
613
|
customerId: number | null;
|
|
599
614
|
}, {
|
|
@@ -637,6 +652,7 @@ export declare const BillingCenterSchemaSimple: z.ZodObject<{
|
|
|
637
652
|
emailThree: string | null;
|
|
638
653
|
eori: string | null;
|
|
639
654
|
tva: string | null;
|
|
655
|
+
isMailing: boolean;
|
|
640
656
|
billingCenterName: string;
|
|
641
657
|
numeroSiren: string | null;
|
|
642
658
|
invoiceMailOne: string;
|
|
@@ -644,7 +660,6 @@ export declare const BillingCenterSchemaSimple: z.ZodObject<{
|
|
|
644
660
|
isSubmittedToFrenchVat: boolean;
|
|
645
661
|
isActiveMailInstruction: boolean;
|
|
646
662
|
isActiveVariation: boolean;
|
|
647
|
-
isMailing: boolean;
|
|
648
663
|
deuxBordereaux: string | null;
|
|
649
664
|
customerId: number | null;
|
|
650
665
|
}>;
|
|
@@ -707,12 +722,12 @@ export declare const BillingCenterCreateSchema: z.ZodObject<{
|
|
|
707
722
|
isParis: boolean;
|
|
708
723
|
isMedical: boolean;
|
|
709
724
|
isService: boolean;
|
|
725
|
+
isMailing: boolean;
|
|
710
726
|
billingCenterName: string;
|
|
711
727
|
invoiceMailOne: string;
|
|
712
728
|
isSubmittedToFrenchVat: boolean;
|
|
713
729
|
isActiveMailInstruction: boolean;
|
|
714
730
|
isActiveVariation: boolean;
|
|
715
|
-
isMailing: boolean;
|
|
716
731
|
customerId: number;
|
|
717
732
|
activeVariation: boolean;
|
|
718
733
|
addressTwo?: string | undefined;
|
|
@@ -756,12 +771,12 @@ export declare const BillingCenterCreateSchema: z.ZodObject<{
|
|
|
756
771
|
isParis: boolean;
|
|
757
772
|
isMedical: boolean;
|
|
758
773
|
isService: boolean;
|
|
774
|
+
isMailing: boolean;
|
|
759
775
|
billingCenterName: string;
|
|
760
776
|
invoiceMailOne: string;
|
|
761
777
|
isSubmittedToFrenchVat: boolean;
|
|
762
778
|
isActiveMailInstruction: boolean;
|
|
763
779
|
isActiveVariation: boolean;
|
|
764
|
-
isMailing: boolean;
|
|
765
780
|
customerId: number;
|
|
766
781
|
activeVariation: boolean;
|
|
767
782
|
addressTwo?: string | undefined;
|
|
@@ -883,6 +898,7 @@ export declare const BillingCenterUpdateSchema: z.ZodObject<{
|
|
|
883
898
|
emailThree?: string | undefined;
|
|
884
899
|
eori?: string | undefined;
|
|
885
900
|
tva?: string | undefined;
|
|
901
|
+
isMailing?: boolean | undefined;
|
|
886
902
|
billingCenterName?: string | undefined;
|
|
887
903
|
numeroSiren?: string | undefined;
|
|
888
904
|
invoiceMailOne?: string | undefined;
|
|
@@ -890,7 +906,6 @@ export declare const BillingCenterUpdateSchema: z.ZodObject<{
|
|
|
890
906
|
isSubmittedToFrenchVat?: boolean | undefined;
|
|
891
907
|
isActiveMailInstruction?: boolean | undefined;
|
|
892
908
|
isActiveVariation?: boolean | undefined;
|
|
893
|
-
isMailing?: boolean | undefined;
|
|
894
909
|
deuxBordereaux?: string | undefined;
|
|
895
910
|
customerId?: number | undefined;
|
|
896
911
|
activeVariation?: boolean | undefined;
|
|
@@ -932,6 +947,7 @@ export declare const BillingCenterUpdateSchema: z.ZodObject<{
|
|
|
932
947
|
emailThree?: string | undefined;
|
|
933
948
|
eori?: string | undefined;
|
|
934
949
|
tva?: string | undefined;
|
|
950
|
+
isMailing?: boolean | undefined;
|
|
935
951
|
billingCenterName?: string | undefined;
|
|
936
952
|
numeroSiren?: string | undefined;
|
|
937
953
|
invoiceMailOne?: string | undefined;
|
|
@@ -939,7 +955,6 @@ export declare const BillingCenterUpdateSchema: z.ZodObject<{
|
|
|
939
955
|
isSubmittedToFrenchVat?: boolean | undefined;
|
|
940
956
|
isActiveMailInstruction?: boolean | undefined;
|
|
941
957
|
isActiveVariation?: boolean | undefined;
|
|
942
|
-
isMailing?: boolean | undefined;
|
|
943
958
|
deuxBordereaux?: string | undefined;
|
|
944
959
|
customerId?: number | undefined;
|
|
945
960
|
activeVariation?: boolean | undefined;
|
|
@@ -719,7 +719,10 @@ export declare const ChatMessageSchema: z.ZodObject<{
|
|
|
719
719
|
emailThree: z.ZodNullable<z.ZodString>;
|
|
720
720
|
eori: z.ZodNullable<z.ZodString>;
|
|
721
721
|
tva: z.ZodNullable<z.ZodString>;
|
|
722
|
-
|
|
722
|
+
isTrackingMail: z.ZodNullable<z.ZodBoolean>;
|
|
723
|
+
isBillingCenter: z.ZodBoolean;
|
|
724
|
+
isShowNameCustomer: z.ZodBoolean;
|
|
725
|
+
isMailing: z.ZodBoolean;
|
|
723
726
|
numeroSiret: z.ZodNullable<z.ZodString>;
|
|
724
727
|
country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
725
728
|
id: z.ZodNumber;
|
|
@@ -790,7 +793,10 @@ export declare const ChatMessageSchema: z.ZodObject<{
|
|
|
790
793
|
emailThree: string | null;
|
|
791
794
|
eori: string | null;
|
|
792
795
|
tva: string | null;
|
|
793
|
-
|
|
796
|
+
isTrackingMail: boolean | null;
|
|
797
|
+
isBillingCenter: boolean;
|
|
798
|
+
isShowNameCustomer: boolean;
|
|
799
|
+
isMailing: boolean;
|
|
794
800
|
numeroSiret: string | null;
|
|
795
801
|
country?: {
|
|
796
802
|
id: number;
|
|
@@ -847,7 +853,10 @@ export declare const ChatMessageSchema: z.ZodObject<{
|
|
|
847
853
|
emailThree: string | null;
|
|
848
854
|
eori: string | null;
|
|
849
855
|
tva: string | null;
|
|
850
|
-
|
|
856
|
+
isTrackingMail: boolean | null;
|
|
857
|
+
isBillingCenter: boolean;
|
|
858
|
+
isShowNameCustomer: boolean;
|
|
859
|
+
isMailing: boolean;
|
|
851
860
|
numeroSiret: string | null;
|
|
852
861
|
country?: {
|
|
853
862
|
id: number;
|
|
@@ -1115,7 +1124,10 @@ export declare const ChatMessageSchema: z.ZodObject<{
|
|
|
1115
1124
|
emailThree: string | null;
|
|
1116
1125
|
eori: string | null;
|
|
1117
1126
|
tva: string | null;
|
|
1118
|
-
|
|
1127
|
+
isTrackingMail: boolean | null;
|
|
1128
|
+
isBillingCenter: boolean;
|
|
1129
|
+
isShowNameCustomer: boolean;
|
|
1130
|
+
isMailing: boolean;
|
|
1119
1131
|
numeroSiret: string | null;
|
|
1120
1132
|
country?: {
|
|
1121
1133
|
id: number;
|
|
@@ -1279,7 +1291,10 @@ export declare const ChatMessageSchema: z.ZodObject<{
|
|
|
1279
1291
|
emailThree: string | null;
|
|
1280
1292
|
eori: string | null;
|
|
1281
1293
|
tva: string | null;
|
|
1282
|
-
|
|
1294
|
+
isTrackingMail: boolean | null;
|
|
1295
|
+
isBillingCenter: boolean;
|
|
1296
|
+
isShowNameCustomer: boolean;
|
|
1297
|
+
isMailing: boolean;
|
|
1283
1298
|
numeroSiret: string | null;
|
|
1284
1299
|
country?: {
|
|
1285
1300
|
id: number;
|
|
@@ -1453,7 +1468,10 @@ export declare const ChatMessageSchema: z.ZodObject<{
|
|
|
1453
1468
|
emailThree: string | null;
|
|
1454
1469
|
eori: string | null;
|
|
1455
1470
|
tva: string | null;
|
|
1456
|
-
|
|
1471
|
+
isTrackingMail: boolean | null;
|
|
1472
|
+
isBillingCenter: boolean;
|
|
1473
|
+
isShowNameCustomer: boolean;
|
|
1474
|
+
isMailing: boolean;
|
|
1457
1475
|
numeroSiret: string | null;
|
|
1458
1476
|
country?: {
|
|
1459
1477
|
id: number;
|
|
@@ -1750,7 +1768,10 @@ export declare const ChatMessageSchema: z.ZodObject<{
|
|
|
1750
1768
|
emailThree: string | null;
|
|
1751
1769
|
eori: string | null;
|
|
1752
1770
|
tva: string | null;
|
|
1753
|
-
|
|
1771
|
+
isTrackingMail: boolean | null;
|
|
1772
|
+
isBillingCenter: boolean;
|
|
1773
|
+
isShowNameCustomer: boolean;
|
|
1774
|
+
isMailing: boolean;
|
|
1754
1775
|
numeroSiret: string | null;
|
|
1755
1776
|
country?: {
|
|
1756
1777
|
id: number;
|
|
@@ -165,7 +165,10 @@ export declare const ContactSchema: z.ZodObject<{
|
|
|
165
165
|
emailThree: z.ZodNullable<z.ZodString>;
|
|
166
166
|
eori: z.ZodNullable<z.ZodString>;
|
|
167
167
|
tva: z.ZodNullable<z.ZodString>;
|
|
168
|
-
|
|
168
|
+
isTrackingMail: z.ZodNullable<z.ZodBoolean>;
|
|
169
|
+
isBillingCenter: z.ZodBoolean;
|
|
170
|
+
isShowNameCustomer: z.ZodBoolean;
|
|
171
|
+
isMailing: z.ZodBoolean;
|
|
169
172
|
numeroSiret: z.ZodNullable<z.ZodString>;
|
|
170
173
|
country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
171
174
|
id: z.ZodNumber;
|
|
@@ -236,7 +239,10 @@ export declare const ContactSchema: z.ZodObject<{
|
|
|
236
239
|
emailThree: string | null;
|
|
237
240
|
eori: string | null;
|
|
238
241
|
tva: string | null;
|
|
239
|
-
|
|
242
|
+
isTrackingMail: boolean | null;
|
|
243
|
+
isBillingCenter: boolean;
|
|
244
|
+
isShowNameCustomer: boolean;
|
|
245
|
+
isMailing: boolean;
|
|
240
246
|
numeroSiret: string | null;
|
|
241
247
|
country?: {
|
|
242
248
|
id: number;
|
|
@@ -293,7 +299,10 @@ export declare const ContactSchema: z.ZodObject<{
|
|
|
293
299
|
emailThree: string | null;
|
|
294
300
|
eori: string | null;
|
|
295
301
|
tva: string | null;
|
|
296
|
-
|
|
302
|
+
isTrackingMail: boolean | null;
|
|
303
|
+
isBillingCenter: boolean;
|
|
304
|
+
isShowNameCustomer: boolean;
|
|
305
|
+
isMailing: boolean;
|
|
297
306
|
numeroSiret: string | null;
|
|
298
307
|
country?: {
|
|
299
308
|
id: number;
|
|
@@ -561,7 +570,10 @@ export declare const ContactSchema: z.ZodObject<{
|
|
|
561
570
|
emailThree: string | null;
|
|
562
571
|
eori: string | null;
|
|
563
572
|
tva: string | null;
|
|
564
|
-
|
|
573
|
+
isTrackingMail: boolean | null;
|
|
574
|
+
isBillingCenter: boolean;
|
|
575
|
+
isShowNameCustomer: boolean;
|
|
576
|
+
isMailing: boolean;
|
|
565
577
|
numeroSiret: string | null;
|
|
566
578
|
country?: {
|
|
567
579
|
id: number;
|
|
@@ -725,7 +737,10 @@ export declare const ContactSchema: z.ZodObject<{
|
|
|
725
737
|
emailThree: string | null;
|
|
726
738
|
eori: string | null;
|
|
727
739
|
tva: string | null;
|
|
728
|
-
|
|
740
|
+
isTrackingMail: boolean | null;
|
|
741
|
+
isBillingCenter: boolean;
|
|
742
|
+
isShowNameCustomer: boolean;
|
|
743
|
+
isMailing: boolean;
|
|
729
744
|
numeroSiret: string | null;
|
|
730
745
|
country?: {
|
|
731
746
|
id: number;
|
|
@@ -922,7 +937,10 @@ export declare const ContactSchema: z.ZodObject<{
|
|
|
922
937
|
emailThree: string | null;
|
|
923
938
|
eori: string | null;
|
|
924
939
|
tva: string | null;
|
|
925
|
-
|
|
940
|
+
isTrackingMail: boolean | null;
|
|
941
|
+
isBillingCenter: boolean;
|
|
942
|
+
isShowNameCustomer: boolean;
|
|
943
|
+
isMailing: boolean;
|
|
926
944
|
numeroSiret: string | null;
|
|
927
945
|
country?: {
|
|
928
946
|
id: number;
|
|
@@ -1119,7 +1137,10 @@ export declare const ContactSchema: z.ZodObject<{
|
|
|
1119
1137
|
emailThree: string | null;
|
|
1120
1138
|
eori: string | null;
|
|
1121
1139
|
tva: string | null;
|
|
1122
|
-
|
|
1140
|
+
isTrackingMail: boolean | null;
|
|
1141
|
+
isBillingCenter: boolean;
|
|
1142
|
+
isShowNameCustomer: boolean;
|
|
1143
|
+
isMailing: boolean;
|
|
1123
1144
|
numeroSiret: string | null;
|
|
1124
1145
|
country?: {
|
|
1125
1146
|
id: number;
|
|
@@ -115,7 +115,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
115
115
|
emailThree: z.ZodNullable<z.ZodString>;
|
|
116
116
|
eori: z.ZodNullable<z.ZodString>;
|
|
117
117
|
tva: z.ZodNullable<z.ZodString>;
|
|
118
|
-
|
|
118
|
+
isTrackingMail: z.ZodNullable<z.ZodBoolean>;
|
|
119
|
+
isBillingCenter: z.ZodBoolean;
|
|
120
|
+
isShowNameCustomer: z.ZodBoolean;
|
|
121
|
+
isMailing: z.ZodBoolean;
|
|
119
122
|
numeroSiret: z.ZodNullable<z.ZodString>;
|
|
120
123
|
country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
121
124
|
id: z.ZodNumber;
|
|
@@ -186,7 +189,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
186
189
|
emailThree: string | null;
|
|
187
190
|
eori: string | null;
|
|
188
191
|
tva: string | null;
|
|
189
|
-
|
|
192
|
+
isTrackingMail: boolean | null;
|
|
193
|
+
isBillingCenter: boolean;
|
|
194
|
+
isShowNameCustomer: boolean;
|
|
195
|
+
isMailing: boolean;
|
|
190
196
|
numeroSiret: string | null;
|
|
191
197
|
country?: {
|
|
192
198
|
id: number;
|
|
@@ -243,7 +249,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
243
249
|
emailThree: string | null;
|
|
244
250
|
eori: string | null;
|
|
245
251
|
tva: string | null;
|
|
246
|
-
|
|
252
|
+
isTrackingMail: boolean | null;
|
|
253
|
+
isBillingCenter: boolean;
|
|
254
|
+
isShowNameCustomer: boolean;
|
|
255
|
+
isMailing: boolean;
|
|
247
256
|
numeroSiret: string | null;
|
|
248
257
|
country?: {
|
|
249
258
|
id: number;
|
|
@@ -511,7 +520,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
511
520
|
emailThree: string | null;
|
|
512
521
|
eori: string | null;
|
|
513
522
|
tva: string | null;
|
|
514
|
-
|
|
523
|
+
isTrackingMail: boolean | null;
|
|
524
|
+
isBillingCenter: boolean;
|
|
525
|
+
isShowNameCustomer: boolean;
|
|
526
|
+
isMailing: boolean;
|
|
515
527
|
numeroSiret: string | null;
|
|
516
528
|
country?: {
|
|
517
529
|
id: number;
|
|
@@ -675,7 +687,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
675
687
|
emailThree: string | null;
|
|
676
688
|
eori: string | null;
|
|
677
689
|
tva: string | null;
|
|
678
|
-
|
|
690
|
+
isTrackingMail: boolean | null;
|
|
691
|
+
isBillingCenter: boolean;
|
|
692
|
+
isShowNameCustomer: boolean;
|
|
693
|
+
isMailing: boolean;
|
|
679
694
|
numeroSiret: string | null;
|
|
680
695
|
country?: {
|
|
681
696
|
id: number;
|
|
@@ -832,7 +847,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
832
847
|
emailThree: z.ZodNullable<z.ZodString>;
|
|
833
848
|
eori: z.ZodNullable<z.ZodString>;
|
|
834
849
|
tva: z.ZodNullable<z.ZodString>;
|
|
835
|
-
|
|
850
|
+
isTrackingMail: z.ZodNullable<z.ZodBoolean>;
|
|
851
|
+
isBillingCenter: z.ZodBoolean;
|
|
852
|
+
isShowNameCustomer: z.ZodBoolean;
|
|
853
|
+
isMailing: z.ZodBoolean;
|
|
836
854
|
numeroSiret: z.ZodNullable<z.ZodString>;
|
|
837
855
|
country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
838
856
|
id: z.ZodNumber;
|
|
@@ -903,7 +921,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
903
921
|
emailThree: string | null;
|
|
904
922
|
eori: string | null;
|
|
905
923
|
tva: string | null;
|
|
906
|
-
|
|
924
|
+
isTrackingMail: boolean | null;
|
|
925
|
+
isBillingCenter: boolean;
|
|
926
|
+
isShowNameCustomer: boolean;
|
|
927
|
+
isMailing: boolean;
|
|
907
928
|
numeroSiret: string | null;
|
|
908
929
|
country?: {
|
|
909
930
|
id: number;
|
|
@@ -960,7 +981,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
960
981
|
emailThree: string | null;
|
|
961
982
|
eori: string | null;
|
|
962
983
|
tva: string | null;
|
|
963
|
-
|
|
984
|
+
isTrackingMail: boolean | null;
|
|
985
|
+
isBillingCenter: boolean;
|
|
986
|
+
isShowNameCustomer: boolean;
|
|
987
|
+
isMailing: boolean;
|
|
964
988
|
numeroSiret: string | null;
|
|
965
989
|
country?: {
|
|
966
990
|
id: number;
|
|
@@ -1228,7 +1252,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1228
1252
|
emailThree: string | null;
|
|
1229
1253
|
eori: string | null;
|
|
1230
1254
|
tva: string | null;
|
|
1231
|
-
|
|
1255
|
+
isTrackingMail: boolean | null;
|
|
1256
|
+
isBillingCenter: boolean;
|
|
1257
|
+
isShowNameCustomer: boolean;
|
|
1258
|
+
isMailing: boolean;
|
|
1232
1259
|
numeroSiret: string | null;
|
|
1233
1260
|
country?: {
|
|
1234
1261
|
id: number;
|
|
@@ -1392,7 +1419,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1392
1419
|
emailThree: string | null;
|
|
1393
1420
|
eori: string | null;
|
|
1394
1421
|
tva: string | null;
|
|
1395
|
-
|
|
1422
|
+
isTrackingMail: boolean | null;
|
|
1423
|
+
isBillingCenter: boolean;
|
|
1424
|
+
isShowNameCustomer: boolean;
|
|
1425
|
+
isMailing: boolean;
|
|
1396
1426
|
numeroSiret: string | null;
|
|
1397
1427
|
country?: {
|
|
1398
1428
|
id: number;
|
|
@@ -1563,7 +1593,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1563
1593
|
emailThree: string | null;
|
|
1564
1594
|
eori: string | null;
|
|
1565
1595
|
tva: string | null;
|
|
1566
|
-
|
|
1596
|
+
isTrackingMail: boolean | null;
|
|
1597
|
+
isBillingCenter: boolean;
|
|
1598
|
+
isShowNameCustomer: boolean;
|
|
1599
|
+
isMailing: boolean;
|
|
1567
1600
|
numeroSiret: string | null;
|
|
1568
1601
|
country?: {
|
|
1569
1602
|
id: number;
|
|
@@ -1728,7 +1761,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1728
1761
|
emailThree: string | null;
|
|
1729
1762
|
eori: string | null;
|
|
1730
1763
|
tva: string | null;
|
|
1731
|
-
|
|
1764
|
+
isTrackingMail: boolean | null;
|
|
1765
|
+
isBillingCenter: boolean;
|
|
1766
|
+
isShowNameCustomer: boolean;
|
|
1767
|
+
isMailing: boolean;
|
|
1732
1768
|
numeroSiret: string | null;
|
|
1733
1769
|
country?: {
|
|
1734
1770
|
id: number;
|
|
@@ -1899,7 +1935,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1899
1935
|
emailThree: string | null;
|
|
1900
1936
|
eori: string | null;
|
|
1901
1937
|
tva: string | null;
|
|
1902
|
-
|
|
1938
|
+
isTrackingMail: boolean | null;
|
|
1939
|
+
isBillingCenter: boolean;
|
|
1940
|
+
isShowNameCustomer: boolean;
|
|
1941
|
+
isMailing: boolean;
|
|
1903
1942
|
numeroSiret: string | null;
|
|
1904
1943
|
country?: {
|
|
1905
1944
|
id: number;
|
|
@@ -2064,7 +2103,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
2064
2103
|
emailThree: string | null;
|
|
2065
2104
|
eori: string | null;
|
|
2066
2105
|
tva: string | null;
|
|
2067
|
-
|
|
2106
|
+
isTrackingMail: boolean | null;
|
|
2107
|
+
isBillingCenter: boolean;
|
|
2108
|
+
isShowNameCustomer: boolean;
|
|
2109
|
+
isMailing: boolean;
|
|
2068
2110
|
numeroSiret: string | null;
|
|
2069
2111
|
country?: {
|
|
2070
2112
|
id: number;
|
|
@@ -47,7 +47,10 @@ export declare const CustomerSchema: z.ZodObject<{
|
|
|
47
47
|
emailThree: z.ZodNullable<z.ZodString>;
|
|
48
48
|
eori: z.ZodNullable<z.ZodString>;
|
|
49
49
|
tva: z.ZodNullable<z.ZodString>;
|
|
50
|
-
|
|
50
|
+
isTrackingMail: z.ZodNullable<z.ZodBoolean>;
|
|
51
|
+
isBillingCenter: z.ZodBoolean;
|
|
52
|
+
isShowNameCustomer: z.ZodBoolean;
|
|
53
|
+
isMailing: z.ZodBoolean;
|
|
51
54
|
numeroSiret: z.ZodNullable<z.ZodString>;
|
|
52
55
|
country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
53
56
|
id: z.ZodNumber;
|
|
@@ -118,7 +121,10 @@ export declare const CustomerSchema: z.ZodObject<{
|
|
|
118
121
|
emailThree: string | null;
|
|
119
122
|
eori: string | null;
|
|
120
123
|
tva: string | null;
|
|
121
|
-
|
|
124
|
+
isTrackingMail: boolean | null;
|
|
125
|
+
isBillingCenter: boolean;
|
|
126
|
+
isShowNameCustomer: boolean;
|
|
127
|
+
isMailing: boolean;
|
|
122
128
|
numeroSiret: string | null;
|
|
123
129
|
country?: {
|
|
124
130
|
id: number;
|
|
@@ -175,7 +181,10 @@ export declare const CustomerSchema: z.ZodObject<{
|
|
|
175
181
|
emailThree: string | null;
|
|
176
182
|
eori: string | null;
|
|
177
183
|
tva: string | null;
|
|
178
|
-
|
|
184
|
+
isTrackingMail: boolean | null;
|
|
185
|
+
isBillingCenter: boolean;
|
|
186
|
+
isShowNameCustomer: boolean;
|
|
187
|
+
isMailing: boolean;
|
|
179
188
|
numeroSiret: string | null;
|
|
180
189
|
country?: {
|
|
181
190
|
id: number;
|
|
@@ -224,7 +233,10 @@ export declare const CustomerCreateSchema: z.ZodObject<{
|
|
|
224
233
|
emailThree: z.ZodOptional<z.ZodString>;
|
|
225
234
|
eori: z.ZodOptional<z.ZodString>;
|
|
226
235
|
tva: z.ZodOptional<z.ZodString>;
|
|
227
|
-
|
|
236
|
+
isTrackingMail: z.ZodOptional<z.ZodBoolean>;
|
|
237
|
+
isBillingCenter: z.ZodOptional<z.ZodBoolean>;
|
|
238
|
+
isShowNameCustomer: z.ZodOptional<z.ZodBoolean>;
|
|
239
|
+
isMailing: z.ZodOptional<z.ZodBoolean>;
|
|
228
240
|
numeroSiret: z.ZodOptional<z.ZodString>;
|
|
229
241
|
siren: z.ZodOptional<z.ZodString>;
|
|
230
242
|
numeroEori: z.ZodOptional<z.ZodString>;
|
|
@@ -266,7 +278,10 @@ export declare const CustomerCreateSchema: z.ZodObject<{
|
|
|
266
278
|
emailThree?: string | undefined;
|
|
267
279
|
eori?: string | undefined;
|
|
268
280
|
tva?: string | undefined;
|
|
269
|
-
|
|
281
|
+
isTrackingMail?: boolean | undefined;
|
|
282
|
+
isBillingCenter?: boolean | undefined;
|
|
283
|
+
isShowNameCustomer?: boolean | undefined;
|
|
284
|
+
isMailing?: boolean | undefined;
|
|
270
285
|
numeroSiret?: string | undefined;
|
|
271
286
|
addressOne?: string | undefined;
|
|
272
287
|
numCode?: string | undefined;
|
|
@@ -308,7 +323,10 @@ export declare const CustomerCreateSchema: z.ZodObject<{
|
|
|
308
323
|
emailThree?: string | undefined;
|
|
309
324
|
eori?: string | undefined;
|
|
310
325
|
tva?: string | undefined;
|
|
311
|
-
|
|
326
|
+
isTrackingMail?: boolean | undefined;
|
|
327
|
+
isBillingCenter?: boolean | undefined;
|
|
328
|
+
isShowNameCustomer?: boolean | undefined;
|
|
329
|
+
isMailing?: boolean | undefined;
|
|
312
330
|
numeroSiret?: string | undefined;
|
|
313
331
|
addressOne?: string | undefined;
|
|
314
332
|
numCode?: string | undefined;
|
|
@@ -351,7 +369,10 @@ export declare const CustomerUpdateSchema: z.ZodObject<{
|
|
|
351
369
|
emailThree: z.ZodOptional<z.ZodString>;
|
|
352
370
|
eori: z.ZodOptional<z.ZodString>;
|
|
353
371
|
tva: z.ZodOptional<z.ZodString>;
|
|
354
|
-
|
|
372
|
+
isTrackingMail: z.ZodOptional<z.ZodBoolean>;
|
|
373
|
+
isBillingCenter: z.ZodOptional<z.ZodBoolean>;
|
|
374
|
+
isShowNameCustomer: z.ZodOptional<z.ZodBoolean>;
|
|
375
|
+
isMailing: z.ZodOptional<z.ZodBoolean>;
|
|
355
376
|
numeroSiret: z.ZodOptional<z.ZodString>;
|
|
356
377
|
siren: z.ZodOptional<z.ZodString>;
|
|
357
378
|
numeroEori: z.ZodOptional<z.ZodString>;
|
|
@@ -393,7 +414,10 @@ export declare const CustomerUpdateSchema: z.ZodObject<{
|
|
|
393
414
|
emailThree?: string | undefined;
|
|
394
415
|
eori?: string | undefined;
|
|
395
416
|
tva?: string | undefined;
|
|
396
|
-
|
|
417
|
+
isTrackingMail?: boolean | undefined;
|
|
418
|
+
isBillingCenter?: boolean | undefined;
|
|
419
|
+
isShowNameCustomer?: boolean | undefined;
|
|
420
|
+
isMailing?: boolean | undefined;
|
|
397
421
|
numeroSiret?: string | undefined;
|
|
398
422
|
addressOne?: string | undefined;
|
|
399
423
|
numCode?: string | undefined;
|
|
@@ -435,7 +459,10 @@ export declare const CustomerUpdateSchema: z.ZodObject<{
|
|
|
435
459
|
emailThree?: string | undefined;
|
|
436
460
|
eori?: string | undefined;
|
|
437
461
|
tva?: string | undefined;
|
|
438
|
-
|
|
462
|
+
isTrackingMail?: boolean | undefined;
|
|
463
|
+
isBillingCenter?: boolean | undefined;
|
|
464
|
+
isShowNameCustomer?: boolean | undefined;
|
|
465
|
+
isMailing?: boolean | undefined;
|
|
439
466
|
numeroSiret?: string | undefined;
|
|
440
467
|
addressOne?: string | undefined;
|
|
441
468
|
numCode?: string | undefined;
|
package/dist/models/_customer.js
CHANGED
|
@@ -51,7 +51,10 @@ exports.CustomerSchema = zod_1.z.object({
|
|
|
51
51
|
emailThree: zod_1.z.string().nullable(),
|
|
52
52
|
eori: zod_1.z.string().nullable(),
|
|
53
53
|
tva: zod_1.z.string().nullable(),
|
|
54
|
-
|
|
54
|
+
isTrackingMail: zod_1.z.boolean().nullable(),
|
|
55
|
+
isBillingCenter: zod_1.z.boolean(),
|
|
56
|
+
isShowNameCustomer: zod_1.z.boolean(),
|
|
57
|
+
isMailing: zod_1.z.boolean(),
|
|
55
58
|
numeroSiret: zod_1.z.string().nullable(),
|
|
56
59
|
country: zod_1.z.lazy(() => _country_1.CountrySchema).optional(),
|
|
57
60
|
});
|
|
@@ -93,7 +96,10 @@ exports.CustomerCreateSchema = zod_1.z.object({
|
|
|
93
96
|
emailThree: zod_1.z.string().optional(),
|
|
94
97
|
eori: zod_1.z.string().optional(),
|
|
95
98
|
tva: zod_1.z.string().optional(),
|
|
96
|
-
|
|
99
|
+
isTrackingMail: zod_1.z.boolean().optional(),
|
|
100
|
+
isBillingCenter: zod_1.z.boolean().optional(),
|
|
101
|
+
isShowNameCustomer: zod_1.z.boolean().optional(),
|
|
102
|
+
isMailing: zod_1.z.boolean().optional(),
|
|
97
103
|
numeroSiret: zod_1.z.string().optional(),
|
|
98
104
|
siren: zod_1.z.string().optional(),
|
|
99
105
|
numeroEori: zod_1.z.string().optional(),
|
|
@@ -136,7 +142,10 @@ exports.CustomerUpdateSchema = zod_1.z.object({
|
|
|
136
142
|
emailThree: zod_1.z.string().optional(),
|
|
137
143
|
eori: zod_1.z.string().optional(),
|
|
138
144
|
tva: zod_1.z.string().optional(),
|
|
139
|
-
|
|
145
|
+
isTrackingMail: zod_1.z.boolean().optional(),
|
|
146
|
+
isBillingCenter: zod_1.z.boolean().optional(),
|
|
147
|
+
isShowNameCustomer: zod_1.z.boolean().optional(),
|
|
148
|
+
isMailing: zod_1.z.boolean().optional(),
|
|
140
149
|
numeroSiret: zod_1.z.string().optional(),
|
|
141
150
|
siren: zod_1.z.string().optional(),
|
|
142
151
|
numeroEori: zod_1.z.string().optional(),
|