exnet-routing 1.2.25 → 1.2.26

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.
@@ -129308,6 +129308,2342 @@ declare const countryRoutes: {
129308
129308
  }>]>;
129309
129309
  };
129310
129310
  };
129311
+ declare const contactRoutes: {
129312
+ byBillingCenter: {
129313
+ method: "GET";
129314
+ url: string;
129315
+ params: z.ZodObject<{
129316
+ billingCenterId: z.ZodString;
129317
+ }, "strip", z.ZodTypeAny, {
129318
+ billingCenterId: string;
129319
+ }, {
129320
+ billingCenterId: string;
129321
+ }>;
129322
+ searchParams: z.ZodObject<z.objectUtil.extendShape<{
129323
+ page: z.ZodOptional<z.ZodNumber>;
129324
+ limit: z.ZodOptional<z.ZodNumber>;
129325
+ search: z.ZodOptional<z.ZodString>;
129326
+ sortBy: z.ZodOptional<z.ZodString>;
129327
+ direction: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
129328
+ }, {
129329
+ letter: z.ZodOptional<z.ZodString>;
129330
+ }>, "strip", z.ZodTypeAny, {
129331
+ page?: number | undefined;
129332
+ limit?: number | undefined;
129333
+ search?: string | undefined;
129334
+ sortBy?: string | undefined;
129335
+ direction?: "asc" | "desc" | undefined;
129336
+ letter?: string | undefined;
129337
+ }, {
129338
+ page?: number | undefined;
129339
+ limit?: number | undefined;
129340
+ search?: string | undefined;
129341
+ sortBy?: string | undefined;
129342
+ direction?: "asc" | "desc" | undefined;
129343
+ letter?: string | undefined;
129344
+ }>;
129345
+ response: z.ZodUnion<[z.ZodObject<{
129346
+ data: z.ZodObject<{
129347
+ meta: typeof import("./../models").PaginationmetaSchema;
129348
+ data: z.ZodArray<z.ZodObject<{
129349
+ id: z.ZodNumber;
129350
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129351
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129352
+ civility: z.ZodNullable<z.ZodString>;
129353
+ isParis: z.ZodBoolean;
129354
+ isMedical: z.ZodBoolean;
129355
+ isService: z.ZodBoolean;
129356
+ fullName: z.ZodString;
129357
+ firstName: z.ZodString;
129358
+ lastName: z.ZodString;
129359
+ company: z.ZodString;
129360
+ postalCode: z.ZodString;
129361
+ city: z.ZodString;
129362
+ telephoneOne: z.ZodString;
129363
+ telephoneTwo: z.ZodNullable<z.ZodString>;
129364
+ emailOne: z.ZodString;
129365
+ emailTwo: z.ZodNullable<z.ZodString>;
129366
+ comments: z.ZodNullable<z.ZodString>;
129367
+ addressOne: z.ZodNullable<z.ZodString>;
129368
+ addressTwo: z.ZodNullable<z.ZodString>;
129369
+ typeContact: z.ZodNativeEnum<{
129370
+ readonly EXPEDITOR: "expeditor";
129371
+ readonly RECEIVER: "receiver";
129372
+ readonly ALL: "all";
129373
+ }>;
129374
+ countryId: z.ZodNullable<z.ZodNumber>;
129375
+ userId: z.ZodNullable<z.ZodNumber>;
129376
+ country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
129377
+ id: z.ZodNumber;
129378
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129379
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129380
+ name: z.ZodString;
129381
+ code: z.ZodString;
129382
+ phoneCode: z.ZodString;
129383
+ }, "strip", z.ZodTypeAny, {
129384
+ id: number;
129385
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129386
+ code: string;
129387
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129388
+ name: string;
129389
+ phoneCode: string;
129390
+ }, {
129391
+ id: number;
129392
+ createdAt: Date;
129393
+ code: string;
129394
+ updatedAt: Date;
129395
+ name: string;
129396
+ phoneCode: string;
129397
+ }>>>;
129398
+ user: z.ZodOptional<z.ZodLazy<z.ZodObject<{
129399
+ id: z.ZodNumber;
129400
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129401
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129402
+ firstName: z.ZodString;
129403
+ lastName: z.ZodString;
129404
+ email: z.ZodString;
129405
+ emailVerifiedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129406
+ password: z.ZodString;
129407
+ isActif: z.ZodBoolean;
129408
+ countryId: z.ZodNullable<z.ZodNumber>;
129409
+ postalCode: z.ZodString;
129410
+ city: z.ZodString;
129411
+ poste: z.ZodString;
129412
+ comments: z.ZodString;
129413
+ addressOne: z.ZodString;
129414
+ addressTwo: z.ZodString;
129415
+ telephoneOne: z.ZodString;
129416
+ telephoneTwo: z.ZodString;
129417
+ emailOne: z.ZodString;
129418
+ emailTwo: z.ZodString;
129419
+ roles: z.ZodArray<z.ZodString, "many">;
129420
+ isOpsAdmin: z.ZodBoolean;
129421
+ civility: z.ZodString;
129422
+ numCodeOne: z.ZodString;
129423
+ numCodeTwo: z.ZodString;
129424
+ isShowCalculatrice: z.ZodBoolean;
129425
+ expedition: z.ZodBoolean;
129426
+ physicCompany: z.ZodString;
129427
+ isParis: z.ZodBoolean;
129428
+ isMedical: z.ZodBoolean;
129429
+ isService: z.ZodBoolean;
129430
+ menus: z.ZodString;
129431
+ ongletExpedition: z.ZodString;
129432
+ chauffeurType: z.ZodString;
129433
+ typeOfOps: z.ZodString;
129434
+ prestation: z.ZodString;
129435
+ tracking: z.ZodString;
129436
+ expeditionCourse: z.ZodString;
129437
+ carnetAddress: z.ZodString;
129438
+ expeditionsCarnet: z.ZodString;
129439
+ accessArchive: z.ZodString;
129440
+ isShowImportMenu: z.ZodBoolean;
129441
+ isShowExportMenu: z.ZodBoolean;
129442
+ isShowCourseMenu: z.ZodBoolean;
129443
+ twoRoues: z.ZodBoolean;
129444
+ vt: z.ZodBoolean;
129445
+ lesTwo: z.ZodBoolean;
129446
+ isMiniTracking: z.ZodBoolean;
129447
+ isFullTracking: z.ZodBoolean;
129448
+ isShareCourseAndExpedition: z.ZodBoolean;
129449
+ isShareCarnetAdresse: z.ZodBoolean;
129450
+ isShareCarnetAdresseAndExpedition: z.ZodBoolean;
129451
+ isAccessAuxArchives: z.ZodBoolean;
129452
+ isShowInfo: z.ZodBoolean;
129453
+ photo: z.ZodNullable<z.ZodString>;
129454
+ entreprisePhysique: z.ZodString;
129455
+ isAdminChauffeur: z.ZodBoolean;
129456
+ isShowTracking: z.ZodBoolean;
129457
+ isClientTransitaire: z.ZodBoolean;
129458
+ customerId: z.ZodNumber;
129459
+ vehiculeId: z.ZodNumber;
129460
+ salaryId: z.ZodNumber;
129461
+ customer: z.ZodOptional<z.ZodLazy<z.ZodObject<{
129462
+ id: z.ZodNumber;
129463
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129464
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129465
+ fullName: z.ZodString;
129466
+ countryId: z.ZodNumber;
129467
+ address: z.ZodString;
129468
+ addressTwo: z.ZodNullable<z.ZodString>;
129469
+ postalCode: z.ZodString;
129470
+ city: z.ZodString;
129471
+ telephoneOne: z.ZodString;
129472
+ telephoneTwo: z.ZodNullable<z.ZodString>;
129473
+ comptaResponsible: z.ZodString;
129474
+ invoiceMail: z.ZodString;
129475
+ dafResponsibleName: z.ZodString;
129476
+ telephone: z.ZodString;
129477
+ email: z.ZodNullable<z.ZodString>;
129478
+ intraVatNumber: z.ZodNullable<z.ZodString>;
129479
+ submittedToFrenchVat: z.ZodBoolean;
129480
+ siren: z.ZodString;
129481
+ numeroEori: z.ZodNullable<z.ZodString>;
129482
+ comments: z.ZodNullable<z.ZodString>;
129483
+ numCodeOne: z.ZodNullable<z.ZodString>;
129484
+ numCodeTwo: z.ZodNullable<z.ZodString>;
129485
+ isActif: z.ZodBoolean;
129486
+ isParis: z.ZodBoolean;
129487
+ isMedical: z.ZodBoolean;
129488
+ isService: z.ZodBoolean;
129489
+ valeurCustomer: z.ZodBoolean;
129490
+ dirigeant: z.ZodNullable<z.ZodString>;
129491
+ dirigeantTel: z.ZodNullable<z.ZodString>;
129492
+ dirigeantEmail: z.ZodNullable<z.ZodString>;
129493
+ responsableComptable: z.ZodNullable<z.ZodString>;
129494
+ responsableComptableTel: z.ZodNullable<z.ZodString>;
129495
+ responsableComptableEmail: z.ZodNullable<z.ZodString>;
129496
+ responsableDaf: z.ZodNullable<z.ZodString>;
129497
+ responsableDafTel: z.ZodNullable<z.ZodString>;
129498
+ responsableDafEmail: z.ZodNullable<z.ZodString>;
129499
+ emailFacturation: z.ZodNullable<z.ZodString>;
129500
+ logo: z.ZodNullable<z.ZodString>;
129501
+ header: z.ZodNullable<z.ZodString>;
129502
+ footer: z.ZodNullable<z.ZodString>;
129503
+ emailOne: z.ZodNullable<z.ZodString>;
129504
+ emailTwo: z.ZodNullable<z.ZodString>;
129505
+ emailThree: z.ZodNullable<z.ZodString>;
129506
+ eori: z.ZodNullable<z.ZodString>;
129507
+ tva: z.ZodNullable<z.ZodString>;
129508
+ isTrackingMail: z.ZodNullable<z.ZodBoolean>;
129509
+ isBillingCenter: z.ZodBoolean;
129510
+ isShowNameCustomer: z.ZodBoolean;
129511
+ isMailing: z.ZodBoolean;
129512
+ numeroSiret: z.ZodNullable<z.ZodString>;
129513
+ country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
129514
+ id: z.ZodNumber;
129515
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129516
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129517
+ name: z.ZodString;
129518
+ code: z.ZodString;
129519
+ phoneCode: z.ZodString;
129520
+ }, "strip", z.ZodTypeAny, {
129521
+ id: number;
129522
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129523
+ code: string;
129524
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129525
+ name: string;
129526
+ phoneCode: string;
129527
+ }, {
129528
+ id: number;
129529
+ createdAt: Date;
129530
+ code: string;
129531
+ updatedAt: Date;
129532
+ name: string;
129533
+ phoneCode: string;
129534
+ }>>>;
129535
+ }, "strip", z.ZodTypeAny, {
129536
+ id: number;
129537
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129538
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129539
+ fullName: string;
129540
+ countryId: number;
129541
+ address: string;
129542
+ addressTwo: string | null;
129543
+ postalCode: string;
129544
+ city: string;
129545
+ telephoneOne: string;
129546
+ telephoneTwo: string | null;
129547
+ comptaResponsible: string;
129548
+ invoiceMail: string;
129549
+ dafResponsibleName: string;
129550
+ telephone: string;
129551
+ email: string | null;
129552
+ intraVatNumber: string | null;
129553
+ submittedToFrenchVat: boolean;
129554
+ siren: string;
129555
+ numeroEori: string | null;
129556
+ comments: string | null;
129557
+ numCodeOne: string | null;
129558
+ numCodeTwo: string | null;
129559
+ isActif: boolean;
129560
+ isParis: boolean;
129561
+ isMedical: boolean;
129562
+ isService: boolean;
129563
+ valeurCustomer: boolean;
129564
+ dirigeant: string | null;
129565
+ dirigeantTel: string | null;
129566
+ dirigeantEmail: string | null;
129567
+ responsableComptable: string | null;
129568
+ responsableComptableTel: string | null;
129569
+ responsableComptableEmail: string | null;
129570
+ responsableDaf: string | null;
129571
+ responsableDafTel: string | null;
129572
+ responsableDafEmail: string | null;
129573
+ emailFacturation: string | null;
129574
+ logo: string | null;
129575
+ header: string | null;
129576
+ footer: string | null;
129577
+ emailOne: string | null;
129578
+ emailTwo: string | null;
129579
+ emailThree: string | null;
129580
+ eori: string | null;
129581
+ tva: string | null;
129582
+ isTrackingMail: boolean | null;
129583
+ isBillingCenter: boolean;
129584
+ isShowNameCustomer: boolean;
129585
+ isMailing: boolean;
129586
+ numeroSiret: string | null;
129587
+ country?: {
129588
+ id: number;
129589
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129590
+ code: string;
129591
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129592
+ name: string;
129593
+ phoneCode: string;
129594
+ } | undefined;
129595
+ }, {
129596
+ id: number;
129597
+ createdAt: Date;
129598
+ updatedAt: Date;
129599
+ fullName: string;
129600
+ countryId: number;
129601
+ address: string;
129602
+ addressTwo: string | null;
129603
+ postalCode: string;
129604
+ city: string;
129605
+ telephoneOne: string;
129606
+ telephoneTwo: string | null;
129607
+ comptaResponsible: string;
129608
+ invoiceMail: string;
129609
+ dafResponsibleName: string;
129610
+ telephone: string;
129611
+ email: string | null;
129612
+ intraVatNumber: string | null;
129613
+ submittedToFrenchVat: boolean;
129614
+ siren: string;
129615
+ numeroEori: string | null;
129616
+ comments: string | null;
129617
+ numCodeOne: string | null;
129618
+ numCodeTwo: string | null;
129619
+ isActif: boolean;
129620
+ isParis: boolean;
129621
+ isMedical: boolean;
129622
+ isService: boolean;
129623
+ valeurCustomer: boolean;
129624
+ dirigeant: string | null;
129625
+ dirigeantTel: string | null;
129626
+ dirigeantEmail: string | null;
129627
+ responsableComptable: string | null;
129628
+ responsableComptableTel: string | null;
129629
+ responsableComptableEmail: string | null;
129630
+ responsableDaf: string | null;
129631
+ responsableDafTel: string | null;
129632
+ responsableDafEmail: string | null;
129633
+ emailFacturation: string | null;
129634
+ logo: string | null;
129635
+ header: string | null;
129636
+ footer: string | null;
129637
+ emailOne: string | null;
129638
+ emailTwo: string | null;
129639
+ emailThree: string | null;
129640
+ eori: string | null;
129641
+ tva: string | null;
129642
+ isTrackingMail: boolean | null;
129643
+ isBillingCenter: boolean;
129644
+ isShowNameCustomer: boolean;
129645
+ isMailing: boolean;
129646
+ numeroSiret: string | null;
129647
+ country?: {
129648
+ id: number;
129649
+ createdAt: Date;
129650
+ code: string;
129651
+ updatedAt: Date;
129652
+ name: string;
129653
+ phoneCode: string;
129654
+ } | undefined;
129655
+ }>>>;
129656
+ salary: z.ZodOptional<z.ZodLazy<z.ZodObject<{
129657
+ id: z.ZodNumber;
129658
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129659
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129660
+ nom: z.ZodString;
129661
+ prenom: z.ZodString;
129662
+ email: z.ZodString;
129663
+ telephone: z.ZodString;
129664
+ type: z.ZodString;
129665
+ adress: z.ZodString;
129666
+ city: z.ZodString;
129667
+ countryId: z.ZodNullable<z.ZodNumber>;
129668
+ postalCode: z.ZodString;
129669
+ country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
129670
+ id: z.ZodNumber;
129671
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129672
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129673
+ name: z.ZodString;
129674
+ code: z.ZodString;
129675
+ phoneCode: z.ZodString;
129676
+ }, "strip", z.ZodTypeAny, {
129677
+ id: number;
129678
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129679
+ code: string;
129680
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129681
+ name: string;
129682
+ phoneCode: string;
129683
+ }, {
129684
+ id: number;
129685
+ createdAt: Date;
129686
+ code: string;
129687
+ updatedAt: Date;
129688
+ name: string;
129689
+ phoneCode: string;
129690
+ }>>>;
129691
+ }, "strip", z.ZodTypeAny, {
129692
+ id: number;
129693
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129694
+ type: string;
129695
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129696
+ countryId: number | null;
129697
+ postalCode: string;
129698
+ city: string;
129699
+ telephone: string;
129700
+ email: string;
129701
+ nom: string;
129702
+ prenom: string;
129703
+ adress: string;
129704
+ country?: {
129705
+ id: number;
129706
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129707
+ code: string;
129708
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129709
+ name: string;
129710
+ phoneCode: string;
129711
+ } | undefined;
129712
+ }, {
129713
+ id: number;
129714
+ createdAt: Date;
129715
+ type: string;
129716
+ updatedAt: Date;
129717
+ countryId: number | null;
129718
+ postalCode: string;
129719
+ city: string;
129720
+ telephone: string;
129721
+ email: string;
129722
+ nom: string;
129723
+ prenom: string;
129724
+ adress: string;
129725
+ country?: {
129726
+ id: number;
129727
+ createdAt: Date;
129728
+ code: string;
129729
+ updatedAt: Date;
129730
+ name: string;
129731
+ phoneCode: string;
129732
+ } | undefined;
129733
+ }>>>;
129734
+ vehicule: z.ZodOptional<z.ZodLazy<z.ZodObject<{
129735
+ id: z.ZodNumber;
129736
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129737
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129738
+ plaque: z.ZodString;
129739
+ telephoneSociete: z.ZodString;
129740
+ typeVehicule: z.ZodString;
129741
+ kmDepart: z.ZodNumber;
129742
+ kmRetour: z.ZodNumber;
129743
+ pochetteRecu: z.ZodBoolean;
129744
+ carteCarburant: z.ZodString;
129745
+ carteBancaire: z.ZodString;
129746
+ bipTelepage: z.ZodString;
129747
+ }, "strip", z.ZodTypeAny, {
129748
+ id: number;
129749
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129750
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129751
+ plaque: string;
129752
+ telephoneSociete: string;
129753
+ typeVehicule: string;
129754
+ kmDepart: number;
129755
+ kmRetour: number;
129756
+ pochetteRecu: boolean;
129757
+ carteCarburant: string;
129758
+ carteBancaire: string;
129759
+ bipTelepage: string;
129760
+ }, {
129761
+ id: number;
129762
+ createdAt: Date;
129763
+ updatedAt: Date;
129764
+ plaque: string;
129765
+ telephoneSociete: string;
129766
+ typeVehicule: string;
129767
+ kmDepart: number;
129768
+ kmRetour: number;
129769
+ pochetteRecu: boolean;
129770
+ carteCarburant: string;
129771
+ carteBancaire: string;
129772
+ bipTelepage: string;
129773
+ }>>>;
129774
+ country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
129775
+ id: z.ZodNumber;
129776
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129777
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
129778
+ name: z.ZodString;
129779
+ code: z.ZodString;
129780
+ phoneCode: z.ZodString;
129781
+ }, "strip", z.ZodTypeAny, {
129782
+ id: number;
129783
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129784
+ code: string;
129785
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129786
+ name: string;
129787
+ phoneCode: string;
129788
+ }, {
129789
+ id: number;
129790
+ createdAt: Date;
129791
+ code: string;
129792
+ updatedAt: Date;
129793
+ name: string;
129794
+ phoneCode: string;
129795
+ }>>>;
129796
+ userBillingCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
129797
+ id: z.ZodNumber;
129798
+ createdAt: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
129799
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
129800
+ userId: z.ZodNumber;
129801
+ billingCenterId: z.ZodNumber;
129802
+ billingCenter: z.ZodOptional<z.ZodObject<{
129803
+ id: z.ZodNumber;
129804
+ billingCenterName: z.ZodString;
129805
+ customerId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
129806
+ }, "strip", z.ZodTypeAny, {
129807
+ id: number;
129808
+ billingCenterName: string;
129809
+ customerId?: number | null | undefined;
129810
+ }, {
129811
+ id: number;
129812
+ billingCenterName: string;
129813
+ customerId?: number | null | undefined;
129814
+ }>>;
129815
+ }, "strip", z.ZodTypeAny, {
129816
+ id: number;
129817
+ userId: number;
129818
+ billingCenterId: number;
129819
+ createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
129820
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
129821
+ billingCenter?: {
129822
+ id: number;
129823
+ billingCenterName: string;
129824
+ customerId?: number | null | undefined;
129825
+ } | undefined;
129826
+ }, {
129827
+ id: number;
129828
+ userId: number;
129829
+ billingCenterId: number;
129830
+ createdAt?: Date | undefined;
129831
+ updatedAt?: Date | undefined;
129832
+ billingCenter?: {
129833
+ id: number;
129834
+ billingCenterName: string;
129835
+ customerId?: number | null | undefined;
129836
+ } | undefined;
129837
+ }>, "many">>;
129838
+ }, "strip", z.ZodTypeAny, {
129839
+ id: number;
129840
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129841
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129842
+ countryId: number | null;
129843
+ addressTwo: string;
129844
+ postalCode: string;
129845
+ city: string;
129846
+ telephoneOne: string;
129847
+ telephoneTwo: string;
129848
+ email: string;
129849
+ comments: string;
129850
+ numCodeOne: string;
129851
+ numCodeTwo: string;
129852
+ isActif: boolean;
129853
+ isParis: boolean;
129854
+ isMedical: boolean;
129855
+ isService: boolean;
129856
+ emailOne: string;
129857
+ emailTwo: string;
129858
+ addressOne: string;
129859
+ customerId: number;
129860
+ firstName: string;
129861
+ lastName: string;
129862
+ emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129863
+ password: string;
129864
+ poste: string;
129865
+ roles: string[];
129866
+ isOpsAdmin: boolean;
129867
+ civility: string;
129868
+ isShowCalculatrice: boolean;
129869
+ expedition: boolean;
129870
+ physicCompany: string;
129871
+ menus: string;
129872
+ ongletExpedition: string;
129873
+ chauffeurType: string;
129874
+ typeOfOps: string;
129875
+ prestation: string;
129876
+ tracking: string;
129877
+ expeditionCourse: string;
129878
+ carnetAddress: string;
129879
+ expeditionsCarnet: string;
129880
+ accessArchive: string;
129881
+ isShowImportMenu: boolean;
129882
+ isShowExportMenu: boolean;
129883
+ isShowCourseMenu: boolean;
129884
+ twoRoues: boolean;
129885
+ vt: boolean;
129886
+ lesTwo: boolean;
129887
+ isMiniTracking: boolean;
129888
+ isFullTracking: boolean;
129889
+ isShareCourseAndExpedition: boolean;
129890
+ isShareCarnetAdresse: boolean;
129891
+ isShareCarnetAdresseAndExpedition: boolean;
129892
+ isAccessAuxArchives: boolean;
129893
+ isShowInfo: boolean;
129894
+ photo: string | null;
129895
+ entreprisePhysique: string;
129896
+ isAdminChauffeur: boolean;
129897
+ isShowTracking: boolean;
129898
+ isClientTransitaire: boolean;
129899
+ vehiculeId: number;
129900
+ salaryId: number;
129901
+ country?: {
129902
+ id: number;
129903
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129904
+ code: string;
129905
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129906
+ name: string;
129907
+ phoneCode: string;
129908
+ } | undefined;
129909
+ customer?: {
129910
+ id: number;
129911
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129912
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129913
+ fullName: string;
129914
+ countryId: number;
129915
+ address: string;
129916
+ addressTwo: string | null;
129917
+ postalCode: string;
129918
+ city: string;
129919
+ telephoneOne: string;
129920
+ telephoneTwo: string | null;
129921
+ comptaResponsible: string;
129922
+ invoiceMail: string;
129923
+ dafResponsibleName: string;
129924
+ telephone: string;
129925
+ email: string | null;
129926
+ intraVatNumber: string | null;
129927
+ submittedToFrenchVat: boolean;
129928
+ siren: string;
129929
+ numeroEori: string | null;
129930
+ comments: string | null;
129931
+ numCodeOne: string | null;
129932
+ numCodeTwo: string | null;
129933
+ isActif: boolean;
129934
+ isParis: boolean;
129935
+ isMedical: boolean;
129936
+ isService: boolean;
129937
+ valeurCustomer: boolean;
129938
+ dirigeant: string | null;
129939
+ dirigeantTel: string | null;
129940
+ dirigeantEmail: string | null;
129941
+ responsableComptable: string | null;
129942
+ responsableComptableTel: string | null;
129943
+ responsableComptableEmail: string | null;
129944
+ responsableDaf: string | null;
129945
+ responsableDafTel: string | null;
129946
+ responsableDafEmail: string | null;
129947
+ emailFacturation: string | null;
129948
+ logo: string | null;
129949
+ header: string | null;
129950
+ footer: string | null;
129951
+ emailOne: string | null;
129952
+ emailTwo: string | null;
129953
+ emailThree: string | null;
129954
+ eori: string | null;
129955
+ tva: string | null;
129956
+ isTrackingMail: boolean | null;
129957
+ isBillingCenter: boolean;
129958
+ isShowNameCustomer: boolean;
129959
+ isMailing: boolean;
129960
+ numeroSiret: string | null;
129961
+ country?: {
129962
+ id: number;
129963
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129964
+ code: string;
129965
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129966
+ name: string;
129967
+ phoneCode: string;
129968
+ } | undefined;
129969
+ } | undefined;
129970
+ salary?: {
129971
+ id: number;
129972
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129973
+ type: string;
129974
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129975
+ countryId: number | null;
129976
+ postalCode: string;
129977
+ city: string;
129978
+ telephone: string;
129979
+ email: string;
129980
+ nom: string;
129981
+ prenom: string;
129982
+ adress: string;
129983
+ country?: {
129984
+ id: number;
129985
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129986
+ code: string;
129987
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129988
+ name: string;
129989
+ phoneCode: string;
129990
+ } | undefined;
129991
+ } | undefined;
129992
+ vehicule?: {
129993
+ id: number;
129994
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129995
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
129996
+ plaque: string;
129997
+ telephoneSociete: string;
129998
+ typeVehicule: string;
129999
+ kmDepart: number;
130000
+ kmRetour: number;
130001
+ pochetteRecu: boolean;
130002
+ carteCarburant: string;
130003
+ carteBancaire: string;
130004
+ bipTelepage: string;
130005
+ } | undefined;
130006
+ userBillingCenters?: {
130007
+ id: number;
130008
+ userId: number;
130009
+ billingCenterId: number;
130010
+ createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
130011
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
130012
+ billingCenter?: {
130013
+ id: number;
130014
+ billingCenterName: string;
130015
+ customerId?: number | null | undefined;
130016
+ } | undefined;
130017
+ }[] | undefined;
130018
+ }, {
130019
+ id: number;
130020
+ createdAt: Date;
130021
+ updatedAt: Date;
130022
+ countryId: number | null;
130023
+ addressTwo: string;
130024
+ postalCode: string;
130025
+ city: string;
130026
+ telephoneOne: string;
130027
+ telephoneTwo: string;
130028
+ email: string;
130029
+ comments: string;
130030
+ numCodeOne: string;
130031
+ numCodeTwo: string;
130032
+ isActif: boolean;
130033
+ isParis: boolean;
130034
+ isMedical: boolean;
130035
+ isService: boolean;
130036
+ emailOne: string;
130037
+ emailTwo: string;
130038
+ addressOne: string;
130039
+ customerId: number;
130040
+ firstName: string;
130041
+ lastName: string;
130042
+ emailVerifiedAt: Date;
130043
+ password: string;
130044
+ poste: string;
130045
+ roles: string[];
130046
+ isOpsAdmin: boolean;
130047
+ civility: string;
130048
+ isShowCalculatrice: boolean;
130049
+ expedition: boolean;
130050
+ physicCompany: string;
130051
+ menus: string;
130052
+ ongletExpedition: string;
130053
+ chauffeurType: string;
130054
+ typeOfOps: string;
130055
+ prestation: string;
130056
+ tracking: string;
130057
+ expeditionCourse: string;
130058
+ carnetAddress: string;
130059
+ expeditionsCarnet: string;
130060
+ accessArchive: string;
130061
+ isShowImportMenu: boolean;
130062
+ isShowExportMenu: boolean;
130063
+ isShowCourseMenu: boolean;
130064
+ twoRoues: boolean;
130065
+ vt: boolean;
130066
+ lesTwo: boolean;
130067
+ isMiniTracking: boolean;
130068
+ isFullTracking: boolean;
130069
+ isShareCourseAndExpedition: boolean;
130070
+ isShareCarnetAdresse: boolean;
130071
+ isShareCarnetAdresseAndExpedition: boolean;
130072
+ isAccessAuxArchives: boolean;
130073
+ isShowInfo: boolean;
130074
+ photo: string | null;
130075
+ entreprisePhysique: string;
130076
+ isAdminChauffeur: boolean;
130077
+ isShowTracking: boolean;
130078
+ isClientTransitaire: boolean;
130079
+ vehiculeId: number;
130080
+ salaryId: number;
130081
+ country?: {
130082
+ id: number;
130083
+ createdAt: Date;
130084
+ code: string;
130085
+ updatedAt: Date;
130086
+ name: string;
130087
+ phoneCode: string;
130088
+ } | undefined;
130089
+ customer?: {
130090
+ id: number;
130091
+ createdAt: Date;
130092
+ updatedAt: Date;
130093
+ fullName: string;
130094
+ countryId: number;
130095
+ address: string;
130096
+ addressTwo: string | null;
130097
+ postalCode: string;
130098
+ city: string;
130099
+ telephoneOne: string;
130100
+ telephoneTwo: string | null;
130101
+ comptaResponsible: string;
130102
+ invoiceMail: string;
130103
+ dafResponsibleName: string;
130104
+ telephone: string;
130105
+ email: string | null;
130106
+ intraVatNumber: string | null;
130107
+ submittedToFrenchVat: boolean;
130108
+ siren: string;
130109
+ numeroEori: string | null;
130110
+ comments: string | null;
130111
+ numCodeOne: string | null;
130112
+ numCodeTwo: string | null;
130113
+ isActif: boolean;
130114
+ isParis: boolean;
130115
+ isMedical: boolean;
130116
+ isService: boolean;
130117
+ valeurCustomer: boolean;
130118
+ dirigeant: string | null;
130119
+ dirigeantTel: string | null;
130120
+ dirigeantEmail: string | null;
130121
+ responsableComptable: string | null;
130122
+ responsableComptableTel: string | null;
130123
+ responsableComptableEmail: string | null;
130124
+ responsableDaf: string | null;
130125
+ responsableDafTel: string | null;
130126
+ responsableDafEmail: string | null;
130127
+ emailFacturation: string | null;
130128
+ logo: string | null;
130129
+ header: string | null;
130130
+ footer: string | null;
130131
+ emailOne: string | null;
130132
+ emailTwo: string | null;
130133
+ emailThree: string | null;
130134
+ eori: string | null;
130135
+ tva: string | null;
130136
+ isTrackingMail: boolean | null;
130137
+ isBillingCenter: boolean;
130138
+ isShowNameCustomer: boolean;
130139
+ isMailing: boolean;
130140
+ numeroSiret: string | null;
130141
+ country?: {
130142
+ id: number;
130143
+ createdAt: Date;
130144
+ code: string;
130145
+ updatedAt: Date;
130146
+ name: string;
130147
+ phoneCode: string;
130148
+ } | undefined;
130149
+ } | undefined;
130150
+ salary?: {
130151
+ id: number;
130152
+ createdAt: Date;
130153
+ type: string;
130154
+ updatedAt: Date;
130155
+ countryId: number | null;
130156
+ postalCode: string;
130157
+ city: string;
130158
+ telephone: string;
130159
+ email: string;
130160
+ nom: string;
130161
+ prenom: string;
130162
+ adress: string;
130163
+ country?: {
130164
+ id: number;
130165
+ createdAt: Date;
130166
+ code: string;
130167
+ updatedAt: Date;
130168
+ name: string;
130169
+ phoneCode: string;
130170
+ } | undefined;
130171
+ } | undefined;
130172
+ vehicule?: {
130173
+ id: number;
130174
+ createdAt: Date;
130175
+ updatedAt: Date;
130176
+ plaque: string;
130177
+ telephoneSociete: string;
130178
+ typeVehicule: string;
130179
+ kmDepart: number;
130180
+ kmRetour: number;
130181
+ pochetteRecu: boolean;
130182
+ carteCarburant: string;
130183
+ carteBancaire: string;
130184
+ bipTelepage: string;
130185
+ } | undefined;
130186
+ userBillingCenters?: {
130187
+ id: number;
130188
+ userId: number;
130189
+ billingCenterId: number;
130190
+ createdAt?: Date | undefined;
130191
+ updatedAt?: Date | undefined;
130192
+ billingCenter?: {
130193
+ id: number;
130194
+ billingCenterName: string;
130195
+ customerId?: number | null | undefined;
130196
+ } | undefined;
130197
+ }[] | undefined;
130198
+ }>>>;
130199
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
130200
+ id: number;
130201
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130202
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130203
+ fullName: string;
130204
+ countryId: number | null;
130205
+ addressTwo: string | null;
130206
+ postalCode: string;
130207
+ city: string;
130208
+ telephoneOne: string;
130209
+ telephoneTwo: string | null;
130210
+ comments: string | null;
130211
+ isParis: boolean;
130212
+ isMedical: boolean;
130213
+ isService: boolean;
130214
+ emailOne: string;
130215
+ emailTwo: string | null;
130216
+ addressOne: string | null;
130217
+ userId: number | null;
130218
+ firstName: string;
130219
+ lastName: string;
130220
+ civility: string | null;
130221
+ company: string;
130222
+ typeContact: "all" | "expeditor" | "receiver";
130223
+ country?: {
130224
+ id: number;
130225
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130226
+ code: string;
130227
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130228
+ name: string;
130229
+ phoneCode: string;
130230
+ } | undefined;
130231
+ user?: {
130232
+ id: number;
130233
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130234
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130235
+ countryId: number | null;
130236
+ addressTwo: string;
130237
+ postalCode: string;
130238
+ city: string;
130239
+ telephoneOne: string;
130240
+ telephoneTwo: string;
130241
+ email: string;
130242
+ comments: string;
130243
+ numCodeOne: string;
130244
+ numCodeTwo: string;
130245
+ isActif: boolean;
130246
+ isParis: boolean;
130247
+ isMedical: boolean;
130248
+ isService: boolean;
130249
+ emailOne: string;
130250
+ emailTwo: string;
130251
+ addressOne: string;
130252
+ customerId: number;
130253
+ firstName: string;
130254
+ lastName: string;
130255
+ emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130256
+ password: string;
130257
+ poste: string;
130258
+ roles: string[];
130259
+ isOpsAdmin: boolean;
130260
+ civility: string;
130261
+ isShowCalculatrice: boolean;
130262
+ expedition: boolean;
130263
+ physicCompany: string;
130264
+ menus: string;
130265
+ ongletExpedition: string;
130266
+ chauffeurType: string;
130267
+ typeOfOps: string;
130268
+ prestation: string;
130269
+ tracking: string;
130270
+ expeditionCourse: string;
130271
+ carnetAddress: string;
130272
+ expeditionsCarnet: string;
130273
+ accessArchive: string;
130274
+ isShowImportMenu: boolean;
130275
+ isShowExportMenu: boolean;
130276
+ isShowCourseMenu: boolean;
130277
+ twoRoues: boolean;
130278
+ vt: boolean;
130279
+ lesTwo: boolean;
130280
+ isMiniTracking: boolean;
130281
+ isFullTracking: boolean;
130282
+ isShareCourseAndExpedition: boolean;
130283
+ isShareCarnetAdresse: boolean;
130284
+ isShareCarnetAdresseAndExpedition: boolean;
130285
+ isAccessAuxArchives: boolean;
130286
+ isShowInfo: boolean;
130287
+ photo: string | null;
130288
+ entreprisePhysique: string;
130289
+ isAdminChauffeur: boolean;
130290
+ isShowTracking: boolean;
130291
+ isClientTransitaire: boolean;
130292
+ vehiculeId: number;
130293
+ salaryId: number;
130294
+ country?: {
130295
+ id: number;
130296
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130297
+ code: string;
130298
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130299
+ name: string;
130300
+ phoneCode: string;
130301
+ } | undefined;
130302
+ customer?: {
130303
+ id: number;
130304
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130305
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130306
+ fullName: string;
130307
+ countryId: number;
130308
+ address: string;
130309
+ addressTwo: string | null;
130310
+ postalCode: string;
130311
+ city: string;
130312
+ telephoneOne: string;
130313
+ telephoneTwo: string | null;
130314
+ comptaResponsible: string;
130315
+ invoiceMail: string;
130316
+ dafResponsibleName: string;
130317
+ telephone: string;
130318
+ email: string | null;
130319
+ intraVatNumber: string | null;
130320
+ submittedToFrenchVat: boolean;
130321
+ siren: string;
130322
+ numeroEori: string | null;
130323
+ comments: string | null;
130324
+ numCodeOne: string | null;
130325
+ numCodeTwo: string | null;
130326
+ isActif: boolean;
130327
+ isParis: boolean;
130328
+ isMedical: boolean;
130329
+ isService: boolean;
130330
+ valeurCustomer: boolean;
130331
+ dirigeant: string | null;
130332
+ dirigeantTel: string | null;
130333
+ dirigeantEmail: string | null;
130334
+ responsableComptable: string | null;
130335
+ responsableComptableTel: string | null;
130336
+ responsableComptableEmail: string | null;
130337
+ responsableDaf: string | null;
130338
+ responsableDafTel: string | null;
130339
+ responsableDafEmail: string | null;
130340
+ emailFacturation: string | null;
130341
+ logo: string | null;
130342
+ header: string | null;
130343
+ footer: string | null;
130344
+ emailOne: string | null;
130345
+ emailTwo: string | null;
130346
+ emailThree: string | null;
130347
+ eori: string | null;
130348
+ tva: string | null;
130349
+ isTrackingMail: boolean | null;
130350
+ isBillingCenter: boolean;
130351
+ isShowNameCustomer: boolean;
130352
+ isMailing: boolean;
130353
+ numeroSiret: string | null;
130354
+ country?: {
130355
+ id: number;
130356
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130357
+ code: string;
130358
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130359
+ name: string;
130360
+ phoneCode: string;
130361
+ } | undefined;
130362
+ } | undefined;
130363
+ salary?: {
130364
+ id: number;
130365
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130366
+ type: string;
130367
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130368
+ countryId: number | null;
130369
+ postalCode: string;
130370
+ city: string;
130371
+ telephone: string;
130372
+ email: string;
130373
+ nom: string;
130374
+ prenom: string;
130375
+ adress: string;
130376
+ country?: {
130377
+ id: number;
130378
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130379
+ code: string;
130380
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130381
+ name: string;
130382
+ phoneCode: string;
130383
+ } | undefined;
130384
+ } | undefined;
130385
+ vehicule?: {
130386
+ id: number;
130387
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130388
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130389
+ plaque: string;
130390
+ telephoneSociete: string;
130391
+ typeVehicule: string;
130392
+ kmDepart: number;
130393
+ kmRetour: number;
130394
+ pochetteRecu: boolean;
130395
+ carteCarburant: string;
130396
+ carteBancaire: string;
130397
+ bipTelepage: string;
130398
+ } | undefined;
130399
+ userBillingCenters?: {
130400
+ id: number;
130401
+ userId: number;
130402
+ billingCenterId: number;
130403
+ createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
130404
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
130405
+ billingCenter?: {
130406
+ id: number;
130407
+ billingCenterName: string;
130408
+ customerId?: number | null | undefined;
130409
+ } | undefined;
130410
+ }[] | undefined;
130411
+ } | undefined;
130412
+ }, {
130413
+ id: number;
130414
+ createdAt: Date;
130415
+ updatedAt: Date;
130416
+ fullName: string;
130417
+ countryId: number | null;
130418
+ addressTwo: string | null;
130419
+ postalCode: string;
130420
+ city: string;
130421
+ telephoneOne: string;
130422
+ telephoneTwo: string | null;
130423
+ comments: string | null;
130424
+ isParis: boolean;
130425
+ isMedical: boolean;
130426
+ isService: boolean;
130427
+ emailOne: string;
130428
+ emailTwo: string | null;
130429
+ addressOne: string | null;
130430
+ userId: number | null;
130431
+ firstName: string;
130432
+ lastName: string;
130433
+ civility: string | null;
130434
+ company: string;
130435
+ typeContact: "all" | "expeditor" | "receiver";
130436
+ country?: {
130437
+ id: number;
130438
+ createdAt: Date;
130439
+ code: string;
130440
+ updatedAt: Date;
130441
+ name: string;
130442
+ phoneCode: string;
130443
+ } | undefined;
130444
+ user?: {
130445
+ id: number;
130446
+ createdAt: Date;
130447
+ updatedAt: Date;
130448
+ countryId: number | null;
130449
+ addressTwo: string;
130450
+ postalCode: string;
130451
+ city: string;
130452
+ telephoneOne: string;
130453
+ telephoneTwo: string;
130454
+ email: string;
130455
+ comments: string;
130456
+ numCodeOne: string;
130457
+ numCodeTwo: string;
130458
+ isActif: boolean;
130459
+ isParis: boolean;
130460
+ isMedical: boolean;
130461
+ isService: boolean;
130462
+ emailOne: string;
130463
+ emailTwo: string;
130464
+ addressOne: string;
130465
+ customerId: number;
130466
+ firstName: string;
130467
+ lastName: string;
130468
+ emailVerifiedAt: Date;
130469
+ password: string;
130470
+ poste: string;
130471
+ roles: string[];
130472
+ isOpsAdmin: boolean;
130473
+ civility: string;
130474
+ isShowCalculatrice: boolean;
130475
+ expedition: boolean;
130476
+ physicCompany: string;
130477
+ menus: string;
130478
+ ongletExpedition: string;
130479
+ chauffeurType: string;
130480
+ typeOfOps: string;
130481
+ prestation: string;
130482
+ tracking: string;
130483
+ expeditionCourse: string;
130484
+ carnetAddress: string;
130485
+ expeditionsCarnet: string;
130486
+ accessArchive: string;
130487
+ isShowImportMenu: boolean;
130488
+ isShowExportMenu: boolean;
130489
+ isShowCourseMenu: boolean;
130490
+ twoRoues: boolean;
130491
+ vt: boolean;
130492
+ lesTwo: boolean;
130493
+ isMiniTracking: boolean;
130494
+ isFullTracking: boolean;
130495
+ isShareCourseAndExpedition: boolean;
130496
+ isShareCarnetAdresse: boolean;
130497
+ isShareCarnetAdresseAndExpedition: boolean;
130498
+ isAccessAuxArchives: boolean;
130499
+ isShowInfo: boolean;
130500
+ photo: string | null;
130501
+ entreprisePhysique: string;
130502
+ isAdminChauffeur: boolean;
130503
+ isShowTracking: boolean;
130504
+ isClientTransitaire: boolean;
130505
+ vehiculeId: number;
130506
+ salaryId: number;
130507
+ country?: {
130508
+ id: number;
130509
+ createdAt: Date;
130510
+ code: string;
130511
+ updatedAt: Date;
130512
+ name: string;
130513
+ phoneCode: string;
130514
+ } | undefined;
130515
+ customer?: {
130516
+ id: number;
130517
+ createdAt: Date;
130518
+ updatedAt: Date;
130519
+ fullName: string;
130520
+ countryId: number;
130521
+ address: string;
130522
+ addressTwo: string | null;
130523
+ postalCode: string;
130524
+ city: string;
130525
+ telephoneOne: string;
130526
+ telephoneTwo: string | null;
130527
+ comptaResponsible: string;
130528
+ invoiceMail: string;
130529
+ dafResponsibleName: string;
130530
+ telephone: string;
130531
+ email: string | null;
130532
+ intraVatNumber: string | null;
130533
+ submittedToFrenchVat: boolean;
130534
+ siren: string;
130535
+ numeroEori: string | null;
130536
+ comments: string | null;
130537
+ numCodeOne: string | null;
130538
+ numCodeTwo: string | null;
130539
+ isActif: boolean;
130540
+ isParis: boolean;
130541
+ isMedical: boolean;
130542
+ isService: boolean;
130543
+ valeurCustomer: boolean;
130544
+ dirigeant: string | null;
130545
+ dirigeantTel: string | null;
130546
+ dirigeantEmail: string | null;
130547
+ responsableComptable: string | null;
130548
+ responsableComptableTel: string | null;
130549
+ responsableComptableEmail: string | null;
130550
+ responsableDaf: string | null;
130551
+ responsableDafTel: string | null;
130552
+ responsableDafEmail: string | null;
130553
+ emailFacturation: string | null;
130554
+ logo: string | null;
130555
+ header: string | null;
130556
+ footer: string | null;
130557
+ emailOne: string | null;
130558
+ emailTwo: string | null;
130559
+ emailThree: string | null;
130560
+ eori: string | null;
130561
+ tva: string | null;
130562
+ isTrackingMail: boolean | null;
130563
+ isBillingCenter: boolean;
130564
+ isShowNameCustomer: boolean;
130565
+ isMailing: boolean;
130566
+ numeroSiret: string | null;
130567
+ country?: {
130568
+ id: number;
130569
+ createdAt: Date;
130570
+ code: string;
130571
+ updatedAt: Date;
130572
+ name: string;
130573
+ phoneCode: string;
130574
+ } | undefined;
130575
+ } | undefined;
130576
+ salary?: {
130577
+ id: number;
130578
+ createdAt: Date;
130579
+ type: string;
130580
+ updatedAt: Date;
130581
+ countryId: number | null;
130582
+ postalCode: string;
130583
+ city: string;
130584
+ telephone: string;
130585
+ email: string;
130586
+ nom: string;
130587
+ prenom: string;
130588
+ adress: string;
130589
+ country?: {
130590
+ id: number;
130591
+ createdAt: Date;
130592
+ code: string;
130593
+ updatedAt: Date;
130594
+ name: string;
130595
+ phoneCode: string;
130596
+ } | undefined;
130597
+ } | undefined;
130598
+ vehicule?: {
130599
+ id: number;
130600
+ createdAt: Date;
130601
+ updatedAt: Date;
130602
+ plaque: string;
130603
+ telephoneSociete: string;
130604
+ typeVehicule: string;
130605
+ kmDepart: number;
130606
+ kmRetour: number;
130607
+ pochetteRecu: boolean;
130608
+ carteCarburant: string;
130609
+ carteBancaire: string;
130610
+ bipTelepage: string;
130611
+ } | undefined;
130612
+ userBillingCenters?: {
130613
+ id: number;
130614
+ userId: number;
130615
+ billingCenterId: number;
130616
+ createdAt?: Date | undefined;
130617
+ updatedAt?: Date | undefined;
130618
+ billingCenter?: {
130619
+ id: number;
130620
+ billingCenterName: string;
130621
+ customerId?: number | null | undefined;
130622
+ } | undefined;
130623
+ }[] | undefined;
130624
+ } | undefined;
130625
+ }>, "many">;
130626
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
130627
+ data: {
130628
+ id: number;
130629
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130630
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130631
+ fullName: string;
130632
+ countryId: number | null;
130633
+ addressTwo: string | null;
130634
+ postalCode: string;
130635
+ city: string;
130636
+ telephoneOne: string;
130637
+ telephoneTwo: string | null;
130638
+ comments: string | null;
130639
+ isParis: boolean;
130640
+ isMedical: boolean;
130641
+ isService: boolean;
130642
+ emailOne: string;
130643
+ emailTwo: string | null;
130644
+ addressOne: string | null;
130645
+ userId: number | null;
130646
+ firstName: string;
130647
+ lastName: string;
130648
+ civility: string | null;
130649
+ company: string;
130650
+ typeContact: "all" | "expeditor" | "receiver";
130651
+ country?: {
130652
+ id: number;
130653
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130654
+ code: string;
130655
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130656
+ name: string;
130657
+ phoneCode: string;
130658
+ } | undefined;
130659
+ user?: {
130660
+ id: number;
130661
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130662
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130663
+ countryId: number | null;
130664
+ addressTwo: string;
130665
+ postalCode: string;
130666
+ city: string;
130667
+ telephoneOne: string;
130668
+ telephoneTwo: string;
130669
+ email: string;
130670
+ comments: string;
130671
+ numCodeOne: string;
130672
+ numCodeTwo: string;
130673
+ isActif: boolean;
130674
+ isParis: boolean;
130675
+ isMedical: boolean;
130676
+ isService: boolean;
130677
+ emailOne: string;
130678
+ emailTwo: string;
130679
+ addressOne: string;
130680
+ customerId: number;
130681
+ firstName: string;
130682
+ lastName: string;
130683
+ emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130684
+ password: string;
130685
+ poste: string;
130686
+ roles: string[];
130687
+ isOpsAdmin: boolean;
130688
+ civility: string;
130689
+ isShowCalculatrice: boolean;
130690
+ expedition: boolean;
130691
+ physicCompany: string;
130692
+ menus: string;
130693
+ ongletExpedition: string;
130694
+ chauffeurType: string;
130695
+ typeOfOps: string;
130696
+ prestation: string;
130697
+ tracking: string;
130698
+ expeditionCourse: string;
130699
+ carnetAddress: string;
130700
+ expeditionsCarnet: string;
130701
+ accessArchive: string;
130702
+ isShowImportMenu: boolean;
130703
+ isShowExportMenu: boolean;
130704
+ isShowCourseMenu: boolean;
130705
+ twoRoues: boolean;
130706
+ vt: boolean;
130707
+ lesTwo: boolean;
130708
+ isMiniTracking: boolean;
130709
+ isFullTracking: boolean;
130710
+ isShareCourseAndExpedition: boolean;
130711
+ isShareCarnetAdresse: boolean;
130712
+ isShareCarnetAdresseAndExpedition: boolean;
130713
+ isAccessAuxArchives: boolean;
130714
+ isShowInfo: boolean;
130715
+ photo: string | null;
130716
+ entreprisePhysique: string;
130717
+ isAdminChauffeur: boolean;
130718
+ isShowTracking: boolean;
130719
+ isClientTransitaire: boolean;
130720
+ vehiculeId: number;
130721
+ salaryId: number;
130722
+ country?: {
130723
+ id: number;
130724
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130725
+ code: string;
130726
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130727
+ name: string;
130728
+ phoneCode: string;
130729
+ } | undefined;
130730
+ customer?: {
130731
+ id: number;
130732
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130733
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130734
+ fullName: string;
130735
+ countryId: number;
130736
+ address: string;
130737
+ addressTwo: string | null;
130738
+ postalCode: string;
130739
+ city: string;
130740
+ telephoneOne: string;
130741
+ telephoneTwo: string | null;
130742
+ comptaResponsible: string;
130743
+ invoiceMail: string;
130744
+ dafResponsibleName: string;
130745
+ telephone: string;
130746
+ email: string | null;
130747
+ intraVatNumber: string | null;
130748
+ submittedToFrenchVat: boolean;
130749
+ siren: string;
130750
+ numeroEori: string | null;
130751
+ comments: string | null;
130752
+ numCodeOne: string | null;
130753
+ numCodeTwo: string | null;
130754
+ isActif: boolean;
130755
+ isParis: boolean;
130756
+ isMedical: boolean;
130757
+ isService: boolean;
130758
+ valeurCustomer: boolean;
130759
+ dirigeant: string | null;
130760
+ dirigeantTel: string | null;
130761
+ dirigeantEmail: string | null;
130762
+ responsableComptable: string | null;
130763
+ responsableComptableTel: string | null;
130764
+ responsableComptableEmail: string | null;
130765
+ responsableDaf: string | null;
130766
+ responsableDafTel: string | null;
130767
+ responsableDafEmail: string | null;
130768
+ emailFacturation: string | null;
130769
+ logo: string | null;
130770
+ header: string | null;
130771
+ footer: string | null;
130772
+ emailOne: string | null;
130773
+ emailTwo: string | null;
130774
+ emailThree: string | null;
130775
+ eori: string | null;
130776
+ tva: string | null;
130777
+ isTrackingMail: boolean | null;
130778
+ isBillingCenter: boolean;
130779
+ isShowNameCustomer: boolean;
130780
+ isMailing: boolean;
130781
+ numeroSiret: string | null;
130782
+ country?: {
130783
+ id: number;
130784
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130785
+ code: string;
130786
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130787
+ name: string;
130788
+ phoneCode: string;
130789
+ } | undefined;
130790
+ } | undefined;
130791
+ salary?: {
130792
+ id: number;
130793
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130794
+ type: string;
130795
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130796
+ countryId: number | null;
130797
+ postalCode: string;
130798
+ city: string;
130799
+ telephone: string;
130800
+ email: string;
130801
+ nom: string;
130802
+ prenom: string;
130803
+ adress: string;
130804
+ country?: {
130805
+ id: number;
130806
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130807
+ code: string;
130808
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130809
+ name: string;
130810
+ phoneCode: string;
130811
+ } | undefined;
130812
+ } | undefined;
130813
+ vehicule?: {
130814
+ id: number;
130815
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130816
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
130817
+ plaque: string;
130818
+ telephoneSociete: string;
130819
+ typeVehicule: string;
130820
+ kmDepart: number;
130821
+ kmRetour: number;
130822
+ pochetteRecu: boolean;
130823
+ carteCarburant: string;
130824
+ carteBancaire: string;
130825
+ bipTelepage: string;
130826
+ } | undefined;
130827
+ userBillingCenters?: {
130828
+ id: number;
130829
+ userId: number;
130830
+ billingCenterId: number;
130831
+ createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
130832
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
130833
+ billingCenter?: {
130834
+ id: number;
130835
+ billingCenterName: string;
130836
+ customerId?: number | null | undefined;
130837
+ } | undefined;
130838
+ }[] | undefined;
130839
+ } | undefined;
130840
+ }[];
130841
+ meta: {
130842
+ total: number;
130843
+ perPage: number;
130844
+ currentPage: number;
130845
+ lastPage: number;
130846
+ firstPage: number;
130847
+ firstPageUrl: string;
130848
+ lastPageUrl: string;
130849
+ nextPageUrl: string | null;
130850
+ previousPageUrl: string | null;
130851
+ };
130852
+ }, {
130853
+ data: {
130854
+ id: number;
130855
+ createdAt: Date;
130856
+ updatedAt: Date;
130857
+ fullName: string;
130858
+ countryId: number | null;
130859
+ addressTwo: string | null;
130860
+ postalCode: string;
130861
+ city: string;
130862
+ telephoneOne: string;
130863
+ telephoneTwo: string | null;
130864
+ comments: string | null;
130865
+ isParis: boolean;
130866
+ isMedical: boolean;
130867
+ isService: boolean;
130868
+ emailOne: string;
130869
+ emailTwo: string | null;
130870
+ addressOne: string | null;
130871
+ userId: number | null;
130872
+ firstName: string;
130873
+ lastName: string;
130874
+ civility: string | null;
130875
+ company: string;
130876
+ typeContact: "all" | "expeditor" | "receiver";
130877
+ country?: {
130878
+ id: number;
130879
+ createdAt: Date;
130880
+ code: string;
130881
+ updatedAt: Date;
130882
+ name: string;
130883
+ phoneCode: string;
130884
+ } | undefined;
130885
+ user?: {
130886
+ id: number;
130887
+ createdAt: Date;
130888
+ updatedAt: Date;
130889
+ countryId: number | null;
130890
+ addressTwo: string;
130891
+ postalCode: string;
130892
+ city: string;
130893
+ telephoneOne: string;
130894
+ telephoneTwo: string;
130895
+ email: string;
130896
+ comments: string;
130897
+ numCodeOne: string;
130898
+ numCodeTwo: string;
130899
+ isActif: boolean;
130900
+ isParis: boolean;
130901
+ isMedical: boolean;
130902
+ isService: boolean;
130903
+ emailOne: string;
130904
+ emailTwo: string;
130905
+ addressOne: string;
130906
+ customerId: number;
130907
+ firstName: string;
130908
+ lastName: string;
130909
+ emailVerifiedAt: Date;
130910
+ password: string;
130911
+ poste: string;
130912
+ roles: string[];
130913
+ isOpsAdmin: boolean;
130914
+ civility: string;
130915
+ isShowCalculatrice: boolean;
130916
+ expedition: boolean;
130917
+ physicCompany: string;
130918
+ menus: string;
130919
+ ongletExpedition: string;
130920
+ chauffeurType: string;
130921
+ typeOfOps: string;
130922
+ prestation: string;
130923
+ tracking: string;
130924
+ expeditionCourse: string;
130925
+ carnetAddress: string;
130926
+ expeditionsCarnet: string;
130927
+ accessArchive: string;
130928
+ isShowImportMenu: boolean;
130929
+ isShowExportMenu: boolean;
130930
+ isShowCourseMenu: boolean;
130931
+ twoRoues: boolean;
130932
+ vt: boolean;
130933
+ lesTwo: boolean;
130934
+ isMiniTracking: boolean;
130935
+ isFullTracking: boolean;
130936
+ isShareCourseAndExpedition: boolean;
130937
+ isShareCarnetAdresse: boolean;
130938
+ isShareCarnetAdresseAndExpedition: boolean;
130939
+ isAccessAuxArchives: boolean;
130940
+ isShowInfo: boolean;
130941
+ photo: string | null;
130942
+ entreprisePhysique: string;
130943
+ isAdminChauffeur: boolean;
130944
+ isShowTracking: boolean;
130945
+ isClientTransitaire: boolean;
130946
+ vehiculeId: number;
130947
+ salaryId: number;
130948
+ country?: {
130949
+ id: number;
130950
+ createdAt: Date;
130951
+ code: string;
130952
+ updatedAt: Date;
130953
+ name: string;
130954
+ phoneCode: string;
130955
+ } | undefined;
130956
+ customer?: {
130957
+ id: number;
130958
+ createdAt: Date;
130959
+ updatedAt: Date;
130960
+ fullName: string;
130961
+ countryId: number;
130962
+ address: string;
130963
+ addressTwo: string | null;
130964
+ postalCode: string;
130965
+ city: string;
130966
+ telephoneOne: string;
130967
+ telephoneTwo: string | null;
130968
+ comptaResponsible: string;
130969
+ invoiceMail: string;
130970
+ dafResponsibleName: string;
130971
+ telephone: string;
130972
+ email: string | null;
130973
+ intraVatNumber: string | null;
130974
+ submittedToFrenchVat: boolean;
130975
+ siren: string;
130976
+ numeroEori: string | null;
130977
+ comments: string | null;
130978
+ numCodeOne: string | null;
130979
+ numCodeTwo: string | null;
130980
+ isActif: boolean;
130981
+ isParis: boolean;
130982
+ isMedical: boolean;
130983
+ isService: boolean;
130984
+ valeurCustomer: boolean;
130985
+ dirigeant: string | null;
130986
+ dirigeantTel: string | null;
130987
+ dirigeantEmail: string | null;
130988
+ responsableComptable: string | null;
130989
+ responsableComptableTel: string | null;
130990
+ responsableComptableEmail: string | null;
130991
+ responsableDaf: string | null;
130992
+ responsableDafTel: string | null;
130993
+ responsableDafEmail: string | null;
130994
+ emailFacturation: string | null;
130995
+ logo: string | null;
130996
+ header: string | null;
130997
+ footer: string | null;
130998
+ emailOne: string | null;
130999
+ emailTwo: string | null;
131000
+ emailThree: string | null;
131001
+ eori: string | null;
131002
+ tva: string | null;
131003
+ isTrackingMail: boolean | null;
131004
+ isBillingCenter: boolean;
131005
+ isShowNameCustomer: boolean;
131006
+ isMailing: boolean;
131007
+ numeroSiret: string | null;
131008
+ country?: {
131009
+ id: number;
131010
+ createdAt: Date;
131011
+ code: string;
131012
+ updatedAt: Date;
131013
+ name: string;
131014
+ phoneCode: string;
131015
+ } | undefined;
131016
+ } | undefined;
131017
+ salary?: {
131018
+ id: number;
131019
+ createdAt: Date;
131020
+ type: string;
131021
+ updatedAt: Date;
131022
+ countryId: number | null;
131023
+ postalCode: string;
131024
+ city: string;
131025
+ telephone: string;
131026
+ email: string;
131027
+ nom: string;
131028
+ prenom: string;
131029
+ adress: string;
131030
+ country?: {
131031
+ id: number;
131032
+ createdAt: Date;
131033
+ code: string;
131034
+ updatedAt: Date;
131035
+ name: string;
131036
+ phoneCode: string;
131037
+ } | undefined;
131038
+ } | undefined;
131039
+ vehicule?: {
131040
+ id: number;
131041
+ createdAt: Date;
131042
+ updatedAt: Date;
131043
+ plaque: string;
131044
+ telephoneSociete: string;
131045
+ typeVehicule: string;
131046
+ kmDepart: number;
131047
+ kmRetour: number;
131048
+ pochetteRecu: boolean;
131049
+ carteCarburant: string;
131050
+ carteBancaire: string;
131051
+ bipTelepage: string;
131052
+ } | undefined;
131053
+ userBillingCenters?: {
131054
+ id: number;
131055
+ userId: number;
131056
+ billingCenterId: number;
131057
+ createdAt?: Date | undefined;
131058
+ updatedAt?: Date | undefined;
131059
+ billingCenter?: {
131060
+ id: number;
131061
+ billingCenterName: string;
131062
+ customerId?: number | null | undefined;
131063
+ } | undefined;
131064
+ }[] | undefined;
131065
+ } | undefined;
131066
+ }[];
131067
+ meta: {
131068
+ total: number;
131069
+ perPage: number;
131070
+ currentPage: number;
131071
+ lastPage: number;
131072
+ firstPage: number;
131073
+ firstPageUrl: string;
131074
+ lastPageUrl: string;
131075
+ nextPageUrl: string | null;
131076
+ previousPageUrl: string | null;
131077
+ };
131078
+ }>;
131079
+ message: z.ZodOptional<z.ZodString>;
131080
+ status: z.ZodOptional<z.ZodNumber>;
131081
+ error: z.ZodOptional<z.ZodNever>;
131082
+ success: z.ZodLiteral<true>;
131083
+ }, "strip", z.ZodTypeAny, {
131084
+ data: {
131085
+ data: {
131086
+ id: number;
131087
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131088
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131089
+ fullName: string;
131090
+ countryId: number | null;
131091
+ addressTwo: string | null;
131092
+ postalCode: string;
131093
+ city: string;
131094
+ telephoneOne: string;
131095
+ telephoneTwo: string | null;
131096
+ comments: string | null;
131097
+ isParis: boolean;
131098
+ isMedical: boolean;
131099
+ isService: boolean;
131100
+ emailOne: string;
131101
+ emailTwo: string | null;
131102
+ addressOne: string | null;
131103
+ userId: number | null;
131104
+ firstName: string;
131105
+ lastName: string;
131106
+ civility: string | null;
131107
+ company: string;
131108
+ typeContact: "all" | "expeditor" | "receiver";
131109
+ country?: {
131110
+ id: number;
131111
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131112
+ code: string;
131113
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131114
+ name: string;
131115
+ phoneCode: string;
131116
+ } | undefined;
131117
+ user?: {
131118
+ id: number;
131119
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131120
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131121
+ countryId: number | null;
131122
+ addressTwo: string;
131123
+ postalCode: string;
131124
+ city: string;
131125
+ telephoneOne: string;
131126
+ telephoneTwo: string;
131127
+ email: string;
131128
+ comments: string;
131129
+ numCodeOne: string;
131130
+ numCodeTwo: string;
131131
+ isActif: boolean;
131132
+ isParis: boolean;
131133
+ isMedical: boolean;
131134
+ isService: boolean;
131135
+ emailOne: string;
131136
+ emailTwo: string;
131137
+ addressOne: string;
131138
+ customerId: number;
131139
+ firstName: string;
131140
+ lastName: string;
131141
+ emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131142
+ password: string;
131143
+ poste: string;
131144
+ roles: string[];
131145
+ isOpsAdmin: boolean;
131146
+ civility: string;
131147
+ isShowCalculatrice: boolean;
131148
+ expedition: boolean;
131149
+ physicCompany: string;
131150
+ menus: string;
131151
+ ongletExpedition: string;
131152
+ chauffeurType: string;
131153
+ typeOfOps: string;
131154
+ prestation: string;
131155
+ tracking: string;
131156
+ expeditionCourse: string;
131157
+ carnetAddress: string;
131158
+ expeditionsCarnet: string;
131159
+ accessArchive: string;
131160
+ isShowImportMenu: boolean;
131161
+ isShowExportMenu: boolean;
131162
+ isShowCourseMenu: boolean;
131163
+ twoRoues: boolean;
131164
+ vt: boolean;
131165
+ lesTwo: boolean;
131166
+ isMiniTracking: boolean;
131167
+ isFullTracking: boolean;
131168
+ isShareCourseAndExpedition: boolean;
131169
+ isShareCarnetAdresse: boolean;
131170
+ isShareCarnetAdresseAndExpedition: boolean;
131171
+ isAccessAuxArchives: boolean;
131172
+ isShowInfo: boolean;
131173
+ photo: string | null;
131174
+ entreprisePhysique: string;
131175
+ isAdminChauffeur: boolean;
131176
+ isShowTracking: boolean;
131177
+ isClientTransitaire: boolean;
131178
+ vehiculeId: number;
131179
+ salaryId: number;
131180
+ country?: {
131181
+ id: number;
131182
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131183
+ code: string;
131184
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131185
+ name: string;
131186
+ phoneCode: string;
131187
+ } | undefined;
131188
+ customer?: {
131189
+ id: number;
131190
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131191
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131192
+ fullName: string;
131193
+ countryId: number;
131194
+ address: string;
131195
+ addressTwo: string | null;
131196
+ postalCode: string;
131197
+ city: string;
131198
+ telephoneOne: string;
131199
+ telephoneTwo: string | null;
131200
+ comptaResponsible: string;
131201
+ invoiceMail: string;
131202
+ dafResponsibleName: string;
131203
+ telephone: string;
131204
+ email: string | null;
131205
+ intraVatNumber: string | null;
131206
+ submittedToFrenchVat: boolean;
131207
+ siren: string;
131208
+ numeroEori: string | null;
131209
+ comments: string | null;
131210
+ numCodeOne: string | null;
131211
+ numCodeTwo: string | null;
131212
+ isActif: boolean;
131213
+ isParis: boolean;
131214
+ isMedical: boolean;
131215
+ isService: boolean;
131216
+ valeurCustomer: boolean;
131217
+ dirigeant: string | null;
131218
+ dirigeantTel: string | null;
131219
+ dirigeantEmail: string | null;
131220
+ responsableComptable: string | null;
131221
+ responsableComptableTel: string | null;
131222
+ responsableComptableEmail: string | null;
131223
+ responsableDaf: string | null;
131224
+ responsableDafTel: string | null;
131225
+ responsableDafEmail: string | null;
131226
+ emailFacturation: string | null;
131227
+ logo: string | null;
131228
+ header: string | null;
131229
+ footer: string | null;
131230
+ emailOne: string | null;
131231
+ emailTwo: string | null;
131232
+ emailThree: string | null;
131233
+ eori: string | null;
131234
+ tva: string | null;
131235
+ isTrackingMail: boolean | null;
131236
+ isBillingCenter: boolean;
131237
+ isShowNameCustomer: boolean;
131238
+ isMailing: boolean;
131239
+ numeroSiret: string | null;
131240
+ country?: {
131241
+ id: number;
131242
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131243
+ code: string;
131244
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131245
+ name: string;
131246
+ phoneCode: string;
131247
+ } | undefined;
131248
+ } | undefined;
131249
+ salary?: {
131250
+ id: number;
131251
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131252
+ type: string;
131253
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131254
+ countryId: number | null;
131255
+ postalCode: string;
131256
+ city: string;
131257
+ telephone: string;
131258
+ email: string;
131259
+ nom: string;
131260
+ prenom: string;
131261
+ adress: string;
131262
+ country?: {
131263
+ id: number;
131264
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131265
+ code: string;
131266
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131267
+ name: string;
131268
+ phoneCode: string;
131269
+ } | undefined;
131270
+ } | undefined;
131271
+ vehicule?: {
131272
+ id: number;
131273
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131274
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
131275
+ plaque: string;
131276
+ telephoneSociete: string;
131277
+ typeVehicule: string;
131278
+ kmDepart: number;
131279
+ kmRetour: number;
131280
+ pochetteRecu: boolean;
131281
+ carteCarburant: string;
131282
+ carteBancaire: string;
131283
+ bipTelepage: string;
131284
+ } | undefined;
131285
+ userBillingCenters?: {
131286
+ id: number;
131287
+ userId: number;
131288
+ billingCenterId: number;
131289
+ createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
131290
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
131291
+ billingCenter?: {
131292
+ id: number;
131293
+ billingCenterName: string;
131294
+ customerId?: number | null | undefined;
131295
+ } | undefined;
131296
+ }[] | undefined;
131297
+ } | undefined;
131298
+ }[];
131299
+ meta: {
131300
+ total: number;
131301
+ perPage: number;
131302
+ currentPage: number;
131303
+ lastPage: number;
131304
+ firstPage: number;
131305
+ firstPageUrl: string;
131306
+ lastPageUrl: string;
131307
+ nextPageUrl: string | null;
131308
+ previousPageUrl: string | null;
131309
+ };
131310
+ };
131311
+ success: true;
131312
+ status?: number | undefined;
131313
+ message?: string | undefined;
131314
+ error?: undefined;
131315
+ }, {
131316
+ data: {
131317
+ data: {
131318
+ id: number;
131319
+ createdAt: Date;
131320
+ updatedAt: Date;
131321
+ fullName: string;
131322
+ countryId: number | null;
131323
+ addressTwo: string | null;
131324
+ postalCode: string;
131325
+ city: string;
131326
+ telephoneOne: string;
131327
+ telephoneTwo: string | null;
131328
+ comments: string | null;
131329
+ isParis: boolean;
131330
+ isMedical: boolean;
131331
+ isService: boolean;
131332
+ emailOne: string;
131333
+ emailTwo: string | null;
131334
+ addressOne: string | null;
131335
+ userId: number | null;
131336
+ firstName: string;
131337
+ lastName: string;
131338
+ civility: string | null;
131339
+ company: string;
131340
+ typeContact: "all" | "expeditor" | "receiver";
131341
+ country?: {
131342
+ id: number;
131343
+ createdAt: Date;
131344
+ code: string;
131345
+ updatedAt: Date;
131346
+ name: string;
131347
+ phoneCode: string;
131348
+ } | undefined;
131349
+ user?: {
131350
+ id: number;
131351
+ createdAt: Date;
131352
+ updatedAt: Date;
131353
+ countryId: number | null;
131354
+ addressTwo: string;
131355
+ postalCode: string;
131356
+ city: string;
131357
+ telephoneOne: string;
131358
+ telephoneTwo: string;
131359
+ email: string;
131360
+ comments: string;
131361
+ numCodeOne: string;
131362
+ numCodeTwo: string;
131363
+ isActif: boolean;
131364
+ isParis: boolean;
131365
+ isMedical: boolean;
131366
+ isService: boolean;
131367
+ emailOne: string;
131368
+ emailTwo: string;
131369
+ addressOne: string;
131370
+ customerId: number;
131371
+ firstName: string;
131372
+ lastName: string;
131373
+ emailVerifiedAt: Date;
131374
+ password: string;
131375
+ poste: string;
131376
+ roles: string[];
131377
+ isOpsAdmin: boolean;
131378
+ civility: string;
131379
+ isShowCalculatrice: boolean;
131380
+ expedition: boolean;
131381
+ physicCompany: string;
131382
+ menus: string;
131383
+ ongletExpedition: string;
131384
+ chauffeurType: string;
131385
+ typeOfOps: string;
131386
+ prestation: string;
131387
+ tracking: string;
131388
+ expeditionCourse: string;
131389
+ carnetAddress: string;
131390
+ expeditionsCarnet: string;
131391
+ accessArchive: string;
131392
+ isShowImportMenu: boolean;
131393
+ isShowExportMenu: boolean;
131394
+ isShowCourseMenu: boolean;
131395
+ twoRoues: boolean;
131396
+ vt: boolean;
131397
+ lesTwo: boolean;
131398
+ isMiniTracking: boolean;
131399
+ isFullTracking: boolean;
131400
+ isShareCourseAndExpedition: boolean;
131401
+ isShareCarnetAdresse: boolean;
131402
+ isShareCarnetAdresseAndExpedition: boolean;
131403
+ isAccessAuxArchives: boolean;
131404
+ isShowInfo: boolean;
131405
+ photo: string | null;
131406
+ entreprisePhysique: string;
131407
+ isAdminChauffeur: boolean;
131408
+ isShowTracking: boolean;
131409
+ isClientTransitaire: boolean;
131410
+ vehiculeId: number;
131411
+ salaryId: number;
131412
+ country?: {
131413
+ id: number;
131414
+ createdAt: Date;
131415
+ code: string;
131416
+ updatedAt: Date;
131417
+ name: string;
131418
+ phoneCode: string;
131419
+ } | undefined;
131420
+ customer?: {
131421
+ id: number;
131422
+ createdAt: Date;
131423
+ updatedAt: Date;
131424
+ fullName: string;
131425
+ countryId: number;
131426
+ address: string;
131427
+ addressTwo: string | null;
131428
+ postalCode: string;
131429
+ city: string;
131430
+ telephoneOne: string;
131431
+ telephoneTwo: string | null;
131432
+ comptaResponsible: string;
131433
+ invoiceMail: string;
131434
+ dafResponsibleName: string;
131435
+ telephone: string;
131436
+ email: string | null;
131437
+ intraVatNumber: string | null;
131438
+ submittedToFrenchVat: boolean;
131439
+ siren: string;
131440
+ numeroEori: string | null;
131441
+ comments: string | null;
131442
+ numCodeOne: string | null;
131443
+ numCodeTwo: string | null;
131444
+ isActif: boolean;
131445
+ isParis: boolean;
131446
+ isMedical: boolean;
131447
+ isService: boolean;
131448
+ valeurCustomer: boolean;
131449
+ dirigeant: string | null;
131450
+ dirigeantTel: string | null;
131451
+ dirigeantEmail: string | null;
131452
+ responsableComptable: string | null;
131453
+ responsableComptableTel: string | null;
131454
+ responsableComptableEmail: string | null;
131455
+ responsableDaf: string | null;
131456
+ responsableDafTel: string | null;
131457
+ responsableDafEmail: string | null;
131458
+ emailFacturation: string | null;
131459
+ logo: string | null;
131460
+ header: string | null;
131461
+ footer: string | null;
131462
+ emailOne: string | null;
131463
+ emailTwo: string | null;
131464
+ emailThree: string | null;
131465
+ eori: string | null;
131466
+ tva: string | null;
131467
+ isTrackingMail: boolean | null;
131468
+ isBillingCenter: boolean;
131469
+ isShowNameCustomer: boolean;
131470
+ isMailing: boolean;
131471
+ numeroSiret: string | null;
131472
+ country?: {
131473
+ id: number;
131474
+ createdAt: Date;
131475
+ code: string;
131476
+ updatedAt: Date;
131477
+ name: string;
131478
+ phoneCode: string;
131479
+ } | undefined;
131480
+ } | undefined;
131481
+ salary?: {
131482
+ id: number;
131483
+ createdAt: Date;
131484
+ type: string;
131485
+ updatedAt: Date;
131486
+ countryId: number | null;
131487
+ postalCode: string;
131488
+ city: string;
131489
+ telephone: string;
131490
+ email: string;
131491
+ nom: string;
131492
+ prenom: string;
131493
+ adress: string;
131494
+ country?: {
131495
+ id: number;
131496
+ createdAt: Date;
131497
+ code: string;
131498
+ updatedAt: Date;
131499
+ name: string;
131500
+ phoneCode: string;
131501
+ } | undefined;
131502
+ } | undefined;
131503
+ vehicule?: {
131504
+ id: number;
131505
+ createdAt: Date;
131506
+ updatedAt: Date;
131507
+ plaque: string;
131508
+ telephoneSociete: string;
131509
+ typeVehicule: string;
131510
+ kmDepart: number;
131511
+ kmRetour: number;
131512
+ pochetteRecu: boolean;
131513
+ carteCarburant: string;
131514
+ carteBancaire: string;
131515
+ bipTelepage: string;
131516
+ } | undefined;
131517
+ userBillingCenters?: {
131518
+ id: number;
131519
+ userId: number;
131520
+ billingCenterId: number;
131521
+ createdAt?: Date | undefined;
131522
+ updatedAt?: Date | undefined;
131523
+ billingCenter?: {
131524
+ id: number;
131525
+ billingCenterName: string;
131526
+ customerId?: number | null | undefined;
131527
+ } | undefined;
131528
+ }[] | undefined;
131529
+ } | undefined;
131530
+ }[];
131531
+ meta: {
131532
+ total: number;
131533
+ perPage: number;
131534
+ currentPage: number;
131535
+ lastPage: number;
131536
+ firstPage: number;
131537
+ firstPageUrl: string;
131538
+ lastPageUrl: string;
131539
+ nextPageUrl: string | null;
131540
+ previousPageUrl: string | null;
131541
+ };
131542
+ };
131543
+ success: true;
131544
+ status?: number | undefined;
131545
+ message?: string | undefined;
131546
+ error?: undefined;
131547
+ }>, z.ZodObject<{
131548
+ data: z.ZodNever;
131549
+ message: z.ZodString;
131550
+ status: z.ZodOptional<z.ZodNumber>;
131551
+ error: z.ZodObject<{
131552
+ message: z.ZodString;
131553
+ info: z.ZodObject<{
131554
+ status: z.ZodNumber;
131555
+ code: z.ZodString;
131556
+ messages: z.ZodArray<z.ZodObject<{
131557
+ message: z.ZodString;
131558
+ rule: z.ZodOptional<z.ZodString>;
131559
+ field: z.ZodOptional<z.ZodString>;
131560
+ }, "strip", z.ZodTypeAny, {
131561
+ message: string;
131562
+ rule?: string | undefined;
131563
+ field?: string | undefined;
131564
+ }, {
131565
+ message: string;
131566
+ rule?: string | undefined;
131567
+ field?: string | undefined;
131568
+ }>, "many">;
131569
+ }, "strip", z.ZodTypeAny, {
131570
+ status: number;
131571
+ code: string;
131572
+ messages: {
131573
+ message: string;
131574
+ rule?: string | undefined;
131575
+ field?: string | undefined;
131576
+ }[];
131577
+ }, {
131578
+ status: number;
131579
+ code: string;
131580
+ messages: {
131581
+ message: string;
131582
+ rule?: string | undefined;
131583
+ field?: string | undefined;
131584
+ }[];
131585
+ }>;
131586
+ }, "strip", z.ZodTypeAny, {
131587
+ message: string;
131588
+ info: {
131589
+ status: number;
131590
+ code: string;
131591
+ messages: {
131592
+ message: string;
131593
+ rule?: string | undefined;
131594
+ field?: string | undefined;
131595
+ }[];
131596
+ };
131597
+ }, {
131598
+ message: string;
131599
+ info: {
131600
+ status: number;
131601
+ code: string;
131602
+ messages: {
131603
+ message: string;
131604
+ rule?: string | undefined;
131605
+ field?: string | undefined;
131606
+ }[];
131607
+ };
131608
+ }>;
131609
+ success: z.ZodNever;
131610
+ }, "strip", z.ZodTypeAny, {
131611
+ message: string;
131612
+ data: never;
131613
+ error: {
131614
+ message: string;
131615
+ info: {
131616
+ status: number;
131617
+ code: string;
131618
+ messages: {
131619
+ message: string;
131620
+ rule?: string | undefined;
131621
+ field?: string | undefined;
131622
+ }[];
131623
+ };
131624
+ };
131625
+ success: never;
131626
+ status?: number | undefined;
131627
+ }, {
131628
+ message: string;
131629
+ data: never;
131630
+ error: {
131631
+ message: string;
131632
+ info: {
131633
+ status: number;
131634
+ code: string;
131635
+ messages: {
131636
+ message: string;
131637
+ rule?: string | undefined;
131638
+ field?: string | undefined;
131639
+ }[];
131640
+ };
131641
+ };
131642
+ success: never;
131643
+ status?: number | undefined;
131644
+ }>]>;
131645
+ };
131646
+ };
129311
131647
  export declare const opsRoutes: {
129312
131648
  auth: typeof authRoutes;
129313
131649
  shipping: typeof shippingRoutes;
@@ -129319,6 +131655,7 @@ export declare const opsRoutes: {
129319
131655
  fuel: typeof fuelRoutes;
129320
131656
  manifest: typeof manifestRoutes;
129321
131657
  country: typeof countryRoutes;
131658
+ contact: typeof contactRoutes;
129322
131659
  };
129323
131660
  export type OpsRoutesType = typeof opsRoutes;
129324
131661
  export {};