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
|
@@ -82,10 +82,8 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
82
82
|
city: z.ZodString;
|
|
83
83
|
telephoneOne: z.ZodString;
|
|
84
84
|
telephoneTwo: z.ZodNullable<z.ZodString>;
|
|
85
|
-
comptaResponsible: z.ZodString;
|
|
86
85
|
invoiceMail: z.ZodString;
|
|
87
86
|
dafResponsibleName: z.ZodString;
|
|
88
|
-
telephone: z.ZodString;
|
|
89
87
|
email: z.ZodNullable<z.ZodString>;
|
|
90
88
|
intraVatNumber: z.ZodNullable<z.ZodString>;
|
|
91
89
|
submittedToFrenchVat: z.ZodBoolean;
|
|
@@ -115,7 +113,6 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
115
113
|
emailOne: z.ZodNullable<z.ZodString>;
|
|
116
114
|
emailTwo: z.ZodNullable<z.ZodString>;
|
|
117
115
|
emailThree: z.ZodNullable<z.ZodString>;
|
|
118
|
-
eori: z.ZodNullable<z.ZodString>;
|
|
119
116
|
tva: z.ZodNullable<z.ZodString>;
|
|
120
117
|
isTrackingMail: z.ZodNullable<z.ZodBoolean>;
|
|
121
118
|
isBillingCenter: z.ZodBoolean;
|
|
@@ -156,10 +153,8 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
156
153
|
city: string;
|
|
157
154
|
telephoneOne: string;
|
|
158
155
|
telephoneTwo: string | null;
|
|
159
|
-
comptaResponsible: string;
|
|
160
156
|
invoiceMail: string;
|
|
161
157
|
dafResponsibleName: string;
|
|
162
|
-
telephone: string;
|
|
163
158
|
email: string | null;
|
|
164
159
|
intraVatNumber: string | null;
|
|
165
160
|
submittedToFrenchVat: boolean;
|
|
@@ -189,7 +184,6 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
189
184
|
emailOne: string | null;
|
|
190
185
|
emailTwo: string | null;
|
|
191
186
|
emailThree: string | null;
|
|
192
|
-
eori: string | null;
|
|
193
187
|
tva: string | null;
|
|
194
188
|
isTrackingMail: boolean | null;
|
|
195
189
|
isBillingCenter: boolean;
|
|
@@ -216,10 +210,8 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
216
210
|
city: string;
|
|
217
211
|
telephoneOne: string;
|
|
218
212
|
telephoneTwo: string | null;
|
|
219
|
-
comptaResponsible: string;
|
|
220
213
|
invoiceMail: string;
|
|
221
214
|
dafResponsibleName: string;
|
|
222
|
-
telephone: string;
|
|
223
215
|
email: string | null;
|
|
224
216
|
intraVatNumber: string | null;
|
|
225
217
|
submittedToFrenchVat: boolean;
|
|
@@ -249,7 +241,6 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
249
241
|
emailOne: string | null;
|
|
250
242
|
emailTwo: string | null;
|
|
251
243
|
emailThree: string | null;
|
|
252
|
-
eori: string | null;
|
|
253
244
|
tva: string | null;
|
|
254
245
|
isTrackingMail: boolean | null;
|
|
255
246
|
isBillingCenter: boolean;
|
|
@@ -308,10 +299,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
308
299
|
countryId: number | null;
|
|
309
300
|
postalCode: string;
|
|
310
301
|
city: string;
|
|
311
|
-
telephone: string;
|
|
312
302
|
email: string;
|
|
313
303
|
nom: string;
|
|
314
304
|
prenom: string;
|
|
305
|
+
telephone: string;
|
|
315
306
|
adress: string;
|
|
316
307
|
country?: {
|
|
317
308
|
id: number;
|
|
@@ -329,10 +320,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
329
320
|
countryId: number | null;
|
|
330
321
|
postalCode: string;
|
|
331
322
|
city: string;
|
|
332
|
-
telephone: string;
|
|
333
323
|
email: string;
|
|
334
324
|
nom: string;
|
|
335
325
|
prenom: string;
|
|
326
|
+
telephone: string;
|
|
336
327
|
adress: string;
|
|
337
328
|
country?: {
|
|
338
329
|
id: number;
|
|
@@ -531,10 +522,8 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
531
522
|
city: string;
|
|
532
523
|
telephoneOne: string;
|
|
533
524
|
telephoneTwo: string | null;
|
|
534
|
-
comptaResponsible: string;
|
|
535
525
|
invoiceMail: string;
|
|
536
526
|
dafResponsibleName: string;
|
|
537
|
-
telephone: string;
|
|
538
527
|
email: string | null;
|
|
539
528
|
intraVatNumber: string | null;
|
|
540
529
|
submittedToFrenchVat: boolean;
|
|
@@ -564,7 +553,6 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
564
553
|
emailOne: string | null;
|
|
565
554
|
emailTwo: string | null;
|
|
566
555
|
emailThree: string | null;
|
|
567
|
-
eori: string | null;
|
|
568
556
|
tva: string | null;
|
|
569
557
|
isTrackingMail: boolean | null;
|
|
570
558
|
isBillingCenter: boolean;
|
|
@@ -588,10 +576,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
588
576
|
countryId: number | null;
|
|
589
577
|
postalCode: string;
|
|
590
578
|
city: string;
|
|
591
|
-
telephone: string;
|
|
592
579
|
email: string;
|
|
593
580
|
nom: string;
|
|
594
581
|
prenom: string;
|
|
582
|
+
telephone: string;
|
|
595
583
|
adress: string;
|
|
596
584
|
country?: {
|
|
597
585
|
id: number;
|
|
@@ -712,10 +700,8 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
712
700
|
city: string;
|
|
713
701
|
telephoneOne: string;
|
|
714
702
|
telephoneTwo: string | null;
|
|
715
|
-
comptaResponsible: string;
|
|
716
703
|
invoiceMail: string;
|
|
717
704
|
dafResponsibleName: string;
|
|
718
|
-
telephone: string;
|
|
719
705
|
email: string | null;
|
|
720
706
|
intraVatNumber: string | null;
|
|
721
707
|
submittedToFrenchVat: boolean;
|
|
@@ -745,7 +731,6 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
745
731
|
emailOne: string | null;
|
|
746
732
|
emailTwo: string | null;
|
|
747
733
|
emailThree: string | null;
|
|
748
|
-
eori: string | null;
|
|
749
734
|
tva: string | null;
|
|
750
735
|
isTrackingMail: boolean | null;
|
|
751
736
|
isBillingCenter: boolean;
|
|
@@ -769,10 +754,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
769
754
|
countryId: number | null;
|
|
770
755
|
postalCode: string;
|
|
771
756
|
city: string;
|
|
772
|
-
telephone: string;
|
|
773
757
|
email: string;
|
|
774
758
|
nom: string;
|
|
775
759
|
prenom: string;
|
|
760
|
+
telephone: string;
|
|
776
761
|
adress: string;
|
|
777
762
|
country?: {
|
|
778
763
|
id: number;
|
|
@@ -886,10 +871,8 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
886
871
|
city: z.ZodString;
|
|
887
872
|
telephoneOne: z.ZodString;
|
|
888
873
|
telephoneTwo: z.ZodNullable<z.ZodString>;
|
|
889
|
-
comptaResponsible: z.ZodString;
|
|
890
874
|
invoiceMail: z.ZodString;
|
|
891
875
|
dafResponsibleName: z.ZodString;
|
|
892
|
-
telephone: z.ZodString;
|
|
893
876
|
email: z.ZodNullable<z.ZodString>;
|
|
894
877
|
intraVatNumber: z.ZodNullable<z.ZodString>;
|
|
895
878
|
submittedToFrenchVat: z.ZodBoolean;
|
|
@@ -919,7 +902,6 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
919
902
|
emailOne: z.ZodNullable<z.ZodString>;
|
|
920
903
|
emailTwo: z.ZodNullable<z.ZodString>;
|
|
921
904
|
emailThree: z.ZodNullable<z.ZodString>;
|
|
922
|
-
eori: z.ZodNullable<z.ZodString>;
|
|
923
905
|
tva: z.ZodNullable<z.ZodString>;
|
|
924
906
|
isTrackingMail: z.ZodNullable<z.ZodBoolean>;
|
|
925
907
|
isBillingCenter: z.ZodBoolean;
|
|
@@ -960,10 +942,8 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
960
942
|
city: string;
|
|
961
943
|
telephoneOne: string;
|
|
962
944
|
telephoneTwo: string | null;
|
|
963
|
-
comptaResponsible: string;
|
|
964
945
|
invoiceMail: string;
|
|
965
946
|
dafResponsibleName: string;
|
|
966
|
-
telephone: string;
|
|
967
947
|
email: string | null;
|
|
968
948
|
intraVatNumber: string | null;
|
|
969
949
|
submittedToFrenchVat: boolean;
|
|
@@ -993,7 +973,6 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
993
973
|
emailOne: string | null;
|
|
994
974
|
emailTwo: string | null;
|
|
995
975
|
emailThree: string | null;
|
|
996
|
-
eori: string | null;
|
|
997
976
|
tva: string | null;
|
|
998
977
|
isTrackingMail: boolean | null;
|
|
999
978
|
isBillingCenter: boolean;
|
|
@@ -1020,10 +999,8 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1020
999
|
city: string;
|
|
1021
1000
|
telephoneOne: string;
|
|
1022
1001
|
telephoneTwo: string | null;
|
|
1023
|
-
comptaResponsible: string;
|
|
1024
1002
|
invoiceMail: string;
|
|
1025
1003
|
dafResponsibleName: string;
|
|
1026
|
-
telephone: string;
|
|
1027
1004
|
email: string | null;
|
|
1028
1005
|
intraVatNumber: string | null;
|
|
1029
1006
|
submittedToFrenchVat: boolean;
|
|
@@ -1053,7 +1030,6 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1053
1030
|
emailOne: string | null;
|
|
1054
1031
|
emailTwo: string | null;
|
|
1055
1032
|
emailThree: string | null;
|
|
1056
|
-
eori: string | null;
|
|
1057
1033
|
tva: string | null;
|
|
1058
1034
|
isTrackingMail: boolean | null;
|
|
1059
1035
|
isBillingCenter: boolean;
|
|
@@ -1112,10 +1088,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1112
1088
|
countryId: number | null;
|
|
1113
1089
|
postalCode: string;
|
|
1114
1090
|
city: string;
|
|
1115
|
-
telephone: string;
|
|
1116
1091
|
email: string;
|
|
1117
1092
|
nom: string;
|
|
1118
1093
|
prenom: string;
|
|
1094
|
+
telephone: string;
|
|
1119
1095
|
adress: string;
|
|
1120
1096
|
country?: {
|
|
1121
1097
|
id: number;
|
|
@@ -1133,10 +1109,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1133
1109
|
countryId: number | null;
|
|
1134
1110
|
postalCode: string;
|
|
1135
1111
|
city: string;
|
|
1136
|
-
telephone: string;
|
|
1137
1112
|
email: string;
|
|
1138
1113
|
nom: string;
|
|
1139
1114
|
prenom: string;
|
|
1115
|
+
telephone: string;
|
|
1140
1116
|
adress: string;
|
|
1141
1117
|
country?: {
|
|
1142
1118
|
id: number;
|
|
@@ -1335,10 +1311,8 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1335
1311
|
city: string;
|
|
1336
1312
|
telephoneOne: string;
|
|
1337
1313
|
telephoneTwo: string | null;
|
|
1338
|
-
comptaResponsible: string;
|
|
1339
1314
|
invoiceMail: string;
|
|
1340
1315
|
dafResponsibleName: string;
|
|
1341
|
-
telephone: string;
|
|
1342
1316
|
email: string | null;
|
|
1343
1317
|
intraVatNumber: string | null;
|
|
1344
1318
|
submittedToFrenchVat: boolean;
|
|
@@ -1368,7 +1342,6 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1368
1342
|
emailOne: string | null;
|
|
1369
1343
|
emailTwo: string | null;
|
|
1370
1344
|
emailThree: string | null;
|
|
1371
|
-
eori: string | null;
|
|
1372
1345
|
tva: string | null;
|
|
1373
1346
|
isTrackingMail: boolean | null;
|
|
1374
1347
|
isBillingCenter: boolean;
|
|
@@ -1392,10 +1365,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1392
1365
|
countryId: number | null;
|
|
1393
1366
|
postalCode: string;
|
|
1394
1367
|
city: string;
|
|
1395
|
-
telephone: string;
|
|
1396
1368
|
email: string;
|
|
1397
1369
|
nom: string;
|
|
1398
1370
|
prenom: string;
|
|
1371
|
+
telephone: string;
|
|
1399
1372
|
adress: string;
|
|
1400
1373
|
country?: {
|
|
1401
1374
|
id: number;
|
|
@@ -1516,10 +1489,8 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1516
1489
|
city: string;
|
|
1517
1490
|
telephoneOne: string;
|
|
1518
1491
|
telephoneTwo: string | null;
|
|
1519
|
-
comptaResponsible: string;
|
|
1520
1492
|
invoiceMail: string;
|
|
1521
1493
|
dafResponsibleName: string;
|
|
1522
|
-
telephone: string;
|
|
1523
1494
|
email: string | null;
|
|
1524
1495
|
intraVatNumber: string | null;
|
|
1525
1496
|
submittedToFrenchVat: boolean;
|
|
@@ -1549,7 +1520,6 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1549
1520
|
emailOne: string | null;
|
|
1550
1521
|
emailTwo: string | null;
|
|
1551
1522
|
emailThree: string | null;
|
|
1552
|
-
eori: string | null;
|
|
1553
1523
|
tva: string | null;
|
|
1554
1524
|
isTrackingMail: boolean | null;
|
|
1555
1525
|
isBillingCenter: boolean;
|
|
@@ -1573,10 +1543,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1573
1543
|
countryId: number | null;
|
|
1574
1544
|
postalCode: string;
|
|
1575
1545
|
city: string;
|
|
1576
|
-
telephone: string;
|
|
1577
1546
|
email: string;
|
|
1578
1547
|
nom: string;
|
|
1579
1548
|
prenom: string;
|
|
1549
|
+
telephone: string;
|
|
1580
1550
|
adress: string;
|
|
1581
1551
|
country?: {
|
|
1582
1552
|
id: number;
|
|
@@ -1704,10 +1674,8 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1704
1674
|
city: string;
|
|
1705
1675
|
telephoneOne: string;
|
|
1706
1676
|
telephoneTwo: string | null;
|
|
1707
|
-
comptaResponsible: string;
|
|
1708
1677
|
invoiceMail: string;
|
|
1709
1678
|
dafResponsibleName: string;
|
|
1710
|
-
telephone: string;
|
|
1711
1679
|
email: string | null;
|
|
1712
1680
|
intraVatNumber: string | null;
|
|
1713
1681
|
submittedToFrenchVat: boolean;
|
|
@@ -1737,7 +1705,6 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1737
1705
|
emailOne: string | null;
|
|
1738
1706
|
emailTwo: string | null;
|
|
1739
1707
|
emailThree: string | null;
|
|
1740
|
-
eori: string | null;
|
|
1741
1708
|
tva: string | null;
|
|
1742
1709
|
isTrackingMail: boolean | null;
|
|
1743
1710
|
isBillingCenter: boolean;
|
|
@@ -1761,10 +1728,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1761
1728
|
countryId: number | null;
|
|
1762
1729
|
postalCode: string;
|
|
1763
1730
|
city: string;
|
|
1764
|
-
telephone: string;
|
|
1765
1731
|
email: string;
|
|
1766
1732
|
nom: string;
|
|
1767
1733
|
prenom: string;
|
|
1734
|
+
telephone: string;
|
|
1768
1735
|
adress: string;
|
|
1769
1736
|
country?: {
|
|
1770
1737
|
id: number;
|
|
@@ -1886,10 +1853,8 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1886
1853
|
city: string;
|
|
1887
1854
|
telephoneOne: string;
|
|
1888
1855
|
telephoneTwo: string | null;
|
|
1889
|
-
comptaResponsible: string;
|
|
1890
1856
|
invoiceMail: string;
|
|
1891
1857
|
dafResponsibleName: string;
|
|
1892
|
-
telephone: string;
|
|
1893
1858
|
email: string | null;
|
|
1894
1859
|
intraVatNumber: string | null;
|
|
1895
1860
|
submittedToFrenchVat: boolean;
|
|
@@ -1919,7 +1884,6 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1919
1884
|
emailOne: string | null;
|
|
1920
1885
|
emailTwo: string | null;
|
|
1921
1886
|
emailThree: string | null;
|
|
1922
|
-
eori: string | null;
|
|
1923
1887
|
tva: string | null;
|
|
1924
1888
|
isTrackingMail: boolean | null;
|
|
1925
1889
|
isBillingCenter: boolean;
|
|
@@ -1943,10 +1907,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
1943
1907
|
countryId: number | null;
|
|
1944
1908
|
postalCode: string;
|
|
1945
1909
|
city: string;
|
|
1946
|
-
telephone: string;
|
|
1947
1910
|
email: string;
|
|
1948
1911
|
nom: string;
|
|
1949
1912
|
prenom: string;
|
|
1913
|
+
telephone: string;
|
|
1950
1914
|
adress: string;
|
|
1951
1915
|
country?: {
|
|
1952
1916
|
id: number;
|
|
@@ -2074,10 +2038,8 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
2074
2038
|
city: string;
|
|
2075
2039
|
telephoneOne: string;
|
|
2076
2040
|
telephoneTwo: string | null;
|
|
2077
|
-
comptaResponsible: string;
|
|
2078
2041
|
invoiceMail: string;
|
|
2079
2042
|
dafResponsibleName: string;
|
|
2080
|
-
telephone: string;
|
|
2081
2043
|
email: string | null;
|
|
2082
2044
|
intraVatNumber: string | null;
|
|
2083
2045
|
submittedToFrenchVat: boolean;
|
|
@@ -2107,7 +2069,6 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
2107
2069
|
emailOne: string | null;
|
|
2108
2070
|
emailTwo: string | null;
|
|
2109
2071
|
emailThree: string | null;
|
|
2110
|
-
eori: string | null;
|
|
2111
2072
|
tva: string | null;
|
|
2112
2073
|
isTrackingMail: boolean | null;
|
|
2113
2074
|
isBillingCenter: boolean;
|
|
@@ -2131,10 +2092,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
2131
2092
|
countryId: number | null;
|
|
2132
2093
|
postalCode: string;
|
|
2133
2094
|
city: string;
|
|
2134
|
-
telephone: string;
|
|
2135
2095
|
email: string;
|
|
2136
2096
|
nom: string;
|
|
2137
2097
|
prenom: string;
|
|
2098
|
+
telephone: string;
|
|
2138
2099
|
adress: string;
|
|
2139
2100
|
country?: {
|
|
2140
2101
|
id: number;
|
|
@@ -2256,10 +2217,8 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
2256
2217
|
city: string;
|
|
2257
2218
|
telephoneOne: string;
|
|
2258
2219
|
telephoneTwo: string | null;
|
|
2259
|
-
comptaResponsible: string;
|
|
2260
2220
|
invoiceMail: string;
|
|
2261
2221
|
dafResponsibleName: string;
|
|
2262
|
-
telephone: string;
|
|
2263
2222
|
email: string | null;
|
|
2264
2223
|
intraVatNumber: string | null;
|
|
2265
2224
|
submittedToFrenchVat: boolean;
|
|
@@ -2289,7 +2248,6 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
2289
2248
|
emailOne: string | null;
|
|
2290
2249
|
emailTwo: string | null;
|
|
2291
2250
|
emailThree: string | null;
|
|
2292
|
-
eori: string | null;
|
|
2293
2251
|
tva: string | null;
|
|
2294
2252
|
isTrackingMail: boolean | null;
|
|
2295
2253
|
isBillingCenter: boolean;
|
|
@@ -2313,10 +2271,10 @@ export declare const ContactVisibleSchema: z.ZodObject<{
|
|
|
2313
2271
|
countryId: number | null;
|
|
2314
2272
|
postalCode: string;
|
|
2315
2273
|
city: string;
|
|
2316
|
-
telephone: string;
|
|
2317
2274
|
email: string;
|
|
2318
2275
|
nom: string;
|
|
2319
2276
|
prenom: string;
|
|
2277
|
+
telephone: string;
|
|
2320
2278
|
adress: string;
|
|
2321
2279
|
country?: {
|
|
2322
2280
|
id: number;
|
|
@@ -12,10 +12,8 @@ export declare const CustomerSchema: z.ZodObject<{
|
|
|
12
12
|
city: z.ZodString;
|
|
13
13
|
telephoneOne: z.ZodString;
|
|
14
14
|
telephoneTwo: z.ZodNullable<z.ZodString>;
|
|
15
|
-
comptaResponsible: z.ZodString;
|
|
16
15
|
invoiceMail: z.ZodString;
|
|
17
16
|
dafResponsibleName: z.ZodString;
|
|
18
|
-
telephone: z.ZodString;
|
|
19
17
|
email: z.ZodNullable<z.ZodString>;
|
|
20
18
|
intraVatNumber: z.ZodNullable<z.ZodString>;
|
|
21
19
|
submittedToFrenchVat: z.ZodBoolean;
|
|
@@ -45,7 +43,6 @@ export declare const CustomerSchema: z.ZodObject<{
|
|
|
45
43
|
emailOne: z.ZodNullable<z.ZodString>;
|
|
46
44
|
emailTwo: z.ZodNullable<z.ZodString>;
|
|
47
45
|
emailThree: z.ZodNullable<z.ZodString>;
|
|
48
|
-
eori: z.ZodNullable<z.ZodString>;
|
|
49
46
|
tva: z.ZodNullable<z.ZodString>;
|
|
50
47
|
isTrackingMail: z.ZodNullable<z.ZodBoolean>;
|
|
51
48
|
isBillingCenter: z.ZodBoolean;
|
|
@@ -86,10 +83,8 @@ export declare const CustomerSchema: z.ZodObject<{
|
|
|
86
83
|
city: string;
|
|
87
84
|
telephoneOne: string;
|
|
88
85
|
telephoneTwo: string | null;
|
|
89
|
-
comptaResponsible: string;
|
|
90
86
|
invoiceMail: string;
|
|
91
87
|
dafResponsibleName: string;
|
|
92
|
-
telephone: string;
|
|
93
88
|
email: string | null;
|
|
94
89
|
intraVatNumber: string | null;
|
|
95
90
|
submittedToFrenchVat: boolean;
|
|
@@ -119,7 +114,6 @@ export declare const CustomerSchema: z.ZodObject<{
|
|
|
119
114
|
emailOne: string | null;
|
|
120
115
|
emailTwo: string | null;
|
|
121
116
|
emailThree: string | null;
|
|
122
|
-
eori: string | null;
|
|
123
117
|
tva: string | null;
|
|
124
118
|
isTrackingMail: boolean | null;
|
|
125
119
|
isBillingCenter: boolean;
|
|
@@ -146,10 +140,8 @@ export declare const CustomerSchema: z.ZodObject<{
|
|
|
146
140
|
city: string;
|
|
147
141
|
telephoneOne: string;
|
|
148
142
|
telephoneTwo: string | null;
|
|
149
|
-
comptaResponsible: string;
|
|
150
143
|
invoiceMail: string;
|
|
151
144
|
dafResponsibleName: string;
|
|
152
|
-
telephone: string;
|
|
153
145
|
email: string | null;
|
|
154
146
|
intraVatNumber: string | null;
|
|
155
147
|
submittedToFrenchVat: boolean;
|
|
@@ -179,7 +171,6 @@ export declare const CustomerSchema: z.ZodObject<{
|
|
|
179
171
|
emailOne: string | null;
|
|
180
172
|
emailTwo: string | null;
|
|
181
173
|
emailThree: string | null;
|
|
182
|
-
eori: string | null;
|
|
183
174
|
tva: string | null;
|
|
184
175
|
isTrackingMail: boolean | null;
|
|
185
176
|
isBillingCenter: boolean;
|
|
@@ -231,7 +222,6 @@ export declare const CustomerCreateSchema: z.ZodObject<{
|
|
|
231
222
|
footer: z.ZodOptional<z.ZodAny>;
|
|
232
223
|
emailOne: z.ZodOptional<z.ZodString>;
|
|
233
224
|
emailThree: z.ZodOptional<z.ZodString>;
|
|
234
|
-
eori: z.ZodOptional<z.ZodString>;
|
|
235
225
|
tva: z.ZodOptional<z.ZodString>;
|
|
236
226
|
isTrackingMail: z.ZodOptional<z.ZodBoolean>;
|
|
237
227
|
isBillingCenter: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -276,7 +266,6 @@ export declare const CustomerCreateSchema: z.ZodObject<{
|
|
|
276
266
|
emailOne?: string | undefined;
|
|
277
267
|
emailTwo?: string | undefined;
|
|
278
268
|
emailThree?: string | undefined;
|
|
279
|
-
eori?: string | undefined;
|
|
280
269
|
tva?: string | undefined;
|
|
281
270
|
isTrackingMail?: boolean | undefined;
|
|
282
271
|
isBillingCenter?: boolean | undefined;
|
|
@@ -321,7 +310,6 @@ export declare const CustomerCreateSchema: z.ZodObject<{
|
|
|
321
310
|
emailOne?: string | undefined;
|
|
322
311
|
emailTwo?: string | undefined;
|
|
323
312
|
emailThree?: string | undefined;
|
|
324
|
-
eori?: string | undefined;
|
|
325
313
|
tva?: string | undefined;
|
|
326
314
|
isTrackingMail?: boolean | undefined;
|
|
327
315
|
isBillingCenter?: boolean | undefined;
|
|
@@ -367,7 +355,6 @@ export declare const CustomerUpdateSchema: z.ZodObject<{
|
|
|
367
355
|
footer: z.ZodOptional<z.ZodAny>;
|
|
368
356
|
emailOne: z.ZodOptional<z.ZodString>;
|
|
369
357
|
emailThree: z.ZodOptional<z.ZodString>;
|
|
370
|
-
eori: z.ZodOptional<z.ZodString>;
|
|
371
358
|
tva: z.ZodOptional<z.ZodString>;
|
|
372
359
|
isTrackingMail: z.ZodOptional<z.ZodBoolean>;
|
|
373
360
|
isBillingCenter: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -412,7 +399,6 @@ export declare const CustomerUpdateSchema: z.ZodObject<{
|
|
|
412
399
|
emailOne?: string | undefined;
|
|
413
400
|
emailTwo?: string | undefined;
|
|
414
401
|
emailThree?: string | undefined;
|
|
415
|
-
eori?: string | undefined;
|
|
416
402
|
tva?: string | undefined;
|
|
417
403
|
isTrackingMail?: boolean | undefined;
|
|
418
404
|
isBillingCenter?: boolean | undefined;
|
|
@@ -457,7 +443,6 @@ export declare const CustomerUpdateSchema: z.ZodObject<{
|
|
|
457
443
|
emailOne?: string | undefined;
|
|
458
444
|
emailTwo?: string | undefined;
|
|
459
445
|
emailThree?: string | undefined;
|
|
460
|
-
eori?: string | undefined;
|
|
461
446
|
tva?: string | undefined;
|
|
462
447
|
isTrackingMail?: boolean | undefined;
|
|
463
448
|
isBillingCenter?: boolean | undefined;
|
package/dist/models/_customer.js
CHANGED
|
@@ -16,10 +16,8 @@ exports.CustomerSchema = zod_1.z.object({
|
|
|
16
16
|
city: zod_1.z.string(),
|
|
17
17
|
telephoneOne: zod_1.z.string(),
|
|
18
18
|
telephoneTwo: zod_1.z.string().nullable(),
|
|
19
|
-
comptaResponsible: zod_1.z.string(),
|
|
20
19
|
invoiceMail: zod_1.z.string(),
|
|
21
20
|
dafResponsibleName: zod_1.z.string(),
|
|
22
|
-
telephone: zod_1.z.string(),
|
|
23
21
|
email: zod_1.z.string().nullable(),
|
|
24
22
|
intraVatNumber: zod_1.z.string().nullable(),
|
|
25
23
|
submittedToFrenchVat: zod_1.z.boolean(),
|
|
@@ -49,7 +47,6 @@ exports.CustomerSchema = zod_1.z.object({
|
|
|
49
47
|
emailOne: zod_1.z.string().nullable(),
|
|
50
48
|
emailTwo: zod_1.z.string().nullable(),
|
|
51
49
|
emailThree: zod_1.z.string().nullable(),
|
|
52
|
-
eori: zod_1.z.string().nullable(),
|
|
53
50
|
tva: zod_1.z.string().nullable(),
|
|
54
51
|
isTrackingMail: zod_1.z.boolean().nullable(),
|
|
55
52
|
isBillingCenter: zod_1.z.boolean(),
|
|
@@ -94,7 +91,6 @@ exports.CustomerCreateSchema = zod_1.z.object({
|
|
|
94
91
|
footer: zod_1.z.any().optional(),
|
|
95
92
|
emailOne: zod_1.z.string().optional(),
|
|
96
93
|
emailThree: zod_1.z.string().optional(),
|
|
97
|
-
eori: zod_1.z.string().optional(),
|
|
98
94
|
tva: zod_1.z.string().optional(),
|
|
99
95
|
isTrackingMail: zod_1.z.boolean().optional(),
|
|
100
96
|
isBillingCenter: zod_1.z.boolean().optional(),
|
|
@@ -140,7 +136,6 @@ exports.CustomerUpdateSchema = zod_1.z.object({
|
|
|
140
136
|
footer: zod_1.z.any().optional(),
|
|
141
137
|
emailOne: zod_1.z.string().optional(),
|
|
142
138
|
emailThree: zod_1.z.string().optional(),
|
|
143
|
-
eori: zod_1.z.string().optional(),
|
|
144
139
|
tva: zod_1.z.string().optional(),
|
|
145
140
|
isTrackingMail: zod_1.z.boolean().optional(),
|
|
146
141
|
isBillingCenter: zod_1.z.boolean().optional(),
|