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.
Files changed (32) hide show
  1. package/dist/models/_billing_center.d.ts +16 -31
  2. package/dist/models/_chat.d.ts +40 -67
  3. package/dist/models/_chat_message.d.ts +18 -39
  4. package/dist/models/_contact.d.ts +6 -27
  5. package/dist/models/_contact_visible.d.ts +12 -54
  6. package/dist/models/_customer.d.ts +0 -15
  7. package/dist/models/_customer.js +0 -5
  8. package/dist/models/_facture.d.ts +8 -29
  9. package/dist/models/_facture_line.d.ts +12 -39
  10. package/dist/models/_historique_action.d.ts +6 -27
  11. package/dist/models/_information_chauffeur.d.ts +6 -27
  12. package/dist/models/_information_importante.d.ts +6 -27
  13. package/dist/models/_livraison_chauffeur.d.ts +6 -27
  14. package/dist/models/_prise_de_poste.d.ts +6 -27
  15. package/dist/models/_ramassage_chauffeur.d.ts +6 -27
  16. package/dist/models/_salarie.d.ts +6 -6
  17. package/dist/models/_shipping.d.ts +8 -8
  18. package/dist/models/_shipping_affected.d.ts +6 -27
  19. package/dist/models/_shipping_comment.d.ts +6 -27
  20. package/dist/models/_shipping_course.d.ts +6 -27
  21. package/dist/models/_shipping_document.d.ts +6 -27
  22. package/dist/models/_shipping_tracking.d.ts +6 -27
  23. package/dist/models/_tracking_visible.d.ts +12 -54
  24. package/dist/models/_user.d.ts +4 -19
  25. package/dist/models/_user_billing_center.d.ts +14 -56
  26. package/dist/models/_user_login_historie.d.ts +6 -27
  27. package/dist/models/_vehicule_affected.d.ts +6 -27
  28. package/dist/routes/admin.d.ts +416 -1637
  29. package/dist/routes/ops.d.ts +744 -1209
  30. package/dist/routes/public.d.ts +16 -70
  31. package/dist/routes/user.d.ts +358 -649
  32. package/package.json +1 -1
@@ -83,10 +83,8 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
83
83
  city: z.ZodString;
84
84
  telephoneOne: z.ZodString;
85
85
  telephoneTwo: z.ZodNullable<z.ZodString>;
86
- comptaResponsible: z.ZodString;
87
86
  invoiceMail: z.ZodString;
88
87
  dafResponsibleName: z.ZodString;
89
- telephone: z.ZodString;
90
88
  email: z.ZodNullable<z.ZodString>;
91
89
  intraVatNumber: z.ZodNullable<z.ZodString>;
92
90
  submittedToFrenchVat: z.ZodBoolean;
@@ -116,7 +114,6 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
116
114
  emailOne: z.ZodNullable<z.ZodString>;
117
115
  emailTwo: z.ZodNullable<z.ZodString>;
118
116
  emailThree: z.ZodNullable<z.ZodString>;
119
- eori: z.ZodNullable<z.ZodString>;
120
117
  tva: z.ZodNullable<z.ZodString>;
121
118
  isTrackingMail: z.ZodNullable<z.ZodBoolean>;
122
119
  isBillingCenter: z.ZodBoolean;
@@ -157,10 +154,8 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
157
154
  city: string;
158
155
  telephoneOne: string;
159
156
  telephoneTwo: string | null;
160
- comptaResponsible: string;
161
157
  invoiceMail: string;
162
158
  dafResponsibleName: string;
163
- telephone: string;
164
159
  email: string | null;
165
160
  intraVatNumber: string | null;
166
161
  submittedToFrenchVat: boolean;
@@ -190,7 +185,6 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
190
185
  emailOne: string | null;
191
186
  emailTwo: string | null;
192
187
  emailThree: string | null;
193
- eori: string | null;
194
188
  tva: string | null;
195
189
  isTrackingMail: boolean | null;
196
190
  isBillingCenter: boolean;
@@ -217,10 +211,8 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
217
211
  city: string;
218
212
  telephoneOne: string;
219
213
  telephoneTwo: string | null;
220
- comptaResponsible: string;
221
214
  invoiceMail: string;
222
215
  dafResponsibleName: string;
