exnet-routing 1.2.21 → 1.2.22

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.
Files changed (37) hide show
  1. package/dist/models/_chat.d.ts +64 -59
  2. package/dist/models/_chat_message.d.ts +150 -138
  3. package/dist/models/_contact.d.ts +60 -55
  4. package/dist/models/_contact_visible.d.ts +120 -110
  5. package/dist/models/_facture_line.d.ts +4 -4
  6. package/dist/models/_historique_action.d.ts +64 -59
  7. package/dist/models/_information_chauffeur.d.ts +60 -55
  8. package/dist/models/_information_importante.d.ts +64 -59
  9. package/dist/models/_livraison_chauffeur.d.ts +64 -59
  10. package/dist/models/_prise_de_poste.d.ts +60 -55
  11. package/dist/models/_ramassage_chauffeur.d.ts +64 -59
  12. package/dist/models/_shipping.d.ts +64 -59
  13. package/dist/models/_shipping_affected.d.ts +64 -59
  14. package/dist/models/_shipping_classification.d.ts +4 -4
  15. package/dist/models/_shipping_comment.d.ts +64 -59
  16. package/dist/models/_shipping_course.d.ts +64 -59
  17. package/dist/models/_shipping_detail.d.ts +4 -4
  18. package/dist/models/_shipping_detail_info_supplementaire.d.ts +4 -4
  19. package/dist/models/_shipping_document.d.ts +64 -59
  20. package/dist/models/_shipping_emballage.d.ts +4 -4
  21. package/dist/models/_shipping_manifest.d.ts +4 -4
  22. package/dist/models/_shipping_package.d.ts +4 -4
  23. package/dist/models/_shipping_pod.d.ts +4 -4
  24. package/dist/models/_shipping_proforma.d.ts +4 -4
  25. package/dist/models/_shipping_proforma_line.d.ts +6 -6
  26. package/dist/models/_shipping_tracking.d.ts +64 -59
  27. package/dist/models/_tracking_visible.d.ts +120 -110
  28. package/dist/models/_user.d.ts +144 -132
  29. package/dist/models/_user.js +48 -44
  30. package/dist/models/_user_billing_center.d.ts +60 -55
  31. package/dist/models/_user_login_historie.d.ts +60 -55
  32. package/dist/models/_vehicule_affected.d.ts +60 -55
  33. package/dist/routes/admin.d.ts +3146 -2888
  34. package/dist/routes/ops.d.ts +3544 -3265
  35. package/dist/routes/public.d.ts +168 -154
  36. package/dist/routes/user.d.ts +1828 -1681
  37. package/package.json +1 -1
