exnet-routing 1.2.48 → 1.2.49
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/routes/ops.d.ts +2693 -0
- package/dist/routes/ops.js +10 -0
- package/package.json +1 -1
package/dist/routes/ops.d.ts
CHANGED
|
@@ -145046,6 +145046,2698 @@ declare const shippingManifestRoutes: {
|
|
|
145046
145046
|
}>]>;
|
|
145047
145047
|
};
|
|
145048
145048
|
};
|
|
145049
|
+
declare const shippingTrackingRoutes: {
|
|
145050
|
+
byShipping: {
|
|
145051
|
+
method: "GET";
|
|
145052
|
+
url: string;
|
|
145053
|
+
params: z.ZodObject<{
|
|
145054
|
+
shippingId: z.ZodString;
|
|
145055
|
+
}, "strip", z.ZodTypeAny, {
|
|
145056
|
+
shippingId: string;
|
|
145057
|
+
}, {
|
|
145058
|
+
shippingId: string;
|
|
145059
|
+
}>;
|
|
145060
|
+
searchParams: z.ZodObject<{
|
|
145061
|
+
page: z.ZodOptional<z.ZodNumber>;
|
|
145062
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
145063
|
+
search: z.ZodOptional<z.ZodString>;
|
|
145064
|
+
sortBy: z.ZodOptional<z.ZodString>;
|
|
145065
|
+
direction: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
145066
|
+
}, "strip", z.ZodTypeAny, {
|
|
145067
|
+
page?: number | undefined;
|
|
145068
|
+
limit?: number | undefined;
|
|
145069
|
+
search?: string | undefined;
|
|
145070
|
+
sortBy?: string | undefined;
|
|
145071
|
+
direction?: "asc" | "desc" | undefined;
|
|
145072
|
+
}, {
|
|
145073
|
+
page?: number | undefined;
|
|
145074
|
+
limit?: number | undefined;
|
|
145075
|
+
search?: string | undefined;
|
|
145076
|
+
sortBy?: string | undefined;
|
|
145077
|
+
direction?: "asc" | "desc" | undefined;
|
|
145078
|
+
}>;
|
|
145079
|
+
response: z.ZodUnion<[z.ZodObject<{
|
|
145080
|
+
data: z.ZodObject<{
|
|
145081
|
+
meta: typeof import("./../models").PaginationmetaSchema;
|
|
145082
|
+
data: z.ZodArray<z.ZodObject<{
|
|
145083
|
+
id: z.ZodNumber;
|
|
145084
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145085
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145086
|
+
dateTracking: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145087
|
+
dateSuivi: z.ZodString;
|
|
145088
|
+
heurSuivi: z.ZodString;
|
|
145089
|
+
details: z.ZodString;
|
|
145090
|
+
agents: z.ZodString;
|
|
145091
|
+
chauffeur: z.ZodString;
|
|
145092
|
+
visible: z.ZodBoolean;
|
|
145093
|
+
isTemplate: z.ZodBoolean;
|
|
145094
|
+
isParis: z.ZodBoolean;
|
|
145095
|
+
isMedical: z.ZodBoolean;
|
|
145096
|
+
isService: z.ZodBoolean;
|
|
145097
|
+
state: z.ZodBoolean;
|
|
145098
|
+
location: z.ZodNullable<z.ZodString>;
|
|
145099
|
+
userId: z.ZodNumber;
|
|
145100
|
+
isDriver: z.ZodBoolean;
|
|
145101
|
+
status: z.ZodNullable<z.ZodString>;
|
|
145102
|
+
userOpsId: z.ZodNullable<z.ZodNumber>;
|
|
145103
|
+
dateValidateOps: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
|
|
145104
|
+
shippingId: z.ZodNumber;
|
|
145105
|
+
user: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
145106
|
+
id: z.ZodNumber;
|
|
145107
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145108
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145109
|
+
firstName: z.ZodString;
|
|
145110
|
+
lastName: z.ZodString;
|
|
145111
|
+
email: z.ZodString;
|
|
145112
|
+
emailVerifiedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145113
|
+
password: z.ZodString;
|
|
145114
|
+
isActif: z.ZodBoolean;
|
|
145115
|
+
countryId: z.ZodNullable<z.ZodNumber>;
|
|
145116
|
+
postalCode: z.ZodString;
|
|
145117
|
+
city: z.ZodString;
|
|
145118
|
+
poste: z.ZodString;
|
|
145119
|
+
comments: z.ZodString;
|
|
145120
|
+
addressOne: z.ZodString;
|
|
145121
|
+
addressTwo: z.ZodString;
|
|
145122
|
+
telephoneOne: z.ZodString;
|
|
145123
|
+
telephoneTwo: z.ZodString;
|
|
145124
|
+
emailOne: z.ZodString;
|
|
145125
|
+
emailTwo: z.ZodString;
|
|
145126
|
+
roles: z.ZodArray<z.ZodString, "many">;
|
|
145127
|
+
isOpsAdmin: z.ZodBoolean;
|
|
145128
|
+
civility: z.ZodString;
|
|
145129
|
+
numCodeOne: z.ZodString;
|
|
145130
|
+
numCodeTwo: z.ZodString;
|
|
145131
|
+
isShowCalculatrice: z.ZodBoolean;
|
|
145132
|
+
expedition: z.ZodBoolean;
|
|
145133
|
+
physicCompany: z.ZodString;
|
|
145134
|
+
isParis: z.ZodBoolean;
|
|
145135
|
+
isMedical: z.ZodBoolean;
|
|
145136
|
+
isService: z.ZodBoolean;
|
|
145137
|
+
menus: z.ZodString;
|
|
145138
|
+
ongletExpedition: z.ZodString;
|
|
145139
|
+
chauffeurType: z.ZodString;
|
|
145140
|
+
typeOfOps: z.ZodString;
|
|
145141
|
+
prestation: z.ZodString;
|
|
145142
|
+
tracking: z.ZodString;
|
|
145143
|
+
expeditionCourse: z.ZodString;
|
|
145144
|
+
carnetAddress: z.ZodString;
|
|
145145
|
+
expeditionsCarnet: z.ZodString;
|
|
145146
|
+
accessArchive: z.ZodString;
|
|
145147
|
+
isShowImportMenu: z.ZodBoolean;
|
|
145148
|
+
isShowExportMenu: z.ZodBoolean;
|
|
145149
|
+
isShowCourseMenu: z.ZodBoolean;
|
|
145150
|
+
twoRoues: z.ZodBoolean;
|
|
145151
|
+
vt: z.ZodBoolean;
|
|
145152
|
+
lesTwo: z.ZodBoolean;
|
|
145153
|
+
isMiniTracking: z.ZodBoolean;
|
|
145154
|
+
isFullTracking: z.ZodBoolean;
|
|
145155
|
+
isShareCourseAndExpedition: z.ZodBoolean;
|
|
145156
|
+
isShareCarnetAdresse: z.ZodBoolean;
|
|
145157
|
+
isShareCarnetAdresseAndExpedition: z.ZodBoolean;
|
|
145158
|
+
isAccessAuxArchives: z.ZodBoolean;
|
|
145159
|
+
isShowInfo: z.ZodBoolean;
|
|
145160
|
+
photo: z.ZodNullable<z.ZodString>;
|
|
145161
|
+
entreprisePhysique: z.ZodString;
|
|
145162
|
+
isAdminChauffeur: z.ZodBoolean;
|
|
145163
|
+
isShowTracking: z.ZodBoolean;
|
|
145164
|
+
isSupportActivated: z.ZodBoolean;
|
|
145165
|
+
isClientTransitaire: z.ZodBoolean;
|
|
145166
|
+
customerId: z.ZodNumber;
|
|
145167
|
+
vehiculeId: z.ZodNumber;
|
|
145168
|
+
salaryId: z.ZodNumber;
|
|
145169
|
+
customer: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
145170
|
+
id: z.ZodNumber;
|
|
145171
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145172
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145173
|
+
fullName: z.ZodString;
|
|
145174
|
+
countryId: z.ZodNumber;
|
|
145175
|
+
address: z.ZodString;
|
|
145176
|
+
addressTwo: z.ZodNullable<z.ZodString>;
|
|
145177
|
+
postalCode: z.ZodString;
|
|
145178
|
+
city: z.ZodString;
|
|
145179
|
+
telephoneOne: z.ZodString;
|
|
145180
|
+
telephoneTwo: z.ZodNullable<z.ZodString>;
|
|
145181
|
+
invoiceMail: z.ZodString;
|
|
145182
|
+
dafResponsibleName: z.ZodString;
|
|
145183
|
+
email: z.ZodNullable<z.ZodString>;
|
|
145184
|
+
intraVatNumber: z.ZodNullable<z.ZodString>;
|
|
145185
|
+
submittedToFrenchVat: z.ZodBoolean;
|
|
145186
|
+
siren: z.ZodString;
|
|
145187
|
+
numeroEori: z.ZodNullable<z.ZodString>;
|
|
145188
|
+
comments: z.ZodNullable<z.ZodString>;
|
|
145189
|
+
numCodeOne: z.ZodNullable<z.ZodString>;
|
|
145190
|
+
numCodeTwo: z.ZodNullable<z.ZodString>;
|
|
145191
|
+
isActif: z.ZodBoolean;
|
|
145192
|
+
isParis: z.ZodBoolean;
|
|
145193
|
+
isMedical: z.ZodBoolean;
|
|
145194
|
+
isService: z.ZodBoolean;
|
|
145195
|
+
valeurCustomer: z.ZodBoolean;
|
|
145196
|
+
dirigeant: z.ZodNullable<z.ZodString>;
|
|
145197
|
+
dirigeantTel: z.ZodNullable<z.ZodString>;
|
|
145198
|
+
dirigeantEmail: z.ZodNullable<z.ZodString>;
|
|
145199
|
+
responsableComptable: z.ZodNullable<z.ZodString>;
|
|
145200
|
+
responsableComptableTel: z.ZodNullable<z.ZodString>;
|
|
145201
|
+
responsableComptableEmail: z.ZodNullable<z.ZodString>;
|
|
145202
|
+
responsableDaf: z.ZodNullable<z.ZodString>;
|
|
145203
|
+
responsableDafTel: z.ZodNullable<z.ZodString>;
|
|
145204
|
+
responsableDafEmail: z.ZodNullable<z.ZodString>;
|
|
145205
|
+
emailFacturation: z.ZodNullable<z.ZodString>;
|
|
145206
|
+
logo: z.ZodNullable<z.ZodString>;
|
|
145207
|
+
header: z.ZodNullable<z.ZodString>;
|
|
145208
|
+
footer: z.ZodNullable<z.ZodString>;
|
|
145209
|
+
emailOne: z.ZodNullable<z.ZodString>;
|
|
145210
|
+
emailTwo: z.ZodNullable<z.ZodString>;
|
|
145211
|
+
emailThree: z.ZodNullable<z.ZodString>;
|
|
145212
|
+
tva: z.ZodNullable<z.ZodString>;
|
|
145213
|
+
isTrackingMail: z.ZodNullable<z.ZodBoolean>;
|
|
145214
|
+
isBillingCenter: z.ZodBoolean;
|
|
145215
|
+
isShowNameCustomer: z.ZodBoolean;
|
|
145216
|
+
isMailing: z.ZodBoolean;
|
|
145217
|
+
numeroSiret: z.ZodNullable<z.ZodString>;
|
|
145218
|
+
country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
145219
|
+
id: z.ZodNumber;
|
|
145220
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145221
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145222
|
+
name: z.ZodString;
|
|
145223
|
+
code: z.ZodString;
|
|
145224
|
+
phoneCode: z.ZodString;
|
|
145225
|
+
}, "strip", z.ZodTypeAny, {
|
|
145226
|
+
id: number;
|
|
145227
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145228
|
+
code: string;
|
|
145229
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145230
|
+
name: string;
|
|
145231
|
+
phoneCode: string;
|
|
145232
|
+
}, {
|
|
145233
|
+
id: number;
|
|
145234
|
+
createdAt: Date;
|
|
145235
|
+
code: string;
|
|
145236
|
+
updatedAt: Date;
|
|
145237
|
+
name: string;
|
|
145238
|
+
phoneCode: string;
|
|
145239
|
+
}>>>;
|
|
145240
|
+
}, "strip", z.ZodTypeAny, {
|
|
145241
|
+
id: number;
|
|
145242
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145243
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145244
|
+
fullName: string;
|
|
145245
|
+
countryId: number;
|
|
145246
|
+
address: string;
|
|
145247
|
+
addressTwo: string | null;
|
|
145248
|
+
postalCode: string;
|
|
145249
|
+
city: string;
|
|
145250
|
+
telephoneOne: string;
|
|
145251
|
+
telephoneTwo: string | null;
|
|
145252
|
+
invoiceMail: string;
|
|
145253
|
+
dafResponsibleName: string;
|
|
145254
|
+
email: string | null;
|
|
145255
|
+
intraVatNumber: string | null;
|
|
145256
|
+
submittedToFrenchVat: boolean;
|
|
145257
|
+
siren: string;
|
|
145258
|
+
numeroEori: string | null;
|
|
145259
|
+
comments: string | null;
|
|
145260
|
+
numCodeOne: string | null;
|
|
145261
|
+
numCodeTwo: string | null;
|
|
145262
|
+
isActif: boolean;
|
|
145263
|
+
isParis: boolean;
|
|
145264
|
+
isMedical: boolean;
|
|
145265
|
+
isService: boolean;
|
|
145266
|
+
valeurCustomer: boolean;
|
|
145267
|
+
dirigeant: string | null;
|
|
145268
|
+
dirigeantTel: string | null;
|
|
145269
|
+
dirigeantEmail: string | null;
|
|
145270
|
+
responsableComptable: string | null;
|
|
145271
|
+
responsableComptableTel: string | null;
|
|
145272
|
+
responsableComptableEmail: string | null;
|
|
145273
|
+
responsableDaf: string | null;
|
|
145274
|
+
responsableDafTel: string | null;
|
|
145275
|
+
responsableDafEmail: string | null;
|
|
145276
|
+
emailFacturation: string | null;
|
|
145277
|
+
logo: string | null;
|
|
145278
|
+
header: string | null;
|
|
145279
|
+
footer: string | null;
|
|
145280
|
+
emailOne: string | null;
|
|
145281
|
+
emailTwo: string | null;
|
|
145282
|
+
emailThree: string | null;
|
|
145283
|
+
tva: string | null;
|
|
145284
|
+
isTrackingMail: boolean | null;
|
|
145285
|
+
isBillingCenter: boolean;
|
|
145286
|
+
isShowNameCustomer: boolean;
|
|
145287
|
+
isMailing: boolean;
|
|
145288
|
+
numeroSiret: string | null;
|
|
145289
|
+
country?: {
|
|
145290
|
+
id: number;
|
|
145291
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145292
|
+
code: string;
|
|
145293
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145294
|
+
name: string;
|
|
145295
|
+
phoneCode: string;
|
|
145296
|
+
} | undefined;
|
|
145297
|
+
}, {
|
|
145298
|
+
id: number;
|
|
145299
|
+
createdAt: Date;
|
|
145300
|
+
updatedAt: Date;
|
|
145301
|
+
fullName: string;
|
|
145302
|
+
countryId: number;
|
|
145303
|
+
address: string;
|
|
145304
|
+
addressTwo: string | null;
|
|
145305
|
+
postalCode: string;
|
|
145306
|
+
city: string;
|
|
145307
|
+
telephoneOne: string;
|
|
145308
|
+
telephoneTwo: string | null;
|
|
145309
|
+
invoiceMail: string;
|
|
145310
|
+
dafResponsibleName: string;
|
|
145311
|
+
email: string | null;
|
|
145312
|
+
intraVatNumber: string | null;
|
|
145313
|
+
submittedToFrenchVat: boolean;
|
|
145314
|
+
siren: string;
|
|
145315
|
+
numeroEori: string | null;
|
|
145316
|
+
comments: string | null;
|
|
145317
|
+
numCodeOne: string | null;
|
|
145318
|
+
numCodeTwo: string | null;
|
|
145319
|
+
isActif: boolean;
|
|
145320
|
+
isParis: boolean;
|
|
145321
|
+
isMedical: boolean;
|
|
145322
|
+
isService: boolean;
|
|
145323
|
+
valeurCustomer: boolean;
|
|
145324
|
+
dirigeant: string | null;
|
|
145325
|
+
dirigeantTel: string | null;
|
|
145326
|
+
dirigeantEmail: string | null;
|
|
145327
|
+
responsableComptable: string | null;
|
|
145328
|
+
responsableComptableTel: string | null;
|
|
145329
|
+
responsableComptableEmail: string | null;
|
|
145330
|
+
responsableDaf: string | null;
|
|
145331
|
+
responsableDafTel: string | null;
|
|
145332
|
+
responsableDafEmail: string | null;
|
|
145333
|
+
emailFacturation: string | null;
|
|
145334
|
+
logo: string | null;
|
|
145335
|
+
header: string | null;
|
|
145336
|
+
footer: string | null;
|
|
145337
|
+
emailOne: string | null;
|
|
145338
|
+
emailTwo: string | null;
|
|
145339
|
+
emailThree: string | null;
|
|
145340
|
+
tva: string | null;
|
|
145341
|
+
isTrackingMail: boolean | null;
|
|
145342
|
+
isBillingCenter: boolean;
|
|
145343
|
+
isShowNameCustomer: boolean;
|
|
145344
|
+
isMailing: boolean;
|
|
145345
|
+
numeroSiret: string | null;
|
|
145346
|
+
country?: {
|
|
145347
|
+
id: number;
|
|
145348
|
+
createdAt: Date;
|
|
145349
|
+
code: string;
|
|
145350
|
+
updatedAt: Date;
|
|
145351
|
+
name: string;
|
|
145352
|
+
phoneCode: string;
|
|
145353
|
+
} | undefined;
|
|
145354
|
+
}>>>;
|
|
145355
|
+
salary: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
145356
|
+
id: z.ZodNumber;
|
|
145357
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145358
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145359
|
+
nom: z.ZodString;
|
|
145360
|
+
prenom: z.ZodString;
|
|
145361
|
+
email: z.ZodString;
|
|
145362
|
+
telephone: z.ZodString;
|
|
145363
|
+
type: z.ZodString;
|
|
145364
|
+
adress: z.ZodString;
|
|
145365
|
+
city: z.ZodString;
|
|
145366
|
+
countryId: z.ZodNullable<z.ZodNumber>;
|
|
145367
|
+
postalCode: z.ZodString;
|
|
145368
|
+
country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
145369
|
+
id: z.ZodNumber;
|
|
145370
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145371
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145372
|
+
name: z.ZodString;
|
|
145373
|
+
code: z.ZodString;
|
|
145374
|
+
phoneCode: z.ZodString;
|
|
145375
|
+
}, "strip", z.ZodTypeAny, {
|
|
145376
|
+
id: number;
|
|
145377
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145378
|
+
code: string;
|
|
145379
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145380
|
+
name: string;
|
|
145381
|
+
phoneCode: string;
|
|
145382
|
+
}, {
|
|
145383
|
+
id: number;
|
|
145384
|
+
createdAt: Date;
|
|
145385
|
+
code: string;
|
|
145386
|
+
updatedAt: Date;
|
|
145387
|
+
name: string;
|
|
145388
|
+
phoneCode: string;
|
|
145389
|
+
}>>>;
|
|
145390
|
+
}, "strip", z.ZodTypeAny, {
|
|
145391
|
+
id: number;
|
|
145392
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145393
|
+
type: string;
|
|
145394
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145395
|
+
countryId: number | null;
|
|
145396
|
+
postalCode: string;
|
|
145397
|
+
city: string;
|
|
145398
|
+
email: string;
|
|
145399
|
+
nom: string;
|
|
145400
|
+
prenom: string;
|
|
145401
|
+
telephone: string;
|
|
145402
|
+
adress: string;
|
|
145403
|
+
country?: {
|
|
145404
|
+
id: number;
|
|
145405
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145406
|
+
code: string;
|
|
145407
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145408
|
+
name: string;
|
|
145409
|
+
phoneCode: string;
|
|
145410
|
+
} | undefined;
|
|
145411
|
+
}, {
|
|
145412
|
+
id: number;
|
|
145413
|
+
createdAt: Date;
|
|
145414
|
+
type: string;
|
|
145415
|
+
updatedAt: Date;
|
|
145416
|
+
countryId: number | null;
|
|
145417
|
+
postalCode: string;
|
|
145418
|
+
city: string;
|
|
145419
|
+
email: string;
|
|
145420
|
+
nom: string;
|
|
145421
|
+
prenom: string;
|
|
145422
|
+
telephone: string;
|
|
145423
|
+
adress: string;
|
|
145424
|
+
country?: {
|
|
145425
|
+
id: number;
|
|
145426
|
+
createdAt: Date;
|
|
145427
|
+
code: string;
|
|
145428
|
+
updatedAt: Date;
|
|
145429
|
+
name: string;
|
|
145430
|
+
phoneCode: string;
|
|
145431
|
+
} | undefined;
|
|
145432
|
+
}>>>;
|
|
145433
|
+
vehicule: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
145434
|
+
id: z.ZodNumber;
|
|
145435
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145436
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145437
|
+
plaque: z.ZodString;
|
|
145438
|
+
telephoneSociete: z.ZodString;
|
|
145439
|
+
typeVehicule: z.ZodString;
|
|
145440
|
+
kmDepart: z.ZodNumber;
|
|
145441
|
+
kmRetour: z.ZodNumber;
|
|
145442
|
+
pochetteRecu: z.ZodBoolean;
|
|
145443
|
+
carteCarburant: z.ZodString;
|
|
145444
|
+
carteBancaire: z.ZodString;
|
|
145445
|
+
bipTelepage: z.ZodString;
|
|
145446
|
+
}, "strip", z.ZodTypeAny, {
|
|
145447
|
+
id: number;
|
|
145448
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145449
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145450
|
+
plaque: string;
|
|
145451
|
+
telephoneSociete: string;
|
|
145452
|
+
typeVehicule: string;
|
|
145453
|
+
kmDepart: number;
|
|
145454
|
+
kmRetour: number;
|
|
145455
|
+
pochetteRecu: boolean;
|
|
145456
|
+
carteCarburant: string;
|
|
145457
|
+
carteBancaire: string;
|
|
145458
|
+
bipTelepage: string;
|
|
145459
|
+
}, {
|
|
145460
|
+
id: number;
|
|
145461
|
+
createdAt: Date;
|
|
145462
|
+
updatedAt: Date;
|
|
145463
|
+
plaque: string;
|
|
145464
|
+
telephoneSociete: string;
|
|
145465
|
+
typeVehicule: string;
|
|
145466
|
+
kmDepart: number;
|
|
145467
|
+
kmRetour: number;
|
|
145468
|
+
pochetteRecu: boolean;
|
|
145469
|
+
carteCarburant: string;
|
|
145470
|
+
carteBancaire: string;
|
|
145471
|
+
bipTelepage: string;
|
|
145472
|
+
}>>>;
|
|
145473
|
+
country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
145474
|
+
id: z.ZodNumber;
|
|
145475
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145476
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145477
|
+
name: z.ZodString;
|
|
145478
|
+
code: z.ZodString;
|
|
145479
|
+
phoneCode: z.ZodString;
|
|
145480
|
+
}, "strip", z.ZodTypeAny, {
|
|
145481
|
+
id: number;
|
|
145482
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145483
|
+
code: string;
|
|
145484
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145485
|
+
name: string;
|
|
145486
|
+
phoneCode: string;
|
|
145487
|
+
}, {
|
|
145488
|
+
id: number;
|
|
145489
|
+
createdAt: Date;
|
|
145490
|
+
code: string;
|
|
145491
|
+
updatedAt: Date;
|
|
145492
|
+
name: string;
|
|
145493
|
+
phoneCode: string;
|
|
145494
|
+
}>>>;
|
|
145495
|
+
userBillingCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
145496
|
+
id: z.ZodNumber;
|
|
145497
|
+
createdAt: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
|
|
145498
|
+
updatedAt: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
|
|
145499
|
+
userId: z.ZodNumber;
|
|
145500
|
+
billingCenterId: z.ZodNumber;
|
|
145501
|
+
billingCenter: z.ZodOptional<z.ZodObject<{
|
|
145502
|
+
id: z.ZodNumber;
|
|
145503
|
+
billingCenterName: z.ZodString;
|
|
145504
|
+
customerId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
145505
|
+
}, "strip", z.ZodTypeAny, {
|
|
145506
|
+
id: number;
|
|
145507
|
+
billingCenterName: string;
|
|
145508
|
+
customerId?: number | null | undefined;
|
|
145509
|
+
}, {
|
|
145510
|
+
id: number;
|
|
145511
|
+
billingCenterName: string;
|
|
145512
|
+
customerId?: number | null | undefined;
|
|
145513
|
+
}>>;
|
|
145514
|
+
}, "strip", z.ZodTypeAny, {
|
|
145515
|
+
id: number;
|
|
145516
|
+
userId: number;
|
|
145517
|
+
billingCenterId: number;
|
|
145518
|
+
createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
145519
|
+
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
145520
|
+
billingCenter?: {
|
|
145521
|
+
id: number;
|
|
145522
|
+
billingCenterName: string;
|
|
145523
|
+
customerId?: number | null | undefined;
|
|
145524
|
+
} | undefined;
|
|
145525
|
+
}, {
|
|
145526
|
+
id: number;
|
|
145527
|
+
userId: number;
|
|
145528
|
+
billingCenterId: number;
|
|
145529
|
+
createdAt?: Date | undefined;
|
|
145530
|
+
updatedAt?: Date | undefined;
|
|
145531
|
+
billingCenter?: {
|
|
145532
|
+
id: number;
|
|
145533
|
+
billingCenterName: string;
|
|
145534
|
+
customerId?: number | null | undefined;
|
|
145535
|
+
} | undefined;
|
|
145536
|
+
}>, "many">>;
|
|
145537
|
+
}, "strip", z.ZodTypeAny, {
|
|
145538
|
+
id: number;
|
|
145539
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145540
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145541
|
+
countryId: number | null;
|
|
145542
|
+
addressTwo: string;
|
|
145543
|
+
postalCode: string;
|
|
145544
|
+
city: string;
|
|
145545
|
+
telephoneOne: string;
|
|
145546
|
+
telephoneTwo: string;
|
|
145547
|
+
email: string;
|
|
145548
|
+
comments: string;
|
|
145549
|
+
numCodeOne: string;
|
|
145550
|
+
numCodeTwo: string;
|
|
145551
|
+
isActif: boolean;
|
|
145552
|
+
isParis: boolean;
|
|
145553
|
+
isMedical: boolean;
|
|
145554
|
+
isService: boolean;
|
|
145555
|
+
emailOne: string;
|
|
145556
|
+
emailTwo: string;
|
|
145557
|
+
addressOne: string;
|
|
145558
|
+
customerId: number;
|
|
145559
|
+
firstName: string;
|
|
145560
|
+
lastName: string;
|
|
145561
|
+
emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145562
|
+
password: string;
|
|
145563
|
+
poste: string;
|
|
145564
|
+
roles: string[];
|
|
145565
|
+
isOpsAdmin: boolean;
|
|
145566
|
+
civility: string;
|
|
145567
|
+
isShowCalculatrice: boolean;
|
|
145568
|
+
expedition: boolean;
|
|
145569
|
+
physicCompany: string;
|
|
145570
|
+
menus: string;
|
|
145571
|
+
ongletExpedition: string;
|
|
145572
|
+
chauffeurType: string;
|
|
145573
|
+
typeOfOps: string;
|
|
145574
|
+
prestation: string;
|
|
145575
|
+
tracking: string;
|
|
145576
|
+
expeditionCourse: string;
|
|
145577
|
+
carnetAddress: string;
|
|
145578
|
+
expeditionsCarnet: string;
|
|
145579
|
+
accessArchive: string;
|
|
145580
|
+
isShowImportMenu: boolean;
|
|
145581
|
+
isShowExportMenu: boolean;
|
|
145582
|
+
isShowCourseMenu: boolean;
|
|
145583
|
+
twoRoues: boolean;
|
|
145584
|
+
vt: boolean;
|
|
145585
|
+
lesTwo: boolean;
|
|
145586
|
+
isMiniTracking: boolean;
|
|
145587
|
+
isFullTracking: boolean;
|
|
145588
|
+
isShareCourseAndExpedition: boolean;
|
|
145589
|
+
isShareCarnetAdresse: boolean;
|
|
145590
|
+
isShareCarnetAdresseAndExpedition: boolean;
|
|
145591
|
+
isAccessAuxArchives: boolean;
|
|
145592
|
+
isShowInfo: boolean;
|
|
145593
|
+
photo: string | null;
|
|
145594
|
+
entreprisePhysique: string;
|
|
145595
|
+
isAdminChauffeur: boolean;
|
|
145596
|
+
isShowTracking: boolean;
|
|
145597
|
+
isSupportActivated: boolean;
|
|
145598
|
+
isClientTransitaire: boolean;
|
|
145599
|
+
vehiculeId: number;
|
|
145600
|
+
salaryId: number;
|
|
145601
|
+
country?: {
|
|
145602
|
+
id: number;
|
|
145603
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145604
|
+
code: string;
|
|
145605
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145606
|
+
name: string;
|
|
145607
|
+
phoneCode: string;
|
|
145608
|
+
} | undefined;
|
|
145609
|
+
customer?: {
|
|
145610
|
+
id: number;
|
|
145611
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145612
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145613
|
+
fullName: string;
|
|
145614
|
+
countryId: number;
|
|
145615
|
+
address: string;
|
|
145616
|
+
addressTwo: string | null;
|
|
145617
|
+
postalCode: string;
|
|
145618
|
+
city: string;
|
|
145619
|
+
telephoneOne: string;
|
|
145620
|
+
telephoneTwo: string | null;
|
|
145621
|
+
invoiceMail: string;
|
|
145622
|
+
dafResponsibleName: string;
|
|
145623
|
+
email: string | null;
|
|
145624
|
+
intraVatNumber: string | null;
|
|
145625
|
+
submittedToFrenchVat: boolean;
|
|
145626
|
+
siren: string;
|
|
145627
|
+
numeroEori: string | null;
|
|
145628
|
+
comments: string | null;
|
|
145629
|
+
numCodeOne: string | null;
|
|
145630
|
+
numCodeTwo: string | null;
|
|
145631
|
+
isActif: boolean;
|
|
145632
|
+
isParis: boolean;
|
|
145633
|
+
isMedical: boolean;
|
|
145634
|
+
isService: boolean;
|
|
145635
|
+
valeurCustomer: boolean;
|
|
145636
|
+
dirigeant: string | null;
|
|
145637
|
+
dirigeantTel: string | null;
|
|
145638
|
+
dirigeantEmail: string | null;
|
|
145639
|
+
responsableComptable: string | null;
|
|
145640
|
+
responsableComptableTel: string | null;
|
|
145641
|
+
responsableComptableEmail: string | null;
|
|
145642
|
+
responsableDaf: string | null;
|
|
145643
|
+
responsableDafTel: string | null;
|
|
145644
|
+
responsableDafEmail: string | null;
|
|
145645
|
+
emailFacturation: string | null;
|
|
145646
|
+
logo: string | null;
|
|
145647
|
+
header: string | null;
|
|
145648
|
+
footer: string | null;
|
|
145649
|
+
emailOne: string | null;
|
|
145650
|
+
emailTwo: string | null;
|
|
145651
|
+
emailThree: string | null;
|
|
145652
|
+
tva: string | null;
|
|
145653
|
+
isTrackingMail: boolean | null;
|
|
145654
|
+
isBillingCenter: boolean;
|
|
145655
|
+
isShowNameCustomer: boolean;
|
|
145656
|
+
isMailing: boolean;
|
|
145657
|
+
numeroSiret: string | null;
|
|
145658
|
+
country?: {
|
|
145659
|
+
id: number;
|
|
145660
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145661
|
+
code: string;
|
|
145662
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145663
|
+
name: string;
|
|
145664
|
+
phoneCode: string;
|
|
145665
|
+
} | undefined;
|
|
145666
|
+
} | undefined;
|
|
145667
|
+
salary?: {
|
|
145668
|
+
id: number;
|
|
145669
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145670
|
+
type: string;
|
|
145671
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145672
|
+
countryId: number | null;
|
|
145673
|
+
postalCode: string;
|
|
145674
|
+
city: string;
|
|
145675
|
+
email: string;
|
|
145676
|
+
nom: string;
|
|
145677
|
+
prenom: string;
|
|
145678
|
+
telephone: string;
|
|
145679
|
+
adress: string;
|
|
145680
|
+
country?: {
|
|
145681
|
+
id: number;
|
|
145682
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145683
|
+
code: string;
|
|
145684
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145685
|
+
name: string;
|
|
145686
|
+
phoneCode: string;
|
|
145687
|
+
} | undefined;
|
|
145688
|
+
} | undefined;
|
|
145689
|
+
vehicule?: {
|
|
145690
|
+
id: number;
|
|
145691
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145692
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145693
|
+
plaque: string;
|
|
145694
|
+
telephoneSociete: string;
|
|
145695
|
+
typeVehicule: string;
|
|
145696
|
+
kmDepart: number;
|
|
145697
|
+
kmRetour: number;
|
|
145698
|
+
pochetteRecu: boolean;
|
|
145699
|
+
carteCarburant: string;
|
|
145700
|
+
carteBancaire: string;
|
|
145701
|
+
bipTelepage: string;
|
|
145702
|
+
} | undefined;
|
|
145703
|
+
userBillingCenters?: {
|
|
145704
|
+
id: number;
|
|
145705
|
+
userId: number;
|
|
145706
|
+
billingCenterId: number;
|
|
145707
|
+
createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
145708
|
+
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
145709
|
+
billingCenter?: {
|
|
145710
|
+
id: number;
|
|
145711
|
+
billingCenterName: string;
|
|
145712
|
+
customerId?: number | null | undefined;
|
|
145713
|
+
} | undefined;
|
|
145714
|
+
}[] | undefined;
|
|
145715
|
+
}, {
|
|
145716
|
+
id: number;
|
|
145717
|
+
createdAt: Date;
|
|
145718
|
+
updatedAt: Date;
|
|
145719
|
+
countryId: number | null;
|
|
145720
|
+
addressTwo: string;
|
|
145721
|
+
postalCode: string;
|
|
145722
|
+
city: string;
|
|
145723
|
+
telephoneOne: string;
|
|
145724
|
+
telephoneTwo: string;
|
|
145725
|
+
email: string;
|
|
145726
|
+
comments: string;
|
|
145727
|
+
numCodeOne: string;
|
|
145728
|
+
numCodeTwo: string;
|
|
145729
|
+
isActif: boolean;
|
|
145730
|
+
isParis: boolean;
|
|
145731
|
+
isMedical: boolean;
|
|
145732
|
+
isService: boolean;
|
|
145733
|
+
emailOne: string;
|
|
145734
|
+
emailTwo: string;
|
|
145735
|
+
addressOne: string;
|
|
145736
|
+
customerId: number;
|
|
145737
|
+
firstName: string;
|
|
145738
|
+
lastName: string;
|
|
145739
|
+
emailVerifiedAt: Date;
|
|
145740
|
+
password: string;
|
|
145741
|
+
poste: string;
|
|
145742
|
+
roles: string[];
|
|
145743
|
+
isOpsAdmin: boolean;
|
|
145744
|
+
civility: string;
|
|
145745
|
+
isShowCalculatrice: boolean;
|
|
145746
|
+
expedition: boolean;
|
|
145747
|
+
physicCompany: string;
|
|
145748
|
+
menus: string;
|
|
145749
|
+
ongletExpedition: string;
|
|
145750
|
+
chauffeurType: string;
|
|
145751
|
+
typeOfOps: string;
|
|
145752
|
+
prestation: string;
|
|
145753
|
+
tracking: string;
|
|
145754
|
+
expeditionCourse: string;
|
|
145755
|
+
carnetAddress: string;
|
|
145756
|
+
expeditionsCarnet: string;
|
|
145757
|
+
accessArchive: string;
|
|
145758
|
+
isShowImportMenu: boolean;
|
|
145759
|
+
isShowExportMenu: boolean;
|
|
145760
|
+
isShowCourseMenu: boolean;
|
|
145761
|
+
twoRoues: boolean;
|
|
145762
|
+
vt: boolean;
|
|
145763
|
+
lesTwo: boolean;
|
|
145764
|
+
isMiniTracking: boolean;
|
|
145765
|
+
isFullTracking: boolean;
|
|
145766
|
+
isShareCourseAndExpedition: boolean;
|
|
145767
|
+
isShareCarnetAdresse: boolean;
|
|
145768
|
+
isShareCarnetAdresseAndExpedition: boolean;
|
|
145769
|
+
isAccessAuxArchives: boolean;
|
|
145770
|
+
isShowInfo: boolean;
|
|
145771
|
+
photo: string | null;
|
|
145772
|
+
entreprisePhysique: string;
|
|
145773
|
+
isAdminChauffeur: boolean;
|
|
145774
|
+
isShowTracking: boolean;
|
|
145775
|
+
isSupportActivated: boolean;
|
|
145776
|
+
isClientTransitaire: boolean;
|
|
145777
|
+
vehiculeId: number;
|
|
145778
|
+
salaryId: number;
|
|
145779
|
+
country?: {
|
|
145780
|
+
id: number;
|
|
145781
|
+
createdAt: Date;
|
|
145782
|
+
code: string;
|
|
145783
|
+
updatedAt: Date;
|
|
145784
|
+
name: string;
|
|
145785
|
+
phoneCode: string;
|
|
145786
|
+
} | undefined;
|
|
145787
|
+
customer?: {
|
|
145788
|
+
id: number;
|
|
145789
|
+
createdAt: Date;
|
|
145790
|
+
updatedAt: Date;
|
|
145791
|
+
fullName: string;
|
|
145792
|
+
countryId: number;
|
|
145793
|
+
address: string;
|
|
145794
|
+
addressTwo: string | null;
|
|
145795
|
+
postalCode: string;
|
|
145796
|
+
city: string;
|
|
145797
|
+
telephoneOne: string;
|
|
145798
|
+
telephoneTwo: string | null;
|
|
145799
|
+
invoiceMail: string;
|
|
145800
|
+
dafResponsibleName: string;
|
|
145801
|
+
email: string | null;
|
|
145802
|
+
intraVatNumber: string | null;
|
|
145803
|
+
submittedToFrenchVat: boolean;
|
|
145804
|
+
siren: string;
|
|
145805
|
+
numeroEori: string | null;
|
|
145806
|
+
comments: string | null;
|
|
145807
|
+
numCodeOne: string | null;
|
|
145808
|
+
numCodeTwo: string | null;
|
|
145809
|
+
isActif: boolean;
|
|
145810
|
+
isParis: boolean;
|
|
145811
|
+
isMedical: boolean;
|
|
145812
|
+
isService: boolean;
|
|
145813
|
+
valeurCustomer: boolean;
|
|
145814
|
+
dirigeant: string | null;
|
|
145815
|
+
dirigeantTel: string | null;
|
|
145816
|
+
dirigeantEmail: string | null;
|
|
145817
|
+
responsableComptable: string | null;
|
|
145818
|
+
responsableComptableTel: string | null;
|
|
145819
|
+
responsableComptableEmail: string | null;
|
|
145820
|
+
responsableDaf: string | null;
|
|
145821
|
+
responsableDafTel: string | null;
|
|
145822
|
+
responsableDafEmail: string | null;
|
|
145823
|
+
emailFacturation: string | null;
|
|
145824
|
+
logo: string | null;
|
|
145825
|
+
header: string | null;
|
|
145826
|
+
footer: string | null;
|
|
145827
|
+
emailOne: string | null;
|
|
145828
|
+
emailTwo: string | null;
|
|
145829
|
+
emailThree: string | null;
|
|
145830
|
+
tva: string | null;
|
|
145831
|
+
isTrackingMail: boolean | null;
|
|
145832
|
+
isBillingCenter: boolean;
|
|
145833
|
+
isShowNameCustomer: boolean;
|
|
145834
|
+
isMailing: boolean;
|
|
145835
|
+
numeroSiret: string | null;
|
|
145836
|
+
country?: {
|
|
145837
|
+
id: number;
|
|
145838
|
+
createdAt: Date;
|
|
145839
|
+
code: string;
|
|
145840
|
+
updatedAt: Date;
|
|
145841
|
+
name: string;
|
|
145842
|
+
phoneCode: string;
|
|
145843
|
+
} | undefined;
|
|
145844
|
+
} | undefined;
|
|
145845
|
+
salary?: {
|
|
145846
|
+
id: number;
|
|
145847
|
+
createdAt: Date;
|
|
145848
|
+
type: string;
|
|
145849
|
+
updatedAt: Date;
|
|
145850
|
+
countryId: number | null;
|
|
145851
|
+
postalCode: string;
|
|
145852
|
+
city: string;
|
|
145853
|
+
email: string;
|
|
145854
|
+
nom: string;
|
|
145855
|
+
prenom: string;
|
|
145856
|
+
telephone: string;
|
|
145857
|
+
adress: string;
|
|
145858
|
+
country?: {
|
|
145859
|
+
id: number;
|
|
145860
|
+
createdAt: Date;
|
|
145861
|
+
code: string;
|
|
145862
|
+
updatedAt: Date;
|
|
145863
|
+
name: string;
|
|
145864
|
+
phoneCode: string;
|
|
145865
|
+
} | undefined;
|
|
145866
|
+
} | undefined;
|
|
145867
|
+
vehicule?: {
|
|
145868
|
+
id: number;
|
|
145869
|
+
createdAt: Date;
|
|
145870
|
+
updatedAt: Date;
|
|
145871
|
+
plaque: string;
|
|
145872
|
+
telephoneSociete: string;
|
|
145873
|
+
typeVehicule: string;
|
|
145874
|
+
kmDepart: number;
|
|
145875
|
+
kmRetour: number;
|
|
145876
|
+
pochetteRecu: boolean;
|
|
145877
|
+
carteCarburant: string;
|
|
145878
|
+
carteBancaire: string;
|
|
145879
|
+
bipTelepage: string;
|
|
145880
|
+
} | undefined;
|
|
145881
|
+
userBillingCenters?: {
|
|
145882
|
+
id: number;
|
|
145883
|
+
userId: number;
|
|
145884
|
+
billingCenterId: number;
|
|
145885
|
+
createdAt?: Date | undefined;
|
|
145886
|
+
updatedAt?: Date | undefined;
|
|
145887
|
+
billingCenter?: {
|
|
145888
|
+
id: number;
|
|
145889
|
+
billingCenterName: string;
|
|
145890
|
+
customerId?: number | null | undefined;
|
|
145891
|
+
} | undefined;
|
|
145892
|
+
}[] | undefined;
|
|
145893
|
+
}>>>;
|
|
145894
|
+
shipping: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
145895
|
+
id: z.ZodNumber;
|
|
145896
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145897
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145898
|
+
customerRef: z.ZodNullable<z.ZodString>;
|
|
145899
|
+
pickupDate: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
|
|
145900
|
+
deliveryDate: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
|
|
145901
|
+
pickupInstruction: z.ZodNullable<z.ZodString>;
|
|
145902
|
+
deliveryInstruction: z.ZodNullable<z.ZodString>;
|
|
145903
|
+
billContact: z.ZodNullable<z.ZodString>;
|
|
145904
|
+
trackingMail: z.ZodNullable<z.ZodString>;
|
|
145905
|
+
pickupTime: z.ZodNullable<z.ZodString>;
|
|
145906
|
+
deliveryTime: z.ZodNullable<z.ZodString>;
|
|
145907
|
+
ref: z.ZodNullable<z.ZodNumber>;
|
|
145908
|
+
trackingNumber: z.ZodNullable<z.ZodString>;
|
|
145909
|
+
classifications: z.ZodNullable<z.ZodString>;
|
|
145910
|
+
userName: z.ZodNullable<z.ZodString>;
|
|
145911
|
+
transportType: z.ZodNullable<z.ZodString>;
|
|
145912
|
+
isDeleted: z.ZodNullable<z.ZodBoolean>;
|
|
145913
|
+
codeDonneur: z.ZodNullable<z.ZodString>;
|
|
145914
|
+
codeReceveur: z.ZodNullable<z.ZodString>;
|
|
145915
|
+
hasManifest: z.ZodBoolean;
|
|
145916
|
+
isOps: z.ZodBoolean;
|
|
145917
|
+
comment: z.ZodNullable<z.ZodString>;
|
|
145918
|
+
createdFor: z.ZodNullable<z.ZodNumber>;
|
|
145919
|
+
isArchived: z.ZodBoolean;
|
|
145920
|
+
isNeedArchive: z.ZodBoolean;
|
|
145921
|
+
isAnnulee: z.ZodBoolean;
|
|
145922
|
+
raison: z.ZodNullable<z.ZodString>;
|
|
145923
|
+
color: z.ZodNullable<z.ZodString>;
|
|
145924
|
+
docBordereaux: z.ZodNullable<z.ZodString>;
|
|
145925
|
+
docAccompagnement: z.ZodNullable<z.ZodString>;
|
|
145926
|
+
category: z.ZodNativeEnum<{
|
|
145927
|
+
readonly ALL: "all";
|
|
145928
|
+
readonly IMPORT: "import";
|
|
145929
|
+
readonly EXPORT: "export";
|
|
145930
|
+
readonly COURSE: "course";
|
|
145931
|
+
}>;
|
|
145932
|
+
typeExpedition: z.ZodNativeEnum<{
|
|
145933
|
+
readonly COURSE: "course";
|
|
145934
|
+
readonly EXPEDITION: "expedition";
|
|
145935
|
+
}>;
|
|
145936
|
+
driverId: z.ZodNumber;
|
|
145937
|
+
typeDeRoue: z.ZodNullable<z.ZodString>;
|
|
145938
|
+
isRecupererOps: z.ZodNullable<z.ZodBoolean>;
|
|
145939
|
+
isRemisOps: z.ZodNullable<z.ZodBoolean>;
|
|
145940
|
+
isRecupererChauffeur: z.ZodNullable<z.ZodBoolean>;
|
|
145941
|
+
isRemisChauffeur: z.ZodNullable<z.ZodBoolean>;
|
|
145942
|
+
heureRecupererOps: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
|
|
145943
|
+
heureRemisOps: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
|
|
145944
|
+
heureRecupererChauffeur: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
|
|
145945
|
+
heureRemisChauffeur: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
|
|
145946
|
+
lastCronRunAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
145947
|
+
devises: z.ZodNullable<z.ZodString>;
|
|
145948
|
+
provenanceCommande: z.ZodNullable<z.ZodString>;
|
|
145949
|
+
hasEmballage: z.ZodBoolean;
|
|
145950
|
+
billingCenterId: z.ZodNullable<z.ZodNumber>;
|
|
145951
|
+
userId: z.ZodNullable<z.ZodNumber>;
|
|
145952
|
+
}, "strip", z.ZodTypeAny, {
|
|
145953
|
+
id: number;
|
|
145954
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145955
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145956
|
+
userId: number | null;
|
|
145957
|
+
billingCenterId: number | null;
|
|
145958
|
+
trackingMail: string | null;
|
|
145959
|
+
customerRef: string | null;
|
|
145960
|
+
pickupInstruction: string | null;
|
|
145961
|
+
deliveryInstruction: string | null;
|
|
145962
|
+
billContact: string | null;
|
|
145963
|
+
pickupTime: string | null;
|
|
145964
|
+
deliveryTime: string | null;
|
|
145965
|
+
ref: number | null;
|
|
145966
|
+
trackingNumber: string | null;
|
|
145967
|
+
classifications: string | null;
|
|
145968
|
+
userName: string | null;
|
|
145969
|
+
transportType: string | null;
|
|
145970
|
+
isDeleted: boolean | null;
|
|
145971
|
+
codeDonneur: string | null;
|
|
145972
|
+
codeReceveur: string | null;
|
|
145973
|
+
hasManifest: boolean;
|
|
145974
|
+
isOps: boolean;
|
|
145975
|
+
comment: string | null;
|
|
145976
|
+
createdFor: number | null;
|
|
145977
|
+
isArchived: boolean;
|
|
145978
|
+
isNeedArchive: boolean;
|
|
145979
|
+
isAnnulee: boolean;
|
|
145980
|
+
raison: string | null;
|
|
145981
|
+
color: string | null;
|
|
145982
|
+
docBordereaux: string | null;
|
|
145983
|
+
docAccompagnement: string | null;
|
|
145984
|
+
category: "course" | "all" | "import" | "export";
|
|
145985
|
+
typeExpedition: "expedition" | "course";
|
|
145986
|
+
driverId: number;
|
|
145987
|
+
typeDeRoue: string | null;
|
|
145988
|
+
isRecupererOps: boolean | null;
|
|
145989
|
+
isRemisOps: boolean | null;
|
|
145990
|
+
isRecupererChauffeur: boolean | null;
|
|
145991
|
+
isRemisChauffeur: boolean | null;
|
|
145992
|
+
lastCronRunAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
145993
|
+
devises: string | null;
|
|
145994
|
+
provenanceCommande: string | null;
|
|
145995
|
+
hasEmballage: boolean;
|
|
145996
|
+
pickupDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
145997
|
+
deliveryDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
145998
|
+
heureRecupererOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
145999
|
+
heureRemisOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146000
|
+
heureRecupererChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146001
|
+
heureRemisChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146002
|
+
}, {
|
|
146003
|
+
id: number;
|
|
146004
|
+
createdAt: Date;
|
|
146005
|
+
updatedAt: Date;
|
|
146006
|
+
userId: number | null;
|
|
146007
|
+
billingCenterId: number | null;
|
|
146008
|
+
trackingMail: string | null;
|
|
146009
|
+
customerRef: string | null;
|
|
146010
|
+
pickupInstruction: string | null;
|
|
146011
|
+
deliveryInstruction: string | null;
|
|
146012
|
+
billContact: string | null;
|
|
146013
|
+
pickupTime: string | null;
|
|
146014
|
+
deliveryTime: string | null;
|
|
146015
|
+
ref: number | null;
|
|
146016
|
+
trackingNumber: string | null;
|
|
146017
|
+
classifications: string | null;
|
|
146018
|
+
userName: string | null;
|
|
146019
|
+
transportType: string | null;
|
|
146020
|
+
isDeleted: boolean | null;
|
|
146021
|
+
codeDonneur: string | null;
|
|
146022
|
+
codeReceveur: string | null;
|
|
146023
|
+
hasManifest: boolean;
|
|
146024
|
+
isOps: boolean;
|
|
146025
|
+
comment: string | null;
|
|
146026
|
+
createdFor: number | null;
|
|
146027
|
+
isArchived: boolean;
|
|
146028
|
+
isNeedArchive: boolean;
|
|
146029
|
+
isAnnulee: boolean;
|
|
146030
|
+
raison: string | null;
|
|
146031
|
+
color: string | null;
|
|
146032
|
+
docBordereaux: string | null;
|
|
146033
|
+
docAccompagnement: string | null;
|
|
146034
|
+
category: "course" | "all" | "import" | "export";
|
|
146035
|
+
typeExpedition: "expedition" | "course";
|
|
146036
|
+
driverId: number;
|
|
146037
|
+
typeDeRoue: string | null;
|
|
146038
|
+
isRecupererOps: boolean | null;
|
|
146039
|
+
isRemisOps: boolean | null;
|
|
146040
|
+
isRecupererChauffeur: boolean | null;
|
|
146041
|
+
isRemisChauffeur: boolean | null;
|
|
146042
|
+
lastCronRunAt: Date;
|
|
146043
|
+
devises: string | null;
|
|
146044
|
+
provenanceCommande: string | null;
|
|
146045
|
+
hasEmballage: boolean;
|
|
146046
|
+
pickupDate?: Date | undefined;
|
|
146047
|
+
deliveryDate?: Date | undefined;
|
|
146048
|
+
heureRecupererOps?: Date | undefined;
|
|
146049
|
+
heureRemisOps?: Date | undefined;
|
|
146050
|
+
heureRecupererChauffeur?: Date | undefined;
|
|
146051
|
+
heureRemisChauffeur?: Date | undefined;
|
|
146052
|
+
}>>>;
|
|
146053
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
146054
|
+
id: number;
|
|
146055
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146056
|
+
status: string | null;
|
|
146057
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146058
|
+
isParis: boolean;
|
|
146059
|
+
isMedical: boolean;
|
|
146060
|
+
isService: boolean;
|
|
146061
|
+
userId: number;
|
|
146062
|
+
chauffeur: string;
|
|
146063
|
+
shippingId: number;
|
|
146064
|
+
dateTracking: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146065
|
+
dateSuivi: string;
|
|
146066
|
+
heurSuivi: string;
|
|
146067
|
+
details: string;
|
|
146068
|
+
agents: string;
|
|
146069
|
+
visible: boolean;
|
|
146070
|
+
isTemplate: boolean;
|
|
146071
|
+
state: boolean;
|
|
146072
|
+
location: string | null;
|
|
146073
|
+
isDriver: boolean;
|
|
146074
|
+
userOpsId: number | null;
|
|
146075
|
+
user?: {
|
|
146076
|
+
id: number;
|
|
146077
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146078
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146079
|
+
countryId: number | null;
|
|
146080
|
+
addressTwo: string;
|
|
146081
|
+
postalCode: string;
|
|
146082
|
+
city: string;
|
|
146083
|
+
telephoneOne: string;
|
|
146084
|
+
telephoneTwo: string;
|
|
146085
|
+
email: string;
|
|
146086
|
+
comments: string;
|
|
146087
|
+
numCodeOne: string;
|
|
146088
|
+
numCodeTwo: string;
|
|
146089
|
+
isActif: boolean;
|
|
146090
|
+
isParis: boolean;
|
|
146091
|
+
isMedical: boolean;
|
|
146092
|
+
isService: boolean;
|
|
146093
|
+
emailOne: string;
|
|
146094
|
+
emailTwo: string;
|
|
146095
|
+
addressOne: string;
|
|
146096
|
+
customerId: number;
|
|
146097
|
+
firstName: string;
|
|
146098
|
+
lastName: string;
|
|
146099
|
+
emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146100
|
+
password: string;
|
|
146101
|
+
poste: string;
|
|
146102
|
+
roles: string[];
|
|
146103
|
+
isOpsAdmin: boolean;
|
|
146104
|
+
civility: string;
|
|
146105
|
+
isShowCalculatrice: boolean;
|
|
146106
|
+
expedition: boolean;
|
|
146107
|
+
physicCompany: string;
|
|
146108
|
+
menus: string;
|
|
146109
|
+
ongletExpedition: string;
|
|
146110
|
+
chauffeurType: string;
|
|
146111
|
+
typeOfOps: string;
|
|
146112
|
+
prestation: string;
|
|
146113
|
+
tracking: string;
|
|
146114
|
+
expeditionCourse: string;
|
|
146115
|
+
carnetAddress: string;
|
|
146116
|
+
expeditionsCarnet: string;
|
|
146117
|
+
accessArchive: string;
|
|
146118
|
+
isShowImportMenu: boolean;
|
|
146119
|
+
isShowExportMenu: boolean;
|
|
146120
|
+
isShowCourseMenu: boolean;
|
|
146121
|
+
twoRoues: boolean;
|
|
146122
|
+
vt: boolean;
|
|
146123
|
+
lesTwo: boolean;
|
|
146124
|
+
isMiniTracking: boolean;
|
|
146125
|
+
isFullTracking: boolean;
|
|
146126
|
+
isShareCourseAndExpedition: boolean;
|
|
146127
|
+
isShareCarnetAdresse: boolean;
|
|
146128
|
+
isShareCarnetAdresseAndExpedition: boolean;
|
|
146129
|
+
isAccessAuxArchives: boolean;
|
|
146130
|
+
isShowInfo: boolean;
|
|
146131
|
+
photo: string | null;
|
|
146132
|
+
entreprisePhysique: string;
|
|
146133
|
+
isAdminChauffeur: boolean;
|
|
146134
|
+
isShowTracking: boolean;
|
|
146135
|
+
isSupportActivated: boolean;
|
|
146136
|
+
isClientTransitaire: boolean;
|
|
146137
|
+
vehiculeId: number;
|
|
146138
|
+
salaryId: number;
|
|
146139
|
+
country?: {
|
|
146140
|
+
id: number;
|
|
146141
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146142
|
+
code: string;
|
|
146143
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146144
|
+
name: string;
|
|
146145
|
+
phoneCode: string;
|
|
146146
|
+
} | undefined;
|
|
146147
|
+
customer?: {
|
|
146148
|
+
id: number;
|
|
146149
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146150
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146151
|
+
fullName: string;
|
|
146152
|
+
countryId: number;
|
|
146153
|
+
address: string;
|
|
146154
|
+
addressTwo: string | null;
|
|
146155
|
+
postalCode: string;
|
|
146156
|
+
city: string;
|
|
146157
|
+
telephoneOne: string;
|
|
146158
|
+
telephoneTwo: string | null;
|
|
146159
|
+
invoiceMail: string;
|
|
146160
|
+
dafResponsibleName: string;
|
|
146161
|
+
email: string | null;
|
|
146162
|
+
intraVatNumber: string | null;
|
|
146163
|
+
submittedToFrenchVat: boolean;
|
|
146164
|
+
siren: string;
|
|
146165
|
+
numeroEori: string | null;
|
|
146166
|
+
comments: string | null;
|
|
146167
|
+
numCodeOne: string | null;
|
|
146168
|
+
numCodeTwo: string | null;
|
|
146169
|
+
isActif: boolean;
|
|
146170
|
+
isParis: boolean;
|
|
146171
|
+
isMedical: boolean;
|
|
146172
|
+
isService: boolean;
|
|
146173
|
+
valeurCustomer: boolean;
|
|
146174
|
+
dirigeant: string | null;
|
|
146175
|
+
dirigeantTel: string | null;
|
|
146176
|
+
dirigeantEmail: string | null;
|
|
146177
|
+
responsableComptable: string | null;
|
|
146178
|
+
responsableComptableTel: string | null;
|
|
146179
|
+
responsableComptableEmail: string | null;
|
|
146180
|
+
responsableDaf: string | null;
|
|
146181
|
+
responsableDafTel: string | null;
|
|
146182
|
+
responsableDafEmail: string | null;
|
|
146183
|
+
emailFacturation: string | null;
|
|
146184
|
+
logo: string | null;
|
|
146185
|
+
header: string | null;
|
|
146186
|
+
footer: string | null;
|
|
146187
|
+
emailOne: string | null;
|
|
146188
|
+
emailTwo: string | null;
|
|
146189
|
+
emailThree: string | null;
|
|
146190
|
+
tva: string | null;
|
|
146191
|
+
isTrackingMail: boolean | null;
|
|
146192
|
+
isBillingCenter: boolean;
|
|
146193
|
+
isShowNameCustomer: boolean;
|
|
146194
|
+
isMailing: boolean;
|
|
146195
|
+
numeroSiret: string | null;
|
|
146196
|
+
country?: {
|
|
146197
|
+
id: number;
|
|
146198
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146199
|
+
code: string;
|
|
146200
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146201
|
+
name: string;
|
|
146202
|
+
phoneCode: string;
|
|
146203
|
+
} | undefined;
|
|
146204
|
+
} | undefined;
|
|
146205
|
+
salary?: {
|
|
146206
|
+
id: number;
|
|
146207
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146208
|
+
type: string;
|
|
146209
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146210
|
+
countryId: number | null;
|
|
146211
|
+
postalCode: string;
|
|
146212
|
+
city: string;
|
|
146213
|
+
email: string;
|
|
146214
|
+
nom: string;
|
|
146215
|
+
prenom: string;
|
|
146216
|
+
telephone: string;
|
|
146217
|
+
adress: string;
|
|
146218
|
+
country?: {
|
|
146219
|
+
id: number;
|
|
146220
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146221
|
+
code: string;
|
|
146222
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146223
|
+
name: string;
|
|
146224
|
+
phoneCode: string;
|
|
146225
|
+
} | undefined;
|
|
146226
|
+
} | undefined;
|
|
146227
|
+
vehicule?: {
|
|
146228
|
+
id: number;
|
|
146229
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146230
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146231
|
+
plaque: string;
|
|
146232
|
+
telephoneSociete: string;
|
|
146233
|
+
typeVehicule: string;
|
|
146234
|
+
kmDepart: number;
|
|
146235
|
+
kmRetour: number;
|
|
146236
|
+
pochetteRecu: boolean;
|
|
146237
|
+
carteCarburant: string;
|
|
146238
|
+
carteBancaire: string;
|
|
146239
|
+
bipTelepage: string;
|
|
146240
|
+
} | undefined;
|
|
146241
|
+
userBillingCenters?: {
|
|
146242
|
+
id: number;
|
|
146243
|
+
userId: number;
|
|
146244
|
+
billingCenterId: number;
|
|
146245
|
+
createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146246
|
+
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146247
|
+
billingCenter?: {
|
|
146248
|
+
id: number;
|
|
146249
|
+
billingCenterName: string;
|
|
146250
|
+
customerId?: number | null | undefined;
|
|
146251
|
+
} | undefined;
|
|
146252
|
+
}[] | undefined;
|
|
146253
|
+
} | undefined;
|
|
146254
|
+
shipping?: {
|
|
146255
|
+
id: number;
|
|
146256
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146257
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146258
|
+
userId: number | null;
|
|
146259
|
+
billingCenterId: number | null;
|
|
146260
|
+
trackingMail: string | null;
|
|
146261
|
+
customerRef: string | null;
|
|
146262
|
+
pickupInstruction: string | null;
|
|
146263
|
+
deliveryInstruction: string | null;
|
|
146264
|
+
billContact: string | null;
|
|
146265
|
+
pickupTime: string | null;
|
|
146266
|
+
deliveryTime: string | null;
|
|
146267
|
+
ref: number | null;
|
|
146268
|
+
trackingNumber: string | null;
|
|
146269
|
+
classifications: string | null;
|
|
146270
|
+
userName: string | null;
|
|
146271
|
+
transportType: string | null;
|
|
146272
|
+
isDeleted: boolean | null;
|
|
146273
|
+
codeDonneur: string | null;
|
|
146274
|
+
codeReceveur: string | null;
|
|
146275
|
+
hasManifest: boolean;
|
|
146276
|
+
isOps: boolean;
|
|
146277
|
+
comment: string | null;
|
|
146278
|
+
createdFor: number | null;
|
|
146279
|
+
isArchived: boolean;
|
|
146280
|
+
isNeedArchive: boolean;
|
|
146281
|
+
isAnnulee: boolean;
|
|
146282
|
+
raison: string | null;
|
|
146283
|
+
color: string | null;
|
|
146284
|
+
docBordereaux: string | null;
|
|
146285
|
+
docAccompagnement: string | null;
|
|
146286
|
+
category: "course" | "all" | "import" | "export";
|
|
146287
|
+
typeExpedition: "expedition" | "course";
|
|
146288
|
+
driverId: number;
|
|
146289
|
+
typeDeRoue: string | null;
|
|
146290
|
+
isRecupererOps: boolean | null;
|
|
146291
|
+
isRemisOps: boolean | null;
|
|
146292
|
+
isRecupererChauffeur: boolean | null;
|
|
146293
|
+
isRemisChauffeur: boolean | null;
|
|
146294
|
+
lastCronRunAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146295
|
+
devises: string | null;
|
|
146296
|
+
provenanceCommande: string | null;
|
|
146297
|
+
hasEmballage: boolean;
|
|
146298
|
+
pickupDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146299
|
+
deliveryDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146300
|
+
heureRecupererOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146301
|
+
heureRemisOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146302
|
+
heureRecupererChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146303
|
+
heureRemisChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146304
|
+
} | undefined;
|
|
146305
|
+
dateValidateOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146306
|
+
}, {
|
|
146307
|
+
id: number;
|
|
146308
|
+
createdAt: Date;
|
|
146309
|
+
status: string | null;
|
|
146310
|
+
updatedAt: Date;
|
|
146311
|
+
isParis: boolean;
|
|
146312
|
+
isMedical: boolean;
|
|
146313
|
+
isService: boolean;
|
|
146314
|
+
userId: number;
|
|
146315
|
+
chauffeur: string;
|
|
146316
|
+
shippingId: number;
|
|
146317
|
+
dateTracking: Date;
|
|
146318
|
+
dateSuivi: string;
|
|
146319
|
+
heurSuivi: string;
|
|
146320
|
+
details: string;
|
|
146321
|
+
agents: string;
|
|
146322
|
+
visible: boolean;
|
|
146323
|
+
isTemplate: boolean;
|
|
146324
|
+
state: boolean;
|
|
146325
|
+
location: string | null;
|
|
146326
|
+
isDriver: boolean;
|
|
146327
|
+
userOpsId: number | null;
|
|
146328
|
+
user?: {
|
|
146329
|
+
id: number;
|
|
146330
|
+
createdAt: Date;
|
|
146331
|
+
updatedAt: Date;
|
|
146332
|
+
countryId: number | null;
|
|
146333
|
+
addressTwo: string;
|
|
146334
|
+
postalCode: string;
|
|
146335
|
+
city: string;
|
|
146336
|
+
telephoneOne: string;
|
|
146337
|
+
telephoneTwo: string;
|
|
146338
|
+
email: string;
|
|
146339
|
+
comments: string;
|
|
146340
|
+
numCodeOne: string;
|
|
146341
|
+
numCodeTwo: string;
|
|
146342
|
+
isActif: boolean;
|
|
146343
|
+
isParis: boolean;
|
|
146344
|
+
isMedical: boolean;
|
|
146345
|
+
isService: boolean;
|
|
146346
|
+
emailOne: string;
|
|
146347
|
+
emailTwo: string;
|
|
146348
|
+
addressOne: string;
|
|
146349
|
+
customerId: number;
|
|
146350
|
+
firstName: string;
|
|
146351
|
+
lastName: string;
|
|
146352
|
+
emailVerifiedAt: Date;
|
|
146353
|
+
password: string;
|
|
146354
|
+
poste: string;
|
|
146355
|
+
roles: string[];
|
|
146356
|
+
isOpsAdmin: boolean;
|
|
146357
|
+
civility: string;
|
|
146358
|
+
isShowCalculatrice: boolean;
|
|
146359
|
+
expedition: boolean;
|
|
146360
|
+
physicCompany: string;
|
|
146361
|
+
menus: string;
|
|
146362
|
+
ongletExpedition: string;
|
|
146363
|
+
chauffeurType: string;
|
|
146364
|
+
typeOfOps: string;
|
|
146365
|
+
prestation: string;
|
|
146366
|
+
tracking: string;
|
|
146367
|
+
expeditionCourse: string;
|
|
146368
|
+
carnetAddress: string;
|
|
146369
|
+
expeditionsCarnet: string;
|
|
146370
|
+
accessArchive: string;
|
|
146371
|
+
isShowImportMenu: boolean;
|
|
146372
|
+
isShowExportMenu: boolean;
|
|
146373
|
+
isShowCourseMenu: boolean;
|
|
146374
|
+
twoRoues: boolean;
|
|
146375
|
+
vt: boolean;
|
|
146376
|
+
lesTwo: boolean;
|
|
146377
|
+
isMiniTracking: boolean;
|
|
146378
|
+
isFullTracking: boolean;
|
|
146379
|
+
isShareCourseAndExpedition: boolean;
|
|
146380
|
+
isShareCarnetAdresse: boolean;
|
|
146381
|
+
isShareCarnetAdresseAndExpedition: boolean;
|
|
146382
|
+
isAccessAuxArchives: boolean;
|
|
146383
|
+
isShowInfo: boolean;
|
|
146384
|
+
photo: string | null;
|
|
146385
|
+
entreprisePhysique: string;
|
|
146386
|
+
isAdminChauffeur: boolean;
|
|
146387
|
+
isShowTracking: boolean;
|
|
146388
|
+
isSupportActivated: boolean;
|
|
146389
|
+
isClientTransitaire: boolean;
|
|
146390
|
+
vehiculeId: number;
|
|
146391
|
+
salaryId: number;
|
|
146392
|
+
country?: {
|
|
146393
|
+
id: number;
|
|
146394
|
+
createdAt: Date;
|
|
146395
|
+
code: string;
|
|
146396
|
+
updatedAt: Date;
|
|
146397
|
+
name: string;
|
|
146398
|
+
phoneCode: string;
|
|
146399
|
+
} | undefined;
|
|
146400
|
+
customer?: {
|
|
146401
|
+
id: number;
|
|
146402
|
+
createdAt: Date;
|
|
146403
|
+
updatedAt: Date;
|
|
146404
|
+
fullName: string;
|
|
146405
|
+
countryId: number;
|
|
146406
|
+
address: string;
|
|
146407
|
+
addressTwo: string | null;
|
|
146408
|
+
postalCode: string;
|
|
146409
|
+
city: string;
|
|
146410
|
+
telephoneOne: string;
|
|
146411
|
+
telephoneTwo: string | null;
|
|
146412
|
+
invoiceMail: string;
|
|
146413
|
+
dafResponsibleName: string;
|
|
146414
|
+
email: string | null;
|
|
146415
|
+
intraVatNumber: string | null;
|
|
146416
|
+
submittedToFrenchVat: boolean;
|
|
146417
|
+
siren: string;
|
|
146418
|
+
numeroEori: string | null;
|
|
146419
|
+
comments: string | null;
|
|
146420
|
+
numCodeOne: string | null;
|
|
146421
|
+
numCodeTwo: string | null;
|
|
146422
|
+
isActif: boolean;
|
|
146423
|
+
isParis: boolean;
|
|
146424
|
+
isMedical: boolean;
|
|
146425
|
+
isService: boolean;
|
|
146426
|
+
valeurCustomer: boolean;
|
|
146427
|
+
dirigeant: string | null;
|
|
146428
|
+
dirigeantTel: string | null;
|
|
146429
|
+
dirigeantEmail: string | null;
|
|
146430
|
+
responsableComptable: string | null;
|
|
146431
|
+
responsableComptableTel: string | null;
|
|
146432
|
+
responsableComptableEmail: string | null;
|
|
146433
|
+
responsableDaf: string | null;
|
|
146434
|
+
responsableDafTel: string | null;
|
|
146435
|
+
responsableDafEmail: string | null;
|
|
146436
|
+
emailFacturation: string | null;
|
|
146437
|
+
logo: string | null;
|
|
146438
|
+
header: string | null;
|
|
146439
|
+
footer: string | null;
|
|
146440
|
+
emailOne: string | null;
|
|
146441
|
+
emailTwo: string | null;
|
|
146442
|
+
emailThree: string | null;
|
|
146443
|
+
tva: string | null;
|
|
146444
|
+
isTrackingMail: boolean | null;
|
|
146445
|
+
isBillingCenter: boolean;
|
|
146446
|
+
isShowNameCustomer: boolean;
|
|
146447
|
+
isMailing: boolean;
|
|
146448
|
+
numeroSiret: string | null;
|
|
146449
|
+
country?: {
|
|
146450
|
+
id: number;
|
|
146451
|
+
createdAt: Date;
|
|
146452
|
+
code: string;
|
|
146453
|
+
updatedAt: Date;
|
|
146454
|
+
name: string;
|
|
146455
|
+
phoneCode: string;
|
|
146456
|
+
} | undefined;
|
|
146457
|
+
} | undefined;
|
|
146458
|
+
salary?: {
|
|
146459
|
+
id: number;
|
|
146460
|
+
createdAt: Date;
|
|
146461
|
+
type: string;
|
|
146462
|
+
updatedAt: Date;
|
|
146463
|
+
countryId: number | null;
|
|
146464
|
+
postalCode: string;
|
|
146465
|
+
city: string;
|
|
146466
|
+
email: string;
|
|
146467
|
+
nom: string;
|
|
146468
|
+
prenom: string;
|
|
146469
|
+
telephone: string;
|
|
146470
|
+
adress: string;
|
|
146471
|
+
country?: {
|
|
146472
|
+
id: number;
|
|
146473
|
+
createdAt: Date;
|
|
146474
|
+
code: string;
|
|
146475
|
+
updatedAt: Date;
|
|
146476
|
+
name: string;
|
|
146477
|
+
phoneCode: string;
|
|
146478
|
+
} | undefined;
|
|
146479
|
+
} | undefined;
|
|
146480
|
+
vehicule?: {
|
|
146481
|
+
id: number;
|
|
146482
|
+
createdAt: Date;
|
|
146483
|
+
updatedAt: Date;
|
|
146484
|
+
plaque: string;
|
|
146485
|
+
telephoneSociete: string;
|
|
146486
|
+
typeVehicule: string;
|
|
146487
|
+
kmDepart: number;
|
|
146488
|
+
kmRetour: number;
|
|
146489
|
+
pochetteRecu: boolean;
|
|
146490
|
+
carteCarburant: string;
|
|
146491
|
+
carteBancaire: string;
|
|
146492
|
+
bipTelepage: string;
|
|
146493
|
+
} | undefined;
|
|
146494
|
+
userBillingCenters?: {
|
|
146495
|
+
id: number;
|
|
146496
|
+
userId: number;
|
|
146497
|
+
billingCenterId: number;
|
|
146498
|
+
createdAt?: Date | undefined;
|
|
146499
|
+
updatedAt?: Date | undefined;
|
|
146500
|
+
billingCenter?: {
|
|
146501
|
+
id: number;
|
|
146502
|
+
billingCenterName: string;
|
|
146503
|
+
customerId?: number | null | undefined;
|
|
146504
|
+
} | undefined;
|
|
146505
|
+
}[] | undefined;
|
|
146506
|
+
} | undefined;
|
|
146507
|
+
shipping?: {
|
|
146508
|
+
id: number;
|
|
146509
|
+
createdAt: Date;
|
|
146510
|
+
updatedAt: Date;
|
|
146511
|
+
userId: number | null;
|
|
146512
|
+
billingCenterId: number | null;
|
|
146513
|
+
trackingMail: string | null;
|
|
146514
|
+
customerRef: string | null;
|
|
146515
|
+
pickupInstruction: string | null;
|
|
146516
|
+
deliveryInstruction: string | null;
|
|
146517
|
+
billContact: string | null;
|
|
146518
|
+
pickupTime: string | null;
|
|
146519
|
+
deliveryTime: string | null;
|
|
146520
|
+
ref: number | null;
|
|
146521
|
+
trackingNumber: string | null;
|
|
146522
|
+
classifications: string | null;
|
|
146523
|
+
userName: string | null;
|
|
146524
|
+
transportType: string | null;
|
|
146525
|
+
isDeleted: boolean | null;
|
|
146526
|
+
codeDonneur: string | null;
|
|
146527
|
+
codeReceveur: string | null;
|
|
146528
|
+
hasManifest: boolean;
|
|
146529
|
+
isOps: boolean;
|
|
146530
|
+
comment: string | null;
|
|
146531
|
+
createdFor: number | null;
|
|
146532
|
+
isArchived: boolean;
|
|
146533
|
+
isNeedArchive: boolean;
|
|
146534
|
+
isAnnulee: boolean;
|
|
146535
|
+
raison: string | null;
|
|
146536
|
+
color: string | null;
|
|
146537
|
+
docBordereaux: string | null;
|
|
146538
|
+
docAccompagnement: string | null;
|
|
146539
|
+
category: "course" | "all" | "import" | "export";
|
|
146540
|
+
typeExpedition: "expedition" | "course";
|
|
146541
|
+
driverId: number;
|
|
146542
|
+
typeDeRoue: string | null;
|
|
146543
|
+
isRecupererOps: boolean | null;
|
|
146544
|
+
isRemisOps: boolean | null;
|
|
146545
|
+
isRecupererChauffeur: boolean | null;
|
|
146546
|
+
isRemisChauffeur: boolean | null;
|
|
146547
|
+
lastCronRunAt: Date;
|
|
146548
|
+
devises: string | null;
|
|
146549
|
+
provenanceCommande: string | null;
|
|
146550
|
+
hasEmballage: boolean;
|
|
146551
|
+
pickupDate?: Date | undefined;
|
|
146552
|
+
deliveryDate?: Date | undefined;
|
|
146553
|
+
heureRecupererOps?: Date | undefined;
|
|
146554
|
+
heureRemisOps?: Date | undefined;
|
|
146555
|
+
heureRecupererChauffeur?: Date | undefined;
|
|
146556
|
+
heureRemisChauffeur?: Date | undefined;
|
|
146557
|
+
} | undefined;
|
|
146558
|
+
dateValidateOps?: Date | undefined;
|
|
146559
|
+
}>, "many">;
|
|
146560
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
146561
|
+
data: {
|
|
146562
|
+
id: number;
|
|
146563
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146564
|
+
status: string | null;
|
|
146565
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146566
|
+
isParis: boolean;
|
|
146567
|
+
isMedical: boolean;
|
|
146568
|
+
isService: boolean;
|
|
146569
|
+
userId: number;
|
|
146570
|
+
chauffeur: string;
|
|
146571
|
+
shippingId: number;
|
|
146572
|
+
dateTracking: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146573
|
+
dateSuivi: string;
|
|
146574
|
+
heurSuivi: string;
|
|
146575
|
+
details: string;
|
|
146576
|
+
agents: string;
|
|
146577
|
+
visible: boolean;
|
|
146578
|
+
isTemplate: boolean;
|
|
146579
|
+
state: boolean;
|
|
146580
|
+
location: string | null;
|
|
146581
|
+
isDriver: boolean;
|
|
146582
|
+
userOpsId: number | null;
|
|
146583
|
+
user?: {
|
|
146584
|
+
id: number;
|
|
146585
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146586
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146587
|
+
countryId: number | null;
|
|
146588
|
+
addressTwo: string;
|
|
146589
|
+
postalCode: string;
|
|
146590
|
+
city: string;
|
|
146591
|
+
telephoneOne: string;
|
|
146592
|
+
telephoneTwo: string;
|
|
146593
|
+
email: string;
|
|
146594
|
+
comments: string;
|
|
146595
|
+
numCodeOne: string;
|
|
146596
|
+
numCodeTwo: string;
|
|
146597
|
+
isActif: boolean;
|
|
146598
|
+
isParis: boolean;
|
|
146599
|
+
isMedical: boolean;
|
|
146600
|
+
isService: boolean;
|
|
146601
|
+
emailOne: string;
|
|
146602
|
+
emailTwo: string;
|
|
146603
|
+
addressOne: string;
|
|
146604
|
+
customerId: number;
|
|
146605
|
+
firstName: string;
|
|
146606
|
+
lastName: string;
|
|
146607
|
+
emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146608
|
+
password: string;
|
|
146609
|
+
poste: string;
|
|
146610
|
+
roles: string[];
|
|
146611
|
+
isOpsAdmin: boolean;
|
|
146612
|
+
civility: string;
|
|
146613
|
+
isShowCalculatrice: boolean;
|
|
146614
|
+
expedition: boolean;
|
|
146615
|
+
physicCompany: string;
|
|
146616
|
+
menus: string;
|
|
146617
|
+
ongletExpedition: string;
|
|
146618
|
+
chauffeurType: string;
|
|
146619
|
+
typeOfOps: string;
|
|
146620
|
+
prestation: string;
|
|
146621
|
+
tracking: string;
|
|
146622
|
+
expeditionCourse: string;
|
|
146623
|
+
carnetAddress: string;
|
|
146624
|
+
expeditionsCarnet: string;
|
|
146625
|
+
accessArchive: string;
|
|
146626
|
+
isShowImportMenu: boolean;
|
|
146627
|
+
isShowExportMenu: boolean;
|
|
146628
|
+
isShowCourseMenu: boolean;
|
|
146629
|
+
twoRoues: boolean;
|
|
146630
|
+
vt: boolean;
|
|
146631
|
+
lesTwo: boolean;
|
|
146632
|
+
isMiniTracking: boolean;
|
|
146633
|
+
isFullTracking: boolean;
|
|
146634
|
+
isShareCourseAndExpedition: boolean;
|
|
146635
|
+
isShareCarnetAdresse: boolean;
|
|
146636
|
+
isShareCarnetAdresseAndExpedition: boolean;
|
|
146637
|
+
isAccessAuxArchives: boolean;
|
|
146638
|
+
isShowInfo: boolean;
|
|
146639
|
+
photo: string | null;
|
|
146640
|
+
entreprisePhysique: string;
|
|
146641
|
+
isAdminChauffeur: boolean;
|
|
146642
|
+
isShowTracking: boolean;
|
|
146643
|
+
isSupportActivated: boolean;
|
|
146644
|
+
isClientTransitaire: boolean;
|
|
146645
|
+
vehiculeId: number;
|
|
146646
|
+
salaryId: number;
|
|
146647
|
+
country?: {
|
|
146648
|
+
id: number;
|
|
146649
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146650
|
+
code: string;
|
|
146651
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146652
|
+
name: string;
|
|
146653
|
+
phoneCode: string;
|
|
146654
|
+
} | undefined;
|
|
146655
|
+
customer?: {
|
|
146656
|
+
id: number;
|
|
146657
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146658
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146659
|
+
fullName: string;
|
|
146660
|
+
countryId: number;
|
|
146661
|
+
address: string;
|
|
146662
|
+
addressTwo: string | null;
|
|
146663
|
+
postalCode: string;
|
|
146664
|
+
city: string;
|
|
146665
|
+
telephoneOne: string;
|
|
146666
|
+
telephoneTwo: string | null;
|
|
146667
|
+
invoiceMail: string;
|
|
146668
|
+
dafResponsibleName: string;
|
|
146669
|
+
email: string | null;
|
|
146670
|
+
intraVatNumber: string | null;
|
|
146671
|
+
submittedToFrenchVat: boolean;
|
|
146672
|
+
siren: string;
|
|
146673
|
+
numeroEori: string | null;
|
|
146674
|
+
comments: string | null;
|
|
146675
|
+
numCodeOne: string | null;
|
|
146676
|
+
numCodeTwo: string | null;
|
|
146677
|
+
isActif: boolean;
|
|
146678
|
+
isParis: boolean;
|
|
146679
|
+
isMedical: boolean;
|
|
146680
|
+
isService: boolean;
|
|
146681
|
+
valeurCustomer: boolean;
|
|
146682
|
+
dirigeant: string | null;
|
|
146683
|
+
dirigeantTel: string | null;
|
|
146684
|
+
dirigeantEmail: string | null;
|
|
146685
|
+
responsableComptable: string | null;
|
|
146686
|
+
responsableComptableTel: string | null;
|
|
146687
|
+
responsableComptableEmail: string | null;
|
|
146688
|
+
responsableDaf: string | null;
|
|
146689
|
+
responsableDafTel: string | null;
|
|
146690
|
+
responsableDafEmail: string | null;
|
|
146691
|
+
emailFacturation: string | null;
|
|
146692
|
+
logo: string | null;
|
|
146693
|
+
header: string | null;
|
|
146694
|
+
footer: string | null;
|
|
146695
|
+
emailOne: string | null;
|
|
146696
|
+
emailTwo: string | null;
|
|
146697
|
+
emailThree: string | null;
|
|
146698
|
+
tva: string | null;
|
|
146699
|
+
isTrackingMail: boolean | null;
|
|
146700
|
+
isBillingCenter: boolean;
|
|
146701
|
+
isShowNameCustomer: boolean;
|
|
146702
|
+
isMailing: boolean;
|
|
146703
|
+
numeroSiret: string | null;
|
|
146704
|
+
country?: {
|
|
146705
|
+
id: number;
|
|
146706
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146707
|
+
code: string;
|
|
146708
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146709
|
+
name: string;
|
|
146710
|
+
phoneCode: string;
|
|
146711
|
+
} | undefined;
|
|
146712
|
+
} | undefined;
|
|
146713
|
+
salary?: {
|
|
146714
|
+
id: number;
|
|
146715
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146716
|
+
type: string;
|
|
146717
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146718
|
+
countryId: number | null;
|
|
146719
|
+
postalCode: string;
|
|
146720
|
+
city: string;
|
|
146721
|
+
email: string;
|
|
146722
|
+
nom: string;
|
|
146723
|
+
prenom: string;
|
|
146724
|
+
telephone: string;
|
|
146725
|
+
adress: string;
|
|
146726
|
+
country?: {
|
|
146727
|
+
id: number;
|
|
146728
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146729
|
+
code: string;
|
|
146730
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146731
|
+
name: string;
|
|
146732
|
+
phoneCode: string;
|
|
146733
|
+
} | undefined;
|
|
146734
|
+
} | undefined;
|
|
146735
|
+
vehicule?: {
|
|
146736
|
+
id: number;
|
|
146737
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146738
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146739
|
+
plaque: string;
|
|
146740
|
+
telephoneSociete: string;
|
|
146741
|
+
typeVehicule: string;
|
|
146742
|
+
kmDepart: number;
|
|
146743
|
+
kmRetour: number;
|
|
146744
|
+
pochetteRecu: boolean;
|
|
146745
|
+
carteCarburant: string;
|
|
146746
|
+
carteBancaire: string;
|
|
146747
|
+
bipTelepage: string;
|
|
146748
|
+
} | undefined;
|
|
146749
|
+
userBillingCenters?: {
|
|
146750
|
+
id: number;
|
|
146751
|
+
userId: number;
|
|
146752
|
+
billingCenterId: number;
|
|
146753
|
+
createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146754
|
+
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146755
|
+
billingCenter?: {
|
|
146756
|
+
id: number;
|
|
146757
|
+
billingCenterName: string;
|
|
146758
|
+
customerId?: number | null | undefined;
|
|
146759
|
+
} | undefined;
|
|
146760
|
+
}[] | undefined;
|
|
146761
|
+
} | undefined;
|
|
146762
|
+
shipping?: {
|
|
146763
|
+
id: number;
|
|
146764
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146765
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146766
|
+
userId: number | null;
|
|
146767
|
+
billingCenterId: number | null;
|
|
146768
|
+
trackingMail: string | null;
|
|
146769
|
+
customerRef: string | null;
|
|
146770
|
+
pickupInstruction: string | null;
|
|
146771
|
+
deliveryInstruction: string | null;
|
|
146772
|
+
billContact: string | null;
|
|
146773
|
+
pickupTime: string | null;
|
|
146774
|
+
deliveryTime: string | null;
|
|
146775
|
+
ref: number | null;
|
|
146776
|
+
trackingNumber: string | null;
|
|
146777
|
+
classifications: string | null;
|
|
146778
|
+
userName: string | null;
|
|
146779
|
+
transportType: string | null;
|
|
146780
|
+
isDeleted: boolean | null;
|
|
146781
|
+
codeDonneur: string | null;
|
|
146782
|
+
codeReceveur: string | null;
|
|
146783
|
+
hasManifest: boolean;
|
|
146784
|
+
isOps: boolean;
|
|
146785
|
+
comment: string | null;
|
|
146786
|
+
createdFor: number | null;
|
|
146787
|
+
isArchived: boolean;
|
|
146788
|
+
isNeedArchive: boolean;
|
|
146789
|
+
isAnnulee: boolean;
|
|
146790
|
+
raison: string | null;
|
|
146791
|
+
color: string | null;
|
|
146792
|
+
docBordereaux: string | null;
|
|
146793
|
+
docAccompagnement: string | null;
|
|
146794
|
+
category: "course" | "all" | "import" | "export";
|
|
146795
|
+
typeExpedition: "expedition" | "course";
|
|
146796
|
+
driverId: number;
|
|
146797
|
+
typeDeRoue: string | null;
|
|
146798
|
+
isRecupererOps: boolean | null;
|
|
146799
|
+
isRemisOps: boolean | null;
|
|
146800
|
+
isRecupererChauffeur: boolean | null;
|
|
146801
|
+
isRemisChauffeur: boolean | null;
|
|
146802
|
+
lastCronRunAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
146803
|
+
devises: string | null;
|
|
146804
|
+
provenanceCommande: string | null;
|
|
146805
|
+
hasEmballage: boolean;
|
|
146806
|
+
pickupDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146807
|
+
deliveryDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146808
|
+
heureRecupererOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146809
|
+
heureRemisOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146810
|
+
heureRecupererChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146811
|
+
heureRemisChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146812
|
+
} | undefined;
|
|
146813
|
+
dateValidateOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
146814
|
+
}[];
|
|
146815
|
+
meta: {
|
|
146816
|
+
total: number;
|
|
146817
|
+
perPage: number;
|
|
146818
|
+
currentPage: number;
|
|
146819
|
+
lastPage: number;
|
|
146820
|
+
firstPage: number;
|
|
146821
|
+
firstPageUrl: string;
|
|
146822
|
+
lastPageUrl: string;
|
|
146823
|
+
nextPageUrl: string | null;
|
|
146824
|
+
previousPageUrl: string | null;
|
|
146825
|
+
};
|
|
146826
|
+
}, {
|
|
146827
|
+
data: {
|
|
146828
|
+
id: number;
|
|
146829
|
+
createdAt: Date;
|
|
146830
|
+
status: string | null;
|
|
146831
|
+
updatedAt: Date;
|
|
146832
|
+
isParis: boolean;
|
|
146833
|
+
isMedical: boolean;
|
|
146834
|
+
isService: boolean;
|
|
146835
|
+
userId: number;
|
|
146836
|
+
chauffeur: string;
|
|
146837
|
+
shippingId: number;
|
|
146838
|
+
dateTracking: Date;
|
|
146839
|
+
dateSuivi: string;
|
|
146840
|
+
heurSuivi: string;
|
|
146841
|
+
details: string;
|
|
146842
|
+
agents: string;
|
|
146843
|
+
visible: boolean;
|
|
146844
|
+
isTemplate: boolean;
|
|
146845
|
+
state: boolean;
|
|
146846
|
+
location: string | null;
|
|
146847
|
+
isDriver: boolean;
|
|
146848
|
+
userOpsId: number | null;
|
|
146849
|
+
user?: {
|
|
146850
|
+
id: number;
|
|
146851
|
+
createdAt: Date;
|
|
146852
|
+
updatedAt: Date;
|
|
146853
|
+
countryId: number | null;
|
|
146854
|
+
addressTwo: string;
|
|
146855
|
+
postalCode: string;
|
|
146856
|
+
city: string;
|
|
146857
|
+
telephoneOne: string;
|
|
146858
|
+
telephoneTwo: string;
|
|
146859
|
+
email: string;
|
|
146860
|
+
comments: string;
|
|
146861
|
+
numCodeOne: string;
|
|
146862
|
+
numCodeTwo: string;
|
|
146863
|
+
isActif: boolean;
|
|
146864
|
+
isParis: boolean;
|
|
146865
|
+
isMedical: boolean;
|
|
146866
|
+
isService: boolean;
|
|
146867
|
+
emailOne: string;
|
|
146868
|
+
emailTwo: string;
|
|
146869
|
+
addressOne: string;
|
|
146870
|
+
customerId: number;
|
|
146871
|
+
firstName: string;
|
|
146872
|
+
lastName: string;
|
|
146873
|
+
emailVerifiedAt: Date;
|
|
146874
|
+
password: string;
|
|
146875
|
+
poste: string;
|
|
146876
|
+
roles: string[];
|
|
146877
|
+
isOpsAdmin: boolean;
|
|
146878
|
+
civility: string;
|
|
146879
|
+
isShowCalculatrice: boolean;
|
|
146880
|
+
expedition: boolean;
|
|
146881
|
+
physicCompany: string;
|
|
146882
|
+
menus: string;
|
|
146883
|
+
ongletExpedition: string;
|
|
146884
|
+
chauffeurType: string;
|
|
146885
|
+
typeOfOps: string;
|
|
146886
|
+
prestation: string;
|
|
146887
|
+
tracking: string;
|
|
146888
|
+
expeditionCourse: string;
|
|
146889
|
+
carnetAddress: string;
|
|
146890
|
+
expeditionsCarnet: string;
|
|
146891
|
+
accessArchive: string;
|
|
146892
|
+
isShowImportMenu: boolean;
|
|
146893
|
+
isShowExportMenu: boolean;
|
|
146894
|
+
isShowCourseMenu: boolean;
|
|
146895
|
+
twoRoues: boolean;
|
|
146896
|
+
vt: boolean;
|
|
146897
|
+
lesTwo: boolean;
|
|
146898
|
+
isMiniTracking: boolean;
|
|
146899
|
+
isFullTracking: boolean;
|
|
146900
|
+
isShareCourseAndExpedition: boolean;
|
|
146901
|
+
isShareCarnetAdresse: boolean;
|
|
146902
|
+
isShareCarnetAdresseAndExpedition: boolean;
|
|
146903
|
+
isAccessAuxArchives: boolean;
|
|
146904
|
+
isShowInfo: boolean;
|
|
146905
|
+
photo: string | null;
|
|
146906
|
+
entreprisePhysique: string;
|
|
146907
|
+
isAdminChauffeur: boolean;
|
|
146908
|
+
isShowTracking: boolean;
|
|
146909
|
+
isSupportActivated: boolean;
|
|
146910
|
+
isClientTransitaire: boolean;
|
|
146911
|
+
vehiculeId: number;
|
|
146912
|
+
salaryId: number;
|
|
146913
|
+
country?: {
|
|
146914
|
+
id: number;
|
|
146915
|
+
createdAt: Date;
|
|
146916
|
+
code: string;
|
|
146917
|
+
updatedAt: Date;
|
|
146918
|
+
name: string;
|
|
146919
|
+
phoneCode: string;
|
|
146920
|
+
} | undefined;
|
|
146921
|
+
customer?: {
|
|
146922
|
+
id: number;
|
|
146923
|
+
createdAt: Date;
|
|
146924
|
+
updatedAt: Date;
|
|
146925
|
+
fullName: string;
|
|
146926
|
+
countryId: number;
|
|
146927
|
+
address: string;
|
|
146928
|
+
addressTwo: string | null;
|
|
146929
|
+
postalCode: string;
|
|
146930
|
+
city: string;
|
|
146931
|
+
telephoneOne: string;
|
|
146932
|
+
telephoneTwo: string | null;
|
|
146933
|
+
invoiceMail: string;
|
|
146934
|
+
dafResponsibleName: string;
|
|
146935
|
+
email: string | null;
|
|
146936
|
+
intraVatNumber: string | null;
|
|
146937
|
+
submittedToFrenchVat: boolean;
|
|
146938
|
+
siren: string;
|
|
146939
|
+
numeroEori: string | null;
|
|
146940
|
+
comments: string | null;
|
|
146941
|
+
numCodeOne: string | null;
|
|
146942
|
+
numCodeTwo: string | null;
|
|
146943
|
+
isActif: boolean;
|
|
146944
|
+
isParis: boolean;
|
|
146945
|
+
isMedical: boolean;
|
|
146946
|
+
isService: boolean;
|
|
146947
|
+
valeurCustomer: boolean;
|
|
146948
|
+
dirigeant: string | null;
|
|
146949
|
+
dirigeantTel: string | null;
|
|
146950
|
+
dirigeantEmail: string | null;
|
|
146951
|
+
responsableComptable: string | null;
|
|
146952
|
+
responsableComptableTel: string | null;
|
|
146953
|
+
responsableComptableEmail: string | null;
|
|
146954
|
+
responsableDaf: string | null;
|
|
146955
|
+
responsableDafTel: string | null;
|
|
146956
|
+
responsableDafEmail: string | null;
|
|
146957
|
+
emailFacturation: string | null;
|
|
146958
|
+
logo: string | null;
|
|
146959
|
+
header: string | null;
|
|
146960
|
+
footer: string | null;
|
|
146961
|
+
emailOne: string | null;
|
|
146962
|
+
emailTwo: string | null;
|
|
146963
|
+
emailThree: string | null;
|
|
146964
|
+
tva: string | null;
|
|
146965
|
+
isTrackingMail: boolean | null;
|
|
146966
|
+
isBillingCenter: boolean;
|
|
146967
|
+
isShowNameCustomer: boolean;
|
|
146968
|
+
isMailing: boolean;
|
|
146969
|
+
numeroSiret: string | null;
|
|
146970
|
+
country?: {
|
|
146971
|
+
id: number;
|
|
146972
|
+
createdAt: Date;
|
|
146973
|
+
code: string;
|
|
146974
|
+
updatedAt: Date;
|
|
146975
|
+
name: string;
|
|
146976
|
+
phoneCode: string;
|
|
146977
|
+
} | undefined;
|
|
146978
|
+
} | undefined;
|
|
146979
|
+
salary?: {
|
|
146980
|
+
id: number;
|
|
146981
|
+
createdAt: Date;
|
|
146982
|
+
type: string;
|
|
146983
|
+
updatedAt: Date;
|
|
146984
|
+
countryId: number | null;
|
|
146985
|
+
postalCode: string;
|
|
146986
|
+
city: string;
|
|
146987
|
+
email: string;
|
|
146988
|
+
nom: string;
|
|
146989
|
+
prenom: string;
|
|
146990
|
+
telephone: string;
|
|
146991
|
+
adress: string;
|
|
146992
|
+
country?: {
|
|
146993
|
+
id: number;
|
|
146994
|
+
createdAt: Date;
|
|
146995
|
+
code: string;
|
|
146996
|
+
updatedAt: Date;
|
|
146997
|
+
name: string;
|
|
146998
|
+
phoneCode: string;
|
|
146999
|
+
} | undefined;
|
|
147000
|
+
} | undefined;
|
|
147001
|
+
vehicule?: {
|
|
147002
|
+
id: number;
|
|
147003
|
+
createdAt: Date;
|
|
147004
|
+
updatedAt: Date;
|
|
147005
|
+
plaque: string;
|
|
147006
|
+
telephoneSociete: string;
|
|
147007
|
+
typeVehicule: string;
|
|
147008
|
+
kmDepart: number;
|
|
147009
|
+
kmRetour: number;
|
|
147010
|
+
pochetteRecu: boolean;
|
|
147011
|
+
carteCarburant: string;
|
|
147012
|
+
carteBancaire: string;
|
|
147013
|
+
bipTelepage: string;
|
|
147014
|
+
} | undefined;
|
|
147015
|
+
userBillingCenters?: {
|
|
147016
|
+
id: number;
|
|
147017
|
+
userId: number;
|
|
147018
|
+
billingCenterId: number;
|
|
147019
|
+
createdAt?: Date | undefined;
|
|
147020
|
+
updatedAt?: Date | undefined;
|
|
147021
|
+
billingCenter?: {
|
|
147022
|
+
id: number;
|
|
147023
|
+
billingCenterName: string;
|
|
147024
|
+
customerId?: number | null | undefined;
|
|
147025
|
+
} | undefined;
|
|
147026
|
+
}[] | undefined;
|
|
147027
|
+
} | undefined;
|
|
147028
|
+
shipping?: {
|
|
147029
|
+
id: number;
|
|
147030
|
+
createdAt: Date;
|
|
147031
|
+
updatedAt: Date;
|
|
147032
|
+
userId: number | null;
|
|
147033
|
+
billingCenterId: number | null;
|
|
147034
|
+
trackingMail: string | null;
|
|
147035
|
+
customerRef: string | null;
|
|
147036
|
+
pickupInstruction: string | null;
|
|
147037
|
+
deliveryInstruction: string | null;
|
|
147038
|
+
billContact: string | null;
|
|
147039
|
+
pickupTime: string | null;
|
|
147040
|
+
deliveryTime: string | null;
|
|
147041
|
+
ref: number | null;
|
|
147042
|
+
trackingNumber: string | null;
|
|
147043
|
+
classifications: string | null;
|
|
147044
|
+
userName: string | null;
|
|
147045
|
+
transportType: string | null;
|
|
147046
|
+
isDeleted: boolean | null;
|
|
147047
|
+
codeDonneur: string | null;
|
|
147048
|
+
codeReceveur: string | null;
|
|
147049
|
+
hasManifest: boolean;
|
|
147050
|
+
isOps: boolean;
|
|
147051
|
+
comment: string | null;
|
|
147052
|
+
createdFor: number | null;
|
|
147053
|
+
isArchived: boolean;
|
|
147054
|
+
isNeedArchive: boolean;
|
|
147055
|
+
isAnnulee: boolean;
|
|
147056
|
+
raison: string | null;
|
|
147057
|
+
color: string | null;
|
|
147058
|
+
docBordereaux: string | null;
|
|
147059
|
+
docAccompagnement: string | null;
|
|
147060
|
+
category: "course" | "all" | "import" | "export";
|
|
147061
|
+
typeExpedition: "expedition" | "course";
|
|
147062
|
+
driverId: number;
|
|
147063
|
+
typeDeRoue: string | null;
|
|
147064
|
+
isRecupererOps: boolean | null;
|
|
147065
|
+
isRemisOps: boolean | null;
|
|
147066
|
+
isRecupererChauffeur: boolean | null;
|
|
147067
|
+
isRemisChauffeur: boolean | null;
|
|
147068
|
+
lastCronRunAt: Date;
|
|
147069
|
+
devises: string | null;
|
|
147070
|
+
provenanceCommande: string | null;
|
|
147071
|
+
hasEmballage: boolean;
|
|
147072
|
+
pickupDate?: Date | undefined;
|
|
147073
|
+
deliveryDate?: Date | undefined;
|
|
147074
|
+
heureRecupererOps?: Date | undefined;
|
|
147075
|
+
heureRemisOps?: Date | undefined;
|
|
147076
|
+
heureRecupererChauffeur?: Date | undefined;
|
|
147077
|
+
heureRemisChauffeur?: Date | undefined;
|
|
147078
|
+
} | undefined;
|
|
147079
|
+
dateValidateOps?: Date | undefined;
|
|
147080
|
+
}[];
|
|
147081
|
+
meta: {
|
|
147082
|
+
total: number;
|
|
147083
|
+
perPage: number;
|
|
147084
|
+
currentPage: number;
|
|
147085
|
+
lastPage: number;
|
|
147086
|
+
firstPage: number;
|
|
147087
|
+
firstPageUrl: string;
|
|
147088
|
+
lastPageUrl: string;
|
|
147089
|
+
nextPageUrl: string | null;
|
|
147090
|
+
previousPageUrl: string | null;
|
|
147091
|
+
};
|
|
147092
|
+
}>;
|
|
147093
|
+
message: z.ZodOptional<z.ZodString>;
|
|
147094
|
+
status: z.ZodOptional<z.ZodNumber>;
|
|
147095
|
+
error: z.ZodOptional<z.ZodNever>;
|
|
147096
|
+
success: z.ZodLiteral<true>;
|
|
147097
|
+
}, "strip", z.ZodTypeAny, {
|
|
147098
|
+
data: {
|
|
147099
|
+
data: {
|
|
147100
|
+
id: number;
|
|
147101
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147102
|
+
status: string | null;
|
|
147103
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147104
|
+
isParis: boolean;
|
|
147105
|
+
isMedical: boolean;
|
|
147106
|
+
isService: boolean;
|
|
147107
|
+
userId: number;
|
|
147108
|
+
chauffeur: string;
|
|
147109
|
+
shippingId: number;
|
|
147110
|
+
dateTracking: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147111
|
+
dateSuivi: string;
|
|
147112
|
+
heurSuivi: string;
|
|
147113
|
+
details: string;
|
|
147114
|
+
agents: string;
|
|
147115
|
+
visible: boolean;
|
|
147116
|
+
isTemplate: boolean;
|
|
147117
|
+
state: boolean;
|
|
147118
|
+
location: string | null;
|
|
147119
|
+
isDriver: boolean;
|
|
147120
|
+
userOpsId: number | null;
|
|
147121
|
+
user?: {
|
|
147122
|
+
id: number;
|
|
147123
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147124
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147125
|
+
countryId: number | null;
|
|
147126
|
+
addressTwo: string;
|
|
147127
|
+
postalCode: string;
|
|
147128
|
+
city: string;
|
|
147129
|
+
telephoneOne: string;
|
|
147130
|
+
telephoneTwo: string;
|
|
147131
|
+
email: string;
|
|
147132
|
+
comments: string;
|
|
147133
|
+
numCodeOne: string;
|
|
147134
|
+
numCodeTwo: string;
|
|
147135
|
+
isActif: boolean;
|
|
147136
|
+
isParis: boolean;
|
|
147137
|
+
isMedical: boolean;
|
|
147138
|
+
isService: boolean;
|
|
147139
|
+
emailOne: string;
|
|
147140
|
+
emailTwo: string;
|
|
147141
|
+
addressOne: string;
|
|
147142
|
+
customerId: number;
|
|
147143
|
+
firstName: string;
|
|
147144
|
+
lastName: string;
|
|
147145
|
+
emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147146
|
+
password: string;
|
|
147147
|
+
poste: string;
|
|
147148
|
+
roles: string[];
|
|
147149
|
+
isOpsAdmin: boolean;
|
|
147150
|
+
civility: string;
|
|
147151
|
+
isShowCalculatrice: boolean;
|
|
147152
|
+
expedition: boolean;
|
|
147153
|
+
physicCompany: string;
|
|
147154
|
+
menus: string;
|
|
147155
|
+
ongletExpedition: string;
|
|
147156
|
+
chauffeurType: string;
|
|
147157
|
+
typeOfOps: string;
|
|
147158
|
+
prestation: string;
|
|
147159
|
+
tracking: string;
|
|
147160
|
+
expeditionCourse: string;
|
|
147161
|
+
carnetAddress: string;
|
|
147162
|
+
expeditionsCarnet: string;
|
|
147163
|
+
accessArchive: string;
|
|
147164
|
+
isShowImportMenu: boolean;
|
|
147165
|
+
isShowExportMenu: boolean;
|
|
147166
|
+
isShowCourseMenu: boolean;
|
|
147167
|
+
twoRoues: boolean;
|
|
147168
|
+
vt: boolean;
|
|
147169
|
+
lesTwo: boolean;
|
|
147170
|
+
isMiniTracking: boolean;
|
|
147171
|
+
isFullTracking: boolean;
|
|
147172
|
+
isShareCourseAndExpedition: boolean;
|
|
147173
|
+
isShareCarnetAdresse: boolean;
|
|
147174
|
+
isShareCarnetAdresseAndExpedition: boolean;
|
|
147175
|
+
isAccessAuxArchives: boolean;
|
|
147176
|
+
isShowInfo: boolean;
|
|
147177
|
+
photo: string | null;
|
|
147178
|
+
entreprisePhysique: string;
|
|
147179
|
+
isAdminChauffeur: boolean;
|
|
147180
|
+
isShowTracking: boolean;
|
|
147181
|
+
isSupportActivated: boolean;
|
|
147182
|
+
isClientTransitaire: boolean;
|
|
147183
|
+
vehiculeId: number;
|
|
147184
|
+
salaryId: number;
|
|
147185
|
+
country?: {
|
|
147186
|
+
id: number;
|
|
147187
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147188
|
+
code: string;
|
|
147189
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147190
|
+
name: string;
|
|
147191
|
+
phoneCode: string;
|
|
147192
|
+
} | undefined;
|
|
147193
|
+
customer?: {
|
|
147194
|
+
id: number;
|
|
147195
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147196
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147197
|
+
fullName: string;
|
|
147198
|
+
countryId: number;
|
|
147199
|
+
address: string;
|
|
147200
|
+
addressTwo: string | null;
|
|
147201
|
+
postalCode: string;
|
|
147202
|
+
city: string;
|
|
147203
|
+
telephoneOne: string;
|
|
147204
|
+
telephoneTwo: string | null;
|
|
147205
|
+
invoiceMail: string;
|
|
147206
|
+
dafResponsibleName: string;
|
|
147207
|
+
email: string | null;
|
|
147208
|
+
intraVatNumber: string | null;
|
|
147209
|
+
submittedToFrenchVat: boolean;
|
|
147210
|
+
siren: string;
|
|
147211
|
+
numeroEori: string | null;
|
|
147212
|
+
comments: string | null;
|
|
147213
|
+
numCodeOne: string | null;
|
|
147214
|
+
numCodeTwo: string | null;
|
|
147215
|
+
isActif: boolean;
|
|
147216
|
+
isParis: boolean;
|
|
147217
|
+
isMedical: boolean;
|
|
147218
|
+
isService: boolean;
|
|
147219
|
+
valeurCustomer: boolean;
|
|
147220
|
+
dirigeant: string | null;
|
|
147221
|
+
dirigeantTel: string | null;
|
|
147222
|
+
dirigeantEmail: string | null;
|
|
147223
|
+
responsableComptable: string | null;
|
|
147224
|
+
responsableComptableTel: string | null;
|
|
147225
|
+
responsableComptableEmail: string | null;
|
|
147226
|
+
responsableDaf: string | null;
|
|
147227
|
+
responsableDafTel: string | null;
|
|
147228
|
+
responsableDafEmail: string | null;
|
|
147229
|
+
emailFacturation: string | null;
|
|
147230
|
+
logo: string | null;
|
|
147231
|
+
header: string | null;
|
|
147232
|
+
footer: string | null;
|
|
147233
|
+
emailOne: string | null;
|
|
147234
|
+
emailTwo: string | null;
|
|
147235
|
+
emailThree: string | null;
|
|
147236
|
+
tva: string | null;
|
|
147237
|
+
isTrackingMail: boolean | null;
|
|
147238
|
+
isBillingCenter: boolean;
|
|
147239
|
+
isShowNameCustomer: boolean;
|
|
147240
|
+
isMailing: boolean;
|
|
147241
|
+
numeroSiret: string | null;
|
|
147242
|
+
country?: {
|
|
147243
|
+
id: number;
|
|
147244
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147245
|
+
code: string;
|
|
147246
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147247
|
+
name: string;
|
|
147248
|
+
phoneCode: string;
|
|
147249
|
+
} | undefined;
|
|
147250
|
+
} | undefined;
|
|
147251
|
+
salary?: {
|
|
147252
|
+
id: number;
|
|
147253
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147254
|
+
type: string;
|
|
147255
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147256
|
+
countryId: number | null;
|
|
147257
|
+
postalCode: string;
|
|
147258
|
+
city: string;
|
|
147259
|
+
email: string;
|
|
147260
|
+
nom: string;
|
|
147261
|
+
prenom: string;
|
|
147262
|
+
telephone: string;
|
|
147263
|
+
adress: string;
|
|
147264
|
+
country?: {
|
|
147265
|
+
id: number;
|
|
147266
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147267
|
+
code: string;
|
|
147268
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147269
|
+
name: string;
|
|
147270
|
+
phoneCode: string;
|
|
147271
|
+
} | undefined;
|
|
147272
|
+
} | undefined;
|
|
147273
|
+
vehicule?: {
|
|
147274
|
+
id: number;
|
|
147275
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147276
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147277
|
+
plaque: string;
|
|
147278
|
+
telephoneSociete: string;
|
|
147279
|
+
typeVehicule: string;
|
|
147280
|
+
kmDepart: number;
|
|
147281
|
+
kmRetour: number;
|
|
147282
|
+
pochetteRecu: boolean;
|
|
147283
|
+
carteCarburant: string;
|
|
147284
|
+
carteBancaire: string;
|
|
147285
|
+
bipTelepage: string;
|
|
147286
|
+
} | undefined;
|
|
147287
|
+
userBillingCenters?: {
|
|
147288
|
+
id: number;
|
|
147289
|
+
userId: number;
|
|
147290
|
+
billingCenterId: number;
|
|
147291
|
+
createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
147292
|
+
updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
147293
|
+
billingCenter?: {
|
|
147294
|
+
id: number;
|
|
147295
|
+
billingCenterName: string;
|
|
147296
|
+
customerId?: number | null | undefined;
|
|
147297
|
+
} | undefined;
|
|
147298
|
+
}[] | undefined;
|
|
147299
|
+
} | undefined;
|
|
147300
|
+
shipping?: {
|
|
147301
|
+
id: number;
|
|
147302
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147303
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147304
|
+
userId: number | null;
|
|
147305
|
+
billingCenterId: number | null;
|
|
147306
|
+
trackingMail: string | null;
|
|
147307
|
+
customerRef: string | null;
|
|
147308
|
+
pickupInstruction: string | null;
|
|
147309
|
+
deliveryInstruction: string | null;
|
|
147310
|
+
billContact: string | null;
|
|
147311
|
+
pickupTime: string | null;
|
|
147312
|
+
deliveryTime: string | null;
|
|
147313
|
+
ref: number | null;
|
|
147314
|
+
trackingNumber: string | null;
|
|
147315
|
+
classifications: string | null;
|
|
147316
|
+
userName: string | null;
|
|
147317
|
+
transportType: string | null;
|
|
147318
|
+
isDeleted: boolean | null;
|
|
147319
|
+
codeDonneur: string | null;
|
|
147320
|
+
codeReceveur: string | null;
|
|
147321
|
+
hasManifest: boolean;
|
|
147322
|
+
isOps: boolean;
|
|
147323
|
+
comment: string | null;
|
|
147324
|
+
createdFor: number | null;
|
|
147325
|
+
isArchived: boolean;
|
|
147326
|
+
isNeedArchive: boolean;
|
|
147327
|
+
isAnnulee: boolean;
|
|
147328
|
+
raison: string | null;
|
|
147329
|
+
color: string | null;
|
|
147330
|
+
docBordereaux: string | null;
|
|
147331
|
+
docAccompagnement: string | null;
|
|
147332
|
+
category: "course" | "all" | "import" | "export";
|
|
147333
|
+
typeExpedition: "expedition" | "course";
|
|
147334
|
+
driverId: number;
|
|
147335
|
+
typeDeRoue: string | null;
|
|
147336
|
+
isRecupererOps: boolean | null;
|
|
147337
|
+
isRemisOps: boolean | null;
|
|
147338
|
+
isRecupererChauffeur: boolean | null;
|
|
147339
|
+
isRemisChauffeur: boolean | null;
|
|
147340
|
+
lastCronRunAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
147341
|
+
devises: string | null;
|
|
147342
|
+
provenanceCommande: string | null;
|
|
147343
|
+
hasEmballage: boolean;
|
|
147344
|
+
pickupDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
147345
|
+
deliveryDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
147346
|
+
heureRecupererOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
147347
|
+
heureRemisOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
147348
|
+
heureRecupererChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
147349
|
+
heureRemisChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
147350
|
+
} | undefined;
|
|
147351
|
+
dateValidateOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
147352
|
+
}[];
|
|
147353
|
+
meta: {
|
|
147354
|
+
total: number;
|
|
147355
|
+
perPage: number;
|
|
147356
|
+
currentPage: number;
|
|
147357
|
+
lastPage: number;
|
|
147358
|
+
firstPage: number;
|
|
147359
|
+
firstPageUrl: string;
|
|
147360
|
+
lastPageUrl: string;
|
|
147361
|
+
nextPageUrl: string | null;
|
|
147362
|
+
previousPageUrl: string | null;
|
|
147363
|
+
};
|
|
147364
|
+
};
|
|
147365
|
+
success: true;
|
|
147366
|
+
status?: number | undefined;
|
|
147367
|
+
message?: string | undefined;
|
|
147368
|
+
error?: undefined;
|
|
147369
|
+
}, {
|
|
147370
|
+
data: {
|
|
147371
|
+
data: {
|
|
147372
|
+
id: number;
|
|
147373
|
+
createdAt: Date;
|
|
147374
|
+
status: string | null;
|
|
147375
|
+
updatedAt: Date;
|
|
147376
|
+
isParis: boolean;
|
|
147377
|
+
isMedical: boolean;
|
|
147378
|
+
isService: boolean;
|
|
147379
|
+
userId: number;
|
|
147380
|
+
chauffeur: string;
|
|
147381
|
+
shippingId: number;
|
|
147382
|
+
dateTracking: Date;
|
|
147383
|
+
dateSuivi: string;
|
|
147384
|
+
heurSuivi: string;
|
|
147385
|
+
details: string;
|
|
147386
|
+
agents: string;
|
|
147387
|
+
visible: boolean;
|
|
147388
|
+
isTemplate: boolean;
|
|
147389
|
+
state: boolean;
|
|
147390
|
+
location: string | null;
|
|
147391
|
+
isDriver: boolean;
|
|
147392
|
+
userOpsId: number | null;
|
|
147393
|
+
user?: {
|
|
147394
|
+
id: number;
|
|
147395
|
+
createdAt: Date;
|
|
147396
|
+
updatedAt: Date;
|
|
147397
|
+
countryId: number | null;
|
|
147398
|
+
addressTwo: string;
|
|
147399
|
+
postalCode: string;
|
|
147400
|
+
city: string;
|
|
147401
|
+
telephoneOne: string;
|
|
147402
|
+
telephoneTwo: string;
|
|
147403
|
+
email: string;
|
|
147404
|
+
comments: string;
|
|
147405
|
+
numCodeOne: string;
|
|
147406
|
+
numCodeTwo: string;
|
|
147407
|
+
isActif: boolean;
|
|
147408
|
+
isParis: boolean;
|
|
147409
|
+
isMedical: boolean;
|
|
147410
|
+
isService: boolean;
|
|
147411
|
+
emailOne: string;
|
|
147412
|
+
emailTwo: string;
|
|
147413
|
+
addressOne: string;
|
|
147414
|
+
customerId: number;
|
|
147415
|
+
firstName: string;
|
|
147416
|
+
lastName: string;
|
|
147417
|
+
emailVerifiedAt: Date;
|
|
147418
|
+
password: string;
|
|
147419
|
+
poste: string;
|
|
147420
|
+
roles: string[];
|
|
147421
|
+
isOpsAdmin: boolean;
|
|
147422
|
+
civility: string;
|
|
147423
|
+
isShowCalculatrice: boolean;
|
|
147424
|
+
expedition: boolean;
|
|
147425
|
+
physicCompany: string;
|
|
147426
|
+
menus: string;
|
|
147427
|
+
ongletExpedition: string;
|
|
147428
|
+
chauffeurType: string;
|
|
147429
|
+
typeOfOps: string;
|
|
147430
|
+
prestation: string;
|
|
147431
|
+
tracking: string;
|
|
147432
|
+
expeditionCourse: string;
|
|
147433
|
+
carnetAddress: string;
|
|
147434
|
+
expeditionsCarnet: string;
|
|
147435
|
+
accessArchive: string;
|
|
147436
|
+
isShowImportMenu: boolean;
|
|
147437
|
+
isShowExportMenu: boolean;
|
|
147438
|
+
isShowCourseMenu: boolean;
|
|
147439
|
+
twoRoues: boolean;
|
|
147440
|
+
vt: boolean;
|
|
147441
|
+
lesTwo: boolean;
|
|
147442
|
+
isMiniTracking: boolean;
|
|
147443
|
+
isFullTracking: boolean;
|
|
147444
|
+
isShareCourseAndExpedition: boolean;
|
|
147445
|
+
isShareCarnetAdresse: boolean;
|
|
147446
|
+
isShareCarnetAdresseAndExpedition: boolean;
|
|
147447
|
+
isAccessAuxArchives: boolean;
|
|
147448
|
+
isShowInfo: boolean;
|
|
147449
|
+
photo: string | null;
|
|
147450
|
+
entreprisePhysique: string;
|
|
147451
|
+
isAdminChauffeur: boolean;
|
|
147452
|
+
isShowTracking: boolean;
|
|
147453
|
+
isSupportActivated: boolean;
|
|
147454
|
+
isClientTransitaire: boolean;
|
|
147455
|
+
vehiculeId: number;
|
|
147456
|
+
salaryId: number;
|
|
147457
|
+
country?: {
|
|
147458
|
+
id: number;
|
|
147459
|
+
createdAt: Date;
|
|
147460
|
+
code: string;
|
|
147461
|
+
updatedAt: Date;
|
|
147462
|
+
name: string;
|
|
147463
|
+
phoneCode: string;
|
|
147464
|
+
} | undefined;
|
|
147465
|
+
customer?: {
|
|
147466
|
+
id: number;
|
|
147467
|
+
createdAt: Date;
|
|
147468
|
+
updatedAt: Date;
|
|
147469
|
+
fullName: string;
|
|
147470
|
+
countryId: number;
|
|
147471
|
+
address: string;
|
|
147472
|
+
addressTwo: string | null;
|
|
147473
|
+
postalCode: string;
|
|
147474
|
+
city: string;
|
|
147475
|
+
telephoneOne: string;
|
|
147476
|
+
telephoneTwo: string | null;
|
|
147477
|
+
invoiceMail: string;
|
|
147478
|
+
dafResponsibleName: string;
|
|
147479
|
+
email: string | null;
|
|
147480
|
+
intraVatNumber: string | null;
|
|
147481
|
+
submittedToFrenchVat: boolean;
|
|
147482
|
+
siren: string;
|
|
147483
|
+
numeroEori: string | null;
|
|
147484
|
+
comments: string | null;
|
|
147485
|
+
numCodeOne: string | null;
|
|
147486
|
+
numCodeTwo: string | null;
|
|
147487
|
+
isActif: boolean;
|
|
147488
|
+
isParis: boolean;
|
|
147489
|
+
isMedical: boolean;
|
|
147490
|
+
isService: boolean;
|
|
147491
|
+
valeurCustomer: boolean;
|
|
147492
|
+
dirigeant: string | null;
|
|
147493
|
+
dirigeantTel: string | null;
|
|
147494
|
+
dirigeantEmail: string | null;
|
|
147495
|
+
responsableComptable: string | null;
|
|
147496
|
+
responsableComptableTel: string | null;
|
|
147497
|
+
responsableComptableEmail: string | null;
|
|
147498
|
+
responsableDaf: string | null;
|
|
147499
|
+
responsableDafTel: string | null;
|
|
147500
|
+
responsableDafEmail: string | null;
|
|
147501
|
+
emailFacturation: string | null;
|
|
147502
|
+
logo: string | null;
|
|
147503
|
+
header: string | null;
|
|
147504
|
+
footer: string | null;
|
|
147505
|
+
emailOne: string | null;
|
|
147506
|
+
emailTwo: string | null;
|
|
147507
|
+
emailThree: string | null;
|
|
147508
|
+
tva: string | null;
|
|
147509
|
+
isTrackingMail: boolean | null;
|
|
147510
|
+
isBillingCenter: boolean;
|
|
147511
|
+
isShowNameCustomer: boolean;
|
|
147512
|
+
isMailing: boolean;
|
|
147513
|
+
numeroSiret: string | null;
|
|
147514
|
+
country?: {
|
|
147515
|
+
id: number;
|
|
147516
|
+
createdAt: Date;
|
|
147517
|
+
code: string;
|
|
147518
|
+
updatedAt: Date;
|
|
147519
|
+
name: string;
|
|
147520
|
+
phoneCode: string;
|
|
147521
|
+
} | undefined;
|
|
147522
|
+
} | undefined;
|
|
147523
|
+
salary?: {
|
|
147524
|
+
id: number;
|
|
147525
|
+
createdAt: Date;
|
|
147526
|
+
type: string;
|
|
147527
|
+
updatedAt: Date;
|
|
147528
|
+
countryId: number | null;
|
|
147529
|
+
postalCode: string;
|
|
147530
|
+
city: string;
|
|
147531
|
+
email: string;
|
|
147532
|
+
nom: string;
|
|
147533
|
+
prenom: string;
|
|
147534
|
+
telephone: string;
|
|
147535
|
+
adress: string;
|
|
147536
|
+
country?: {
|
|
147537
|
+
id: number;
|
|
147538
|
+
createdAt: Date;
|
|
147539
|
+
code: string;
|
|
147540
|
+
updatedAt: Date;
|
|
147541
|
+
name: string;
|
|
147542
|
+
phoneCode: string;
|
|
147543
|
+
} | undefined;
|
|
147544
|
+
} | undefined;
|
|
147545
|
+
vehicule?: {
|
|
147546
|
+
id: number;
|
|
147547
|
+
createdAt: Date;
|
|
147548
|
+
updatedAt: Date;
|
|
147549
|
+
plaque: string;
|
|
147550
|
+
telephoneSociete: string;
|
|
147551
|
+
typeVehicule: string;
|
|
147552
|
+
kmDepart: number;
|
|
147553
|
+
kmRetour: number;
|
|
147554
|
+
pochetteRecu: boolean;
|
|
147555
|
+
carteCarburant: string;
|
|
147556
|
+
carteBancaire: string;
|
|
147557
|
+
bipTelepage: string;
|
|
147558
|
+
} | undefined;
|
|
147559
|
+
userBillingCenters?: {
|
|
147560
|
+
id: number;
|
|
147561
|
+
userId: number;
|
|
147562
|
+
billingCenterId: number;
|
|
147563
|
+
createdAt?: Date | undefined;
|
|
147564
|
+
updatedAt?: Date | undefined;
|
|
147565
|
+
billingCenter?: {
|
|
147566
|
+
id: number;
|
|
147567
|
+
billingCenterName: string;
|
|
147568
|
+
customerId?: number | null | undefined;
|
|
147569
|
+
} | undefined;
|
|
147570
|
+
}[] | undefined;
|
|
147571
|
+
} | undefined;
|
|
147572
|
+
shipping?: {
|
|
147573
|
+
id: number;
|
|
147574
|
+
createdAt: Date;
|
|
147575
|
+
updatedAt: Date;
|
|
147576
|
+
userId: number | null;
|
|
147577
|
+
billingCenterId: number | null;
|
|
147578
|
+
trackingMail: string | null;
|
|
147579
|
+
customerRef: string | null;
|
|
147580
|
+
pickupInstruction: string | null;
|
|
147581
|
+
deliveryInstruction: string | null;
|
|
147582
|
+
billContact: string | null;
|
|
147583
|
+
pickupTime: string | null;
|
|
147584
|
+
deliveryTime: string | null;
|
|
147585
|
+
ref: number | null;
|
|
147586
|
+
trackingNumber: string | null;
|
|
147587
|
+
classifications: string | null;
|
|
147588
|
+
userName: string | null;
|
|
147589
|
+
transportType: string | null;
|
|
147590
|
+
isDeleted: boolean | null;
|
|
147591
|
+
codeDonneur: string | null;
|
|
147592
|
+
codeReceveur: string | null;
|
|
147593
|
+
hasManifest: boolean;
|
|
147594
|
+
isOps: boolean;
|
|
147595
|
+
comment: string | null;
|
|
147596
|
+
createdFor: number | null;
|
|
147597
|
+
isArchived: boolean;
|
|
147598
|
+
isNeedArchive: boolean;
|
|
147599
|
+
isAnnulee: boolean;
|
|
147600
|
+
raison: string | null;
|
|
147601
|
+
color: string | null;
|
|
147602
|
+
docBordereaux: string | null;
|
|
147603
|
+
docAccompagnement: string | null;
|
|
147604
|
+
category: "course" | "all" | "import" | "export";
|
|
147605
|
+
typeExpedition: "expedition" | "course";
|
|
147606
|
+
driverId: number;
|
|
147607
|
+
typeDeRoue: string | null;
|
|
147608
|
+
isRecupererOps: boolean | null;
|
|
147609
|
+
isRemisOps: boolean | null;
|
|
147610
|
+
isRecupererChauffeur: boolean | null;
|
|
147611
|
+
isRemisChauffeur: boolean | null;
|
|
147612
|
+
lastCronRunAt: Date;
|
|
147613
|
+
devises: string | null;
|
|
147614
|
+
provenanceCommande: string | null;
|
|
147615
|
+
hasEmballage: boolean;
|
|
147616
|
+
pickupDate?: Date | undefined;
|
|
147617
|
+
deliveryDate?: Date | undefined;
|
|
147618
|
+
heureRecupererOps?: Date | undefined;
|
|
147619
|
+
heureRemisOps?: Date | undefined;
|
|
147620
|
+
heureRecupererChauffeur?: Date | undefined;
|
|
147621
|
+
heureRemisChauffeur?: Date | undefined;
|
|
147622
|
+
} | undefined;
|
|
147623
|
+
dateValidateOps?: Date | undefined;
|
|
147624
|
+
}[];
|
|
147625
|
+
meta: {
|
|
147626
|
+
total: number;
|
|
147627
|
+
perPage: number;
|
|
147628
|
+
currentPage: number;
|
|
147629
|
+
lastPage: number;
|
|
147630
|
+
firstPage: number;
|
|
147631
|
+
firstPageUrl: string;
|
|
147632
|
+
lastPageUrl: string;
|
|
147633
|
+
nextPageUrl: string | null;
|
|
147634
|
+
previousPageUrl: string | null;
|
|
147635
|
+
};
|
|
147636
|
+
};
|
|
147637
|
+
success: true;
|
|
147638
|
+
status?: number | undefined;
|
|
147639
|
+
message?: string | undefined;
|
|
147640
|
+
error?: undefined;
|
|
147641
|
+
}>, z.ZodObject<{
|
|
147642
|
+
data: z.ZodNever;
|
|
147643
|
+
message: z.ZodString;
|
|
147644
|
+
status: z.ZodOptional<z.ZodNumber>;
|
|
147645
|
+
error: z.ZodObject<{
|
|
147646
|
+
message: z.ZodString;
|
|
147647
|
+
info: z.ZodObject<{
|
|
147648
|
+
status: z.ZodNumber;
|
|
147649
|
+
code: z.ZodString;
|
|
147650
|
+
messages: z.ZodArray<z.ZodObject<{
|
|
147651
|
+
message: z.ZodString;
|
|
147652
|
+
rule: z.ZodOptional<z.ZodString>;
|
|
147653
|
+
field: z.ZodOptional<z.ZodString>;
|
|
147654
|
+
}, "strip", z.ZodTypeAny, {
|
|
147655
|
+
message: string;
|
|
147656
|
+
rule?: string | undefined;
|
|
147657
|
+
field?: string | undefined;
|
|
147658
|
+
}, {
|
|
147659
|
+
message: string;
|
|
147660
|
+
rule?: string | undefined;
|
|
147661
|
+
field?: string | undefined;
|
|
147662
|
+
}>, "many">;
|
|
147663
|
+
}, "strip", z.ZodTypeAny, {
|
|
147664
|
+
status: number;
|
|
147665
|
+
code: string;
|
|
147666
|
+
messages: {
|
|
147667
|
+
message: string;
|
|
147668
|
+
rule?: string | undefined;
|
|
147669
|
+
field?: string | undefined;
|
|
147670
|
+
}[];
|
|
147671
|
+
}, {
|
|
147672
|
+
status: number;
|
|
147673
|
+
code: string;
|
|
147674
|
+
messages: {
|
|
147675
|
+
message: string;
|
|
147676
|
+
rule?: string | undefined;
|
|
147677
|
+
field?: string | undefined;
|
|
147678
|
+
}[];
|
|
147679
|
+
}>;
|
|
147680
|
+
}, "strip", z.ZodTypeAny, {
|
|
147681
|
+
message: string;
|
|
147682
|
+
info: {
|
|
147683
|
+
status: number;
|
|
147684
|
+
code: string;
|
|
147685
|
+
messages: {
|
|
147686
|
+
message: string;
|
|
147687
|
+
rule?: string | undefined;
|
|
147688
|
+
field?: string | undefined;
|
|
147689
|
+
}[];
|
|
147690
|
+
};
|
|
147691
|
+
}, {
|
|
147692
|
+
message: string;
|
|
147693
|
+
info: {
|
|
147694
|
+
status: number;
|
|
147695
|
+
code: string;
|
|
147696
|
+
messages: {
|
|
147697
|
+
message: string;
|
|
147698
|
+
rule?: string | undefined;
|
|
147699
|
+
field?: string | undefined;
|
|
147700
|
+
}[];
|
|
147701
|
+
};
|
|
147702
|
+
}>;
|
|
147703
|
+
success: z.ZodNever;
|
|
147704
|
+
}, "strip", z.ZodTypeAny, {
|
|
147705
|
+
message: string;
|
|
147706
|
+
data: never;
|
|
147707
|
+
error: {
|
|
147708
|
+
message: string;
|
|
147709
|
+
info: {
|
|
147710
|
+
status: number;
|
|
147711
|
+
code: string;
|
|
147712
|
+
messages: {
|
|
147713
|
+
message: string;
|
|
147714
|
+
rule?: string | undefined;
|
|
147715
|
+
field?: string | undefined;
|
|
147716
|
+
}[];
|
|
147717
|
+
};
|
|
147718
|
+
};
|
|
147719
|
+
success: never;
|
|
147720
|
+
status?: number | undefined;
|
|
147721
|
+
}, {
|
|
147722
|
+
message: string;
|
|
147723
|
+
data: never;
|
|
147724
|
+
error: {
|
|
147725
|
+
message: string;
|
|
147726
|
+
info: {
|
|
147727
|
+
status: number;
|
|
147728
|
+
code: string;
|
|
147729
|
+
messages: {
|
|
147730
|
+
message: string;
|
|
147731
|
+
rule?: string | undefined;
|
|
147732
|
+
field?: string | undefined;
|
|
147733
|
+
}[];
|
|
147734
|
+
};
|
|
147735
|
+
};
|
|
147736
|
+
success: never;
|
|
147737
|
+
status?: number | undefined;
|
|
147738
|
+
}>]>;
|
|
147739
|
+
};
|
|
147740
|
+
};
|
|
145049
147741
|
declare const countryRoutes: {
|
|
145050
147742
|
liste: {
|
|
145051
147743
|
method: "GET";
|
|
@@ -170650,6 +173342,7 @@ export declare const opsRoutes: {
|
|
|
170650
173342
|
fuel: typeof fuelRoutes;
|
|
170651
173343
|
manifest: typeof manifestRoutes;
|
|
170652
173344
|
shippingManifest: typeof shippingManifestRoutes;
|
|
173345
|
+
shippingTracking: typeof shippingTrackingRoutes;
|
|
170653
173346
|
country: typeof countryRoutes;
|
|
170654
173347
|
contact: typeof contactRoutes;
|
|
170655
173348
|
supportTicket: typeof supportTicketRoutes;
|