223
- telephone: string;
224
216
  email: string | null;
225
217
  intraVatNumber: string | null;
226
218
  submittedToFrenchVat: boolean;
@@ -250,7 +242,6 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
250
242
  emailOne: string | null;
251
243
  emailTwo: string | null;
252
244
  emailThree: string | null;
253
- eori: string | null;
254
245
  tva: string | null;
255
246
  isTrackingMail: boolean | null;
256
247
  isBillingCenter: boolean;
@@ -309,10 +300,10 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
309
300
  countryId: number | null;
310
301
  postalCode: string;
311
302
  city: string;
312
- telephone: string;
313
303
  email: string;
314
304
  nom: string;
315
305
  prenom: string;
306
+ telephone: string;
316
307
  adress: string;
317
308
  country?: {
318
309
  id: number;
@@ -330,10 +321,10 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
330
321
  countryId: number | null;
331
322
  postalCode: string;
332
323
  city: string;
333
- telephone: string;
334
324
  email: string;
335
325
  nom: string;
336
326
  prenom: string;
327
+ telephone: string;
337
328
  adress: string;
338
329
  country?: {
339
330
  id: number;
@@ -532,10 +523,8 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
532
523
  city: string;
533
524
  telephoneOne: string;
534
525
  telephoneTwo: string | null;
535
- comptaResponsible: string;
536
526
  invoiceMail: string;
537
527
  dafResponsibleName: string;
538
- telephone: string;
539
528
  email: string | null;
540
529
  intraVatNumber: string | null;
541
530
  submittedToFrenchVat: boolean;
@@ -565,7 +554,6 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
565
554
  emailOne: string | null;
566
555
  emailTwo: string | null;
567
556
  emailThree: string | null;
568
- eori: string | null;
569
557
  tva: string | null;
570
558
  isTrackingMail: boolean | null;
571
559
  isBillingCenter: boolean;
@@ -589,10 +577,10 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
589
577
  countryId: number | null;
590
578
  postalCode: string;
591
579
  city: string;
592
- telephone: string;
593
580
  email: string;
594
581
  nom: string;
595
582
  prenom: string;
583
+ telephone: string;
596
584
  adress: string;
597
585
  country?: {
598
586
  id: number;
@@ -713,10 +701,8 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
713
701
  city: string;
714
702
  telephoneOne: string;
715
703
  telephoneTwo: string | null;
716
- comptaResponsible: string;
717
704
  invoiceMail: string;
718
705
  dafResponsibleName: string;
719
- telephone: string;
720
706
  email: string | null;
721
707
  intraVatNumber: string | null;
722
708
  submittedToFrenchVat: boolean;
@@ -746,7 +732,6 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
746
732
  emailOne: string | null;
747
733
  emailTwo: string | null;
748
734
  emailThree: string | null;
749
- eori: string | null;
750
735
  tva: string | null;
751
736
  isTrackingMail: boolean | null;
752
737
  isBillingCenter: boolean;
@@ -770,10 +755,10 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
770
755
  countryId: number | null;
771
756
  postalCode: string;
772
757
  city: string;
773
- telephone: string;
774
758
  email: string;
775
759
  nom: string;
776
760
  prenom: string;
761
+ telephone: string;
777
762
  adress: string;
778
763
  country?: {
779
764
  id: number;
@@ -1061,10 +1046,8 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
1061
1046
  city: string;
1062
1047
  telephoneOne: string;
1063
1048
  telephoneTwo: string | null;
1064
- comptaResponsible: string;
1065
1049
  invoiceMail: string;
1066
1050
  dafResponsibleName: string;
1067
- telephone: string;
1068
1051
  email: string | null;
1069
1052
  intraVatNumber: string | null;
1070
1053
  submittedToFrenchVat: boolean;
@@ -1094,7 +1077,6 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
1094
1077
  emailOne: string | null;
1095
1078
  emailTwo: string | null;
1096
1079
  emailThree: string | null;
1097
- eori: string | null;
1098
1080
  tva: string | null;
1099
1081
  isTrackingMail: boolean | null;
1100
1082
  isBillingCenter: boolean;
@@ -1118,10 +1100,10 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
1118
1100
  countryId: number | null;
1119
1101
  postalCode: string;
1120
1102
  city: string;
1121
- telephone: string;
1122
1103
  email: string;
1123
1104
  nom: string;
1124
1105
  prenom: string;
1106
+ telephone: string;
1125
1107
  adress: string;
1126
1108
  country?: {
1127
1109
  id: number;
@@ -1301,10 +1283,8 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
1301
1283
  city: string;
1302
1284
  telephoneOne: string;
1303
1285
  telephoneTwo: string | null;
1304
- comptaResponsible: string;
1305
1286
  invoiceMail: string;
1306
1287
  dafResponsibleName: string;
1307
- telephone: string;
1308
1288
  email: string | null;
1309
1289
  intraVatNumber: string | null;
1310
1290
  submittedToFrenchVat: boolean;
@@ -1334,7 +1314,6 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
1334
1314
  emailOne: string | null;
1335
1315
  emailTwo: string | null;
1336
1316
  emailThree: string | null;
1337
- eori: string | null;
1338
1317
  tva: string | null;
1339
1318
  isTrackingMail: boolean | null;
1340
1319
  isBillingCenter: boolean;
@@ -1358,10 +1337,10 @@ export declare const LivraisonChauffeurSchema: z.ZodObject<{
1358
1337
  countryId: number | null;
1359
1338
  postalCode: string;
1360
1339
  city: string;
1361
- telephone: string;
1362
1340
  email: string;
1363
1341
  nom: string;
1364
1342
  prenom: string;
1343
+ telephone: string;
1365
1344
  adress: string;
1366
1345
  country?: {
1367
1346
  id: number;
@@ -117,10 +117,8 @@ export declare const PriseDePosteSchema: z.ZodObject<{
117
117
  city: z.ZodString;
118
118
  telephoneOne: z.ZodString;
119
119
  telephoneTwo: z.ZodNullable<z.ZodString>;
120
- comptaResponsible: z.ZodString;
121
120
  invoiceMail: z.ZodString;
122
121
  dafResponsibleName: z.ZodString;
123
- telephone: z.ZodString;
124
122
  email: z.ZodNullable<z.ZodString>;
125
123
  intraVatNumber: z.ZodNullable<z.ZodString>;
126
124
  submittedToFrenchVat: z.ZodBoolean;
@@ -150,7 +148,6 @@ export declare const PriseDePosteSchema: z.ZodObject<{
150
148
  emailOne: z.ZodNullable<z.ZodString>;
151
149
  emailTwo: z.ZodNullable<z.ZodString>;
152
150
  emailThree: z.ZodNullable<z.ZodString>;
153
- eori: z.ZodNullable<z.ZodString>;
154
151
  tva: z.ZodNullable<z.ZodString>;
155
152
  isTrackingMail: z.ZodNullable<z.ZodBoolean>;
156
153
  isBillingCenter: z.ZodBoolean;
@@ -191,10 +188,8 @@ export declare const PriseDePosteSchema: z.ZodObject<{
191
188
  city: string;
192
189
  telephoneOne: string;
193
190
  telephoneTwo: string | null;
194
- comptaResponsible: string;
195
191
  invoiceMail: string;
196
192
  dafResponsibleName: string;
197
- telephone: string;
198
193
  email: string | null;
199
194
  intraVatNumber: string | null;
200
195
  submittedToFrenchVat: boolean;
@@ -224,7 +219,6 @@ export declare const PriseDePosteSchema: z.ZodObject<{
224
219
  emailOne: string | null;
225
220
  emailTwo: string | null;
226
221
  emailThree: string | null;
227
- eori: string | null;
228
222
  tva: string | null;
229
223
  isTrackingMail: boolean | null;
230
224
  isBillingCenter: boolean;
@@ -251,10 +245,8 @@ export declare const PriseDePosteSchema: z.ZodObject<{
251
245
  city: string;
252
246
  telephoneOne: string;
253
247
  telephoneTwo: string | null;
254
- comptaResponsible: string;
255
248
  invoiceMail: string;
256
249
  dafResponsibleName: string;
257
- telephone: string;
258
250
  email: string | null;
259
251
  intraVatNumber: string | null;
260
252
  submittedToFrenchVat: boolean;
@@ -284,7 +276,6 @@ export declare const PriseDePosteSchema: z.ZodObject<{
284
276
  emailOne: string | null;
285
277
  emailTwo: string | null;
286
278
  emailThree: string | null;
287
- eori: string | null;
288
279
  tva: string | null;
289
280
  isTrackingMail: boolean | null;
290
281
  isBillingCenter: boolean;
@@ -343,10 +334,10 @@ export declare const PriseDePosteSchema: z.ZodObject<{
343
334
  countryId: number | null;
344
335
  postalCode: string;
345
336
  city: string;
346
- telephone: string;
347
337
  email: string;
348
338
  nom: string;
349
339
  prenom: string;
340
+ telephone: string;
350
341
  adress: string;
351
342
  country?: {
352
343
  id: number;
@@ -364,10 +355,10 @@ export declare const PriseDePosteSchema: z.ZodObject<{
364
355
  countryId: number | null;
365
356
  postalCode: string;
366
357
  city: string;
367
- telephone: string;
368
358
  email: string;
369
359
  nom: string;
370
360
  prenom: string;
361
+ telephone: string;
371
362
  adress: string;
372
363
  country?: {
373
364
  id: number;
@@ -566,10 +557,8 @@ export declare const PriseDePosteSchema: z.ZodObject<{
566
557
  city: string;
567
558
  telephoneOne: string;
568
559
  telephoneTwo: string | null;
569
- comptaResponsible: string;
570
560
  invoiceMail: string;
571
561
  dafResponsibleName: string;
572
- telephone: string;
573
562
  email: string | null;
574
563
  intraVatNumber: string | null;
575
564
  submittedToFrenchVat: boolean;
@@ -599,7 +588,6 @@ export declare const PriseDePosteSchema: z.ZodObject<{
599
588
  emailOne: string | null;
600
589
  emailTwo: string | null;
601
590
  emailThree: string | null;
602
- eori: string | null;
603
591
  tva: string | null;
604
592
  isTrackingMail: boolean | null;
605
593
  isBillingCenter: boolean;
@@ -623,10 +611,10 @@ export declare const PriseDePosteSchema: z.ZodObject<{
623
611
  countryId: number | null;
624
612
  postalCode: string;
625
613
  city: string;
626
- telephone: string;
627
614
  email: string;
628
615
  nom: string;
629
616
  prenom: string;
617
+ telephone: string;
630
618
  adress: string;
631
619
  country?: {
632
620
  id: number;
@@ -747,10 +735,8 @@ export declare const PriseDePosteSchema: z.ZodObject<{
747
735
  city: string;
748
736
  telephoneOne: string;
749
737
  telephoneTwo: string | null;
750
- comptaResponsible: string;
751
738
  invoiceMail: string;
752
739
  dafResponsibleName: string;
753
- telephone: string;
754
740
  email: string | null;
755
741
  intraVatNumber: string | null;
756
742
  submittedToFrenchVat: boolean;
@@ -780,7 +766,6 @@ export declare const PriseDePosteSchema: z.ZodObject<{
780
766
  emailOne: string | null;
781
767
  emailTwo: string | null;
782
768
  emailThree: string | null;
783
- eori: string | null;
784
769
  tva: string | null;
785
770
  isTrackingMail: boolean | null;
786
771
  isBillingCenter: boolean;
@@ -804,10 +789,10 @@ export declare const PriseDePosteSchema: z.ZodObject<{
804
789
  countryId: number | null;
805
790
  postalCode: string;
806
791
  city: string;
807
- telephone: string;
808
792
  email: string;
809
793
  nom: string;
810
794
  prenom: string;
795
+ telephone: string;
811
796
  adress: string;
812
797
  country?: {
813
798
  id: number;
@@ -966,10 +951,8 @@ export declare const PriseDePosteSchema: z.ZodObject<{
966
951
  city: string;
967
952
  telephoneOne: string;
968
953
  telephoneTwo: string | null;
969
- comptaResponsible: string;
970
954
  invoiceMail: string;
971
955
  dafResponsibleName: string;
972
- telephone: string;
973
956
  email: string | null;
974
957
  intraVatNumber: string | null;
975
958
  submittedToFrenchVat: boolean;
@@ -999,7 +982,6 @@ export declare const PriseDePosteSchema: z.ZodObject<{
999
982
  emailOne: string | null;
1000
983
  emailTwo: string | null;
1001
984
  emailThree: string | null;
1002
- eori: string | null;
1003
985
  tva: string | null;
1004
986
  isTrackingMail: boolean | null;
1005
987
  isBillingCenter: boolean;
@@ -1023,10 +1005,10 @@ export declare const PriseDePosteSchema: z.ZodObject<{
1023
1005
  countryId: number | null;
1024
1006
  postalCode: string;
1025
1007
  city: string;
1026
- telephone: string;
1027
1008
  email: string;
1028
1009
  nom: string;
1029
1010
  prenom: string;
1011
+ telephone: string;
1030
1012
  adress: string;
1031
1013
  country?: {
1032
1014
  id: number;
@@ -1189,10 +1171,8 @@ export declare const PriseDePosteSchema: z.ZodObject<{
1189
1171
  city: string;
1190
1172
  telephoneOne: string;
1191
1173
  telephoneTwo: string | null;
1192
- comptaResponsible: string;
1193
1174
  invoiceMail: string;
1194
1175
  dafResponsibleName: string;
1195
- telephone: string;
1196
1176
  email: string | null;
1197
1177
  intraVatNumber: string | null;
1198
1178
  submittedToFrenchVat: boolean;
@@ -1222,7 +1202,6 @@ export declare const PriseDePosteSchema: z.ZodObject<{
1222
1202
  emailOne: string | null;
1223
1203
  emailTwo: string | null;
1224
1204
  emailThree: string | null;
1225
- eori: string | null;
1226
1205
  tva: string | null;
1227
1206
  isTrackingMail: boolean | null;
1228
1207
  isBillingCenter: boolean;
@@ -1246,10 +1225,10 @@ export declare const PriseDePosteSchema: z.ZodObject<{
1246
1225
  countryId: number | null;
1247
1226
  postalCode: string;
1248
1227
  city: string;
1249
- telephone: string;
1250
1228
  email: string;
1251
1229
  nom: string;
1252
1230
  prenom: string;
1231
+ telephone: string;
1253
1232
  adress: string;
1254
1233
  country?: {
1255
1234
  id: number;
@@ -89,10 +89,8 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
89
89
  city: z.ZodString;
90
90
  telephoneOne: z.ZodString;
91
91
  telephoneTwo: z.ZodNullable<z.ZodString>;
92
- comptaResponsible: z.ZodString;
93
92
  invoiceMail: z.ZodString;
94
93
  dafResponsibleName: z.ZodString;
95
- telephone: z.ZodString;
96
94
  email: z.ZodNullable<z.ZodString>;
97
95
  intraVatNumber: z.ZodNullable<z.ZodString>;
98
96
  submittedToFrenchVat: z.ZodBoolean;
@@ -122,7 +120,6 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
122
120
  emailOne: z.ZodNullable<z.ZodString>;
123
121
  emailTwo: z.ZodNullable<z.ZodString>;
124
122
  emailThree: z.ZodNullable<z.ZodString>;
125
- eori: z.ZodNullable<z.ZodString>;
126
123
  tva: z.ZodNullable<z.ZodString>;
127
124
  isTrackingMail: z.ZodNullable<z.ZodBoolean>;
128
125
  isBillingCenter: z.ZodBoolean;
@@ -163,10 +160,8 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
163
160
  city: string;
164
161
  telephoneOne: string;
165
162
  telephoneTwo: string | null;
166
- comptaResponsible: string;
167
163
  invoiceMail: string;
168
164
  dafResponsibleName: string;
169
- telephone: string;
170
165
  email: string | null;
171
166
  intraVatNumber: string | null;
172
167
  submittedToFrenchVat: boolean;
@@ -196,7 +191,6 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
196
191
  emailOne: string | null;
197
192
  emailTwo: string | null;
198
193
  emailThree: string | null;
199
- eori: string | null;
200
194
  tva: string | null;
201
195
  isTrackingMail: boolean | null;
202
196
  isBillingCenter: boolean;
@@ -223,10 +217,8 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
223
217
  city: string;
224
218
  telephoneOne: string;
225
219
  telephoneTwo: string | null;
226
- comptaResponsible: string;
227
220
  invoiceMail: string;
228
221
  dafResponsibleName: string;
229
- telephone: string;
230
222
  email: string | null;
231
223
  intraVatNumber: string | null;
232
224
  submittedToFrenchVat: boolean;
@@ -256,7 +248,6 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
256
248
  emailOne: string | null;
257
249
  emailTwo: string | null;
258
250
  emailThree: string | null;
259
- eori: string | null;
260
251
  tva: string | null;
261
252
  isTrackingMail: boolean | null;
262
253
  isBillingCenter: boolean;
@@ -315,10 +306,10 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
315
306
  countryId: number | null;
316
307
  postalCode: string;
317
308
  city: string;
318
- telephone: string;
319
309
  email: string;
320
310
  nom: string;
321
311
  prenom: string;
312
+ telephone: string;
322
313
  adress: string;
323
314
  country?: {
324
315
  id: number;
@@ -336,10 +327,10 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
336
327
  countryId: number | null;
337
328
  postalCode: string;
338
329
  city: string;
339
- telephone: string;
340
330
  email: string;
341
331
  nom: string;
342
332
  prenom: string;
333
+ telephone: string;
343
334
  adress: string;
344
335
  country?: {
345
336
  id: number;
@@ -538,10 +529,8 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
538
529
  city: string;
539
530
  telephoneOne: string;
540
531
  telephoneTwo: string | null;
541
- comptaResponsible: string;
542
532
  invoiceMail: string;
543
533
  dafResponsibleName: string;
544
- telephone: string;
545
534
  email: string | null;
546
535
  intraVatNumber: string | null;
547
536
  submittedToFrenchVat: boolean;
@@ -571,7 +560,6 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
571
560
  emailOne: string | null;
572
561
  emailTwo: string | null;
573
562
  emailThree: string | null;
574
- eori: string | null;
575
563
  tva: string | null;
576
564
  isTrackingMail: boolean | null;
577
565
  isBillingCenter: boolean;
@@ -595,10 +583,10 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
595
583
  countryId: number | null;
596
584
  postalCode: string;
597
585
  city: string;
598
- telephone: string;
599
586
  email: string;
600
587
  nom: string;
601
588
  prenom: string;
589
+ telephone: string;
602
590
  adress: string;
603
591
  country?: {
604
592
  id: number;
@@ -719,10 +707,8 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
719
707
  city: string;
720
708
  telephoneOne: string;
721
709
  telephoneTwo: string | null;
722
- comptaResponsible: string;
723
710
  invoiceMail: string;
724
711
  dafResponsibleName: string;
725
- telephone: string;
726
712
  email: string | null;
727
713
  intraVatNumber: string | null;
728
714
  submittedToFrenchVat: boolean;
@@ -752,7 +738,6 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
752
738
  emailOne: string | null;
753
739
  emailTwo: string | null;
754
740
  emailThree: string | null;
755
- eori: string | null;
756
741
  tva: string | null;
757
742
  isTrackingMail: boolean | null;
758
743
  isBillingCenter: boolean;
@@ -776,10 +761,10 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
776
761
  countryId: number | null;
777
762
  postalCode: string;
778
763
  city: string;
779
- telephone: string;
780
764
  email: string;
781
765
  nom: string;
782
766
  prenom: string;
767
+ telephone: string;
783
768
  adress: string;
784
769
  country?: {
785
770
  id: number;
@@ -1073,10 +1058,8 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
1073
1058
  city: string;
1074
1059
  telephoneOne: string;
1075
1060
  telephoneTwo: string | null;
1076
- comptaResponsible: string;
1077
1061
  invoiceMail: string;
1078
1062
  dafResponsibleName: string;
1079
- telephone: string;
1080
1063
  email: string | null;
1081
1064
  intraVatNumber: string | null;
1082
1065
  submittedToFrenchVat: boolean;
@@ -1106,7 +1089,6 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
1106
1089
  emailOne: string | null;
1107
1090
  emailTwo: string | null;
1108
1091
  emailThree: string | null;
1109
- eori: string | null;
1110
1092
  tva: string | null;
1111
1093
  isTrackingMail: boolean | null;
1112
1094
  isBillingCenter: boolean;
@@ -1130,10 +1112,10 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
1130
1112
  countryId: number | null;
1131
1113
  postalCode: string;
1132
1114
  city: string;
1133
- telephone: string;
1134
1115
  email: string;
1135
1116
  nom: string;
1136
1117
  prenom: string;
1118
+ telephone: string;
1137
1119
  adress: string;
1138
1120
  country?: {
1139
1121
  id: number;
@@ -1319,10 +1301,8 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
1319
1301
  city: string;
1320
1302
  telephoneOne: string;
1321
1303
  telephoneTwo: string | null;
1322
- comptaResponsible: string;
1323
1304
  invoiceMail: string;
1324
1305
  dafResponsibleName: string;
1325
- telephone: string;
1326
1306
  email: string | null;
1327
1307
  intraVatNumber: string | null;
1328
1308
  submittedToFrenchVat: boolean;
@@ -1352,7 +1332,6 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
1352
1332
  emailOne: string | null;
1353
1333
  emailTwo: string | null;
1354
1334
  emailThree: string | null;
1355
- eori: string | null;
1356
1335
  tva: string | null;
1357
1336
  isTrackingMail: boolean | null;
1358
1337
  isBillingCenter: boolean;
@@ -1376,10 +1355,10 @@ export declare const RamassageChauffeurSchema: z.ZodObject<{
1376
1355
  countryId: number | null;
1377
1356
  postalCode: string;
1378
1357
  city: string;
1379
- telephone: string;
1380
1358
  email: string;
1381
1359
  nom: string;
1382
1360
  prenom: string;
1361
+ telephone: string;
1383
1362
  adress: string;
1384
1363
  country?: {
1385
1364
  id: number;
@@ -43,10 +43,10 @@ export declare const SalarySchema: z.ZodObject<{
43
43
  countryId: number | null;
44
44
  postalCode: string;
45
45
  city: string;
46
- telephone: string;
47
46
  email: string;
48
47
  nom: string;
49
48
  prenom: string;
49
+ telephone: string;
50
50
  adress: string;
51
51
  country?: {
52
52
  id: number;
@@ -64,10 +64,10 @@ export declare const SalarySchema: z.ZodObject<{
64
64
  countryId: number | null;
65
65
  postalCode: string;
66
66
  city: string;
67
- telephone: string;
68
67
  email: string;
69
68
  nom: string;
70
69
  prenom: string;
70
+ telephone: string;
71
71
  adress: string;
72
72
  country?: {
73
73
  id: number;
@@ -94,20 +94,20 @@ export declare const SalaryCreateSchema: z.ZodObject<{
94
94
  address: string;
95
95
  postalCode: string;
96
96
  city: string;
97
- telephone: string;
98
97
  email: string;
99
98
  nom: string;
100
99
  prenom: string;
100
+ telephone: string;
101
101
  }, {
102
102
  type: string;
103
103
  countryId: number;
104
104
  address: string;
105
105
  postalCode: string;
106
106
  city: string;
107
- telephone: string;
108
107
  email: string;
109
108
  nom: string;
110
109
  prenom: string;
110
+ telephone: string;
111
111
  }>;
112
112
  export declare const SalaryUpdateSchema: z.ZodObject<{
113
113
  nom: z.ZodOptional<z.ZodString>;
@@ -125,20 +125,20 @@ export declare const SalaryUpdateSchema: z.ZodObject<{
125
125
  address?: string | undefined;
126
126
  postalCode?: string | undefined;
127
127
  city?: string | undefined;
128
- telephone?: string | undefined;
129
128
  email?: string | undefined;
130
129
  nom?: string | undefined;
131
130
  prenom?: string | undefined;
131
+ telephone?: string | undefined;
132
132
  }, {
133
133
  type?: string | undefined;
134
134
  countryId?: number | undefined;
135
135
  address?: string | undefined;
136
136
  postalCode?: string | undefined;
137
137
  city?: string | undefined;
138
- telephone?: string | undefined;
139
138
  email?: string | undefined;
140
139
  nom?: string | undefined;
141
140
  prenom?: string | undefined;
141
+ telephone?: string | undefined;
142
142
  }>;
143
143
  export type ISalary = z.infer<typeof SalarySchema>;
144
144
  export type ISalaryCreate = z.infer<typeof SalaryCreateSchema>;