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
@@ -107,7 +107,7 @@ export declare const ChatSchema: z.ZodObject<{
107
107
  color: string | null;
108
108
  docBordereaux: string | null;
109
109
  docAccompagnement: string | null;
110
- category: "import" | "export" | "course" | "all";
110
+ category: "course" | "all" | "import" | "export";
111
111
  typeExpedition: "expedition" | "course";
112
112
  driverId: number;
113
113
  typeDeRoue: string | null;
@@ -156,7 +156,7 @@ export declare const ChatSchema: z.ZodObject<{
156
156
  color: string | null;
157
157
  docBordereaux: string | null;
158
158
  docAccompagnement: string | null;
159
- category: "import" | "export" | "course" | "all";
159
+ category: "course" | "all" | "import" | "export";
160
160
  typeExpedition: "expedition" | "course";
161
161
  driverId: number;
162
162
  typeDeRoue: string | null;
@@ -201,7 +201,7 @@ export declare const ChatSchema: z.ZodObject<{
201
201
  civility: z.ZodString;
202
202
  numCodeOne: z.ZodString;
203
203
  numCodeTwo: z.ZodString;
204
- calculatrice: z.ZodBoolean;
204
+ isShowCalculatrice: z.ZodBoolean;
205
205
  expedition: z.ZodBoolean;
206
206
  physicCompany: z.ZodString;
207
207
  isParis: z.ZodBoolean;
@@ -217,22 +217,23 @@ export declare const ChatSchema: z.ZodObject<{
217
217
  carnetAddress: z.ZodString;
218
218
  expeditionsCarnet: z.ZodString;
219
219
  accessArchive: z.ZodString;
220
- import: z.ZodBoolean;
221
- export: z.ZodBoolean;
220
+ isShowImportMenu: z.ZodBoolean;
221
+ isShowExportMenu: z.ZodBoolean;
222
+ isShowCourseMenu: z.ZodBoolean;
222
223
  twoRoues: z.ZodBoolean;
223
224
  vt: z.ZodBoolean;
224
225
  lesTwo: z.ZodBoolean;
225
- mini: z.ZodBoolean;
226
- full: z.ZodBoolean;
227
- expeditionsCoursesPartage: z.ZodBoolean;
228
- carnetAdressesPartage: z.ZodBoolean;
229
- expeditionsCarnetPartage: z.ZodBoolean;
230
- accessAuxArchives: z.ZodBoolean;
231
- lettreInfo: z.ZodBoolean;
226
+ isMiniTracking: z.ZodBoolean;
227
+ isFullTracking: z.ZodBoolean;
228
+ isShareCourseAndExpedition: z.ZodBoolean;
229
+ isShareCarnetAdresse: z.ZodBoolean;
230
+ isShareCarnetAdresseAndExpedition: z.ZodBoolean;
231
+ isAccessAuxArchives: z.ZodBoolean;
232
+ isShowInfo: z.ZodBoolean;
232
233
  photo: z.ZodNullable<z.ZodString>;
233
234
  entreprisePhysique: z.ZodString;
234
235
  isAdminChauffeur: z.ZodBoolean;
235
- hasTrackingMail: z.ZodBoolean;
236
+ isShowTracking: z.ZodBoolean;
236
237
  isClientTransitaire: z.ZodBoolean;
237
238
  customerId: z.ZodNumber;
238
239
  vehiculeId: z.ZodNumber;
@@ -267,7 +268,7 @@ export declare const ChatSchema: z.ZodObject<{
267
268
  roles: string[];
268
269
  isOpsAdmin: boolean;
269
270
  civility: string;
270
- calculatrice: boolean;
271
+ isShowCalculatrice: boolean;
271
272
  expedition: boolean;
272
273
  physicCompany: string;
273
274
  menus: string;
@@ -280,22 +281,23 @@ export declare const ChatSchema: z.ZodObject<{
280
281
  carnetAddress: string;
281
282
  expeditionsCarnet: string;
282
283
  accessArchive: string;
283
- import: boolean;
284
- export: boolean;
284
+ isShowImportMenu: boolean;
285
+ isShowExportMenu: boolean;
286
+ isShowCourseMenu: boolean;
285
287
  twoRoues: boolean;
286
288
  vt: boolean;
287
289
  lesTwo: boolean;
288
- mini: boolean;
289
- full: boolean;
290
- expeditionsCoursesPartage: boolean;
291
- carnetAdressesPartage: boolean;
292
- expeditionsCarnetPartage: boolean;
293
- accessAuxArchives: boolean;
294
- lettreInfo: boolean;
290
+ isMiniTracking: boolean;
291
+ isFullTracking: boolean;
292
+ isShareCourseAndExpedition: boolean;
293
+ isShareCarnetAdresse: boolean;
294
+ isShareCarnetAdresseAndExpedition: boolean;
295
+ isAccessAuxArchives: boolean;
296
+ isShowInfo: boolean;
295
297
  photo: string | null;
296
298
  entreprisePhysique: string;
297
299
  isAdminChauffeur: boolean;
298
- hasTrackingMail: boolean;
300
+ isShowTracking: boolean;
299
301
  isClientTransitaire: boolean;
300
302
  vehiculeId: number;
301
303
  salaryId: number;
@@ -329,7 +331,7 @@ export declare const ChatSchema: z.ZodObject<{
329
331
  roles: string[];
330
332
  isOpsAdmin: boolean;
331
333
  civility: string;
332
- calculatrice: boolean;
334
+ isShowCalculatrice: boolean;
333
335
  expedition: boolean;
334
336
  physicCompany: string;
335
337
  menus: string;
@@ -342,22 +344,23 @@ export declare const ChatSchema: z.ZodObject<{
342
344
  carnetAddress: string;
343
345
  expeditionsCarnet: string;
344
346
  accessArchive: string;
345
- import: boolean;
346
- export: boolean;
347
+ isShowImportMenu: boolean;
348
+ isShowExportMenu: boolean;
349
+ isShowCourseMenu: boolean;
347
350
  twoRoues: boolean;
348
351
  vt: boolean;
349
352
  lesTwo: boolean;
350
- mini: boolean;
351
- full: boolean;
352
- expeditionsCoursesPartage: boolean;
353
- carnetAdressesPartage: boolean;
354
- expeditionsCarnetPartage: boolean;
355
- accessAuxArchives: boolean;
356
- lettreInfo: boolean;
353
+ isMiniTracking: boolean;
354
+ isFullTracking: boolean;
355
+ isShareCourseAndExpedition: boolean;
356
+ isShareCarnetAdresse: boolean;
357
+ isShareCarnetAdresseAndExpedition: boolean;
358
+ isAccessAuxArchives: boolean;
359
+ isShowInfo: boolean;
357
360
  photo: string | null;
358
361
  entreprisePhysique: string;
359
362
  isAdminChauffeur: boolean;
360
- hasTrackingMail: boolean;
363
+ isShowTracking: boolean;
361
364
  isClientTransitaire: boolean;
362
365
  vehiculeId: number;
363
366
  salaryId: number;
@@ -401,7 +404,7 @@ export declare const ChatSchema: z.ZodObject<{
401
404
  roles: string[];
402
405
  isOpsAdmin: boolean;
403
406
  civility: string;
404
- calculatrice: boolean;
407
+ isShowCalculatrice: boolean;
405
408
  expedition: boolean;
406
409
  physicCompany: string;
407
410
  menus: string;
@@ -414,22 +417,23 @@ export declare const ChatSchema: z.ZodObject<{
414
417
  carnetAddress: string;
415
418
  expeditionsCarnet: string;
416
419
  accessArchive: string;
417
- import: boolean;
418
- export: boolean;
420
+ isShowImportMenu: boolean;
421
+ isShowExportMenu: boolean;
422
+ isShowCourseMenu: boolean;
419
423
  twoRoues: boolean;
420
424
  vt: boolean;
421
425
  lesTwo: boolean;
422
- mini: boolean;
423
- full: boolean;
424
- expeditionsCoursesPartage: boolean;
425
- carnetAdressesPartage: boolean;
426
- expeditionsCarnetPartage: boolean;
427
- accessAuxArchives: boolean;
428
- lettreInfo: boolean;
426
+ isMiniTracking: boolean;
427
+ isFullTracking: boolean;
428
+ isShareCourseAndExpedition: boolean;
429
+ isShareCarnetAdresse: boolean;
430
+ isShareCarnetAdresseAndExpedition: boolean;
431
+ isAccessAuxArchives: boolean;
432
+ isShowInfo: boolean;
429
433
  photo: string | null;
430
434
  entreprisePhysique: string;
431
435
  isAdminChauffeur: boolean;
432
- hasTrackingMail: boolean;
436
+ isShowTracking: boolean;
433
437
  isClientTransitaire: boolean;
434
438
  vehiculeId: number;
435
439
  salaryId: number;
@@ -465,7 +469,7 @@ export declare const ChatSchema: z.ZodObject<{
465
469
  color: string | null;
466
470
  docBordereaux: string | null;
467
471
  docAccompagnement: string | null;
468
- category: "import" | "export" | "course" | "all";
472
+ category: "course" | "all" | "import" | "export";
469
473
  typeExpedition: "expedition" | "course";
470
474
  driverId: number;
471
475
  typeDeRoue: string | null;
@@ -523,7 +527,7 @@ export declare const ChatSchema: z.ZodObject<{
523
527
  roles: string[];
524
528
  isOpsAdmin: boolean;
525
529
  civility: string;
526
- calculatrice: boolean;
530
+ isShowCalculatrice: boolean;
527
531
  expedition: boolean;
528
532
  physicCompany: string;
529
533
  menus: string;
@@ -536,22 +540,23 @@ export declare const ChatSchema: z.ZodObject<{
536
540
  carnetAddress: string;
537
541
  expeditionsCarnet: string;
538
542
  accessArchive: string;
539
- import: boolean;
540
- export: boolean;
543
+ isShowImportMenu: boolean;
544
+ isShowExportMenu: boolean;
545
+ isShowCourseMenu: boolean;
541
546
  twoRoues: boolean;
542
547
  vt: boolean;
543
548
  lesTwo: boolean;
544
- mini: boolean;
545
- full: boolean;
546
- expeditionsCoursesPartage: boolean;
547
- carnetAdressesPartage: boolean;
548
- expeditionsCarnetPartage: boolean;
549
- accessAuxArchives: boolean;
550
- lettreInfo: boolean;
549
+ isMiniTracking: boolean;
550
+ isFullTracking: boolean;
551
+ isShareCourseAndExpedition: boolean;
552
+ isShareCarnetAdresse: boolean;
553
+ isShareCarnetAdresseAndExpedition: boolean;
554
+ isAccessAuxArchives: boolean;
555
+ isShowInfo: boolean;
551
556
  photo: string | null;
552
557
  entreprisePhysique: string;
553
558
  isAdminChauffeur: boolean;
554
- hasTrackingMail: boolean;
559
+ isShowTracking: boolean;
555
560
  isClientTransitaire: boolean;
556
561
  vehiculeId: number;
557
562
  salaryId: number;
@@ -587,7 +592,7 @@ export declare const ChatSchema: z.ZodObject<{
587
592
  color: string | null;
588
593
  docBordereaux: string | null;
589
594
  docAccompagnement: string | null;
590
- category: "import" | "export" | "course" | "all";
595
+ category: "course" | "all" | "import" | "export";
591
596
  typeExpedition: "expedition" | "course";
592
597
  driverId: number;
593
598
  typeDeRoue: string | null;