exnet-routing 1.2.48 → 1.2.50

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.
@@ -145046,6 +145046,4394 @@ 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
+ };
147741
+ declare const userDriverRoutes: {
147742
+ liste: {
147743
+ method: "GET";
147744
+ url: string;
147745
+ searchParams: z.ZodObject<{
147746
+ page: z.ZodOptional<z.ZodNumber>;
147747
+ limit: z.ZodOptional<z.ZodNumber>;
147748
+ search: z.ZodOptional<z.ZodString>;
147749
+ sortBy: z.ZodOptional<z.ZodString>;
147750
+ direction: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
147751
+ }, "strip", z.ZodTypeAny, {
147752
+ page?: number | undefined;
147753
+ limit?: number | undefined;
147754
+ search?: string | undefined;
147755
+ sortBy?: string | undefined;
147756
+ direction?: "asc" | "desc" | undefined;
147757
+ }, {
147758
+ page?: number | undefined;
147759
+ limit?: number | undefined;
147760
+ search?: string | undefined;
147761
+ sortBy?: string | undefined;
147762
+ direction?: "asc" | "desc" | undefined;
147763
+ }>;
147764
+ response: z.ZodUnion<[z.ZodObject<{
147765
+ data: z.ZodObject<{
147766
+ meta: typeof import("./../models").PaginationmetaSchema;
147767
+ data: z.ZodArray<z.ZodObject<{
147768
+ id: z.ZodNumber;
147769
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
147770
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
147771
+ firstName: z.ZodString;
147772
+ lastName: z.ZodString;
147773
+ email: z.ZodString;
147774
+ emailVerifiedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
147775
+ password: z.ZodString;
147776
+ isActif: z.ZodBoolean;
147777
+ countryId: z.ZodNullable<z.ZodNumber>;
147778
+ postalCode: z.ZodString;
147779
+ city: z.ZodString;
147780
+ poste: z.ZodString;
147781
+ comments: z.ZodString;
147782
+ addressOne: z.ZodString;
147783
+ addressTwo: z.ZodString;
147784
+ telephoneOne: z.ZodString;
147785
+ telephoneTwo: z.ZodString;
147786
+ emailOne: z.ZodString;
147787
+ emailTwo: z.ZodString;
147788
+ roles: z.ZodArray<z.ZodString, "many">;
147789
+ isOpsAdmin: z.ZodBoolean;
147790
+ civility: z.ZodString;
147791
+ numCodeOne: z.ZodString;
147792
+ numCodeTwo: z.ZodString;
147793
+ isShowCalculatrice: z.ZodBoolean;
147794
+ expedition: z.ZodBoolean;
147795
+ physicCompany: z.ZodString;
147796
+ isParis: z.ZodBoolean;
147797
+ isMedical: z.ZodBoolean;
147798
+ isService: z.ZodBoolean;
147799
+ menus: z.ZodString;
147800
+ ongletExpedition: z.ZodString;
147801
+ chauffeurType: z.ZodString;
147802
+ typeOfOps: z.ZodString;
147803
+ prestation: z.ZodString;
147804
+ tracking: z.ZodString;
147805
+ expeditionCourse: z.ZodString;
147806
+ carnetAddress: z.ZodString;
147807
+ expeditionsCarnet: z.ZodString;
147808
+ accessArchive: z.ZodString;
147809
+ isShowImportMenu: z.ZodBoolean;
147810
+ isShowExportMenu: z.ZodBoolean;
147811
+ isShowCourseMenu: z.ZodBoolean;
147812
+ twoRoues: z.ZodBoolean;
147813
+ vt: z.ZodBoolean;
147814
+ lesTwo: z.ZodBoolean;
147815
+ isMiniTracking: z.ZodBoolean;
147816
+ isFullTracking: z.ZodBoolean;
147817
+ isShareCourseAndExpedition: z.ZodBoolean;
147818
+ isShareCarnetAdresse: z.ZodBoolean;
147819
+ isShareCarnetAdresseAndExpedition: z.ZodBoolean;
147820
+ isAccessAuxArchives: z.ZodBoolean;
147821
+ isShowInfo: z.ZodBoolean;
147822
+ photo: z.ZodNullable<z.ZodString>;
147823
+ entreprisePhysique: z.ZodString;
147824
+ isAdminChauffeur: z.ZodBoolean;
147825
+ isShowTracking: z.ZodBoolean;
147826
+ isSupportActivated: z.ZodBoolean;
147827
+ isClientTransitaire: z.ZodBoolean;
147828
+ customerId: z.ZodNumber;
147829
+ vehiculeId: z.ZodNumber;
147830
+ salaryId: z.ZodNumber;
147831
+ customer: z.ZodOptional<z.ZodLazy<z.ZodObject<{
147832
+ id: z.ZodNumber;
147833
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
147834
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
147835
+ fullName: z.ZodString;
147836
+ countryId: z.ZodNumber;
147837
+ address: z.ZodString;
147838
+ addressTwo: z.ZodNullable<z.ZodString>;
147839
+ postalCode: z.ZodString;
147840
+ city: z.ZodString;
147841
+ telephoneOne: z.ZodString;
147842
+ telephoneTwo: z.ZodNullable<z.ZodString>;
147843
+ invoiceMail: z.ZodString;
147844
+ dafResponsibleName: z.ZodString;
147845
+ email: z.ZodNullable<z.ZodString>;
147846
+ intraVatNumber: z.ZodNullable<z.ZodString>;
147847
+ submittedToFrenchVat: z.ZodBoolean;
147848
+ siren: z.ZodString;
147849
+ numeroEori: z.ZodNullable<z.ZodString>;
147850
+ comments: z.ZodNullable<z.ZodString>;
147851
+ numCodeOne: z.ZodNullable<z.ZodString>;
147852
+ numCodeTwo: z.ZodNullable<z.ZodString>;
147853
+ isActif: z.ZodBoolean;
147854
+ isParis: z.ZodBoolean;
147855
+ isMedical: z.ZodBoolean;
147856
+ isService: z.ZodBoolean;
147857
+ valeurCustomer: z.ZodBoolean;
147858
+ dirigeant: z.ZodNullable<z.ZodString>;
147859
+ dirigeantTel: z.ZodNullable<z.ZodString>;
147860
+ dirigeantEmail: z.ZodNullable<z.ZodString>;
147861
+ responsableComptable: z.ZodNullable<z.ZodString>;
147862
+ responsableComptableTel: z.ZodNullable<z.ZodString>;
147863
+ responsableComptableEmail: z.ZodNullable<z.ZodString>;
147864
+ responsableDaf: z.ZodNullable<z.ZodString>;
147865
+ responsableDafTel: z.ZodNullable<z.ZodString>;
147866
+ responsableDafEmail: z.ZodNullable<z.ZodString>;
147867
+ emailFacturation: z.ZodNullable<z.ZodString>;
147868
+ logo: z.ZodNullable<z.ZodString>;
147869
+ header: z.ZodNullable<z.ZodString>;
147870
+ footer: z.ZodNullable<z.ZodString>;
147871
+ emailOne: z.ZodNullable<z.ZodString>;
147872
+ emailTwo: z.ZodNullable<z.ZodString>;
147873
+ emailThree: z.ZodNullable<z.ZodString>;
147874
+ tva: z.ZodNullable<z.ZodString>;
147875
+ isTrackingMail: z.ZodNullable<z.ZodBoolean>;
147876
+ isBillingCenter: z.ZodBoolean;
147877
+ isShowNameCustomer: z.ZodBoolean;
147878
+ isMailing: z.ZodBoolean;
147879
+ numeroSiret: z.ZodNullable<z.ZodString>;
147880
+ country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
147881
+ id: z.ZodNumber;
147882
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
147883
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
147884
+ name: z.ZodString;
147885
+ code: z.ZodString;
147886
+ phoneCode: z.ZodString;
147887
+ }, "strip", z.ZodTypeAny, {
147888
+ id: number;
147889
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
147890
+ code: string;
147891
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
147892
+ name: string;
147893
+ phoneCode: string;
147894
+ }, {
147895
+ id: number;
147896
+ createdAt: Date;
147897
+ code: string;
147898
+ updatedAt: Date;
147899
+ name: string;
147900
+ phoneCode: string;
147901
+ }>>>;
147902
+ }, "strip", z.ZodTypeAny, {
147903
+ id: number;
147904
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
147905
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
147906
+ fullName: string;
147907
+ countryId: number;
147908
+ address: string;
147909
+ addressTwo: string | null;
147910
+ postalCode: string;
147911
+ city: string;
147912
+ telephoneOne: string;
147913
+ telephoneTwo: string | null;
147914
+ invoiceMail: string;
147915
+ dafResponsibleName: string;
147916
+ email: string | null;
147917
+ intraVatNumber: string | null;
147918
+ submittedToFrenchVat: boolean;
147919
+ siren: string;
147920
+ numeroEori: string | null;
147921
+ comments: string | null;
147922
+ numCodeOne: string | null;
147923
+ numCodeTwo: string | null;
147924
+ isActif: boolean;
147925
+ isParis: boolean;
147926
+ isMedical: boolean;
147927
+ isService: boolean;
147928
+ valeurCustomer: boolean;
147929
+ dirigeant: string | null;
147930
+ dirigeantTel: string | null;
147931
+ dirigeantEmail: string | null;
147932
+ responsableComptable: string | null;
147933
+ responsableComptableTel: string | null;
147934
+ responsableComptableEmail: string | null;
147935
+ responsableDaf: string | null;
147936
+ responsableDafTel: string | null;
147937
+ responsableDafEmail: string | null;
147938
+ emailFacturation: string | null;
147939
+ logo: string | null;
147940
+ header: string | null;
147941
+ footer: string | null;
147942
+ emailOne: string | null;
147943
+ emailTwo: string | null;
147944
+ emailThree: string | null;
147945
+ tva: string | null;
147946
+ isTrackingMail: boolean | null;
147947
+ isBillingCenter: boolean;
147948
+ isShowNameCustomer: boolean;
147949
+ isMailing: boolean;
147950
+ numeroSiret: string | null;
147951
+ country?: {
147952
+ id: number;
147953
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
147954
+ code: string;
147955
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
147956
+ name: string;
147957
+ phoneCode: string;
147958
+ } | undefined;
147959
+ }, {
147960
+ id: number;
147961
+ createdAt: Date;
147962
+ updatedAt: Date;
147963
+ fullName: string;
147964
+ countryId: number;
147965
+ address: string;
147966
+ addressTwo: string | null;
147967
+ postalCode: string;
147968
+ city: string;
147969
+ telephoneOne: string;
147970
+ telephoneTwo: string | null;
147971
+ invoiceMail: string;
147972
+ dafResponsibleName: string;
147973
+ email: string | null;
147974
+ intraVatNumber: string | null;
147975
+ submittedToFrenchVat: boolean;
147976
+ siren: string;
147977
+ numeroEori: string | null;
147978
+ comments: string | null;
147979
+ numCodeOne: string | null;
147980
+ numCodeTwo: string | null;
147981
+ isActif: boolean;
147982
+ isParis: boolean;
147983
+ isMedical: boolean;
147984
+ isService: boolean;
147985
+ valeurCustomer: boolean;
147986
+ dirigeant: string | null;
147987
+ dirigeantTel: string | null;
147988
+ dirigeantEmail: string | null;
147989
+ responsableComptable: string | null;
147990
+ responsableComptableTel: string | null;
147991
+ responsableComptableEmail: string | null;
147992
+ responsableDaf: string | null;
147993
+ responsableDafTel: string | null;
147994
+ responsableDafEmail: string | null;
147995
+ emailFacturation: string | null;
147996
+ logo: string | null;
147997
+ header: string | null;
147998
+ footer: string | null;
147999
+ emailOne: string | null;
148000
+ emailTwo: string | null;
148001
+ emailThree: string | null;
148002
+ tva: string | null;
148003
+ isTrackingMail: boolean | null;
148004
+ isBillingCenter: boolean;
148005
+ isShowNameCustomer: boolean;
148006
+ isMailing: boolean;
148007
+ numeroSiret: string | null;
148008
+ country?: {
148009
+ id: number;
148010
+ createdAt: Date;
148011
+ code: string;
148012
+ updatedAt: Date;
148013
+ name: string;
148014
+ phoneCode: string;
148015
+ } | undefined;
148016
+ }>>>;
148017
+ salary: z.ZodOptional<z.ZodLazy<z.ZodObject<{
148018
+ id: z.ZodNumber;
148019
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148020
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148021
+ nom: z.ZodString;
148022
+ prenom: z.ZodString;
148023
+ email: z.ZodString;
148024
+ telephone: z.ZodString;
148025
+ type: z.ZodString;
148026
+ adress: z.ZodString;
148027
+ city: z.ZodString;
148028
+ countryId: z.ZodNullable<z.ZodNumber>;
148029
+ postalCode: z.ZodString;
148030
+ country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
148031
+ id: z.ZodNumber;
148032
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148033
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148034
+ name: z.ZodString;
148035
+ code: z.ZodString;
148036
+ phoneCode: z.ZodString;
148037
+ }, "strip", z.ZodTypeAny, {
148038
+ id: number;
148039
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148040
+ code: string;
148041
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148042
+ name: string;
148043
+ phoneCode: string;
148044
+ }, {
148045
+ id: number;
148046
+ createdAt: Date;
148047
+ code: string;
148048
+ updatedAt: Date;
148049
+ name: string;
148050
+ phoneCode: string;
148051
+ }>>>;
148052
+ }, "strip", z.ZodTypeAny, {
148053
+ id: number;
148054
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148055
+ type: string;
148056
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148057
+ countryId: number | null;
148058
+ postalCode: string;
148059
+ city: string;
148060
+ email: string;
148061
+ nom: string;
148062
+ prenom: string;
148063
+ telephone: string;
148064
+ adress: string;
148065
+ country?: {
148066
+ id: number;
148067
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148068
+ code: string;
148069
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148070
+ name: string;
148071
+ phoneCode: string;
148072
+ } | undefined;
148073
+ }, {
148074
+ id: number;
148075
+ createdAt: Date;
148076
+ type: string;
148077
+ updatedAt: Date;
148078
+ countryId: number | null;
148079
+ postalCode: string;
148080
+ city: string;
148081
+ email: string;
148082
+ nom: string;
148083
+ prenom: string;
148084
+ telephone: string;
148085
+ adress: string;
148086
+ country?: {
148087
+ id: number;
148088
+ createdAt: Date;
148089
+ code: string;
148090
+ updatedAt: Date;
148091
+ name: string;
148092
+ phoneCode: string;
148093
+ } | undefined;
148094
+ }>>>;
148095
+ vehicule: z.ZodOptional<z.ZodLazy<z.ZodObject<{
148096
+ id: z.ZodNumber;
148097
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148098
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148099
+ plaque: z.ZodString;
148100
+ telephoneSociete: z.ZodString;
148101
+ typeVehicule: z.ZodString;
148102
+ kmDepart: z.ZodNumber;
148103
+ kmRetour: z.ZodNumber;
148104
+ pochetteRecu: z.ZodBoolean;
148105
+ carteCarburant: z.ZodString;
148106
+ carteBancaire: z.ZodString;
148107
+ bipTelepage: z.ZodString;
148108
+ }, "strip", z.ZodTypeAny, {
148109
+ id: number;
148110
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148111
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148112
+ plaque: string;
148113
+ telephoneSociete: string;
148114
+ typeVehicule: string;
148115
+ kmDepart: number;
148116
+ kmRetour: number;
148117
+ pochetteRecu: boolean;
148118
+ carteCarburant: string;
148119
+ carteBancaire: string;
148120
+ bipTelepage: string;
148121
+ }, {
148122
+ id: number;
148123
+ createdAt: Date;
148124
+ updatedAt: Date;
148125
+ plaque: string;
148126
+ telephoneSociete: string;
148127
+ typeVehicule: string;
148128
+ kmDepart: number;
148129
+ kmRetour: number;
148130
+ pochetteRecu: boolean;
148131
+ carteCarburant: string;
148132
+ carteBancaire: string;
148133
+ bipTelepage: string;
148134
+ }>>>;
148135
+ country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
148136
+ id: z.ZodNumber;
148137
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148138
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148139
+ name: z.ZodString;
148140
+ code: z.ZodString;
148141
+ phoneCode: z.ZodString;
148142
+ }, "strip", z.ZodTypeAny, {
148143
+ id: number;
148144
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148145
+ code: string;
148146
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148147
+ name: string;
148148
+ phoneCode: string;
148149
+ }, {
148150
+ id: number;
148151
+ createdAt: Date;
148152
+ code: string;
148153
+ updatedAt: Date;
148154
+ name: string;
148155
+ phoneCode: string;
148156
+ }>>>;
148157
+ userBillingCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
148158
+ id: z.ZodNumber;
148159
+ createdAt: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
148160
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
148161
+ userId: z.ZodNumber;
148162
+ billingCenterId: z.ZodNumber;
148163
+ billingCenter: z.ZodOptional<z.ZodObject<{
148164
+ id: z.ZodNumber;
148165
+ billingCenterName: z.ZodString;
148166
+ customerId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
148167
+ }, "strip", z.ZodTypeAny, {
148168
+ id: number;
148169
+ billingCenterName: string;
148170
+ customerId?: number | null | undefined;
148171
+ }, {
148172
+ id: number;
148173
+ billingCenterName: string;
148174
+ customerId?: number | null | undefined;
148175
+ }>>;
148176
+ }, "strip", z.ZodTypeAny, {
148177
+ id: number;
148178
+ userId: number;
148179
+ billingCenterId: number;
148180
+ createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148181
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148182
+ billingCenter?: {
148183
+ id: number;
148184
+ billingCenterName: string;
148185
+ customerId?: number | null | undefined;
148186
+ } | undefined;
148187
+ }, {
148188
+ id: number;
148189
+ userId: number;
148190
+ billingCenterId: number;
148191
+ createdAt?: Date | undefined;
148192
+ updatedAt?: Date | undefined;
148193
+ billingCenter?: {
148194
+ id: number;
148195
+ billingCenterName: string;
148196
+ customerId?: number | null | undefined;
148197
+ } | undefined;
148198
+ }>, "many">>;
148199
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
148200
+ id: number;
148201
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148202
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148203
+ countryId: number | null;
148204
+ addressTwo: string;
148205
+ postalCode: string;
148206
+ city: string;
148207
+ telephoneOne: string;
148208
+ telephoneTwo: string;
148209
+ email: string;
148210
+ comments: string;
148211
+ numCodeOne: string;
148212
+ numCodeTwo: string;
148213
+ isActif: boolean;
148214
+ isParis: boolean;
148215
+ isMedical: boolean;
148216
+ isService: boolean;
148217
+ emailOne: string;
148218
+ emailTwo: string;
148219
+ addressOne: string;
148220
+ customerId: number;
148221
+ firstName: string;
148222
+ lastName: string;
148223
+ emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148224
+ password: string;
148225
+ poste: string;
148226
+ roles: string[];
148227
+ isOpsAdmin: boolean;
148228
+ civility: string;
148229
+ isShowCalculatrice: boolean;
148230
+ expedition: boolean;
148231
+ physicCompany: string;
148232
+ menus: string;
148233
+ ongletExpedition: string;
148234
+ chauffeurType: string;
148235
+ typeOfOps: string;
148236
+ prestation: string;
148237
+ tracking: string;
148238
+ expeditionCourse: string;
148239
+ carnetAddress: string;
148240
+ expeditionsCarnet: string;
148241
+ accessArchive: string;
148242
+ isShowImportMenu: boolean;
148243
+ isShowExportMenu: boolean;
148244
+ isShowCourseMenu: boolean;
148245
+ twoRoues: boolean;
148246
+ vt: boolean;
148247
+ lesTwo: boolean;
148248
+ isMiniTracking: boolean;
148249
+ isFullTracking: boolean;
148250
+ isShareCourseAndExpedition: boolean;
148251
+ isShareCarnetAdresse: boolean;
148252
+ isShareCarnetAdresseAndExpedition: boolean;
148253
+ isAccessAuxArchives: boolean;
148254
+ isShowInfo: boolean;
148255
+ photo: string | null;
148256
+ entreprisePhysique: string;
148257
+ isAdminChauffeur: boolean;
148258
+ isShowTracking: boolean;
148259
+ isSupportActivated: boolean;
148260
+ isClientTransitaire: boolean;
148261
+ vehiculeId: number;
148262
+ salaryId: number;
148263
+ country?: {
148264
+ id: number;
148265
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148266
+ code: string;
148267
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148268
+ name: string;
148269
+ phoneCode: string;
148270
+ } | undefined;
148271
+ customer?: {
148272
+ id: number;
148273
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148274
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148275
+ fullName: string;
148276
+ countryId: number;
148277
+ address: string;
148278
+ addressTwo: string | null;
148279
+ postalCode: string;
148280
+ city: string;
148281
+ telephoneOne: string;
148282
+ telephoneTwo: string | null;
148283
+ invoiceMail: string;
148284
+ dafResponsibleName: string;
148285
+ email: string | null;
148286
+ intraVatNumber: string | null;
148287
+ submittedToFrenchVat: boolean;
148288
+ siren: string;
148289
+ numeroEori: string | null;
148290
+ comments: string | null;
148291
+ numCodeOne: string | null;
148292
+ numCodeTwo: string | null;
148293
+ isActif: boolean;
148294
+ isParis: boolean;
148295
+ isMedical: boolean;
148296
+ isService: boolean;
148297
+ valeurCustomer: boolean;
148298
+ dirigeant: string | null;
148299
+ dirigeantTel: string | null;
148300
+ dirigeantEmail: string | null;
148301
+ responsableComptable: string | null;
148302
+ responsableComptableTel: string | null;
148303
+ responsableComptableEmail: string | null;
148304
+ responsableDaf: string | null;
148305
+ responsableDafTel: string | null;
148306
+ responsableDafEmail: string | null;
148307
+ emailFacturation: string | null;
148308
+ logo: string | null;
148309
+ header: string | null;
148310
+ footer: string | null;
148311
+ emailOne: string | null;
148312
+ emailTwo: string | null;
148313
+ emailThree: string | null;
148314
+ tva: string | null;
148315
+ isTrackingMail: boolean | null;
148316
+ isBillingCenter: boolean;
148317
+ isShowNameCustomer: boolean;
148318
+ isMailing: boolean;
148319
+ numeroSiret: string | null;
148320
+ country?: {
148321
+ id: number;
148322
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148323
+ code: string;
148324
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148325
+ name: string;
148326
+ phoneCode: string;
148327
+ } | undefined;
148328
+ } | undefined;
148329
+ salary?: {
148330
+ id: number;
148331
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148332
+ type: string;
148333
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148334
+ countryId: number | null;
148335
+ postalCode: string;
148336
+ city: string;
148337
+ email: string;
148338
+ nom: string;
148339
+ prenom: string;
148340
+ telephone: string;
148341
+ adress: string;
148342
+ country?: {
148343
+ id: number;
148344
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148345
+ code: string;
148346
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148347
+ name: string;
148348
+ phoneCode: string;
148349
+ } | undefined;
148350
+ } | undefined;
148351
+ vehicule?: {
148352
+ id: number;
148353
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148354
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148355
+ plaque: string;
148356
+ telephoneSociete: string;
148357
+ typeVehicule: string;
148358
+ kmDepart: number;
148359
+ kmRetour: number;
148360
+ pochetteRecu: boolean;
148361
+ carteCarburant: string;
148362
+ carteBancaire: string;
148363
+ bipTelepage: string;
148364
+ } | undefined;
148365
+ userBillingCenters?: {
148366
+ id: number;
148367
+ userId: number;
148368
+ billingCenterId: number;
148369
+ createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148370
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148371
+ billingCenter?: {
148372
+ id: number;
148373
+ billingCenterName: string;
148374
+ customerId?: number | null | undefined;
148375
+ } | undefined;
148376
+ }[] | undefined;
148377
+ }, {
148378
+ id: number;
148379
+ createdAt: Date;
148380
+ updatedAt: Date;
148381
+ countryId: number | null;
148382
+ addressTwo: string;
148383
+ postalCode: string;
148384
+ city: string;
148385
+ telephoneOne: string;
148386
+ telephoneTwo: string;
148387
+ email: string;
148388
+ comments: string;
148389
+ numCodeOne: string;
148390
+ numCodeTwo: string;
148391
+ isActif: boolean;
148392
+ isParis: boolean;
148393
+ isMedical: boolean;
148394
+ isService: boolean;
148395
+ emailOne: string;
148396
+ emailTwo: string;
148397
+ addressOne: string;
148398
+ customerId: number;
148399
+ firstName: string;
148400
+ lastName: string;
148401
+ emailVerifiedAt: Date;
148402
+ password: string;
148403
+ poste: string;
148404
+ roles: string[];
148405
+ isOpsAdmin: boolean;
148406
+ civility: string;
148407
+ isShowCalculatrice: boolean;
148408
+ expedition: boolean;
148409
+ physicCompany: string;
148410
+ menus: string;
148411
+ ongletExpedition: string;
148412
+ chauffeurType: string;
148413
+ typeOfOps: string;
148414
+ prestation: string;
148415
+ tracking: string;
148416
+ expeditionCourse: string;
148417
+ carnetAddress: string;
148418
+ expeditionsCarnet: string;
148419
+ accessArchive: string;
148420
+ isShowImportMenu: boolean;
148421
+ isShowExportMenu: boolean;
148422
+ isShowCourseMenu: boolean;
148423
+ twoRoues: boolean;
148424
+ vt: boolean;
148425
+ lesTwo: boolean;
148426
+ isMiniTracking: boolean;
148427
+ isFullTracking: boolean;
148428
+ isShareCourseAndExpedition: boolean;
148429
+ isShareCarnetAdresse: boolean;
148430
+ isShareCarnetAdresseAndExpedition: boolean;
148431
+ isAccessAuxArchives: boolean;
148432
+ isShowInfo: boolean;
148433
+ photo: string | null;
148434
+ entreprisePhysique: string;
148435
+ isAdminChauffeur: boolean;
148436
+ isShowTracking: boolean;
148437
+ isSupportActivated: boolean;
148438
+ isClientTransitaire: boolean;
148439
+ vehiculeId: number;
148440
+ salaryId: number;
148441
+ country?: {
148442
+ id: number;
148443
+ createdAt: Date;
148444
+ code: string;
148445
+ updatedAt: Date;
148446
+ name: string;
148447
+ phoneCode: string;
148448
+ } | undefined;
148449
+ customer?: {
148450
+ id: number;
148451
+ createdAt: Date;
148452
+ updatedAt: Date;
148453
+ fullName: string;
148454
+ countryId: number;
148455
+ address: string;
148456
+ addressTwo: string | null;
148457
+ postalCode: string;
148458
+ city: string;
148459
+ telephoneOne: string;
148460
+ telephoneTwo: string | null;
148461
+ invoiceMail: string;
148462
+ dafResponsibleName: string;
148463
+ email: string | null;
148464
+ intraVatNumber: string | null;
148465
+ submittedToFrenchVat: boolean;
148466
+ siren: string;
148467
+ numeroEori: string | null;
148468
+ comments: string | null;
148469
+ numCodeOne: string | null;
148470
+ numCodeTwo: string | null;
148471
+ isActif: boolean;
148472
+ isParis: boolean;
148473
+ isMedical: boolean;
148474
+ isService: boolean;
148475
+ valeurCustomer: boolean;
148476
+ dirigeant: string | null;
148477
+ dirigeantTel: string | null;
148478
+ dirigeantEmail: string | null;
148479
+ responsableComptable: string | null;
148480
+ responsableComptableTel: string | null;
148481
+ responsableComptableEmail: string | null;
148482
+ responsableDaf: string | null;
148483
+ responsableDafTel: string | null;
148484
+ responsableDafEmail: string | null;
148485
+ emailFacturation: string | null;
148486
+ logo: string | null;
148487
+ header: string | null;
148488
+ footer: string | null;
148489
+ emailOne: string | null;
148490
+ emailTwo: string | null;
148491
+ emailThree: string | null;
148492
+ tva: string | null;
148493
+ isTrackingMail: boolean | null;
148494
+ isBillingCenter: boolean;
148495
+ isShowNameCustomer: boolean;
148496
+ isMailing: boolean;
148497
+ numeroSiret: string | null;
148498
+ country?: {
148499
+ id: number;
148500
+ createdAt: Date;
148501
+ code: string;
148502
+ updatedAt: Date;
148503
+ name: string;
148504
+ phoneCode: string;
148505
+ } | undefined;
148506
+ } | undefined;
148507
+ salary?: {
148508
+ id: number;
148509
+ createdAt: Date;
148510
+ type: string;
148511
+ updatedAt: Date;
148512
+ countryId: number | null;
148513
+ postalCode: string;
148514
+ city: string;
148515
+ email: string;
148516
+ nom: string;
148517
+ prenom: string;
148518
+ telephone: string;
148519
+ adress: string;
148520
+ country?: {
148521
+ id: number;
148522
+ createdAt: Date;
148523
+ code: string;
148524
+ updatedAt: Date;
148525
+ name: string;
148526
+ phoneCode: string;
148527
+ } | undefined;
148528
+ } | undefined;
148529
+ vehicule?: {
148530
+ id: number;
148531
+ createdAt: Date;
148532
+ updatedAt: Date;
148533
+ plaque: string;
148534
+ telephoneSociete: string;
148535
+ typeVehicule: string;
148536
+ kmDepart: number;
148537
+ kmRetour: number;
148538
+ pochetteRecu: boolean;
148539
+ carteCarburant: string;
148540
+ carteBancaire: string;
148541
+ bipTelepage: string;
148542
+ } | undefined;
148543
+ userBillingCenters?: {
148544
+ id: number;
148545
+ userId: number;
148546
+ billingCenterId: number;
148547
+ createdAt?: Date | undefined;
148548
+ updatedAt?: Date | undefined;
148549
+ billingCenter?: {
148550
+ id: number;
148551
+ billingCenterName: string;
148552
+ customerId?: number | null | undefined;
148553
+ } | undefined;
148554
+ }[] | undefined;
148555
+ }>, "many">;
148556
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
148557
+ data: {
148558
+ id: number;
148559
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148560
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148561
+ countryId: number | null;
148562
+ addressTwo: string;
148563
+ postalCode: string;
148564
+ city: string;
148565
+ telephoneOne: string;
148566
+ telephoneTwo: string;
148567
+ email: string;
148568
+ comments: string;
148569
+ numCodeOne: string;
148570
+ numCodeTwo: string;
148571
+ isActif: boolean;
148572
+ isParis: boolean;
148573
+ isMedical: boolean;
148574
+ isService: boolean;
148575
+ emailOne: string;
148576
+ emailTwo: string;
148577
+ addressOne: string;
148578
+ customerId: number;
148579
+ firstName: string;
148580
+ lastName: string;
148581
+ emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148582
+ password: string;
148583
+ poste: string;
148584
+ roles: string[];
148585
+ isOpsAdmin: boolean;
148586
+ civility: string;
148587
+ isShowCalculatrice: boolean;
148588
+ expedition: boolean;
148589
+ physicCompany: string;
148590
+ menus: string;
148591
+ ongletExpedition: string;
148592
+ chauffeurType: string;
148593
+ typeOfOps: string;
148594
+ prestation: string;
148595
+ tracking: string;
148596
+ expeditionCourse: string;
148597
+ carnetAddress: string;
148598
+ expeditionsCarnet: string;
148599
+ accessArchive: string;
148600
+ isShowImportMenu: boolean;
148601
+ isShowExportMenu: boolean;
148602
+ isShowCourseMenu: boolean;
148603
+ twoRoues: boolean;
148604
+ vt: boolean;
148605
+ lesTwo: boolean;
148606
+ isMiniTracking: boolean;
148607
+ isFullTracking: boolean;
148608
+ isShareCourseAndExpedition: boolean;
148609
+ isShareCarnetAdresse: boolean;
148610
+ isShareCarnetAdresseAndExpedition: boolean;
148611
+ isAccessAuxArchives: boolean;
148612
+ isShowInfo: boolean;
148613
+ photo: string | null;
148614
+ entreprisePhysique: string;
148615
+ isAdminChauffeur: boolean;
148616
+ isShowTracking: boolean;
148617
+ isSupportActivated: boolean;
148618
+ isClientTransitaire: boolean;
148619
+ vehiculeId: number;
148620
+ salaryId: number;
148621
+ country?: {
148622
+ id: number;
148623
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148624
+ code: string;
148625
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148626
+ name: string;
148627
+ phoneCode: string;
148628
+ } | undefined;
148629
+ customer?: {
148630
+ id: number;
148631
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148632
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148633
+ fullName: string;
148634
+ countryId: number;
148635
+ address: string;
148636
+ addressTwo: string | null;
148637
+ postalCode: string;
148638
+ city: string;
148639
+ telephoneOne: string;
148640
+ telephoneTwo: string | null;
148641
+ invoiceMail: string;
148642
+ dafResponsibleName: string;
148643
+ email: string | null;
148644
+ intraVatNumber: string | null;
148645
+ submittedToFrenchVat: boolean;
148646
+ siren: string;
148647
+ numeroEori: string | null;
148648
+ comments: string | null;
148649
+ numCodeOne: string | null;
148650
+ numCodeTwo: string | null;
148651
+ isActif: boolean;
148652
+ isParis: boolean;
148653
+ isMedical: boolean;
148654
+ isService: boolean;
148655
+ valeurCustomer: boolean;
148656
+ dirigeant: string | null;
148657
+ dirigeantTel: string | null;
148658
+ dirigeantEmail: string | null;
148659
+ responsableComptable: string | null;
148660
+ responsableComptableTel: string | null;
148661
+ responsableComptableEmail: string | null;
148662
+ responsableDaf: string | null;
148663
+ responsableDafTel: string | null;
148664
+ responsableDafEmail: string | null;
148665
+ emailFacturation: string | null;
148666
+ logo: string | null;
148667
+ header: string | null;
148668
+ footer: string | null;
148669
+ emailOne: string | null;
148670
+ emailTwo: string | null;
148671
+ emailThree: string | null;
148672
+ tva: string | null;
148673
+ isTrackingMail: boolean | null;
148674
+ isBillingCenter: boolean;
148675
+ isShowNameCustomer: boolean;
148676
+ isMailing: boolean;
148677
+ numeroSiret: string | null;
148678
+ country?: {
148679
+ id: number;
148680
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148681
+ code: string;
148682
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148683
+ name: string;
148684
+ phoneCode: string;
148685
+ } | undefined;
148686
+ } | undefined;
148687
+ salary?: {
148688
+ id: number;
148689
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148690
+ type: string;
148691
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148692
+ countryId: number | null;
148693
+ postalCode: string;
148694
+ city: string;
148695
+ email: string;
148696
+ nom: string;
148697
+ prenom: string;
148698
+ telephone: string;
148699
+ adress: string;
148700
+ country?: {
148701
+ id: number;
148702
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148703
+ code: string;
148704
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148705
+ name: string;
148706
+ phoneCode: string;
148707
+ } | undefined;
148708
+ } | undefined;
148709
+ vehicule?: {
148710
+ id: number;
148711
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148712
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148713
+ plaque: string;
148714
+ telephoneSociete: string;
148715
+ typeVehicule: string;
148716
+ kmDepart: number;
148717
+ kmRetour: number;
148718
+ pochetteRecu: boolean;
148719
+ carteCarburant: string;
148720
+ carteBancaire: string;
148721
+ bipTelepage: string;
148722
+ } | undefined;
148723
+ userBillingCenters?: {
148724
+ id: number;
148725
+ userId: number;
148726
+ billingCenterId: number;
148727
+ createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148728
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148729
+ billingCenter?: {
148730
+ id: number;
148731
+ billingCenterName: string;
148732
+ customerId?: number | null | undefined;
148733
+ } | undefined;
148734
+ }[] | undefined;
148735
+ }[];
148736
+ meta: {
148737
+ total: number;
148738
+ perPage: number;
148739
+ currentPage: number;
148740
+ lastPage: number;
148741
+ firstPage: number;
148742
+ firstPageUrl: string;
148743
+ lastPageUrl: string;
148744
+ nextPageUrl: string | null;
148745
+ previousPageUrl: string | null;
148746
+ };
148747
+ }, {
148748
+ data: {
148749
+ id: number;
148750
+ createdAt: Date;
148751
+ updatedAt: Date;
148752
+ countryId: number | null;
148753
+ addressTwo: string;
148754
+ postalCode: string;
148755
+ city: string;
148756
+ telephoneOne: string;
148757
+ telephoneTwo: string;
148758
+ email: string;
148759
+ comments: string;
148760
+ numCodeOne: string;
148761
+ numCodeTwo: string;
148762
+ isActif: boolean;
148763
+ isParis: boolean;
148764
+ isMedical: boolean;
148765
+ isService: boolean;
148766
+ emailOne: string;
148767
+ emailTwo: string;
148768
+ addressOne: string;
148769
+ customerId: number;
148770
+ firstName: string;
148771
+ lastName: string;
148772
+ emailVerifiedAt: Date;
148773
+ password: string;
148774
+ poste: string;
148775
+ roles: string[];
148776
+ isOpsAdmin: boolean;
148777
+ civility: string;
148778
+ isShowCalculatrice: boolean;
148779
+ expedition: boolean;
148780
+ physicCompany: string;
148781
+ menus: string;
148782
+ ongletExpedition: string;
148783
+ chauffeurType: string;
148784
+ typeOfOps: string;
148785
+ prestation: string;
148786
+ tracking: string;
148787
+ expeditionCourse: string;
148788
+ carnetAddress: string;
148789
+ expeditionsCarnet: string;
148790
+ accessArchive: string;
148791
+ isShowImportMenu: boolean;
148792
+ isShowExportMenu: boolean;
148793
+ isShowCourseMenu: boolean;
148794
+ twoRoues: boolean;
148795
+ vt: boolean;
148796
+ lesTwo: boolean;
148797
+ isMiniTracking: boolean;
148798
+ isFullTracking: boolean;
148799
+ isShareCourseAndExpedition: boolean;
148800
+ isShareCarnetAdresse: boolean;
148801
+ isShareCarnetAdresseAndExpedition: boolean;
148802
+ isAccessAuxArchives: boolean;
148803
+ isShowInfo: boolean;
148804
+ photo: string | null;
148805
+ entreprisePhysique: string;
148806
+ isAdminChauffeur: boolean;
148807
+ isShowTracking: boolean;
148808
+ isSupportActivated: boolean;
148809
+ isClientTransitaire: boolean;
148810
+ vehiculeId: number;
148811
+ salaryId: number;
148812
+ country?: {
148813
+ id: number;
148814
+ createdAt: Date;
148815
+ code: string;
148816
+ updatedAt: Date;
148817
+ name: string;
148818
+ phoneCode: string;
148819
+ } | undefined;
148820
+ customer?: {
148821
+ id: number;
148822
+ createdAt: Date;
148823
+ updatedAt: Date;
148824
+ fullName: string;
148825
+ countryId: number;
148826
+ address: string;
148827
+ addressTwo: string | null;
148828
+ postalCode: string;
148829
+ city: string;
148830
+ telephoneOne: string;
148831
+ telephoneTwo: string | null;
148832
+ invoiceMail: string;
148833
+ dafResponsibleName: string;
148834
+ email: string | null;
148835
+ intraVatNumber: string | null;
148836
+ submittedToFrenchVat: boolean;
148837
+ siren: string;
148838
+ numeroEori: string | null;
148839
+ comments: string | null;
148840
+ numCodeOne: string | null;
148841
+ numCodeTwo: string | null;
148842
+ isActif: boolean;
148843
+ isParis: boolean;
148844
+ isMedical: boolean;
148845
+ isService: boolean;
148846
+ valeurCustomer: boolean;
148847
+ dirigeant: string | null;
148848
+ dirigeantTel: string | null;
148849
+ dirigeantEmail: string | null;
148850
+ responsableComptable: string | null;
148851
+ responsableComptableTel: string | null;
148852
+ responsableComptableEmail: string | null;
148853
+ responsableDaf: string | null;
148854
+ responsableDafTel: string | null;
148855
+ responsableDafEmail: string | null;
148856
+ emailFacturation: string | null;
148857
+ logo: string | null;
148858
+ header: string | null;
148859
+ footer: string | null;
148860
+ emailOne: string | null;
148861
+ emailTwo: string | null;
148862
+ emailThree: string | null;
148863
+ tva: string | null;
148864
+ isTrackingMail: boolean | null;
148865
+ isBillingCenter: boolean;
148866
+ isShowNameCustomer: boolean;
148867
+ isMailing: boolean;
148868
+ numeroSiret: string | null;
148869
+ country?: {
148870
+ id: number;
148871
+ createdAt: Date;
148872
+ code: string;
148873
+ updatedAt: Date;
148874
+ name: string;
148875
+ phoneCode: string;
148876
+ } | undefined;
148877
+ } | undefined;
148878
+ salary?: {
148879
+ id: number;
148880
+ createdAt: Date;
148881
+ type: string;
148882
+ updatedAt: Date;
148883
+ countryId: number | null;
148884
+ postalCode: string;
148885
+ city: string;
148886
+ email: string;
148887
+ nom: string;
148888
+ prenom: string;
148889
+ telephone: string;
148890
+ adress: string;
148891
+ country?: {
148892
+ id: number;
148893
+ createdAt: Date;
148894
+ code: string;
148895
+ updatedAt: Date;
148896
+ name: string;
148897
+ phoneCode: string;
148898
+ } | undefined;
148899
+ } | undefined;
148900
+ vehicule?: {
148901
+ id: number;
148902
+ createdAt: Date;
148903
+ updatedAt: Date;
148904
+ plaque: string;
148905
+ telephoneSociete: string;
148906
+ typeVehicule: string;
148907
+ kmDepart: number;
148908
+ kmRetour: number;
148909
+ pochetteRecu: boolean;
148910
+ carteCarburant: string;
148911
+ carteBancaire: string;
148912
+ bipTelepage: string;
148913
+ } | undefined;
148914
+ userBillingCenters?: {
148915
+ id: number;
148916
+ userId: number;
148917
+ billingCenterId: number;
148918
+ createdAt?: Date | undefined;
148919
+ updatedAt?: Date | undefined;
148920
+ billingCenter?: {
148921
+ id: number;
148922
+ billingCenterName: string;
148923
+ customerId?: number | null | undefined;
148924
+ } | undefined;
148925
+ }[] | undefined;
148926
+ }[];
148927
+ meta: {
148928
+ total: number;
148929
+ perPage: number;
148930
+ currentPage: number;
148931
+ lastPage: number;
148932
+ firstPage: number;
148933
+ firstPageUrl: string;
148934
+ lastPageUrl: string;
148935
+ nextPageUrl: string | null;
148936
+ previousPageUrl: string | null;
148937
+ };
148938
+ }>;
148939
+ message: z.ZodOptional<z.ZodString>;
148940
+ status: z.ZodOptional<z.ZodNumber>;
148941
+ error: z.ZodOptional<z.ZodNever>;
148942
+ success: z.ZodLiteral<true>;
148943
+ }, "strip", z.ZodTypeAny, {
148944
+ data: {
148945
+ data: {
148946
+ id: number;
148947
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148948
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148949
+ countryId: number | null;
148950
+ addressTwo: string;
148951
+ postalCode: string;
148952
+ city: string;
148953
+ telephoneOne: string;
148954
+ telephoneTwo: string;
148955
+ email: string;
148956
+ comments: string;
148957
+ numCodeOne: string;
148958
+ numCodeTwo: string;
148959
+ isActif: boolean;
148960
+ isParis: boolean;
148961
+ isMedical: boolean;
148962
+ isService: boolean;
148963
+ emailOne: string;
148964
+ emailTwo: string;
148965
+ addressOne: string;
148966
+ customerId: number;
148967
+ firstName: string;
148968
+ lastName: string;
148969
+ emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148970
+ password: string;
148971
+ poste: string;
148972
+ roles: string[];
148973
+ isOpsAdmin: boolean;
148974
+ civility: string;
148975
+ isShowCalculatrice: boolean;
148976
+ expedition: boolean;
148977
+ physicCompany: string;
148978
+ menus: string;
148979
+ ongletExpedition: string;
148980
+ chauffeurType: string;
148981
+ typeOfOps: string;
148982
+ prestation: string;
148983
+ tracking: string;
148984
+ expeditionCourse: string;
148985
+ carnetAddress: string;
148986
+ expeditionsCarnet: string;
148987
+ accessArchive: string;
148988
+ isShowImportMenu: boolean;
148989
+ isShowExportMenu: boolean;
148990
+ isShowCourseMenu: boolean;
148991
+ twoRoues: boolean;
148992
+ vt: boolean;
148993
+ lesTwo: boolean;
148994
+ isMiniTracking: boolean;
148995
+ isFullTracking: boolean;
148996
+ isShareCourseAndExpedition: boolean;
148997
+ isShareCarnetAdresse: boolean;
148998
+ isShareCarnetAdresseAndExpedition: boolean;
148999
+ isAccessAuxArchives: boolean;
149000
+ isShowInfo: boolean;
149001
+ photo: string | null;
149002
+ entreprisePhysique: string;
149003
+ isAdminChauffeur: boolean;
149004
+ isShowTracking: boolean;
149005
+ isSupportActivated: boolean;
149006
+ isClientTransitaire: boolean;
149007
+ vehiculeId: number;
149008
+ salaryId: number;
149009
+ country?: {
149010
+ id: number;
149011
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149012
+ code: string;
149013
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149014
+ name: string;
149015
+ phoneCode: string;
149016
+ } | undefined;
149017
+ customer?: {
149018
+ id: number;
149019
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149020
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149021
+ fullName: string;
149022
+ countryId: number;
149023
+ address: string;
149024
+ addressTwo: string | null;
149025
+ postalCode: string;
149026
+ city: string;
149027
+ telephoneOne: string;
149028
+ telephoneTwo: string | null;
149029
+ invoiceMail: string;
149030
+ dafResponsibleName: string;
149031
+ email: string | null;
149032
+ intraVatNumber: string | null;
149033
+ submittedToFrenchVat: boolean;
149034
+ siren: string;
149035
+ numeroEori: string | null;
149036
+ comments: string | null;
149037
+ numCodeOne: string | null;
149038
+ numCodeTwo: string | null;
149039
+ isActif: boolean;
149040
+ isParis: boolean;
149041
+ isMedical: boolean;
149042
+ isService: boolean;
149043
+ valeurCustomer: boolean;
149044
+ dirigeant: string | null;
149045
+ dirigeantTel: string | null;
149046
+ dirigeantEmail: string | null;
149047
+ responsableComptable: string | null;
149048
+ responsableComptableTel: string | null;
149049
+ responsableComptableEmail: string | null;
149050
+ responsableDaf: string | null;
149051
+ responsableDafTel: string | null;
149052
+ responsableDafEmail: string | null;
149053
+ emailFacturation: string | null;
149054
+ logo: string | null;
149055
+ header: string | null;
149056
+ footer: string | null;
149057
+ emailOne: string | null;
149058
+ emailTwo: string | null;
149059
+ emailThree: string | null;
149060
+ tva: string | null;
149061
+ isTrackingMail: boolean | null;
149062
+ isBillingCenter: boolean;
149063
+ isShowNameCustomer: boolean;
149064
+ isMailing: boolean;
149065
+ numeroSiret: string | null;
149066
+ country?: {
149067
+ id: number;
149068
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149069
+ code: string;
149070
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149071
+ name: string;
149072
+ phoneCode: string;
149073
+ } | undefined;
149074
+ } | undefined;
149075
+ salary?: {
149076
+ id: number;
149077
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149078
+ type: string;
149079
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149080
+ countryId: number | null;
149081
+ postalCode: string;
149082
+ city: string;
149083
+ email: string;
149084
+ nom: string;
149085
+ prenom: string;
149086
+ telephone: string;
149087
+ adress: string;
149088
+ country?: {
149089
+ id: number;
149090
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149091
+ code: string;
149092
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149093
+ name: string;
149094
+ phoneCode: string;
149095
+ } | undefined;
149096
+ } | undefined;
149097
+ vehicule?: {
149098
+ id: number;
149099
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149100
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149101
+ plaque: string;
149102
+ telephoneSociete: string;
149103
+ typeVehicule: string;
149104
+ kmDepart: number;
149105
+ kmRetour: number;
149106
+ pochetteRecu: boolean;
149107
+ carteCarburant: string;
149108
+ carteBancaire: string;
149109
+ bipTelepage: string;
149110
+ } | undefined;
149111
+ userBillingCenters?: {
149112
+ id: number;
149113
+ userId: number;
149114
+ billingCenterId: number;
149115
+ createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
149116
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
149117
+ billingCenter?: {
149118
+ id: number;
149119
+ billingCenterName: string;
149120
+ customerId?: number | null | undefined;
149121
+ } | undefined;
149122
+ }[] | undefined;
149123
+ }[];
149124
+ meta: {
149125
+ total: number;
149126
+ perPage: number;
149127
+ currentPage: number;
149128
+ lastPage: number;
149129
+ firstPage: number;
149130
+ firstPageUrl: string;
149131
+ lastPageUrl: string;
149132
+ nextPageUrl: string | null;
149133
+ previousPageUrl: string | null;
149134
+ };
149135
+ };
149136
+ success: true;
149137
+ status?: number | undefined;
149138
+ message?: string | undefined;
149139
+ error?: undefined;
149140
+ }, {
149141
+ data: {
149142
+ data: {
149143
+ id: number;
149144
+ createdAt: Date;
149145
+ updatedAt: Date;
149146
+ countryId: number | null;
149147
+ addressTwo: string;
149148
+ postalCode: string;
149149
+ city: string;
149150
+ telephoneOne: string;
149151
+ telephoneTwo: string;
149152
+ email: string;
149153
+ comments: string;
149154
+ numCodeOne: string;
149155
+ numCodeTwo: string;
149156
+ isActif: boolean;
149157
+ isParis: boolean;
149158
+ isMedical: boolean;
149159
+ isService: boolean;
149160
+ emailOne: string;
149161
+ emailTwo: string;
149162
+ addressOne: string;
149163
+ customerId: number;
149164
+ firstName: string;
149165
+ lastName: string;
149166
+ emailVerifiedAt: Date;
149167
+ password: string;
149168
+ poste: string;
149169
+ roles: string[];
149170
+ isOpsAdmin: boolean;
149171
+ civility: string;
149172
+ isShowCalculatrice: boolean;
149173
+ expedition: boolean;
149174
+ physicCompany: string;
149175
+ menus: string;
149176
+ ongletExpedition: string;
149177
+ chauffeurType: string;
149178
+ typeOfOps: string;
149179
+ prestation: string;
149180
+ tracking: string;
149181
+ expeditionCourse: string;
149182
+ carnetAddress: string;
149183
+ expeditionsCarnet: string;
149184
+ accessArchive: string;
149185
+ isShowImportMenu: boolean;
149186
+ isShowExportMenu: boolean;
149187
+ isShowCourseMenu: boolean;
149188
+ twoRoues: boolean;
149189
+ vt: boolean;
149190
+ lesTwo: boolean;
149191
+ isMiniTracking: boolean;
149192
+ isFullTracking: boolean;
149193
+ isShareCourseAndExpedition: boolean;
149194
+ isShareCarnetAdresse: boolean;
149195
+ isShareCarnetAdresseAndExpedition: boolean;
149196
+ isAccessAuxArchives: boolean;
149197
+ isShowInfo: boolean;
149198
+ photo: string | null;
149199
+ entreprisePhysique: string;
149200
+ isAdminChauffeur: boolean;
149201
+ isShowTracking: boolean;
149202
+ isSupportActivated: boolean;
149203
+ isClientTransitaire: boolean;
149204
+ vehiculeId: number;
149205
+ salaryId: number;
149206
+ country?: {
149207
+ id: number;
149208
+ createdAt: Date;
149209
+ code: string;
149210
+ updatedAt: Date;
149211
+ name: string;
149212
+ phoneCode: string;
149213
+ } | undefined;
149214
+ customer?: {
149215
+ id: number;
149216
+ createdAt: Date;
149217
+ updatedAt: Date;
149218
+ fullName: string;
149219
+ countryId: number;
149220
+ address: string;
149221
+ addressTwo: string | null;
149222
+ postalCode: string;
149223
+ city: string;
149224
+ telephoneOne: string;
149225
+ telephoneTwo: string | null;
149226
+ invoiceMail: string;
149227
+ dafResponsibleName: string;
149228
+ email: string | null;
149229
+ intraVatNumber: string | null;
149230
+ submittedToFrenchVat: boolean;
149231
+ siren: string;
149232
+ numeroEori: string | null;
149233
+ comments: string | null;
149234
+ numCodeOne: string | null;
149235
+ numCodeTwo: string | null;
149236
+ isActif: boolean;
149237
+ isParis: boolean;
149238
+ isMedical: boolean;
149239
+ isService: boolean;
149240
+ valeurCustomer: boolean;
149241
+ dirigeant: string | null;
149242
+ dirigeantTel: string | null;
149243
+ dirigeantEmail: string | null;
149244
+ responsableComptable: string | null;
149245
+ responsableComptableTel: string | null;
149246
+ responsableComptableEmail: string | null;
149247
+ responsableDaf: string | null;
149248
+ responsableDafTel: string | null;
149249
+ responsableDafEmail: string | null;
149250
+ emailFacturation: string | null;
149251
+ logo: string | null;
149252
+ header: string | null;
149253
+ footer: string | null;
149254
+ emailOne: string | null;
149255
+ emailTwo: string | null;
149256
+ emailThree: string | null;
149257
+ tva: string | null;
149258
+ isTrackingMail: boolean | null;
149259
+ isBillingCenter: boolean;
149260
+ isShowNameCustomer: boolean;
149261
+ isMailing: boolean;
149262
+ numeroSiret: string | null;
149263
+ country?: {
149264
+ id: number;
149265
+ createdAt: Date;
149266
+ code: string;
149267
+ updatedAt: Date;
149268
+ name: string;
149269
+ phoneCode: string;
149270
+ } | undefined;
149271
+ } | undefined;
149272
+ salary?: {
149273
+ id: number;
149274
+ createdAt: Date;
149275
+ type: string;
149276
+ updatedAt: Date;
149277
+ countryId: number | null;
149278
+ postalCode: string;
149279
+ city: string;
149280
+ email: string;
149281
+ nom: string;
149282
+ prenom: string;
149283
+ telephone: string;
149284
+ adress: string;
149285
+ country?: {
149286
+ id: number;
149287
+ createdAt: Date;
149288
+ code: string;
149289
+ updatedAt: Date;
149290
+ name: string;
149291
+ phoneCode: string;
149292
+ } | undefined;
149293
+ } | undefined;
149294
+ vehicule?: {
149295
+ id: number;
149296
+ createdAt: Date;
149297
+ updatedAt: Date;
149298
+ plaque: string;
149299
+ telephoneSociete: string;
149300
+ typeVehicule: string;
149301
+ kmDepart: number;
149302
+ kmRetour: number;
149303
+ pochetteRecu: boolean;
149304
+ carteCarburant: string;
149305
+ carteBancaire: string;
149306
+ bipTelepage: string;
149307
+ } | undefined;
149308
+ userBillingCenters?: {
149309
+ id: number;
149310
+ userId: number;
149311
+ billingCenterId: number;
149312
+ createdAt?: Date | undefined;
149313
+ updatedAt?: Date | undefined;
149314
+ billingCenter?: {
149315
+ id: number;
149316
+ billingCenterName: string;
149317
+ customerId?: number | null | undefined;
149318
+ } | undefined;
149319
+ }[] | undefined;
149320
+ }[];
149321
+ meta: {
149322
+ total: number;
149323
+ perPage: number;
149324
+ currentPage: number;
149325
+ lastPage: number;
149326
+ firstPage: number;
149327
+ firstPageUrl: string;
149328
+ lastPageUrl: string;
149329
+ nextPageUrl: string | null;
149330
+ previousPageUrl: string | null;
149331
+ };
149332
+ };
149333
+ success: true;
149334
+ status?: number | undefined;
149335
+ message?: string | undefined;
149336
+ error?: undefined;
149337
+ }>, z.ZodObject<{
149338
+ data: z.ZodNever;
149339
+ message: z.ZodString;
149340
+ status: z.ZodOptional<z.ZodNumber>;
149341
+ error: z.ZodObject<{
149342
+ message: z.ZodString;
149343
+ info: z.ZodObject<{
149344
+ status: z.ZodNumber;
149345
+ code: z.ZodString;
149346
+ messages: z.ZodArray<z.ZodObject<{
149347
+ message: z.ZodString;
149348
+ rule: z.ZodOptional<z.ZodString>;
149349
+ field: z.ZodOptional<z.ZodString>;
149350
+ }, "strip", z.ZodTypeAny, {
149351
+ message: string;
149352
+ rule?: string | undefined;
149353
+ field?: string | undefined;
149354
+ }, {
149355
+ message: string;
149356
+ rule?: string | undefined;
149357
+ field?: string | undefined;
149358
+ }>, "many">;
149359
+ }, "strip", z.ZodTypeAny, {
149360
+ status: number;
149361
+ code: string;
149362
+ messages: {
149363
+ message: string;
149364
+ rule?: string | undefined;
149365
+ field?: string | undefined;
149366
+ }[];
149367
+ }, {
149368
+ status: number;
149369
+ code: string;
149370
+ messages: {
149371
+ message: string;
149372
+ rule?: string | undefined;
149373
+ field?: string | undefined;
149374
+ }[];
149375
+ }>;
149376
+ }, "strip", z.ZodTypeAny, {
149377
+ message: string;
149378
+ info: {
149379
+ status: number;
149380
+ code: string;
149381
+ messages: {
149382
+ message: string;
149383
+ rule?: string | undefined;
149384
+ field?: string | undefined;
149385
+ }[];
149386
+ };
149387
+ }, {
149388
+ message: string;
149389
+ info: {
149390
+ status: number;
149391
+ code: string;
149392
+ messages: {
149393
+ message: string;
149394
+ rule?: string | undefined;
149395
+ field?: string | undefined;
149396
+ }[];
149397
+ };
149398
+ }>;
149399
+ success: z.ZodNever;
149400
+ }, "strip", z.ZodTypeAny, {
149401
+ message: string;
149402
+ data: never;
149403
+ error: {
149404
+ message: string;
149405
+ info: {
149406
+ status: number;
149407
+ code: string;
149408
+ messages: {
149409
+ message: string;
149410
+ rule?: string | undefined;
149411
+ field?: string | undefined;
149412
+ }[];
149413
+ };
149414
+ };
149415
+ success: never;
149416
+ status?: number | undefined;
149417
+ }, {
149418
+ message: string;
149419
+ data: never;
149420
+ error: {
149421
+ message: string;
149422
+ info: {
149423
+ status: number;
149424
+ code: string;
149425
+ messages: {
149426
+ message: string;
149427
+ rule?: string | undefined;
149428
+ field?: string | undefined;
149429
+ }[];
149430
+ };
149431
+ };
149432
+ success: never;
149433
+ status?: number | undefined;
149434
+ }>]>;
149435
+ };
149436
+ };
145049
149437
  declare const countryRoutes: {
145050
149438
  liste: {
145051
149439
  method: "GET";
@@ -170650,6 +175038,8 @@ export declare const opsRoutes: {
170650
175038
  fuel: typeof fuelRoutes;
170651
175039
  manifest: typeof manifestRoutes;
170652
175040
  shippingManifest: typeof shippingManifestRoutes;
175041
+ shippingTracking: typeof shippingTrackingRoutes;
175042
+ userDriver: typeof userDriverRoutes;
170653
175043
  country: typeof countryRoutes;
170654
175044
  contact: typeof contactRoutes;
170655
175045
  supportTicket: typeof supportTicketRoutes;