@@ -257,7 +257,7 @@ export declare const ShippingSchema: z.ZodObject<{
257
257
  civility: z.ZodString;
258
258
  numCodeOne: z.ZodString;
259
259
  numCodeTwo: z.ZodString;
260
- calculatrice: z.ZodBoolean;
260
+ isShowCalculatrice: z.ZodBoolean;
261
261
  expedition: z.ZodBoolean;
262
262
  physicCompany: z.ZodString;
263
263
  isParis: z.ZodBoolean;
@@ -273,22 +273,23 @@ export declare const ShippingSchema: z.ZodObject<{
273
273
  carnetAddress: z.ZodString;
274
274
  expeditionsCarnet: z.ZodString;
275
275
  accessArchive: z.ZodString;
276
- import: z.ZodBoolean;
277
- export: z.ZodBoolean;
276
+ isShowImportMenu: z.ZodBoolean;
277
+ isShowExportMenu: z.ZodBoolean;
278
+ isShowCourseMenu: z.ZodBoolean;
278
279
  twoRoues: z.ZodBoolean;
279
280
  vt: z.ZodBoolean;
280
281
  lesTwo: z.ZodBoolean;
281
- mini: z.ZodBoolean;
282
- full: z.ZodBoolean;
283
- expeditionsCoursesPartage: z.ZodBoolean;
284
- carnetAdressesPartage: z.ZodBoolean;
285
- expeditionsCarnetPartage: z.ZodBoolean;
286
- accessAuxArchives: z.ZodBoolean;
287
- lettreInfo: z.ZodBoolean;
282
+ isMiniTracking: z.ZodBoolean;
283
+ isFullTracking: z.ZodBoolean;
284
+ isShareCourseAndExpedition: z.ZodBoolean;
285
+ isShareCarnetAdresse: z.ZodBoolean;
286
+ isShareCarnetAdresseAndExpedition: z.ZodBoolean;
287
+ isAccessAuxArchives: z.ZodBoolean;
288
+ isShowInfo: z.ZodBoolean;
288
289
  photo: z.ZodNullable<z.ZodString>;
289
290
  entreprisePhysique: z.ZodString;
290
291
  isAdminChauffeur: z.ZodBoolean;
291
- hasTrackingMail: z.ZodBoolean;
292
+ isShowTracking: z.ZodBoolean;
292
293
  isClientTransitaire: z.ZodBoolean;
293
294
  customerId: z.ZodNumber;
294
295
  vehiculeId: z.ZodNumber;
@@ -323,7 +324,7 @@ export declare const ShippingSchema: z.ZodObject<{
323
324
  roles: string[];
324
325
  isOpsAdmin: boolean;
325
326
  civility: string;
326
- calculatrice: boolean;
327
+ isShowCalculatrice: boolean;
327
328
  expedition: boolean;
328
329
  physicCompany: string;
329
330
  menus: string;
@@ -336,22 +337,23 @@ export declare const ShippingSchema: z.ZodObject<{
336
337
  carnetAddress: string;
337
338
  expeditionsCarnet: string;
338
339
  accessArchive: string;
339
- import: boolean;
340
- export: boolean;
340
+ isShowImportMenu: boolean;
341
+ isShowExportMenu: boolean;
342
+ isShowCourseMenu: boolean;
341
343
  twoRoues: boolean;
342
344
  vt: boolean;
343
345
  lesTwo: boolean;
344
- mini: boolean;
345
- full: boolean;
346
- expeditionsCoursesPartage: boolean;
347
- carnetAdressesPartage: boolean;
348
- expeditionsCarnetPartage: boolean;
349
- accessAuxArchives: boolean;
350
- lettreInfo: boolean;
346
+ isMiniTracking: boolean;
347
+ isFullTracking: boolean;
348
+ isShareCourseAndExpedition: boolean;
349
+ isShareCarnetAdresse: boolean;
350
+ isShareCarnetAdresseAndExpedition: boolean;
351
+ isAccessAuxArchives: boolean;
352
+ isShowInfo: boolean;
351
353
  photo: string | null;
352
354
  entreprisePhysique: string;
353
355
  isAdminChauffeur: boolean;
354
- hasTrackingMail: boolean;
356
+ isShowTracking: boolean;
355
357
  isClientTransitaire: boolean;
356
358
  vehiculeId: number;
357
359
  salaryId: number;
@@ -385,7 +387,7 @@ export declare const ShippingSchema: z.ZodObject<{
385
387
  roles: string[];
386
388
  isOpsAdmin: boolean;
387
389
  civility: string;
388
- calculatrice: boolean;
390
+ isShowCalculatrice: boolean;
389
391
  expedition: boolean;
390
392
  physicCompany: string;
391
393
  menus: string;
@@ -398,22 +400,23 @@ export declare const ShippingSchema: z.ZodObject<{
398
400
  carnetAddress: string;
399
401
  expeditionsCarnet: string;
400
402
  accessArchive: string;
401
- import: boolean;
402
- export: boolean;
403
+ isShowImportMenu: boolean;
404
+ isShowExportMenu: boolean;
405
+ isShowCourseMenu: boolean;
403
406
  twoRoues: boolean;
404
407
  vt: boolean;
405
408
  lesTwo: boolean;
406
- mini: boolean;
407
- full: boolean;
408
- expeditionsCoursesPartage: boolean;
409
- carnetAdressesPartage: boolean;
410
- expeditionsCarnetPartage: boolean;
411
- accessAuxArchives: boolean;
412
- lettreInfo: boolean;
409
+ isMiniTracking: boolean;
410
+ isFullTracking: boolean;
411
+ isShareCourseAndExpedition: boolean;
412
+ isShareCarnetAdresse: boolean;
413
+ isShareCarnetAdresseAndExpedition: boolean;
414
+ isAccessAuxArchives: boolean;
415
+ isShowInfo: boolean;
413
416
  photo: string | null;
414
417
  entreprisePhysique: string;
415
418
  isAdminChauffeur: boolean;
416
- hasTrackingMail: boolean;
419
+ isShowTracking: boolean;
417
420
  isClientTransitaire: boolean;
418
421
  vehiculeId: number;
419
422
  salaryId: number;
@@ -1102,7 +1105,7 @@ export declare const ShippingSchema: z.ZodObject<{
1102
1105
  color: string | null;
1103
1106
  docBordereaux: string | null;
1104
1107
  docAccompagnement: string | null;
1105
- category: "import" | "export" | "course" | "all";
1108
+ category: "course" | "all" | "import" | "export";
1106
1109
  typeExpedition: "expedition" | "course";
1107
1110
  driverId: number;
1108
1111
  typeDeRoue: string | null;
@@ -1206,7 +1209,7 @@ export declare const ShippingSchema: z.ZodObject<{
1206
1209
  roles: string[];
1207
1210
  isOpsAdmin: boolean;
1208
1211
  civility: string;
1209
- calculatrice: boolean;
1212
+ isShowCalculatrice: boolean;
1210
1213
  expedition: boolean;
1211
1214
  physicCompany: string;
1212
1215
  menus: string;
@@ -1219,22 +1222,23 @@ export declare const ShippingSchema: z.ZodObject<{
1219
1222
  carnetAddress: string;
1220
1223
  expeditionsCarnet: string;
1221
1224
  accessArchive: string;
1222
- import: boolean;
1223
- export: boolean;
1225
+ isShowImportMenu: boolean;
1226
+ isShowExportMenu: boolean;
1227
+ isShowCourseMenu: boolean;
1224
1228
  twoRoues: boolean;
1225
1229
  vt: boolean;
1226
1230
  lesTwo: boolean;
1227
- mini: boolean;
1228
- full: boolean;
1229
- expeditionsCoursesPartage: boolean;
1230
- carnetAdressesPartage: boolean;
1231
- expeditionsCarnetPartage: boolean;
1232
- accessAuxArchives: boolean;
1233
- lettreInfo: boolean;
1231
+ isMiniTracking: boolean;
1232
+ isFullTracking: boolean;
1233
+ isShareCourseAndExpedition: boolean;
1234
+ isShareCarnetAdresse: boolean;
1235
+ isShareCarnetAdresseAndExpedition: boolean;
1236
+ isAccessAuxArchives: boolean;
1237
+ isShowInfo: boolean;
1234
1238
  photo: string | null;
1235
1239
  entreprisePhysique: string;
1236
1240
  isAdminChauffeur: boolean;
1237
- hasTrackingMail: boolean;
1241
+ isShowTracking: boolean;
1238
1242
  isClientTransitaire: boolean;
1239
1243
  vehiculeId: number;
1240
1244
  salaryId: number;
@@ -1496,7 +1500,7 @@ export declare const ShippingSchema: z.ZodObject<{
1496
1500
  color: string | null;
1497
1501
  docBordereaux: string | null;
1498
1502
  docAccompagnement: string | null;
1499
- category: "import" | "export" | "course" | "all";
1503
+ category: "course" | "all" | "import" | "export";
1500
1504
  typeExpedition: "expedition" | "course";
1501
1505
  driverId: number;
1502
1506
  typeDeRoue: string | null;
@@ -1600,7 +1604,7 @@ export declare const ShippingSchema: z.ZodObject<{
1600
1604
  roles: string[];
1601
1605
  isOpsAdmin: boolean;
1602
1606
  civility: string;
1603
- calculatrice: boolean;
1607
+ isShowCalculatrice: boolean;
1604
1608
  expedition: boolean;
1605
1609
  physicCompany: string;
1606
1610
  menus: string;
@@ -1613,22 +1617,23 @@ export declare const ShippingSchema: z.ZodObject<{
1613
1617
  carnetAddress: string;
1614
1618
  expeditionsCarnet: string;
1615
1619
  accessArchive: string;
1616
- import: boolean;
1617
- export: boolean;
1620
+ isShowImportMenu: boolean;
1621
+ isShowExportMenu: boolean;
1622
+ isShowCourseMenu: boolean;
1618
1623
  twoRoues: boolean;
1619
1624
  vt: boolean;
1620
1625
  lesTwo: boolean;
1621
- mini: boolean;
1622
- full: boolean;
1623
- expeditionsCoursesPartage: boolean;
1624
- carnetAdressesPartage: boolean;
1625
- expeditionsCarnetPartage: boolean;
1626
- accessAuxArchives: boolean;
1627
- lettreInfo: boolean;
1626
+ isMiniTracking: boolean;
1627
+ isFullTracking: boolean;
1628
+ isShareCourseAndExpedition: boolean;
1629
+ isShareCarnetAdresse: boolean;
1630
+ isShareCarnetAdresseAndExpedition: boolean;
1631
+ isAccessAuxArchives: boolean;
1632
+ isShowInfo: boolean;
1628
1633
  photo: string | null;
1629
1634
  entreprisePhysique: string;
1630
1635
  isAdminChauffeur: boolean;
1631
- hasTrackingMail: boolean;
1636
+ isShowTracking: boolean;
1632
1637
  isClientTransitaire: boolean;
1633
1638
  vehiculeId: number;
1634
1639
  salaryId: number;
@@ -1948,7 +1953,7 @@ export declare const ShippingSchemaSimple: z.ZodObject<{
1948
1953
  color: string | null;
1949
1954
  docBordereaux: string | null;
1950
1955
  docAccompagnement: string | null;
1951
- category: "import" | "export" | "course" | "all";
1956
+ category: "course" | "all" | "import" | "export";
1952
1957
  typeExpedition: "expedition" | "course";
1953
1958
  driverId: number;
1954
1959
  typeDeRoue: string | null;
@@ -1997,7 +2002,7 @@ export declare const ShippingSchemaSimple: z.ZodObject<{
1997
2002
  color: string | null;
1998
2003
  docBordereaux: string | null;
1999
2004
  docAccompagnement: string | null;
2000
- category: "import" | "export" | "course" | "all";
2005
+ category: "course" | "all" | "import" | "export";
2001
2006
  typeExpedition: "expedition" | "course";
2002
2007
  driverId: number;
2003
2008
  typeDeRoue: string | null;
@@ -32,7 +32,7 @@ export declare const ShippingAffectedSchema: z.ZodObject<{
32
32
  civility: z.ZodString;
33
33
  numCodeOne: z.ZodString;
34
34
  numCodeTwo: z.ZodString;
35
- calculatrice: z.ZodBoolean;
35
+ isShowCalculatrice: z.ZodBoolean;
36
36
  expedition: z.ZodBoolean;
37
37
  physicCompany: z.ZodString;
38
38
  isParis: z.ZodBoolean;
@@ -48,22 +48,23 @@ export declare const ShippingAffectedSchema: z.ZodObject<{
48
48
  carnetAddress: z.ZodString;
49
49
  expeditionsCarnet: z.ZodString;
50
50
  accessArchive: z.ZodString;
51
- import: z.ZodBoolean;
52
- export: z.ZodBoolean;
51
+ isShowImportMenu: z.ZodBoolean;
52
+ isShowExportMenu: z.ZodBoolean;
53
+ isShowCourseMenu: z.ZodBoolean;
53
54
  twoRoues: z.ZodBoolean;
54
55
  vt: z.ZodBoolean;
55
56
  lesTwo: z.ZodBoolean;
56
- mini: z.ZodBoolean;
57
- full: z.ZodBoolean;
58
- expeditionsCoursesPartage: z.ZodBoolean;
59
- carnetAdressesPartage: z.ZodBoolean;
60
- expeditionsCarnetPartage: z.ZodBoolean;
61
- accessAuxArchives: z.ZodBoolean;
62
- lettreInfo: z.ZodBoolean;
57
+ isMiniTracking: z.ZodBoolean;
58
+ isFullTracking: z.ZodBoolean;
59
+ isShareCourseAndExpedition: z.ZodBoolean;
60
+ isShareCarnetAdresse: z.ZodBoolean;
61
+ isShareCarnetAdresseAndExpedition: z.ZodBoolean;
62
+ isAccessAuxArchives: z.ZodBoolean;
63
+ isShowInfo: z.ZodBoolean;
63
64
  photo: z.ZodNullable<z.ZodString>;
64
65
  entreprisePhysique: z.ZodString;
65
66
  isAdminChauffeur: z.ZodBoolean;
66
- hasTrackingMail: z.ZodBoolean;
67
+ isShowTracking: z.ZodBoolean;
67
68
  isClientTransitaire: z.ZodBoolean;
68
69
  customerId: z.ZodNumber;
69
70
  vehiculeId: z.ZodNumber;
@@ -475,7 +476,7 @@ export declare const ShippingAffectedSchema: z.ZodObject<{
475
476
  roles: string[];
476
477
  isOpsAdmin: boolean;
477
478
  civility: string;
478
- calculatrice: boolean;
479
+ isShowCalculatrice: boolean;
479
480
  expedition: boolean;
480
481
  physicCompany: string;
481
482
  menus: string;
@@ -488,22 +489,23 @@ export declare const ShippingAffectedSchema: z.ZodObject<{
488
489
  carnetAddress: string;
489
490
  expeditionsCarnet: string;
490
491
  accessArchive: string;
491
- import: boolean;
492
- export: boolean;
492
+ isShowImportMenu: boolean;
493
+ isShowExportMenu: boolean;
494
+ isShowCourseMenu: boolean;
493
495
  twoRoues: boolean;
494
496
  vt: boolean;
495
497
  lesTwo: boolean;
496
- mini: boolean;
497
- full: boolean;
498
- expeditionsCoursesPartage: boolean;
499
- carnetAdressesPartage: boolean;
500
- expeditionsCarnetPartage: boolean;
501
- accessAuxArchives: boolean;
502
- lettreInfo: boolean;
498
+ isMiniTracking: boolean;
499
+ isFullTracking: boolean;
500
+ isShareCourseAndExpedition: boolean;
501
+ isShareCarnetAdresse: boolean;
502
+ isShareCarnetAdresseAndExpedition: boolean;
503
+ isAccessAuxArchives: boolean;
504
+ isShowInfo: boolean;
503
505
  photo: string | null;
504
506
  entreprisePhysique: string;
505
507
  isAdminChauffeur: boolean;
506
- hasTrackingMail: boolean;
508
+ isShowTracking: boolean;
507
509
  isClientTransitaire: boolean;
508
510
  vehiculeId: number;
509
511
  salaryId: number;
@@ -654,7 +656,7 @@ export declare const ShippingAffectedSchema: z.ZodObject<{
654
656
  roles: string[];
655
657
  isOpsAdmin: boolean;
656
658
  civility: string;
657
- calculatrice: boolean;
659
+ isShowCalculatrice: boolean;
658
660
  expedition: boolean;
659
661
  physicCompany: string;
660
662
  menus: string;
@@ -667,22 +669,23 @@ export declare const ShippingAffectedSchema: z.ZodObject<{
667
669
  carnetAddress: string;
668
670
  expeditionsCarnet: string;
669
671
  accessArchive: string;
670
- import: boolean;
671
- export: boolean;
672
+ isShowImportMenu: boolean;
673
+ isShowExportMenu: boolean;
674
+ isShowCourseMenu: boolean;
672
675
  twoRoues: boolean;
673
676
  vt: boolean;
674
677
  lesTwo: boolean;
675
- mini: boolean;
676
- full: boolean;
677
- expeditionsCoursesPartage: boolean;
678
- carnetAdressesPartage: boolean;
679
- expeditionsCarnetPartage: boolean;
680
- accessAuxArchives: boolean;
681
- lettreInfo: boolean;
678
+ isMiniTracking: boolean;
679
+ isFullTracking: boolean;
680
+ isShareCourseAndExpedition: boolean;
681
+ isShareCarnetAdresse: boolean;
682
+ isShareCarnetAdresseAndExpedition: boolean;
683
+ isAccessAuxArchives: boolean;
684
+ isShowInfo: boolean;
682
685
  photo: string | null;
683
686
  entreprisePhysique: string;
684
687
  isAdminChauffeur: boolean;
685
- hasTrackingMail: boolean;
688
+ isShowTracking: boolean;
686
689
  isClientTransitaire: boolean;
687
690
  vehiculeId: number;
688
691
  salaryId: number;
@@ -892,7 +895,7 @@ export declare const ShippingAffectedSchema: z.ZodObject<{
892
895
  color: string | null;
893
896
  docBordereaux: string | null;
894
897
  docAccompagnement: string | null;
895
- category: "import" | "export" | "course" | "all";
898
+ category: "course" | "all" | "import" | "export";
896
899
  typeExpedition: "expedition" | "course";
897
900
  driverId: number;
898
901
  typeDeRoue: string | null;
@@ -941,7 +944,7 @@ export declare const ShippingAffectedSchema: z.ZodObject<{
941
944
  color: string | null;
942
945
  docBordereaux: string | null;
943
946
  docAccompagnement: string | null;
944
- category: "import" | "export" | "course" | "all";
947
+ category: "course" | "all" | "import" | "export";
945
948
  typeExpedition: "expedition" | "course";
946
949
  driverId: number;
947
950
  typeDeRoue: string | null;
@@ -996,7 +999,7 @@ export declare const ShippingAffectedSchema: z.ZodObject<{
996
999
  roles: string[];
997
1000
  isOpsAdmin: boolean;
998
1001
  civility: string;
999
- calculatrice: boolean;
1002
+ isShowCalculatrice: boolean;
1000
1003
  expedition: boolean;
1001
1004
  physicCompany: string;
1002
1005
  menus: string;
@@ -1009,22 +1012,23 @@ export declare const ShippingAffectedSchema: z.ZodObject<{
1009
1012
  carnetAddress: string;
1010
1013
  expeditionsCarnet: string;
1011
1014
  accessArchive: string;
1012
- import: boolean;
1013
- export: boolean;
1015
+ isShowImportMenu: boolean;
1016
+ isShowExportMenu: boolean;
1017
+ isShowCourseMenu: boolean;
1014
1018
  twoRoues: boolean;
1015
1019
  vt: boolean;
1016
1020
  lesTwo: boolean;
1017
- mini: boolean;
1018
- full: boolean;
1019
- expeditionsCoursesPartage: boolean;
1020
- carnetAdressesPartage: boolean;
1021
- expeditionsCarnetPartage: boolean;
1022
- accessAuxArchives: boolean;
1023
- lettreInfo: boolean;
1021
+ isMiniTracking: boolean;
1022
+ isFullTracking: boolean;
1023
+ isShareCourseAndExpedition: boolean;
1024
+ isShareCarnetAdresse: boolean;
1025
+ isShareCarnetAdresseAndExpedition: boolean;
1026
+ isAccessAuxArchives: boolean;
1027
+ isShowInfo: boolean;
1024
1028
  photo: string | null;
1025
1029
  entreprisePhysique: string;
1026
1030
  isAdminChauffeur: boolean;
1027
- hasTrackingMail: boolean;
1031
+ isShowTracking: boolean;
1028
1032
  isClientTransitaire: boolean;
1029
1033
  vehiculeId: number;
1030
1034
  salaryId: number;
@@ -1177,7 +1181,7 @@ export declare const ShippingAffectedSchema: z.ZodObject<{
1177
1181
  color: string | null;
1178
1182
  docBordereaux: string | null;
1179
1183
  docAccompagnement: string | null;
1180
- category: "import" | "export" | "course" | "all";
1184
+ category: "course" | "all" | "import" | "export";
1181
1185
  typeExpedition: "expedition" | "course";
1182
1186
  driverId: number;
1183
1187
  typeDeRoue: string | null;
@@ -1232,7 +1236,7 @@ export declare const ShippingAffectedSchema: z.ZodObject<{
1232
1236
  roles: string[];
1233
1237
  isOpsAdmin: boolean;
1234
1238
  civility: string;
1235
- calculatrice: boolean;
1239
+ isShowCalculatrice: boolean;
1236
1240
  expedition: boolean;
1237
1241
  physicCompany: string;
1238
1242
  menus: string;
@@ -1245,22 +1249,23 @@ export declare const ShippingAffectedSchema: z.ZodObject<{
1245
1249
  carnetAddress: string;
1246
1250
  expeditionsCarnet: string;
1247
1251
  accessArchive: string;
1248
- import: boolean;
1249
- export: boolean;
1252
+ isShowImportMenu: boolean;
1253
+ isShowExportMenu: boolean;
1254
+ isShowCourseMenu: boolean;
1250
1255
  twoRoues: boolean;
1251
1256
  vt: boolean;
1252
1257
  lesTwo: boolean;
1253
- mini: boolean;
1254
- full: boolean;
1255
- expeditionsCoursesPartage: boolean;
1256
- carnetAdressesPartage: boolean;
1257
- expeditionsCarnetPartage: boolean;
1258
- accessAuxArchives: boolean;
1259
- lettreInfo: boolean;
1258
+ isMiniTracking: boolean;
1259
+ isFullTracking: boolean;
1260
+ isShareCourseAndExpedition: boolean;
1261
+ isShareCarnetAdresse: boolean;
1262
+ isShareCarnetAdresseAndExpedition: boolean;
1263
+ isAccessAuxArchives: boolean;
1264
+ isShowInfo: boolean;
1260
1265
  photo: string | null;
1261
1266
  entreprisePhysique: string;
1262
1267
  isAdminChauffeur: boolean;
1263
- hasTrackingMail: boolean;
1268
+ isShowTracking: boolean;
1264
1269
  isClientTransitaire: boolean;
1265
1270
  vehiculeId: number;
1266
1271
  salaryId: number;
@@ -1413,7 +1418,7 @@ export declare const ShippingAffectedSchema: z.ZodObject<{
1413
1418
  color: string | null;
1414
1419
  docBordereaux: string | null;
1415
1420
  docAccompagnement: string | null;
1416
- category: "import" | "export" | "course" | "all";
1421
+ category: "course" | "all" | "import" | "export";
1417
1422
  typeExpedition: "expedition" | "course";
1418
1423
  driverId: number;
1419
1424
  typeDeRoue: string | null;
@@ -109,7 +109,7 @@ export declare const ShippingClassificationSchema: z.ZodObject<{
109
109
  color: string | null;
110
110
  docBordereaux: string | null;
111
111
  docAccompagnement: string | null;
112
- category: "import" | "export" | "course" | "all";
112
+ category: "course" | "all" | "import" | "export";
113
113
  typeExpedition: "expedition" | "course";
114
114
  driverId: number;
115
115
  typeDeRoue: string | null;
@@ -158,7 +158,7 @@ export declare const ShippingClassificationSchema: z.ZodObject<{
158
158
  color: string | null;
159
159
  docBordereaux: string | null;
160
160
  docAccompagnement: string | null;
161
- category: "import" | "export" | "course" | "all";
161
+ category: "course" | "all" | "import" | "export";
162
162
  typeExpedition: "expedition" | "course";
163
163
  driverId: number;
164
164
  typeDeRoue: string | null;
@@ -229,7 +229,7 @@ export declare const ShippingClassificationSchema: z.ZodObject<{
229
229
  color: string | null;
230
230
  docBordereaux: string | null;
231
231
  docAccompagnement: string | null;
232
- category: "import" | "export" | "course" | "all";
232
+ category: "course" | "all" | "import" | "export";
233
233
  typeExpedition: "expedition" | "course";
234
234
  driverId: number;
235
235
  typeDeRoue: string | null;
@@ -300,7 +300,7 @@ export declare const ShippingClassificationSchema: z.ZodObject<{
300
300
  color: string | null;
301
301
  docBordereaux: string | null;
302
302
  docAccompagnement: string | null;
303
- category: "import" | "export" | "course" | "all";
303
+ category: "course" | "all" | "import" | "export";
304
304
  typeExpedition: "expedition" | "course";
305
305
  driverId: number;
306
306
  typeDeRoue: string | null;