exnet-routing 1.2.49 → 1.2.51

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.
@@ -147737,6 +147737,4385 @@ declare const shippingTrackingRoutes: {
147737
147737
  status?: number | undefined;
147738
147738
  }>]>;
147739
147739
  };
147740
+ templates: {
147741
+ method: "GET";
147742
+ url: string;
147743
+ searchParams: z.ZodObject<{
147744
+ page: z.ZodOptional<z.ZodNumber>;
147745
+ limit: z.ZodOptional<z.ZodNumber>;
147746
+ search: z.ZodOptional<z.ZodString>;
147747
+ sortBy: z.ZodOptional<z.ZodString>;
147748
+ direction: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
147749
+ }, "strip", z.ZodTypeAny, {
147750
+ page?: number | undefined;
147751
+ limit?: number | undefined;
147752
+ search?: string | undefined;
147753
+ sortBy?: string | undefined;
147754
+ direction?: "asc" | "desc" | undefined;
147755
+ }, {
147756
+ page?: number | undefined;
147757
+ limit?: number | undefined;
147758
+ search?: string | undefined;
147759
+ sortBy?: string | undefined;
147760
+ direction?: "asc" | "desc" | undefined;
147761
+ }>;
147762
+ response: z.ZodUnion<[z.ZodObject<{
147763
+ data: z.ZodObject<{
147764
+ meta: typeof import("./../models").PaginationmetaSchema;
147765
+ data: z.ZodArray<z.ZodObject<{
147766
+ id: z.ZodNumber;
147767
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
147768
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
147769
+ dateTracking: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
147770
+ dateSuivi: z.ZodString;
147771
+ heurSuivi: z.ZodString;
147772
+ details: z.ZodString;
147773
+ agents: z.ZodString;
147774
+ chauffeur: z.ZodString;
147775
+ visible: z.ZodBoolean;
147776
+ isTemplate: z.ZodBoolean;
147777
+ isParis: z.ZodBoolean;
147778
+ isMedical: z.ZodBoolean;
147779
+ isService: z.ZodBoolean;
147780
+ state: z.ZodBoolean;
147781
+ location: z.ZodNullable<z.ZodString>;
147782
+ userId: z.ZodNumber;
147783
+ isDriver: z.ZodBoolean;
147784
+ status: z.ZodNullable<z.ZodString>;
147785
+ userOpsId: z.ZodNullable<z.ZodNumber>;
147786
+ dateValidateOps: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
147787
+ shippingId: z.ZodNumber;
147788
+ user: z.ZodOptional<z.ZodLazy<z.ZodObject<{
147789
+ id: z.ZodNumber;
147790
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
147791
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
147792
+ firstName: z.ZodString;
147793
+ lastName: z.ZodString;
147794
+ email: z.ZodString;
147795
+ emailVerifiedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
147796
+ password: z.ZodString;
147797
+ isActif: z.ZodBoolean;
147798
+ countryId: z.ZodNullable<z.ZodNumber>;
147799
+ postalCode: z.ZodString;
147800
+ city: z.ZodString;
147801
+ poste: z.ZodString;
147802
+ comments: z.ZodString;
147803
+ addressOne: z.ZodString;
147804
+ addressTwo: z.ZodString;
147805
+ telephoneOne: z.ZodString;
147806
+ telephoneTwo: z.ZodString;
147807
+ emailOne: z.ZodString;
147808
+ emailTwo: z.ZodString;
147809
+ roles: z.ZodArray<z.ZodString, "many">;
147810
+ isOpsAdmin: z.ZodBoolean;
147811
+ civility: z.ZodString;
147812
+ numCodeOne: z.ZodString;
147813
+ numCodeTwo: z.ZodString;
147814
+ isShowCalculatrice: z.ZodBoolean;
147815
+ expedition: z.ZodBoolean;
147816
+ physicCompany: z.ZodString;
147817
+ isParis: z.ZodBoolean;
147818
+ isMedical: z.ZodBoolean;
147819
+ isService: z.ZodBoolean;
147820
+ menus: z.ZodString;
147821
+ ongletExpedition: z.ZodString;
147822
+ chauffeurType: z.ZodString;
147823
+ typeOfOps: z.ZodString;
147824
+ prestation: z.ZodString;
147825
+ tracking: z.ZodString;
147826
+ expeditionCourse: z.ZodString;
147827
+ carnetAddress: z.ZodString;
147828
+ expeditionsCarnet: z.ZodString;
147829
+ accessArchive: z.ZodString;
147830
+ isShowImportMenu: z.ZodBoolean;
147831
+ isShowExportMenu: z.ZodBoolean;
147832
+ isShowCourseMenu: z.ZodBoolean;
147833
+ twoRoues: z.ZodBoolean;
147834
+ vt: z.ZodBoolean;
147835
+ lesTwo: z.ZodBoolean;
147836
+ isMiniTracking: z.ZodBoolean;
147837
+ isFullTracking: z.ZodBoolean;
147838
+ isShareCourseAndExpedition: z.ZodBoolean;
147839
+ isShareCarnetAdresse: z.ZodBoolean;
147840
+ isShareCarnetAdresseAndExpedition: z.ZodBoolean;
147841
+ isAccessAuxArchives: z.ZodBoolean;
147842
+ isShowInfo: z.ZodBoolean;
147843
+ photo: z.ZodNullable<z.ZodString>;
147844
+ entreprisePhysique: z.ZodString;
147845
+ isAdminChauffeur: z.ZodBoolean;
147846
+ isShowTracking: z.ZodBoolean;
147847
+ isSupportActivated: z.ZodBoolean;
147848
+ isClientTransitaire: z.ZodBoolean;
147849
+ customerId: z.ZodNumber;
147850
+ vehiculeId: z.ZodNumber;
147851
+ salaryId: z.ZodNumber;
147852
+ customer: z.ZodOptional<z.ZodLazy<z.ZodObject<{
147853
+ id: z.ZodNumber;
147854
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
147855
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
147856
+ fullName: z.ZodString;
147857
+ countryId: z.ZodNumber;
147858
+ address: z.ZodString;
147859
+ addressTwo: z.ZodNullable<z.ZodString>;
147860
+ postalCode: z.ZodString;
147861
+ city: z.ZodString;
147862
+ telephoneOne: z.ZodString;
147863
+ telephoneTwo: z.ZodNullable<z.ZodString>;
147864
+ invoiceMail: z.ZodString;
147865
+ dafResponsibleName: z.ZodString;
147866
+ email: z.ZodNullable<z.ZodString>;
147867
+ intraVatNumber: z.ZodNullable<z.ZodString>;
147868
+ submittedToFrenchVat: z.ZodBoolean;
147869
+ siren: z.ZodString;
147870
+ numeroEori: z.ZodNullable<z.ZodString>;
147871
+ comments: z.ZodNullable<z.ZodString>;
147872
+ numCodeOne: z.ZodNullable<z.ZodString>;
147873
+ numCodeTwo: z.ZodNullable<z.ZodString>;
147874
+ isActif: z.ZodBoolean;
147875
+ isParis: z.ZodBoolean;
147876
+ isMedical: z.ZodBoolean;
147877
+ isService: z.ZodBoolean;
147878
+ valeurCustomer: z.ZodBoolean;
147879
+ dirigeant: z.ZodNullable<z.ZodString>;
147880
+ dirigeantTel: z.ZodNullable<z.ZodString>;
147881
+ dirigeantEmail: z.ZodNullable<z.ZodString>;
147882
+ responsableComptable: z.ZodNullable<z.ZodString>;
147883
+ responsableComptableTel: z.ZodNullable<z.ZodString>;
147884
+ responsableComptableEmail: z.ZodNullable<z.ZodString>;
147885
+ responsableDaf: z.ZodNullable<z.ZodString>;
147886
+ responsableDafTel: z.ZodNullable<z.ZodString>;
147887
+ responsableDafEmail: z.ZodNullable<z.ZodString>;
147888
+ emailFacturation: z.ZodNullable<z.ZodString>;
147889
+ logo: z.ZodNullable<z.ZodString>;
147890
+ header: z.ZodNullable<z.ZodString>;
147891
+ footer: z.ZodNullable<z.ZodString>;
147892
+ emailOne: z.ZodNullable<z.ZodString>;
147893
+ emailTwo: z.ZodNullable<z.ZodString>;
147894
+ emailThree: z.ZodNullable<z.ZodString>;
147895
+ tva: z.ZodNullable<z.ZodString>;
147896
+ isTrackingMail: z.ZodNullable<z.ZodBoolean>;
147897
+ isBillingCenter: z.ZodBoolean;
147898
+ isShowNameCustomer: z.ZodBoolean;
147899
+ isMailing: z.ZodBoolean;
147900
+ numeroSiret: z.ZodNullable<z.ZodString>;
147901
+ country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
147902
+ id: z.ZodNumber;
147903
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
147904
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
147905
+ name: z.ZodString;
147906
+ code: z.ZodString;
147907
+ phoneCode: z.ZodString;
147908
+ }, "strip", z.ZodTypeAny, {
147909
+ id: number;
147910
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
147911
+ code: string;
147912
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
147913
+ name: string;
147914
+ phoneCode: string;
147915
+ }, {
147916
+ id: number;
147917
+ createdAt: Date;
147918
+ code: string;
147919
+ updatedAt: Date;
147920
+ name: string;
147921
+ phoneCode: string;
147922
+ }>>>;
147923
+ }, "strip", z.ZodTypeAny, {
147924
+ id: number;
147925
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
147926
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
147927
+ fullName: string;
147928
+ countryId: number;
147929
+ address: string;
147930
+ addressTwo: string | null;
147931
+ postalCode: string;
147932
+ city: string;
147933
+ telephoneOne: string;
147934
+ telephoneTwo: string | null;
147935
+ invoiceMail: string;
147936
+ dafResponsibleName: string;
147937
+ email: string | null;
147938
+ intraVatNumber: string | null;
147939
+ submittedToFrenchVat: boolean;
147940
+ siren: string;
147941
+ numeroEori: string | null;
147942
+ comments: string | null;
147943
+ numCodeOne: string | null;
147944
+ numCodeTwo: string | null;
147945
+ isActif: boolean;
147946
+ isParis: boolean;
147947
+ isMedical: boolean;
147948
+ isService: boolean;
147949
+ valeurCustomer: boolean;
147950
+ dirigeant: string | null;
147951
+ dirigeantTel: string | null;
147952
+ dirigeantEmail: string | null;
147953
+ responsableComptable: string | null;
147954
+ responsableComptableTel: string | null;
147955
+ responsableComptableEmail: string | null;
147956
+ responsableDaf: string | null;
147957
+ responsableDafTel: string | null;
147958
+ responsableDafEmail: string | null;
147959
+ emailFacturation: string | null;
147960
+ logo: string | null;
147961
+ header: string | null;
147962
+ footer: string | null;
147963
+ emailOne: string | null;
147964
+ emailTwo: string | null;
147965
+ emailThree: string | null;
147966
+ tva: string | null;
147967
+ isTrackingMail: boolean | null;
147968
+ isBillingCenter: boolean;
147969
+ isShowNameCustomer: boolean;
147970
+ isMailing: boolean;
147971
+ numeroSiret: string | null;
147972
+ country?: {
147973
+ id: number;
147974
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
147975
+ code: string;
147976
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
147977
+ name: string;
147978
+ phoneCode: string;
147979
+ } | undefined;
147980
+ }, {
147981
+ id: number;
147982
+ createdAt: Date;
147983
+ updatedAt: Date;
147984
+ fullName: string;
147985
+ countryId: number;
147986
+ address: string;
147987
+ addressTwo: string | null;
147988
+ postalCode: string;
147989
+ city: string;
147990
+ telephoneOne: string;
147991
+ telephoneTwo: string | null;
147992
+ invoiceMail: string;
147993
+ dafResponsibleName: string;
147994
+ email: string | null;
147995
+ intraVatNumber: string | null;
147996
+ submittedToFrenchVat: boolean;
147997
+ siren: string;
147998
+ numeroEori: string | null;
147999
+ comments: string | null;
148000
+ numCodeOne: string | null;
148001
+ numCodeTwo: string | null;
148002
+ isActif: boolean;
148003
+ isParis: boolean;
148004
+ isMedical: boolean;
148005
+ isService: boolean;
148006
+ valeurCustomer: boolean;
148007
+ dirigeant: string | null;
148008
+ dirigeantTel: string | null;
148009
+ dirigeantEmail: string | null;
148010
+ responsableComptable: string | null;
148011
+ responsableComptableTel: string | null;
148012
+ responsableComptableEmail: string | null;
148013
+ responsableDaf: string | null;
148014
+ responsableDafTel: string | null;
148015
+ responsableDafEmail: string | null;
148016
+ emailFacturation: string | null;
148017
+ logo: string | null;
148018
+ header: string | null;
148019
+ footer: string | null;
148020
+ emailOne: string | null;
148021
+ emailTwo: string | null;
148022
+ emailThree: string | null;
148023
+ tva: string | null;
148024
+ isTrackingMail: boolean | null;
148025
+ isBillingCenter: boolean;
148026
+ isShowNameCustomer: boolean;
148027
+ isMailing: boolean;
148028
+ numeroSiret: string | null;
148029
+ country?: {
148030
+ id: number;
148031
+ createdAt: Date;
148032
+ code: string;
148033
+ updatedAt: Date;
148034
+ name: string;
148035
+ phoneCode: string;
148036
+ } | undefined;
148037
+ }>>>;
148038
+ salary: z.ZodOptional<z.ZodLazy<z.ZodObject<{
148039
+ id: z.ZodNumber;
148040
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148041
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148042
+ nom: z.ZodString;
148043
+ prenom: z.ZodString;
148044
+ email: z.ZodString;
148045
+ telephone: z.ZodString;
148046
+ type: z.ZodString;
148047
+ adress: z.ZodString;
148048
+ city: z.ZodString;
148049
+ countryId: z.ZodNullable<z.ZodNumber>;
148050
+ postalCode: z.ZodString;
148051
+ country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
148052
+ id: z.ZodNumber;
148053
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148054
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148055
+ name: z.ZodString;
148056
+ code: z.ZodString;
148057
+ phoneCode: z.ZodString;
148058
+ }, "strip", z.ZodTypeAny, {
148059
+ id: number;
148060
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148061
+ code: string;
148062
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148063
+ name: string;
148064
+ phoneCode: string;
148065
+ }, {
148066
+ id: number;
148067
+ createdAt: Date;
148068
+ code: string;
148069
+ updatedAt: Date;
148070
+ name: string;
148071
+ phoneCode: string;
148072
+ }>>>;
148073
+ }, "strip", z.ZodTypeAny, {
148074
+ id: number;
148075
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148076
+ type: string;
148077
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
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: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148089
+ code: string;
148090
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148091
+ name: string;
148092
+ phoneCode: string;
148093
+ } | undefined;
148094
+ }, {
148095
+ id: number;
148096
+ createdAt: Date;
148097
+ type: string;
148098
+ updatedAt: Date;
148099
+ countryId: number | null;
148100
+ postalCode: string;
148101
+ city: string;
148102
+ email: string;
148103
+ nom: string;
148104
+ prenom: string;
148105
+ telephone: string;
148106
+ adress: string;
148107
+ country?: {
148108
+ id: number;
148109
+ createdAt: Date;
148110
+ code: string;
148111
+ updatedAt: Date;
148112
+ name: string;
148113
+ phoneCode: string;
148114
+ } | undefined;
148115
+ }>>>;
148116
+ vehicule: z.ZodOptional<z.ZodLazy<z.ZodObject<{
148117
+ id: z.ZodNumber;
148118
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148119
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148120
+ plaque: z.ZodString;
148121
+ telephoneSociete: z.ZodString;
148122
+ typeVehicule: z.ZodString;
148123
+ kmDepart: z.ZodNumber;
148124
+ kmRetour: z.ZodNumber;
148125
+ pochetteRecu: z.ZodBoolean;
148126
+ carteCarburant: z.ZodString;
148127
+ carteBancaire: z.ZodString;
148128
+ bipTelepage: z.ZodString;
148129
+ }, "strip", z.ZodTypeAny, {
148130
+ id: number;
148131
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148132
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148133
+ plaque: string;
148134
+ telephoneSociete: string;
148135
+ typeVehicule: string;
148136
+ kmDepart: number;
148137
+ kmRetour: number;
148138
+ pochetteRecu: boolean;
148139
+ carteCarburant: string;
148140
+ carteBancaire: string;
148141
+ bipTelepage: string;
148142
+ }, {
148143
+ id: number;
148144
+ createdAt: Date;
148145
+ updatedAt: Date;
148146
+ plaque: string;
148147
+ telephoneSociete: string;
148148
+ typeVehicule: string;
148149
+ kmDepart: number;
148150
+ kmRetour: number;
148151
+ pochetteRecu: boolean;
148152
+ carteCarburant: string;
148153
+ carteBancaire: string;
148154
+ bipTelepage: string;
148155
+ }>>>;
148156
+ country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
148157
+ id: z.ZodNumber;
148158
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148159
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148160
+ name: z.ZodString;
148161
+ code: z.ZodString;
148162
+ phoneCode: z.ZodString;
148163
+ }, "strip", z.ZodTypeAny, {
148164
+ id: number;
148165
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148166
+ code: string;
148167
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148168
+ name: string;
148169
+ phoneCode: string;
148170
+ }, {
148171
+ id: number;
148172
+ createdAt: Date;
148173
+ code: string;
148174
+ updatedAt: Date;
148175
+ name: string;
148176
+ phoneCode: string;
148177
+ }>>>;
148178
+ userBillingCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
148179
+ id: z.ZodNumber;
148180
+ createdAt: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
148181
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
148182
+ userId: z.ZodNumber;
148183
+ billingCenterId: z.ZodNumber;
148184
+ billingCenter: z.ZodOptional<z.ZodObject<{
148185
+ id: z.ZodNumber;
148186
+ billingCenterName: z.ZodString;
148187
+ customerId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
148188
+ }, "strip", z.ZodTypeAny, {
148189
+ id: number;
148190
+ billingCenterName: string;
148191
+ customerId?: number | null | undefined;
148192
+ }, {
148193
+ id: number;
148194
+ billingCenterName: string;
148195
+ customerId?: number | null | undefined;
148196
+ }>>;
148197
+ }, "strip", z.ZodTypeAny, {
148198
+ id: number;
148199
+ userId: number;
148200
+ billingCenterId: number;
148201
+ createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148202
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148203
+ billingCenter?: {
148204
+ id: number;
148205
+ billingCenterName: string;
148206
+ customerId?: number | null | undefined;
148207
+ } | undefined;
148208
+ }, {
148209
+ id: number;
148210
+ userId: number;
148211
+ billingCenterId: number;
148212
+ createdAt?: Date | undefined;
148213
+ updatedAt?: Date | undefined;
148214
+ billingCenter?: {
148215
+ id: number;
148216
+ billingCenterName: string;
148217
+ customerId?: number | null | undefined;
148218
+ } | undefined;
148219
+ }>, "many">>;
148220
+ }, "strip", z.ZodTypeAny, {
148221
+ id: number;
148222
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148223
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148224
+ countryId: number | null;
148225
+ addressTwo: string;
148226
+ postalCode: string;
148227
+ city: string;
148228
+ telephoneOne: string;
148229
+ telephoneTwo: string;
148230
+ email: string;
148231
+ comments: string;
148232
+ numCodeOne: string;
148233
+ numCodeTwo: string;
148234
+ isActif: boolean;
148235
+ isParis: boolean;
148236
+ isMedical: boolean;
148237
+ isService: boolean;
148238
+ emailOne: string;
148239
+ emailTwo: string;
148240
+ addressOne: string;
148241
+ customerId: number;
148242
+ firstName: string;
148243
+ lastName: string;
148244
+ emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148245
+ password: string;
148246
+ poste: string;
148247
+ roles: string[];
148248
+ isOpsAdmin: boolean;
148249
+ civility: string;
148250
+ isShowCalculatrice: boolean;
148251
+ expedition: boolean;
148252
+ physicCompany: string;
148253
+ menus: string;
148254
+ ongletExpedition: string;
148255
+ chauffeurType: string;
148256
+ typeOfOps: string;
148257
+ prestation: string;
148258
+ tracking: string;
148259
+ expeditionCourse: string;
148260
+ carnetAddress: string;
148261
+ expeditionsCarnet: string;
148262
+ accessArchive: string;
148263
+ isShowImportMenu: boolean;
148264
+ isShowExportMenu: boolean;
148265
+ isShowCourseMenu: boolean;
148266
+ twoRoues: boolean;
148267
+ vt: boolean;
148268
+ lesTwo: boolean;
148269
+ isMiniTracking: boolean;
148270
+ isFullTracking: boolean;
148271
+ isShareCourseAndExpedition: boolean;
148272
+ isShareCarnetAdresse: boolean;
148273
+ isShareCarnetAdresseAndExpedition: boolean;
148274
+ isAccessAuxArchives: boolean;
148275
+ isShowInfo: boolean;
148276
+ photo: string | null;
148277
+ entreprisePhysique: string;
148278
+ isAdminChauffeur: boolean;
148279
+ isShowTracking: boolean;
148280
+ isSupportActivated: boolean;
148281
+ isClientTransitaire: boolean;
148282
+ vehiculeId: number;
148283
+ salaryId: number;
148284
+ country?: {
148285
+ id: number;
148286
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148287
+ code: string;
148288
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148289
+ name: string;
148290
+ phoneCode: string;
148291
+ } | undefined;
148292
+ customer?: {
148293
+ id: number;
148294
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148295
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148296
+ fullName: string;
148297
+ countryId: number;
148298
+ address: string;
148299
+ addressTwo: string | null;
148300
+ postalCode: string;
148301
+ city: string;
148302
+ telephoneOne: string;
148303
+ telephoneTwo: string | null;
148304
+ invoiceMail: string;
148305
+ dafResponsibleName: string;
148306
+ email: string | null;
148307
+ intraVatNumber: string | null;
148308
+ submittedToFrenchVat: boolean;
148309
+ siren: string;
148310
+ numeroEori: string | null;
148311
+ comments: string | null;
148312
+ numCodeOne: string | null;
148313
+ numCodeTwo: string | null;
148314
+ isActif: boolean;
148315
+ isParis: boolean;
148316
+ isMedical: boolean;
148317
+ isService: boolean;
148318
+ valeurCustomer: boolean;
148319
+ dirigeant: string | null;
148320
+ dirigeantTel: string | null;
148321
+ dirigeantEmail: string | null;
148322
+ responsableComptable: string | null;
148323
+ responsableComptableTel: string | null;
148324
+ responsableComptableEmail: string | null;
148325
+ responsableDaf: string | null;
148326
+ responsableDafTel: string | null;
148327
+ responsableDafEmail: string | null;
148328
+ emailFacturation: string | null;
148329
+ logo: string | null;
148330
+ header: string | null;
148331
+ footer: string | null;
148332
+ emailOne: string | null;
148333
+ emailTwo: string | null;
148334
+ emailThree: string | null;
148335
+ tva: string | null;
148336
+ isTrackingMail: boolean | null;
148337
+ isBillingCenter: boolean;
148338
+ isShowNameCustomer: boolean;
148339
+ isMailing: boolean;
148340
+ numeroSiret: string | null;
148341
+ country?: {
148342
+ id: number;
148343
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148344
+ code: string;
148345
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148346
+ name: string;
148347
+ phoneCode: string;
148348
+ } | undefined;
148349
+ } | undefined;
148350
+ salary?: {
148351
+ id: number;
148352
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148353
+ type: string;
148354
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148355
+ countryId: number | null;
148356
+ postalCode: string;
148357
+ city: string;
148358
+ email: string;
148359
+ nom: string;
148360
+ prenom: string;
148361
+ telephone: string;
148362
+ adress: string;
148363
+ country?: {
148364
+ id: number;
148365
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148366
+ code: string;
148367
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148368
+ name: string;
148369
+ phoneCode: string;
148370
+ } | undefined;
148371
+ } | undefined;
148372
+ vehicule?: {
148373
+ id: number;
148374
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148375
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148376
+ plaque: string;
148377
+ telephoneSociete: string;
148378
+ typeVehicule: string;
148379
+ kmDepart: number;
148380
+ kmRetour: number;
148381
+ pochetteRecu: boolean;
148382
+ carteCarburant: string;
148383
+ carteBancaire: string;
148384
+ bipTelepage: string;
148385
+ } | undefined;
148386
+ userBillingCenters?: {
148387
+ id: number;
148388
+ userId: number;
148389
+ billingCenterId: number;
148390
+ createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148391
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148392
+ billingCenter?: {
148393
+ id: number;
148394
+ billingCenterName: string;
148395
+ customerId?: number | null | undefined;
148396
+ } | undefined;
148397
+ }[] | undefined;
148398
+ }, {
148399
+ id: number;
148400
+ createdAt: Date;
148401
+ updatedAt: Date;
148402
+ countryId: number | null;
148403
+ addressTwo: string;
148404
+ postalCode: string;
148405
+ city: string;
148406
+ telephoneOne: string;
148407
+ telephoneTwo: string;
148408
+ email: string;
148409
+ comments: string;
148410
+ numCodeOne: string;
148411
+ numCodeTwo: string;
148412
+ isActif: boolean;
148413
+ isParis: boolean;
148414
+ isMedical: boolean;
148415
+ isService: boolean;
148416
+ emailOne: string;
148417
+ emailTwo: string;
148418
+ addressOne: string;
148419
+ customerId: number;
148420
+ firstName: string;
148421
+ lastName: string;
148422
+ emailVerifiedAt: Date;
148423
+ password: string;
148424
+ poste: string;
148425
+ roles: string[];
148426
+ isOpsAdmin: boolean;
148427
+ civility: string;
148428
+ isShowCalculatrice: boolean;
148429
+ expedition: boolean;
148430
+ physicCompany: string;
148431
+ menus: string;
148432
+ ongletExpedition: string;
148433
+ chauffeurType: string;
148434
+ typeOfOps: string;
148435
+ prestation: string;
148436
+ tracking: string;
148437
+ expeditionCourse: string;
148438
+ carnetAddress: string;
148439
+ expeditionsCarnet: string;
148440
+ accessArchive: string;
148441
+ isShowImportMenu: boolean;
148442
+ isShowExportMenu: boolean;
148443
+ isShowCourseMenu: boolean;
148444
+ twoRoues: boolean;
148445
+ vt: boolean;
148446
+ lesTwo: boolean;
148447
+ isMiniTracking: boolean;
148448
+ isFullTracking: boolean;
148449
+ isShareCourseAndExpedition: boolean;
148450
+ isShareCarnetAdresse: boolean;
148451
+ isShareCarnetAdresseAndExpedition: boolean;
148452
+ isAccessAuxArchives: boolean;
148453
+ isShowInfo: boolean;
148454
+ photo: string | null;
148455
+ entreprisePhysique: string;
148456
+ isAdminChauffeur: boolean;
148457
+ isShowTracking: boolean;
148458
+ isSupportActivated: boolean;
148459
+ isClientTransitaire: boolean;
148460
+ vehiculeId: number;
148461
+ salaryId: number;
148462
+ country?: {
148463
+ id: number;
148464
+ createdAt: Date;
148465
+ code: string;
148466
+ updatedAt: Date;
148467
+ name: string;
148468
+ phoneCode: string;
148469
+ } | undefined;
148470
+ customer?: {
148471
+ id: number;
148472
+ createdAt: Date;
148473
+ updatedAt: Date;
148474
+ fullName: string;
148475
+ countryId: number;
148476
+ address: string;
148477
+ addressTwo: string | null;
148478
+ postalCode: string;
148479
+ city: string;
148480
+ telephoneOne: string;
148481
+ telephoneTwo: string | null;
148482
+ invoiceMail: string;
148483
+ dafResponsibleName: string;
148484
+ email: string | null;
148485
+ intraVatNumber: string | null;
148486
+ submittedToFrenchVat: boolean;
148487
+ siren: string;
148488
+ numeroEori: string | null;
148489
+ comments: string | null;
148490
+ numCodeOne: string | null;
148491
+ numCodeTwo: string | null;
148492
+ isActif: boolean;
148493
+ isParis: boolean;
148494
+ isMedical: boolean;
148495
+ isService: boolean;
148496
+ valeurCustomer: boolean;
148497
+ dirigeant: string | null;
148498
+ dirigeantTel: string | null;
148499
+ dirigeantEmail: string | null;
148500
+ responsableComptable: string | null;
148501
+ responsableComptableTel: string | null;
148502
+ responsableComptableEmail: string | null;
148503
+ responsableDaf: string | null;
148504
+ responsableDafTel: string | null;
148505
+ responsableDafEmail: string | null;
148506
+ emailFacturation: string | null;
148507
+ logo: string | null;
148508
+ header: string | null;
148509
+ footer: string | null;
148510
+ emailOne: string | null;
148511
+ emailTwo: string | null;
148512
+ emailThree: string | null;
148513
+ tva: string | null;
148514
+ isTrackingMail: boolean | null;
148515
+ isBillingCenter: boolean;
148516
+ isShowNameCustomer: boolean;
148517
+ isMailing: boolean;
148518
+ numeroSiret: string | null;
148519
+ country?: {
148520
+ id: number;
148521
+ createdAt: Date;
148522
+ code: string;
148523
+ updatedAt: Date;
148524
+ name: string;
148525
+ phoneCode: string;
148526
+ } | undefined;
148527
+ } | undefined;
148528
+ salary?: {
148529
+ id: number;
148530
+ createdAt: Date;
148531
+ type: string;
148532
+ updatedAt: Date;
148533
+ countryId: number | null;
148534
+ postalCode: string;
148535
+ city: string;
148536
+ email: string;
148537
+ nom: string;
148538
+ prenom: string;
148539
+ telephone: string;
148540
+ adress: string;
148541
+ country?: {
148542
+ id: number;
148543
+ createdAt: Date;
148544
+ code: string;
148545
+ updatedAt: Date;
148546
+ name: string;
148547
+ phoneCode: string;
148548
+ } | undefined;
148549
+ } | undefined;
148550
+ vehicule?: {
148551
+ id: number;
148552
+ createdAt: Date;
148553
+ updatedAt: Date;
148554
+ plaque: string;
148555
+ telephoneSociete: string;
148556
+ typeVehicule: string;
148557
+ kmDepart: number;
148558
+ kmRetour: number;
148559
+ pochetteRecu: boolean;
148560
+ carteCarburant: string;
148561
+ carteBancaire: string;
148562
+ bipTelepage: string;
148563
+ } | undefined;
148564
+ userBillingCenters?: {
148565
+ id: number;
148566
+ userId: number;
148567
+ billingCenterId: number;
148568
+ createdAt?: Date | undefined;
148569
+ updatedAt?: Date | undefined;
148570
+ billingCenter?: {
148571
+ id: number;
148572
+ billingCenterName: string;
148573
+ customerId?: number | null | undefined;
148574
+ } | undefined;
148575
+ }[] | undefined;
148576
+ }>>>;
148577
+ shipping: z.ZodOptional<z.ZodLazy<z.ZodObject<{
148578
+ id: z.ZodNumber;
148579
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148580
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148581
+ customerRef: z.ZodNullable<z.ZodString>;
148582
+ pickupDate: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
148583
+ deliveryDate: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
148584
+ pickupInstruction: z.ZodNullable<z.ZodString>;
148585
+ deliveryInstruction: z.ZodNullable<z.ZodString>;
148586
+ billContact: z.ZodNullable<z.ZodString>;
148587
+ trackingMail: z.ZodNullable<z.ZodString>;
148588
+ pickupTime: z.ZodNullable<z.ZodString>;
148589
+ deliveryTime: z.ZodNullable<z.ZodString>;
148590
+ ref: z.ZodNullable<z.ZodNumber>;
148591
+ trackingNumber: z.ZodNullable<z.ZodString>;
148592
+ classifications: z.ZodNullable<z.ZodString>;
148593
+ userName: z.ZodNullable<z.ZodString>;
148594
+ transportType: z.ZodNullable<z.ZodString>;
148595
+ isDeleted: z.ZodNullable<z.ZodBoolean>;
148596
+ codeDonneur: z.ZodNullable<z.ZodString>;
148597
+ codeReceveur: z.ZodNullable<z.ZodString>;
148598
+ hasManifest: z.ZodBoolean;
148599
+ isOps: z.ZodBoolean;
148600
+ comment: z.ZodNullable<z.ZodString>;
148601
+ createdFor: z.ZodNullable<z.ZodNumber>;
148602
+ isArchived: z.ZodBoolean;
148603
+ isNeedArchive: z.ZodBoolean;
148604
+ isAnnulee: z.ZodBoolean;
148605
+ raison: z.ZodNullable<z.ZodString>;
148606
+ color: z.ZodNullable<z.ZodString>;
148607
+ docBordereaux: z.ZodNullable<z.ZodString>;
148608
+ docAccompagnement: z.ZodNullable<z.ZodString>;
148609
+ category: z.ZodNativeEnum<{
148610
+ readonly ALL: "all";
148611
+ readonly IMPORT: "import";
148612
+ readonly EXPORT: "export";
148613
+ readonly COURSE: "course";
148614
+ }>;
148615
+ typeExpedition: z.ZodNativeEnum<{
148616
+ readonly COURSE: "course";
148617
+ readonly EXPEDITION: "expedition";
148618
+ }>;
148619
+ driverId: z.ZodNumber;
148620
+ typeDeRoue: z.ZodNullable<z.ZodString>;
148621
+ isRecupererOps: z.ZodNullable<z.ZodBoolean>;
148622
+ isRemisOps: z.ZodNullable<z.ZodBoolean>;
148623
+ isRecupererChauffeur: z.ZodNullable<z.ZodBoolean>;
148624
+ isRemisChauffeur: z.ZodNullable<z.ZodBoolean>;
148625
+ heureRecupererOps: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
148626
+ heureRemisOps: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
148627
+ heureRecupererChauffeur: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
148628
+ heureRemisChauffeur: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
148629
+ lastCronRunAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
148630
+ devises: z.ZodNullable<z.ZodString>;
148631
+ provenanceCommande: z.ZodNullable<z.ZodString>;
148632
+ hasEmballage: z.ZodBoolean;
148633
+ billingCenterId: z.ZodNullable<z.ZodNumber>;
148634
+ userId: z.ZodNullable<z.ZodNumber>;
148635
+ }, "strip", z.ZodTypeAny, {
148636
+ id: number;
148637
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148638
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148639
+ userId: number | null;
148640
+ billingCenterId: number | null;
148641
+ trackingMail: string | null;
148642
+ customerRef: string | null;
148643
+ pickupInstruction: string | null;
148644
+ deliveryInstruction: string | null;
148645
+ billContact: string | null;
148646
+ pickupTime: string | null;
148647
+ deliveryTime: string | null;
148648
+ ref: number | null;
148649
+ trackingNumber: string | null;
148650
+ classifications: string | null;
148651
+ userName: string | null;
148652
+ transportType: string | null;
148653
+ isDeleted: boolean | null;
148654
+ codeDonneur: string | null;
148655
+ codeReceveur: string | null;
148656
+ hasManifest: boolean;
148657
+ isOps: boolean;
148658
+ comment: string | null;
148659
+ createdFor: number | null;
148660
+ isArchived: boolean;
148661
+ isNeedArchive: boolean;
148662
+ isAnnulee: boolean;
148663
+ raison: string | null;
148664
+ color: string | null;
148665
+ docBordereaux: string | null;
148666
+ docAccompagnement: string | null;
148667
+ category: "course" | "all" | "import" | "export";
148668
+ typeExpedition: "expedition" | "course";
148669
+ driverId: number;
148670
+ typeDeRoue: string | null;
148671
+ isRecupererOps: boolean | null;
148672
+ isRemisOps: boolean | null;
148673
+ isRecupererChauffeur: boolean | null;
148674
+ isRemisChauffeur: boolean | null;
148675
+ lastCronRunAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148676
+ devises: string | null;
148677
+ provenanceCommande: string | null;
148678
+ hasEmballage: boolean;
148679
+ pickupDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148680
+ deliveryDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148681
+ heureRecupererOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148682
+ heureRemisOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148683
+ heureRecupererChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148684
+ heureRemisChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148685
+ }, {
148686
+ id: number;
148687
+ createdAt: Date;
148688
+ updatedAt: Date;
148689
+ userId: number | null;
148690
+ billingCenterId: number | null;
148691
+ trackingMail: string | null;
148692
+ customerRef: string | null;
148693
+ pickupInstruction: string | null;
148694
+ deliveryInstruction: string | null;
148695
+ billContact: string | null;
148696
+ pickupTime: string | null;
148697
+ deliveryTime: string | null;
148698
+ ref: number | null;
148699
+ trackingNumber: string | null;
148700
+ classifications: string | null;
148701
+ userName: string | null;
148702
+ transportType: string | null;
148703
+ isDeleted: boolean | null;
148704
+ codeDonneur: string | null;
148705
+ codeReceveur: string | null;
148706
+ hasManifest: boolean;
148707
+ isOps: boolean;
148708
+ comment: string | null;
148709
+ createdFor: number | null;
148710
+ isArchived: boolean;
148711
+ isNeedArchive: boolean;
148712
+ isAnnulee: boolean;
148713
+ raison: string | null;
148714
+ color: string | null;
148715
+ docBordereaux: string | null;
148716
+ docAccompagnement: string | null;
148717
+ category: "course" | "all" | "import" | "export";
148718
+ typeExpedition: "expedition" | "course";
148719
+ driverId: number;
148720
+ typeDeRoue: string | null;
148721
+ isRecupererOps: boolean | null;
148722
+ isRemisOps: boolean | null;
148723
+ isRecupererChauffeur: boolean | null;
148724
+ isRemisChauffeur: boolean | null;
148725
+ lastCronRunAt: Date;
148726
+ devises: string | null;
148727
+ provenanceCommande: string | null;
148728
+ hasEmballage: boolean;
148729
+ pickupDate?: Date | undefined;
148730
+ deliveryDate?: Date | undefined;
148731
+ heureRecupererOps?: Date | undefined;
148732
+ heureRemisOps?: Date | undefined;
148733
+ heureRecupererChauffeur?: Date | undefined;
148734
+ heureRemisChauffeur?: Date | undefined;
148735
+ }>>>;
148736
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
148737
+ id: number;
148738
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148739
+ status: string | null;
148740
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148741
+ isParis: boolean;
148742
+ isMedical: boolean;
148743
+ isService: boolean;
148744
+ userId: number;
148745
+ chauffeur: string;
148746
+ shippingId: number;
148747
+ dateTracking: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148748
+ dateSuivi: string;
148749
+ heurSuivi: string;
148750
+ details: string;
148751
+ agents: string;
148752
+ visible: boolean;
148753
+ isTemplate: boolean;
148754
+ state: boolean;
148755
+ location: string | null;
148756
+ isDriver: boolean;
148757
+ userOpsId: number | null;
148758
+ user?: {
148759
+ id: number;
148760
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148761
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148762
+ countryId: number | null;
148763
+ addressTwo: string;
148764
+ postalCode: string;
148765
+ city: string;
148766
+ telephoneOne: string;
148767
+ telephoneTwo: string;
148768
+ email: string;
148769
+ comments: string;
148770
+ numCodeOne: string;
148771
+ numCodeTwo: string;
148772
+ isActif: boolean;
148773
+ isParis: boolean;
148774
+ isMedical: boolean;
148775
+ isService: boolean;
148776
+ emailOne: string;
148777
+ emailTwo: string;
148778
+ addressOne: string;
148779
+ customerId: number;
148780
+ firstName: string;
148781
+ lastName: string;
148782
+ emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148783
+ password: string;
148784
+ poste: string;
148785
+ roles: string[];
148786
+ isOpsAdmin: boolean;
148787
+ civility: string;
148788
+ isShowCalculatrice: boolean;
148789
+ expedition: boolean;
148790
+ physicCompany: string;
148791
+ menus: string;
148792
+ ongletExpedition: string;
148793
+ chauffeurType: string;
148794
+ typeOfOps: string;
148795
+ prestation: string;
148796
+ tracking: string;
148797
+ expeditionCourse: string;
148798
+ carnetAddress: string;
148799
+ expeditionsCarnet: string;
148800
+ accessArchive: string;
148801
+ isShowImportMenu: boolean;
148802
+ isShowExportMenu: boolean;
148803
+ isShowCourseMenu: boolean;
148804
+ twoRoues: boolean;
148805
+ vt: boolean;
148806
+ lesTwo: boolean;
148807
+ isMiniTracking: boolean;
148808
+ isFullTracking: boolean;
148809
+ isShareCourseAndExpedition: boolean;
148810
+ isShareCarnetAdresse: boolean;
148811
+ isShareCarnetAdresseAndExpedition: boolean;
148812
+ isAccessAuxArchives: boolean;
148813
+ isShowInfo: boolean;
148814
+ photo: string | null;
148815
+ entreprisePhysique: string;
148816
+ isAdminChauffeur: boolean;
148817
+ isShowTracking: boolean;
148818
+ isSupportActivated: boolean;
148819
+ isClientTransitaire: boolean;
148820
+ vehiculeId: number;
148821
+ salaryId: number;
148822
+ country?: {
148823
+ id: number;
148824
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148825
+ code: string;
148826
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148827
+ name: string;
148828
+ phoneCode: string;
148829
+ } | undefined;
148830
+ customer?: {
148831
+ id: number;
148832
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148833
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148834
+ fullName: string;
148835
+ countryId: number;
148836
+ address: string;
148837
+ addressTwo: string | null;
148838
+ postalCode: string;
148839
+ city: string;
148840
+ telephoneOne: string;
148841
+ telephoneTwo: string | null;
148842
+ invoiceMail: string;
148843
+ dafResponsibleName: string;
148844
+ email: string | null;
148845
+ intraVatNumber: string | null;
148846
+ submittedToFrenchVat: boolean;
148847
+ siren: string;
148848
+ numeroEori: string | null;
148849
+ comments: string | null;
148850
+ numCodeOne: string | null;
148851
+ numCodeTwo: string | null;
148852
+ isActif: boolean;
148853
+ isParis: boolean;
148854
+ isMedical: boolean;
148855
+ isService: boolean;
148856
+ valeurCustomer: boolean;
148857
+ dirigeant: string | null;
148858
+ dirigeantTel: string | null;
148859
+ dirigeantEmail: string | null;
148860
+ responsableComptable: string | null;
148861
+ responsableComptableTel: string | null;
148862
+ responsableComptableEmail: string | null;
148863
+ responsableDaf: string | null;
148864
+ responsableDafTel: string | null;
148865
+ responsableDafEmail: string | null;
148866
+ emailFacturation: string | null;
148867
+ logo: string | null;
148868
+ header: string | null;
148869
+ footer: string | null;
148870
+ emailOne: string | null;
148871
+ emailTwo: string | null;
148872
+ emailThree: string | null;
148873
+ tva: string | null;
148874
+ isTrackingMail: boolean | null;
148875
+ isBillingCenter: boolean;
148876
+ isShowNameCustomer: boolean;
148877
+ isMailing: boolean;
148878
+ numeroSiret: string | null;
148879
+ country?: {
148880
+ id: number;
148881
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148882
+ code: string;
148883
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148884
+ name: string;
148885
+ phoneCode: string;
148886
+ } | undefined;
148887
+ } | undefined;
148888
+ salary?: {
148889
+ id: number;
148890
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148891
+ type: string;
148892
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148893
+ countryId: number | null;
148894
+ postalCode: string;
148895
+ city: string;
148896
+ email: string;
148897
+ nom: string;
148898
+ prenom: string;
148899
+ telephone: string;
148900
+ adress: string;
148901
+ country?: {
148902
+ id: number;
148903
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148904
+ code: string;
148905
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148906
+ name: string;
148907
+ phoneCode: string;
148908
+ } | undefined;
148909
+ } | undefined;
148910
+ vehicule?: {
148911
+ id: number;
148912
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148913
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148914
+ plaque: string;
148915
+ telephoneSociete: string;
148916
+ typeVehicule: string;
148917
+ kmDepart: number;
148918
+ kmRetour: number;
148919
+ pochetteRecu: boolean;
148920
+ carteCarburant: string;
148921
+ carteBancaire: string;
148922
+ bipTelepage: string;
148923
+ } | undefined;
148924
+ userBillingCenters?: {
148925
+ id: number;
148926
+ userId: number;
148927
+ billingCenterId: number;
148928
+ createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148929
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148930
+ billingCenter?: {
148931
+ id: number;
148932
+ billingCenterName: string;
148933
+ customerId?: number | null | undefined;
148934
+ } | undefined;
148935
+ }[] | undefined;
148936
+ } | undefined;
148937
+ shipping?: {
148938
+ id: number;
148939
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148940
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148941
+ userId: number | null;
148942
+ billingCenterId: number | null;
148943
+ trackingMail: string | null;
148944
+ customerRef: string | null;
148945
+ pickupInstruction: string | null;
148946
+ deliveryInstruction: string | null;
148947
+ billContact: string | null;
148948
+ pickupTime: string | null;
148949
+ deliveryTime: string | null;
148950
+ ref: number | null;
148951
+ trackingNumber: string | null;
148952
+ classifications: string | null;
148953
+ userName: string | null;
148954
+ transportType: string | null;
148955
+ isDeleted: boolean | null;
148956
+ codeDonneur: string | null;
148957
+ codeReceveur: string | null;
148958
+ hasManifest: boolean;
148959
+ isOps: boolean;
148960
+ comment: string | null;
148961
+ createdFor: number | null;
148962
+ isArchived: boolean;
148963
+ isNeedArchive: boolean;
148964
+ isAnnulee: boolean;
148965
+ raison: string | null;
148966
+ color: string | null;
148967
+ docBordereaux: string | null;
148968
+ docAccompagnement: string | null;
148969
+ category: "course" | "all" | "import" | "export";
148970
+ typeExpedition: "expedition" | "course";
148971
+ driverId: number;
148972
+ typeDeRoue: string | null;
148973
+ isRecupererOps: boolean | null;
148974
+ isRemisOps: boolean | null;
148975
+ isRecupererChauffeur: boolean | null;
148976
+ isRemisChauffeur: boolean | null;
148977
+ lastCronRunAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
148978
+ devises: string | null;
148979
+ provenanceCommande: string | null;
148980
+ hasEmballage: boolean;
148981
+ pickupDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148982
+ deliveryDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148983
+ heureRecupererOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148984
+ heureRemisOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148985
+ heureRecupererChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148986
+ heureRemisChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148987
+ } | undefined;
148988
+ dateValidateOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
148989
+ }, {
148990
+ id: number;
148991
+ createdAt: Date;
148992
+ status: string | null;
148993
+ updatedAt: Date;
148994
+ isParis: boolean;
148995
+ isMedical: boolean;
148996
+ isService: boolean;
148997
+ userId: number;
148998
+ chauffeur: string;
148999
+ shippingId: number;
149000
+ dateTracking: Date;
149001
+ dateSuivi: string;
149002
+ heurSuivi: string;
149003
+ details: string;
149004
+ agents: string;
149005
+ visible: boolean;
149006
+ isTemplate: boolean;
149007
+ state: boolean;
149008
+ location: string | null;
149009
+ isDriver: boolean;
149010
+ userOpsId: number | null;
149011
+ user?: {
149012
+ id: number;
149013
+ createdAt: Date;
149014
+ updatedAt: Date;
149015
+ countryId: number | null;
149016
+ addressTwo: string;
149017
+ postalCode: string;
149018
+ city: string;
149019
+ telephoneOne: string;
149020
+ telephoneTwo: string;
149021
+ email: string;
149022
+ comments: string;
149023
+ numCodeOne: string;
149024
+ numCodeTwo: string;
149025
+ isActif: boolean;
149026
+ isParis: boolean;
149027
+ isMedical: boolean;
149028
+ isService: boolean;
149029
+ emailOne: string;
149030
+ emailTwo: string;
149031
+ addressOne: string;
149032
+ customerId: number;
149033
+ firstName: string;
149034
+ lastName: string;
149035
+ emailVerifiedAt: Date;
149036
+ password: string;
149037
+ poste: string;
149038
+ roles: string[];
149039
+ isOpsAdmin: boolean;
149040
+ civility: string;
149041
+ isShowCalculatrice: boolean;
149042
+ expedition: boolean;
149043
+ physicCompany: string;
149044
+ menus: string;
149045
+ ongletExpedition: string;
149046
+ chauffeurType: string;
149047
+ typeOfOps: string;
149048
+ prestation: string;
149049
+ tracking: string;
149050
+ expeditionCourse: string;
149051
+ carnetAddress: string;
149052
+ expeditionsCarnet: string;
149053
+ accessArchive: string;
149054
+ isShowImportMenu: boolean;
149055
+ isShowExportMenu: boolean;
149056
+ isShowCourseMenu: boolean;
149057
+ twoRoues: boolean;
149058
+ vt: boolean;
149059
+ lesTwo: boolean;
149060
+ isMiniTracking: boolean;
149061
+ isFullTracking: boolean;
149062
+ isShareCourseAndExpedition: boolean;
149063
+ isShareCarnetAdresse: boolean;
149064
+ isShareCarnetAdresseAndExpedition: boolean;
149065
+ isAccessAuxArchives: boolean;
149066
+ isShowInfo: boolean;
149067
+ photo: string | null;
149068
+ entreprisePhysique: string;
149069
+ isAdminChauffeur: boolean;
149070
+ isShowTracking: boolean;
149071
+ isSupportActivated: boolean;
149072
+ isClientTransitaire: boolean;
149073
+ vehiculeId: number;
149074
+ salaryId: number;
149075
+ country?: {
149076
+ id: number;
149077
+ createdAt: Date;
149078
+ code: string;
149079
+ updatedAt: Date;
149080
+ name: string;
149081
+ phoneCode: string;
149082
+ } | undefined;
149083
+ customer?: {
149084
+ id: number;
149085
+ createdAt: Date;
149086
+ updatedAt: Date;
149087
+ fullName: string;
149088
+ countryId: number;
149089
+ address: string;
149090
+ addressTwo: string | null;
149091
+ postalCode: string;
149092
+ city: string;
149093
+ telephoneOne: string;
149094
+ telephoneTwo: string | null;
149095
+ invoiceMail: string;
149096
+ dafResponsibleName: string;
149097
+ email: string | null;
149098
+ intraVatNumber: string | null;
149099
+ submittedToFrenchVat: boolean;
149100
+ siren: string;
149101
+ numeroEori: string | null;
149102
+ comments: string | null;
149103
+ numCodeOne: string | null;
149104
+ numCodeTwo: string | null;
149105
+ isActif: boolean;
149106
+ isParis: boolean;
149107
+ isMedical: boolean;
149108
+ isService: boolean;
149109
+ valeurCustomer: boolean;
149110
+ dirigeant: string | null;
149111
+ dirigeantTel: string | null;
149112
+ dirigeantEmail: string | null;
149113
+ responsableComptable: string | null;
149114
+ responsableComptableTel: string | null;
149115
+ responsableComptableEmail: string | null;
149116
+ responsableDaf: string | null;
149117
+ responsableDafTel: string | null;
149118
+ responsableDafEmail: string | null;
149119
+ emailFacturation: string | null;
149120
+ logo: string | null;
149121
+ header: string | null;
149122
+ footer: string | null;
149123
+ emailOne: string | null;
149124
+ emailTwo: string | null;
149125
+ emailThree: string | null;
149126
+ tva: string | null;
149127
+ isTrackingMail: boolean | null;
149128
+ isBillingCenter: boolean;
149129
+ isShowNameCustomer: boolean;
149130
+ isMailing: boolean;
149131
+ numeroSiret: string | null;
149132
+ country?: {
149133
+ id: number;
149134
+ createdAt: Date;
149135
+ code: string;
149136
+ updatedAt: Date;
149137
+ name: string;
149138
+ phoneCode: string;
149139
+ } | undefined;
149140
+ } | undefined;
149141
+ salary?: {
149142
+ id: number;
149143
+ createdAt: Date;
149144
+ type: string;
149145
+ updatedAt: Date;
149146
+ countryId: number | null;
149147
+ postalCode: string;
149148
+ city: string;
149149
+ email: string;
149150
+ nom: string;
149151
+ prenom: string;
149152
+ telephone: string;
149153
+ adress: string;
149154
+ country?: {
149155
+ id: number;
149156
+ createdAt: Date;
149157
+ code: string;
149158
+ updatedAt: Date;
149159
+ name: string;
149160
+ phoneCode: string;
149161
+ } | undefined;
149162
+ } | undefined;
149163
+ vehicule?: {
149164
+ id: number;
149165
+ createdAt: Date;
149166
+ updatedAt: Date;
149167
+ plaque: string;
149168
+ telephoneSociete: string;
149169
+ typeVehicule: string;
149170
+ kmDepart: number;
149171
+ kmRetour: number;
149172
+ pochetteRecu: boolean;
149173
+ carteCarburant: string;
149174
+ carteBancaire: string;
149175
+ bipTelepage: string;
149176
+ } | undefined;
149177
+ userBillingCenters?: {
149178
+ id: number;
149179
+ userId: number;
149180
+ billingCenterId: number;
149181
+ createdAt?: Date | undefined;
149182
+ updatedAt?: Date | undefined;
149183
+ billingCenter?: {
149184
+ id: number;
149185
+ billingCenterName: string;
149186
+ customerId?: number | null | undefined;
149187
+ } | undefined;
149188
+ }[] | undefined;
149189
+ } | undefined;
149190
+ shipping?: {
149191
+ id: number;
149192
+ createdAt: Date;
149193
+ updatedAt: Date;
149194
+ userId: number | null;
149195
+ billingCenterId: number | null;
149196
+ trackingMail: string | null;
149197
+ customerRef: string | null;
149198
+ pickupInstruction: string | null;
149199
+ deliveryInstruction: string | null;
149200
+ billContact: string | null;
149201
+ pickupTime: string | null;
149202
+ deliveryTime: string | null;
149203
+ ref: number | null;
149204
+ trackingNumber: string | null;
149205
+ classifications: string | null;
149206
+ userName: string | null;
149207
+ transportType: string | null;
149208
+ isDeleted: boolean | null;
149209
+ codeDonneur: string | null;
149210
+ codeReceveur: string | null;
149211
+ hasManifest: boolean;
149212
+ isOps: boolean;
149213
+ comment: string | null;
149214
+ createdFor: number | null;
149215
+ isArchived: boolean;
149216
+ isNeedArchive: boolean;
149217
+ isAnnulee: boolean;
149218
+ raison: string | null;
149219
+ color: string | null;
149220
+ docBordereaux: string | null;
149221
+ docAccompagnement: string | null;
149222
+ category: "course" | "all" | "import" | "export";
149223
+ typeExpedition: "expedition" | "course";
149224
+ driverId: number;
149225
+ typeDeRoue: string | null;
149226
+ isRecupererOps: boolean | null;
149227
+ isRemisOps: boolean | null;
149228
+ isRecupererChauffeur: boolean | null;
149229
+ isRemisChauffeur: boolean | null;
149230
+ lastCronRunAt: Date;
149231
+ devises: string | null;
149232
+ provenanceCommande: string | null;
149233
+ hasEmballage: boolean;
149234
+ pickupDate?: Date | undefined;
149235
+ deliveryDate?: Date | undefined;
149236
+ heureRecupererOps?: Date | undefined;
149237
+ heureRemisOps?: Date | undefined;
149238
+ heureRecupererChauffeur?: Date | undefined;
149239
+ heureRemisChauffeur?: Date | undefined;
149240
+ } | undefined;
149241
+ dateValidateOps?: Date | undefined;
149242
+ }>, "many">;
149243
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
149244
+ data: {
149245
+ id: number;
149246
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149247
+ status: string | null;
149248
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149249
+ isParis: boolean;
149250
+ isMedical: boolean;
149251
+ isService: boolean;
149252
+ userId: number;
149253
+ chauffeur: string;
149254
+ shippingId: number;
149255
+ dateTracking: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149256
+ dateSuivi: string;
149257
+ heurSuivi: string;
149258
+ details: string;
149259
+ agents: string;
149260
+ visible: boolean;
149261
+ isTemplate: boolean;
149262
+ state: boolean;
149263
+ location: string | null;
149264
+ isDriver: boolean;
149265
+ userOpsId: number | null;
149266
+ user?: {
149267
+ id: number;
149268
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149269
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149270
+ countryId: number | null;
149271
+ addressTwo: string;
149272
+ postalCode: string;
149273
+ city: string;
149274
+ telephoneOne: string;
149275
+ telephoneTwo: string;
149276
+ email: string;
149277
+ comments: string;
149278
+ numCodeOne: string;
149279
+ numCodeTwo: string;
149280
+ isActif: boolean;
149281
+ isParis: boolean;
149282
+ isMedical: boolean;
149283
+ isService: boolean;
149284
+ emailOne: string;
149285
+ emailTwo: string;
149286
+ addressOne: string;
149287
+ customerId: number;
149288
+ firstName: string;
149289
+ lastName: string;
149290
+ emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149291
+ password: string;
149292
+ poste: string;
149293
+ roles: string[];
149294
+ isOpsAdmin: boolean;
149295
+ civility: string;
149296
+ isShowCalculatrice: boolean;
149297
+ expedition: boolean;
149298
+ physicCompany: string;
149299
+ menus: string;
149300
+ ongletExpedition: string;
149301
+ chauffeurType: string;
149302
+ typeOfOps: string;
149303
+ prestation: string;
149304
+ tracking: string;
149305
+ expeditionCourse: string;
149306
+ carnetAddress: string;
149307
+ expeditionsCarnet: string;
149308
+ accessArchive: string;
149309
+ isShowImportMenu: boolean;
149310
+ isShowExportMenu: boolean;
149311
+ isShowCourseMenu: boolean;
149312
+ twoRoues: boolean;
149313
+ vt: boolean;
149314
+ lesTwo: boolean;
149315
+ isMiniTracking: boolean;
149316
+ isFullTracking: boolean;
149317
+ isShareCourseAndExpedition: boolean;
149318
+ isShareCarnetAdresse: boolean;
149319
+ isShareCarnetAdresseAndExpedition: boolean;
149320
+ isAccessAuxArchives: boolean;
149321
+ isShowInfo: boolean;
149322
+ photo: string | null;
149323
+ entreprisePhysique: string;
149324
+ isAdminChauffeur: boolean;
149325
+ isShowTracking: boolean;
149326
+ isSupportActivated: boolean;
149327
+ isClientTransitaire: boolean;
149328
+ vehiculeId: number;
149329
+ salaryId: number;
149330
+ country?: {
149331
+ id: number;
149332
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149333
+ code: string;
149334
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149335
+ name: string;
149336
+ phoneCode: string;
149337
+ } | undefined;
149338
+ customer?: {
149339
+ id: number;
149340
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149341
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149342
+ fullName: string;
149343
+ countryId: number;
149344
+ address: string;
149345
+ addressTwo: string | null;
149346
+ postalCode: string;
149347
+ city: string;
149348
+ telephoneOne: string;
149349
+ telephoneTwo: string | null;
149350
+ invoiceMail: string;
149351
+ dafResponsibleName: string;
149352
+ email: string | null;
149353
+ intraVatNumber: string | null;
149354
+ submittedToFrenchVat: boolean;
149355
+ siren: string;
149356
+ numeroEori: string | null;
149357
+ comments: string | null;
149358
+ numCodeOne: string | null;
149359
+ numCodeTwo: string | null;
149360
+ isActif: boolean;
149361
+ isParis: boolean;
149362
+ isMedical: boolean;
149363
+ isService: boolean;
149364
+ valeurCustomer: boolean;
149365
+ dirigeant: string | null;
149366
+ dirigeantTel: string | null;
149367
+ dirigeantEmail: string | null;
149368
+ responsableComptable: string | null;
149369
+ responsableComptableTel: string | null;
149370
+ responsableComptableEmail: string | null;
149371
+ responsableDaf: string | null;
149372
+ responsableDafTel: string | null;
149373
+ responsableDafEmail: string | null;
149374
+ emailFacturation: string | null;
149375
+ logo: string | null;
149376
+ header: string | null;
149377
+ footer: string | null;
149378
+ emailOne: string | null;
149379
+ emailTwo: string | null;
149380
+ emailThree: string | null;
149381
+ tva: string | null;
149382
+ isTrackingMail: boolean | null;
149383
+ isBillingCenter: boolean;
149384
+ isShowNameCustomer: boolean;
149385
+ isMailing: boolean;
149386
+ numeroSiret: string | null;
149387
+ country?: {
149388
+ id: number;
149389
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149390
+ code: string;
149391
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149392
+ name: string;
149393
+ phoneCode: string;
149394
+ } | undefined;
149395
+ } | undefined;
149396
+ salary?: {
149397
+ id: number;
149398
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149399
+ type: string;
149400
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149401
+ countryId: number | null;
149402
+ postalCode: string;
149403
+ city: string;
149404
+ email: string;
149405
+ nom: string;
149406
+ prenom: string;
149407
+ telephone: string;
149408
+ adress: string;
149409
+ country?: {
149410
+ id: number;
149411
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149412
+ code: string;
149413
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149414
+ name: string;
149415
+ phoneCode: string;
149416
+ } | undefined;
149417
+ } | undefined;
149418
+ vehicule?: {
149419
+ id: number;
149420
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149421
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149422
+ plaque: string;
149423
+ telephoneSociete: string;
149424
+ typeVehicule: string;
149425
+ kmDepart: number;
149426
+ kmRetour: number;
149427
+ pochetteRecu: boolean;
149428
+ carteCarburant: string;
149429
+ carteBancaire: string;
149430
+ bipTelepage: string;
149431
+ } | undefined;
149432
+ userBillingCenters?: {
149433
+ id: number;
149434
+ userId: number;
149435
+ billingCenterId: number;
149436
+ createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
149437
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
149438
+ billingCenter?: {
149439
+ id: number;
149440
+ billingCenterName: string;
149441
+ customerId?: number | null | undefined;
149442
+ } | undefined;
149443
+ }[] | undefined;
149444
+ } | undefined;
149445
+ shipping?: {
149446
+ id: number;
149447
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149448
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149449
+ userId: number | null;
149450
+ billingCenterId: number | null;
149451
+ trackingMail: string | null;
149452
+ customerRef: string | null;
149453
+ pickupInstruction: string | null;
149454
+ deliveryInstruction: string | null;
149455
+ billContact: string | null;
149456
+ pickupTime: string | null;
149457
+ deliveryTime: string | null;
149458
+ ref: number | null;
149459
+ trackingNumber: string | null;
149460
+ classifications: string | null;
149461
+ userName: string | null;
149462
+ transportType: string | null;
149463
+ isDeleted: boolean | null;
149464
+ codeDonneur: string | null;
149465
+ codeReceveur: string | null;
149466
+ hasManifest: boolean;
149467
+ isOps: boolean;
149468
+ comment: string | null;
149469
+ createdFor: number | null;
149470
+ isArchived: boolean;
149471
+ isNeedArchive: boolean;
149472
+ isAnnulee: boolean;
149473
+ raison: string | null;
149474
+ color: string | null;
149475
+ docBordereaux: string | null;
149476
+ docAccompagnement: string | null;
149477
+ category: "course" | "all" | "import" | "export";
149478
+ typeExpedition: "expedition" | "course";
149479
+ driverId: number;
149480
+ typeDeRoue: string | null;
149481
+ isRecupererOps: boolean | null;
149482
+ isRemisOps: boolean | null;
149483
+ isRecupererChauffeur: boolean | null;
149484
+ isRemisChauffeur: boolean | null;
149485
+ lastCronRunAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149486
+ devises: string | null;
149487
+ provenanceCommande: string | null;
149488
+ hasEmballage: boolean;
149489
+ pickupDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
149490
+ deliveryDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
149491
+ heureRecupererOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
149492
+ heureRemisOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
149493
+ heureRecupererChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
149494
+ heureRemisChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
149495
+ } | undefined;
149496
+ dateValidateOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
149497
+ }[];
149498
+ meta: {
149499
+ total: number;
149500
+ perPage: number;
149501
+ currentPage: number;
149502
+ lastPage: number;
149503
+ firstPage: number;
149504
+ firstPageUrl: string;
149505
+ lastPageUrl: string;
149506
+ nextPageUrl: string | null;
149507
+ previousPageUrl: string | null;
149508
+ };
149509
+ }, {
149510
+ data: {
149511
+ id: number;
149512
+ createdAt: Date;
149513
+ status: string | null;
149514
+ updatedAt: Date;
149515
+ isParis: boolean;
149516
+ isMedical: boolean;
149517
+ isService: boolean;
149518
+ userId: number;
149519
+ chauffeur: string;
149520
+ shippingId: number;
149521
+ dateTracking: Date;
149522
+ dateSuivi: string;
149523
+ heurSuivi: string;
149524
+ details: string;
149525
+ agents: string;
149526
+ visible: boolean;
149527
+ isTemplate: boolean;
149528
+ state: boolean;
149529
+ location: string | null;
149530
+ isDriver: boolean;
149531
+ userOpsId: number | null;
149532
+ user?: {
149533
+ id: number;
149534
+ createdAt: Date;
149535
+ updatedAt: Date;
149536
+ countryId: number | null;
149537
+ addressTwo: string;
149538
+ postalCode: string;
149539
+ city: string;
149540
+ telephoneOne: string;
149541
+ telephoneTwo: string;
149542
+ email: string;
149543
+ comments: string;
149544
+ numCodeOne: string;
149545
+ numCodeTwo: string;
149546
+ isActif: boolean;
149547
+ isParis: boolean;
149548
+ isMedical: boolean;
149549
+ isService: boolean;
149550
+ emailOne: string;
149551
+ emailTwo: string;
149552
+ addressOne: string;
149553
+ customerId: number;
149554
+ firstName: string;
149555
+ lastName: string;
149556
+ emailVerifiedAt: Date;
149557
+ password: string;
149558
+ poste: string;
149559
+ roles: string[];
149560
+ isOpsAdmin: boolean;
149561
+ civility: string;
149562
+ isShowCalculatrice: boolean;
149563
+ expedition: boolean;
149564
+ physicCompany: string;
149565
+ menus: string;
149566
+ ongletExpedition: string;
149567
+ chauffeurType: string;
149568
+ typeOfOps: string;
149569
+ prestation: string;
149570
+ tracking: string;
149571
+ expeditionCourse: string;
149572
+ carnetAddress: string;
149573
+ expeditionsCarnet: string;
149574
+ accessArchive: string;
149575
+ isShowImportMenu: boolean;
149576
+ isShowExportMenu: boolean;
149577
+ isShowCourseMenu: boolean;
149578
+ twoRoues: boolean;
149579
+ vt: boolean;
149580
+ lesTwo: boolean;
149581
+ isMiniTracking: boolean;
149582
+ isFullTracking: boolean;
149583
+ isShareCourseAndExpedition: boolean;
149584
+ isShareCarnetAdresse: boolean;
149585
+ isShareCarnetAdresseAndExpedition: boolean;
149586
+ isAccessAuxArchives: boolean;
149587
+ isShowInfo: boolean;
149588
+ photo: string | null;
149589
+ entreprisePhysique: string;
149590
+ isAdminChauffeur: boolean;
149591
+ isShowTracking: boolean;
149592
+ isSupportActivated: boolean;
149593
+ isClientTransitaire: boolean;
149594
+ vehiculeId: number;
149595
+ salaryId: number;
149596
+ country?: {
149597
+ id: number;
149598
+ createdAt: Date;
149599
+ code: string;
149600
+ updatedAt: Date;
149601
+ name: string;
149602
+ phoneCode: string;
149603
+ } | undefined;
149604
+ customer?: {
149605
+ id: number;
149606
+ createdAt: Date;
149607
+ updatedAt: Date;
149608
+ fullName: string;
149609
+ countryId: number;
149610
+ address: string;
149611
+ addressTwo: string | null;
149612
+ postalCode: string;
149613
+ city: string;
149614
+ telephoneOne: string;
149615
+ telephoneTwo: string | null;
149616
+ invoiceMail: string;
149617
+ dafResponsibleName: string;
149618
+ email: string | null;
149619
+ intraVatNumber: string | null;
149620
+ submittedToFrenchVat: boolean;
149621
+ siren: string;
149622
+ numeroEori: string | null;
149623
+ comments: string | null;
149624
+ numCodeOne: string | null;
149625
+ numCodeTwo: string | null;
149626
+ isActif: boolean;
149627
+ isParis: boolean;
149628
+ isMedical: boolean;
149629
+ isService: boolean;
149630
+ valeurCustomer: boolean;
149631
+ dirigeant: string | null;
149632
+ dirigeantTel: string | null;
149633
+ dirigeantEmail: string | null;
149634
+ responsableComptable: string | null;
149635
+ responsableComptableTel: string | null;
149636
+ responsableComptableEmail: string | null;
149637
+ responsableDaf: string | null;
149638
+ responsableDafTel: string | null;
149639
+ responsableDafEmail: string | null;
149640
+ emailFacturation: string | null;
149641
+ logo: string | null;
149642
+ header: string | null;
149643
+ footer: string | null;
149644
+ emailOne: string | null;
149645
+ emailTwo: string | null;
149646
+ emailThree: string | null;
149647
+ tva: string | null;
149648
+ isTrackingMail: boolean | null;
149649
+ isBillingCenter: boolean;
149650
+ isShowNameCustomer: boolean;
149651
+ isMailing: boolean;
149652
+ numeroSiret: string | null;
149653
+ country?: {
149654
+ id: number;
149655
+ createdAt: Date;
149656
+ code: string;
149657
+ updatedAt: Date;
149658
+ name: string;
149659
+ phoneCode: string;
149660
+ } | undefined;
149661
+ } | undefined;
149662
+ salary?: {
149663
+ id: number;
149664
+ createdAt: Date;
149665
+ type: string;
149666
+ updatedAt: Date;
149667
+ countryId: number | null;
149668
+ postalCode: string;
149669
+ city: string;
149670
+ email: string;
149671
+ nom: string;
149672
+ prenom: string;
149673
+ telephone: string;
149674
+ adress: string;
149675
+ country?: {
149676
+ id: number;
149677
+ createdAt: Date;
149678
+ code: string;
149679
+ updatedAt: Date;
149680
+ name: string;
149681
+ phoneCode: string;
149682
+ } | undefined;
149683
+ } | undefined;
149684
+ vehicule?: {
149685
+ id: number;
149686
+ createdAt: Date;
149687
+ updatedAt: Date;
149688
+ plaque: string;
149689
+ telephoneSociete: string;
149690
+ typeVehicule: string;
149691
+ kmDepart: number;
149692
+ kmRetour: number;
149693
+ pochetteRecu: boolean;
149694
+ carteCarburant: string;
149695
+ carteBancaire: string;
149696
+ bipTelepage: string;
149697
+ } | undefined;
149698
+ userBillingCenters?: {
149699
+ id: number;
149700
+ userId: number;
149701
+ billingCenterId: number;
149702
+ createdAt?: Date | undefined;
149703
+ updatedAt?: Date | undefined;
149704
+ billingCenter?: {
149705
+ id: number;
149706
+ billingCenterName: string;
149707
+ customerId?: number | null | undefined;
149708
+ } | undefined;
149709
+ }[] | undefined;
149710
+ } | undefined;
149711
+ shipping?: {
149712
+ id: number;
149713
+ createdAt: Date;
149714
+ updatedAt: Date;
149715
+ userId: number | null;
149716
+ billingCenterId: number | null;
149717
+ trackingMail: string | null;
149718
+ customerRef: string | null;
149719
+ pickupInstruction: string | null;
149720
+ deliveryInstruction: string | null;
149721
+ billContact: string | null;
149722
+ pickupTime: string | null;
149723
+ deliveryTime: string | null;
149724
+ ref: number | null;
149725
+ trackingNumber: string | null;
149726
+ classifications: string | null;
149727
+ userName: string | null;
149728
+ transportType: string | null;
149729
+ isDeleted: boolean | null;
149730
+ codeDonneur: string | null;
149731
+ codeReceveur: string | null;
149732
+ hasManifest: boolean;
149733
+ isOps: boolean;
149734
+ comment: string | null;
149735
+ createdFor: number | null;
149736
+ isArchived: boolean;
149737
+ isNeedArchive: boolean;
149738
+ isAnnulee: boolean;
149739
+ raison: string | null;
149740
+ color: string | null;
149741
+ docBordereaux: string | null;
149742
+ docAccompagnement: string | null;
149743
+ category: "course" | "all" | "import" | "export";
149744
+ typeExpedition: "expedition" | "course";
149745
+ driverId: number;
149746
+ typeDeRoue: string | null;
149747
+ isRecupererOps: boolean | null;
149748
+ isRemisOps: boolean | null;
149749
+ isRecupererChauffeur: boolean | null;
149750
+ isRemisChauffeur: boolean | null;
149751
+ lastCronRunAt: Date;
149752
+ devises: string | null;
149753
+ provenanceCommande: string | null;
149754
+ hasEmballage: boolean;
149755
+ pickupDate?: Date | undefined;
149756
+ deliveryDate?: Date | undefined;
149757
+ heureRecupererOps?: Date | undefined;
149758
+ heureRemisOps?: Date | undefined;
149759
+ heureRecupererChauffeur?: Date | undefined;
149760
+ heureRemisChauffeur?: Date | undefined;
149761
+ } | undefined;
149762
+ dateValidateOps?: Date | undefined;
149763
+ }[];
149764
+ meta: {
149765
+ total: number;
149766
+ perPage: number;
149767
+ currentPage: number;
149768
+ lastPage: number;
149769
+ firstPage: number;
149770
+ firstPageUrl: string;
149771
+ lastPageUrl: string;
149772
+ nextPageUrl: string | null;
149773
+ previousPageUrl: string | null;
149774
+ };
149775
+ }>;
149776
+ message: z.ZodOptional<z.ZodString>;
149777
+ status: z.ZodOptional<z.ZodNumber>;
149778
+ error: z.ZodOptional<z.ZodNever>;
149779
+ success: z.ZodLiteral<true>;
149780
+ }, "strip", z.ZodTypeAny, {
149781
+ data: {
149782
+ data: {
149783
+ id: number;
149784
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149785
+ status: string | null;
149786
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149787
+ isParis: boolean;
149788
+ isMedical: boolean;
149789
+ isService: boolean;
149790
+ userId: number;
149791
+ chauffeur: string;
149792
+ shippingId: number;
149793
+ dateTracking: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149794
+ dateSuivi: string;
149795
+ heurSuivi: string;
149796
+ details: string;
149797
+ agents: string;
149798
+ visible: boolean;
149799
+ isTemplate: boolean;
149800
+ state: boolean;
149801
+ location: string | null;
149802
+ isDriver: boolean;
149803
+ userOpsId: number | null;
149804
+ user?: {
149805
+ id: number;
149806
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149807
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149808
+ countryId: number | null;
149809
+ addressTwo: string;
149810
+ postalCode: string;
149811
+ city: string;
149812
+ telephoneOne: string;
149813
+ telephoneTwo: string;
149814
+ email: string;
149815
+ comments: string;
149816
+ numCodeOne: string;
149817
+ numCodeTwo: string;
149818
+ isActif: boolean;
149819
+ isParis: boolean;
149820
+ isMedical: boolean;
149821
+ isService: boolean;
149822
+ emailOne: string;
149823
+ emailTwo: string;
149824
+ addressOne: string;
149825
+ customerId: number;
149826
+ firstName: string;
149827
+ lastName: string;
149828
+ emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149829
+ password: string;
149830
+ poste: string;
149831
+ roles: string[];
149832
+ isOpsAdmin: boolean;
149833
+ civility: string;
149834
+ isShowCalculatrice: boolean;
149835
+ expedition: boolean;
149836
+ physicCompany: string;
149837
+ menus: string;
149838
+ ongletExpedition: string;
149839
+ chauffeurType: string;
149840
+ typeOfOps: string;
149841
+ prestation: string;
149842
+ tracking: string;
149843
+ expeditionCourse: string;
149844
+ carnetAddress: string;
149845
+ expeditionsCarnet: string;
149846
+ accessArchive: string;
149847
+ isShowImportMenu: boolean;
149848
+ isShowExportMenu: boolean;
149849
+ isShowCourseMenu: boolean;
149850
+ twoRoues: boolean;
149851
+ vt: boolean;
149852
+ lesTwo: boolean;
149853
+ isMiniTracking: boolean;
149854
+ isFullTracking: boolean;
149855
+ isShareCourseAndExpedition: boolean;
149856
+ isShareCarnetAdresse: boolean;
149857
+ isShareCarnetAdresseAndExpedition: boolean;
149858
+ isAccessAuxArchives: boolean;
149859
+ isShowInfo: boolean;
149860
+ photo: string | null;
149861
+ entreprisePhysique: string;
149862
+ isAdminChauffeur: boolean;
149863
+ isShowTracking: boolean;
149864
+ isSupportActivated: boolean;
149865
+ isClientTransitaire: boolean;
149866
+ vehiculeId: number;
149867
+ salaryId: number;
149868
+ country?: {
149869
+ id: number;
149870
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149871
+ code: string;
149872
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149873
+ name: string;
149874
+ phoneCode: string;
149875
+ } | undefined;
149876
+ customer?: {
149877
+ id: number;
149878
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149879
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149880
+ fullName: string;
149881
+ countryId: number;
149882
+ address: string;
149883
+ addressTwo: string | null;
149884
+ postalCode: string;
149885
+ city: string;
149886
+ telephoneOne: string;
149887
+ telephoneTwo: string | null;
149888
+ invoiceMail: string;
149889
+ dafResponsibleName: string;
149890
+ email: string | null;
149891
+ intraVatNumber: string | null;
149892
+ submittedToFrenchVat: boolean;
149893
+ siren: string;
149894
+ numeroEori: string | null;
149895
+ comments: string | null;
149896
+ numCodeOne: string | null;
149897
+ numCodeTwo: string | null;
149898
+ isActif: boolean;
149899
+ isParis: boolean;
149900
+ isMedical: boolean;
149901
+ isService: boolean;
149902
+ valeurCustomer: boolean;
149903
+ dirigeant: string | null;
149904
+ dirigeantTel: string | null;
149905
+ dirigeantEmail: string | null;
149906
+ responsableComptable: string | null;
149907
+ responsableComptableTel: string | null;
149908
+ responsableComptableEmail: string | null;
149909
+ responsableDaf: string | null;
149910
+ responsableDafTel: string | null;
149911
+ responsableDafEmail: string | null;
149912
+ emailFacturation: string | null;
149913
+ logo: string | null;
149914
+ header: string | null;
149915
+ footer: string | null;
149916
+ emailOne: string | null;
149917
+ emailTwo: string | null;
149918
+ emailThree: string | null;
149919
+ tva: string | null;
149920
+ isTrackingMail: boolean | null;
149921
+ isBillingCenter: boolean;
149922
+ isShowNameCustomer: boolean;
149923
+ isMailing: boolean;
149924
+ numeroSiret: string | null;
149925
+ country?: {
149926
+ id: number;
149927
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149928
+ code: string;
149929
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149930
+ name: string;
149931
+ phoneCode: string;
149932
+ } | undefined;
149933
+ } | undefined;
149934
+ salary?: {
149935
+ id: number;
149936
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149937
+ type: string;
149938
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149939
+ countryId: number | null;
149940
+ postalCode: string;
149941
+ city: string;
149942
+ email: string;
149943
+ nom: string;
149944
+ prenom: string;
149945
+ telephone: string;
149946
+ adress: string;
149947
+ country?: {
149948
+ id: number;
149949
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149950
+ code: string;
149951
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149952
+ name: string;
149953
+ phoneCode: string;
149954
+ } | undefined;
149955
+ } | undefined;
149956
+ vehicule?: {
149957
+ id: number;
149958
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149959
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149960
+ plaque: string;
149961
+ telephoneSociete: string;
149962
+ typeVehicule: string;
149963
+ kmDepart: number;
149964
+ kmRetour: number;
149965
+ pochetteRecu: boolean;
149966
+ carteCarburant: string;
149967
+ carteBancaire: string;
149968
+ bipTelepage: string;
149969
+ } | undefined;
149970
+ userBillingCenters?: {
149971
+ id: number;
149972
+ userId: number;
149973
+ billingCenterId: number;
149974
+ createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
149975
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
149976
+ billingCenter?: {
149977
+ id: number;
149978
+ billingCenterName: string;
149979
+ customerId?: number | null | undefined;
149980
+ } | undefined;
149981
+ }[] | undefined;
149982
+ } | undefined;
149983
+ shipping?: {
149984
+ id: number;
149985
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149986
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
149987
+ userId: number | null;
149988
+ billingCenterId: number | null;
149989
+ trackingMail: string | null;
149990
+ customerRef: string | null;
149991
+ pickupInstruction: string | null;
149992
+ deliveryInstruction: string | null;
149993
+ billContact: string | null;
149994
+ pickupTime: string | null;
149995
+ deliveryTime: string | null;
149996
+ ref: number | null;
149997
+ trackingNumber: string | null;
149998
+ classifications: string | null;
149999
+ userName: string | null;
150000
+ transportType: string | null;
150001
+ isDeleted: boolean | null;
150002
+ codeDonneur: string | null;
150003
+ codeReceveur: string | null;
150004
+ hasManifest: boolean;
150005
+ isOps: boolean;
150006
+ comment: string | null;
150007
+ createdFor: number | null;
150008
+ isArchived: boolean;
150009
+ isNeedArchive: boolean;
150010
+ isAnnulee: boolean;
150011
+ raison: string | null;
150012
+ color: string | null;
150013
+ docBordereaux: string | null;
150014
+ docAccompagnement: string | null;
150015
+ category: "course" | "all" | "import" | "export";
150016
+ typeExpedition: "expedition" | "course";
150017
+ driverId: number;
150018
+ typeDeRoue: string | null;
150019
+ isRecupererOps: boolean | null;
150020
+ isRemisOps: boolean | null;
150021
+ isRecupererChauffeur: boolean | null;
150022
+ isRemisChauffeur: boolean | null;
150023
+ lastCronRunAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150024
+ devises: string | null;
150025
+ provenanceCommande: string | null;
150026
+ hasEmballage: boolean;
150027
+ pickupDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
150028
+ deliveryDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
150029
+ heureRecupererOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
150030
+ heureRemisOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
150031
+ heureRecupererChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
150032
+ heureRemisChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
150033
+ } | undefined;
150034
+ dateValidateOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
150035
+ }[];
150036
+ meta: {
150037
+ total: number;
150038
+ perPage: number;
150039
+ currentPage: number;
150040
+ lastPage: number;
150041
+ firstPage: number;
150042
+ firstPageUrl: string;
150043
+ lastPageUrl: string;
150044
+ nextPageUrl: string | null;
150045
+ previousPageUrl: string | null;
150046
+ };
150047
+ };
150048
+ success: true;
150049
+ status?: number | undefined;
150050
+ message?: string | undefined;
150051
+ error?: undefined;
150052
+ }, {
150053
+ data: {
150054
+ data: {
150055
+ id: number;
150056
+ createdAt: Date;
150057
+ status: string | null;
150058
+ updatedAt: Date;
150059
+ isParis: boolean;
150060
+ isMedical: boolean;
150061
+ isService: boolean;
150062
+ userId: number;
150063
+ chauffeur: string;
150064
+ shippingId: number;
150065
+ dateTracking: Date;
150066
+ dateSuivi: string;
150067
+ heurSuivi: string;
150068
+ details: string;
150069
+ agents: string;
150070
+ visible: boolean;
150071
+ isTemplate: boolean;
150072
+ state: boolean;
150073
+ location: string | null;
150074
+ isDriver: boolean;
150075
+ userOpsId: number | null;
150076
+ user?: {
150077
+ id: number;
150078
+ createdAt: Date;
150079
+ updatedAt: Date;
150080
+ countryId: number | null;
150081
+ addressTwo: string;
150082
+ postalCode: string;
150083
+ city: string;
150084
+ telephoneOne: string;
150085
+ telephoneTwo: string;
150086
+ email: string;
150087
+ comments: string;
150088
+ numCodeOne: string;
150089
+ numCodeTwo: string;
150090
+ isActif: boolean;
150091
+ isParis: boolean;
150092
+ isMedical: boolean;
150093
+ isService: boolean;
150094
+ emailOne: string;
150095
+ emailTwo: string;
150096
+ addressOne: string;
150097
+ customerId: number;
150098
+ firstName: string;
150099
+ lastName: string;
150100
+ emailVerifiedAt: Date;
150101
+ password: string;
150102
+ poste: string;
150103
+ roles: string[];
150104
+ isOpsAdmin: boolean;
150105
+ civility: string;
150106
+ isShowCalculatrice: boolean;
150107
+ expedition: boolean;
150108
+ physicCompany: string;
150109
+ menus: string;
150110
+ ongletExpedition: string;
150111
+ chauffeurType: string;
150112
+ typeOfOps: string;
150113
+ prestation: string;
150114
+ tracking: string;
150115
+ expeditionCourse: string;
150116
+ carnetAddress: string;
150117
+ expeditionsCarnet: string;
150118
+ accessArchive: string;
150119
+ isShowImportMenu: boolean;
150120
+ isShowExportMenu: boolean;
150121
+ isShowCourseMenu: boolean;
150122
+ twoRoues: boolean;
150123
+ vt: boolean;
150124
+ lesTwo: boolean;
150125
+ isMiniTracking: boolean;
150126
+ isFullTracking: boolean;
150127
+ isShareCourseAndExpedition: boolean;
150128
+ isShareCarnetAdresse: boolean;
150129
+ isShareCarnetAdresseAndExpedition: boolean;
150130
+ isAccessAuxArchives: boolean;
150131
+ isShowInfo: boolean;
150132
+ photo: string | null;
150133
+ entreprisePhysique: string;
150134
+ isAdminChauffeur: boolean;
150135
+ isShowTracking: boolean;
150136
+ isSupportActivated: boolean;
150137
+ isClientTransitaire: boolean;
150138
+ vehiculeId: number;
150139
+ salaryId: number;
150140
+ country?: {
150141
+ id: number;
150142
+ createdAt: Date;
150143
+ code: string;
150144
+ updatedAt: Date;
150145
+ name: string;
150146
+ phoneCode: string;
150147
+ } | undefined;
150148
+ customer?: {
150149
+ id: number;
150150
+ createdAt: Date;
150151
+ updatedAt: Date;
150152
+ fullName: string;
150153
+ countryId: number;
150154
+ address: string;
150155
+ addressTwo: string | null;
150156
+ postalCode: string;
150157
+ city: string;
150158
+ telephoneOne: string;
150159
+ telephoneTwo: string | null;
150160
+ invoiceMail: string;
150161
+ dafResponsibleName: string;
150162
+ email: string | null;
150163
+ intraVatNumber: string | null;
150164
+ submittedToFrenchVat: boolean;
150165
+ siren: string;
150166
+ numeroEori: string | null;
150167
+ comments: string | null;
150168
+ numCodeOne: string | null;
150169
+ numCodeTwo: string | null;
150170
+ isActif: boolean;
150171
+ isParis: boolean;
150172
+ isMedical: boolean;
150173
+ isService: boolean;
150174
+ valeurCustomer: boolean;
150175
+ dirigeant: string | null;
150176
+ dirigeantTel: string | null;
150177
+ dirigeantEmail: string | null;
150178
+ responsableComptable: string | null;
150179
+ responsableComptableTel: string | null;
150180
+ responsableComptableEmail: string | null;
150181
+ responsableDaf: string | null;
150182
+ responsableDafTel: string | null;
150183
+ responsableDafEmail: string | null;
150184
+ emailFacturation: string | null;
150185
+ logo: string | null;
150186
+ header: string | null;
150187
+ footer: string | null;
150188
+ emailOne: string | null;
150189
+ emailTwo: string | null;
150190
+ emailThree: string | null;
150191
+ tva: string | null;
150192
+ isTrackingMail: boolean | null;
150193
+ isBillingCenter: boolean;
150194
+ isShowNameCustomer: boolean;
150195
+ isMailing: boolean;
150196
+ numeroSiret: string | null;
150197
+ country?: {
150198
+ id: number;
150199
+ createdAt: Date;
150200
+ code: string;
150201
+ updatedAt: Date;
150202
+ name: string;
150203
+ phoneCode: string;
150204
+ } | undefined;
150205
+ } | undefined;
150206
+ salary?: {
150207
+ id: number;
150208
+ createdAt: Date;
150209
+ type: string;
150210
+ updatedAt: Date;
150211
+ countryId: number | null;
150212
+ postalCode: string;
150213
+ city: string;
150214
+ email: string;
150215
+ nom: string;
150216
+ prenom: string;
150217
+ telephone: string;
150218
+ adress: string;
150219
+ country?: {
150220
+ id: number;
150221
+ createdAt: Date;
150222
+ code: string;
150223
+ updatedAt: Date;
150224
+ name: string;
150225
+ phoneCode: string;
150226
+ } | undefined;
150227
+ } | undefined;
150228
+ vehicule?: {
150229
+ id: number;
150230
+ createdAt: Date;
150231
+ updatedAt: Date;
150232
+ plaque: string;
150233
+ telephoneSociete: string;
150234
+ typeVehicule: string;
150235
+ kmDepart: number;
150236
+ kmRetour: number;
150237
+ pochetteRecu: boolean;
150238
+ carteCarburant: string;
150239
+ carteBancaire: string;
150240
+ bipTelepage: string;
150241
+ } | undefined;
150242
+ userBillingCenters?: {
150243
+ id: number;
150244
+ userId: number;
150245
+ billingCenterId: number;
150246
+ createdAt?: Date | undefined;
150247
+ updatedAt?: Date | undefined;
150248
+ billingCenter?: {
150249
+ id: number;
150250
+ billingCenterName: string;
150251
+ customerId?: number | null | undefined;
150252
+ } | undefined;
150253
+ }[] | undefined;
150254
+ } | undefined;
150255
+ shipping?: {
150256
+ id: number;
150257
+ createdAt: Date;
150258
+ updatedAt: Date;
150259
+ userId: number | null;
150260
+ billingCenterId: number | null;
150261
+ trackingMail: string | null;
150262
+ customerRef: string | null;
150263
+ pickupInstruction: string | null;
150264
+ deliveryInstruction: string | null;
150265
+ billContact: string | null;
150266
+ pickupTime: string | null;
150267
+ deliveryTime: string | null;
150268
+ ref: number | null;
150269
+ trackingNumber: string | null;
150270
+ classifications: string | null;
150271
+ userName: string | null;
150272
+ transportType: string | null;
150273
+ isDeleted: boolean | null;
150274
+ codeDonneur: string | null;
150275
+ codeReceveur: string | null;
150276
+ hasManifest: boolean;
150277
+ isOps: boolean;
150278
+ comment: string | null;
150279
+ createdFor: number | null;
150280
+ isArchived: boolean;
150281
+ isNeedArchive: boolean;
150282
+ isAnnulee: boolean;
150283
+ raison: string | null;
150284
+ color: string | null;
150285
+ docBordereaux: string | null;
150286
+ docAccompagnement: string | null;
150287
+ category: "course" | "all" | "import" | "export";
150288
+ typeExpedition: "expedition" | "course";
150289
+ driverId: number;
150290
+ typeDeRoue: string | null;
150291
+ isRecupererOps: boolean | null;
150292
+ isRemisOps: boolean | null;
150293
+ isRecupererChauffeur: boolean | null;
150294
+ isRemisChauffeur: boolean | null;
150295
+ lastCronRunAt: Date;
150296
+ devises: string | null;
150297
+ provenanceCommande: string | null;
150298
+ hasEmballage: boolean;
150299
+ pickupDate?: Date | undefined;
150300
+ deliveryDate?: Date | undefined;
150301
+ heureRecupererOps?: Date | undefined;
150302
+ heureRemisOps?: Date | undefined;
150303
+ heureRecupererChauffeur?: Date | undefined;
150304
+ heureRemisChauffeur?: Date | undefined;
150305
+ } | undefined;
150306
+ dateValidateOps?: Date | undefined;
150307
+ }[];
150308
+ meta: {
150309
+ total: number;
150310
+ perPage: number;
150311
+ currentPage: number;
150312
+ lastPage: number;
150313
+ firstPage: number;
150314
+ firstPageUrl: string;
150315
+ lastPageUrl: string;
150316
+ nextPageUrl: string | null;
150317
+ previousPageUrl: string | null;
150318
+ };
150319
+ };
150320
+ success: true;
150321
+ status?: number | undefined;
150322
+ message?: string | undefined;
150323
+ error?: undefined;
150324
+ }>, z.ZodObject<{
150325
+ data: z.ZodNever;
150326
+ message: z.ZodString;
150327
+ status: z.ZodOptional<z.ZodNumber>;
150328
+ error: z.ZodObject<{
150329
+ message: z.ZodString;
150330
+ info: z.ZodObject<{
150331
+ status: z.ZodNumber;
150332
+ code: z.ZodString;
150333
+ messages: z.ZodArray<z.ZodObject<{
150334
+ message: z.ZodString;
150335
+ rule: z.ZodOptional<z.ZodString>;
150336
+ field: z.ZodOptional<z.ZodString>;
150337
+ }, "strip", z.ZodTypeAny, {
150338
+ message: string;
150339
+ rule?: string | undefined;
150340
+ field?: string | undefined;
150341
+ }, {
150342
+ message: string;
150343
+ rule?: string | undefined;
150344
+ field?: string | undefined;
150345
+ }>, "many">;
150346
+ }, "strip", z.ZodTypeAny, {
150347
+ status: number;
150348
+ code: string;
150349
+ messages: {
150350
+ message: string;
150351
+ rule?: string | undefined;
150352
+ field?: string | undefined;
150353
+ }[];
150354
+ }, {
150355
+ status: number;
150356
+ code: string;
150357
+ messages: {
150358
+ message: string;
150359
+ rule?: string | undefined;
150360
+ field?: string | undefined;
150361
+ }[];
150362
+ }>;
150363
+ }, "strip", z.ZodTypeAny, {
150364
+ message: string;
150365
+ info: {
150366
+ status: number;
150367
+ code: string;
150368
+ messages: {
150369
+ message: string;
150370
+ rule?: string | undefined;
150371
+ field?: string | undefined;
150372
+ }[];
150373
+ };
150374
+ }, {
150375
+ message: string;
150376
+ info: {
150377
+ status: number;
150378
+ code: string;
150379
+ messages: {
150380
+ message: string;
150381
+ rule?: string | undefined;
150382
+ field?: string | undefined;
150383
+ }[];
150384
+ };
150385
+ }>;
150386
+ success: z.ZodNever;
150387
+ }, "strip", z.ZodTypeAny, {
150388
+ message: string;
150389
+ data: never;
150390
+ error: {
150391
+ message: string;
150392
+ info: {
150393
+ status: number;
150394
+ code: string;
150395
+ messages: {
150396
+ message: string;
150397
+ rule?: string | undefined;
150398
+ field?: string | undefined;
150399
+ }[];
150400
+ };
150401
+ };
150402
+ success: never;
150403
+ status?: number | undefined;
150404
+ }, {
150405
+ message: string;
150406
+ data: never;
150407
+ error: {
150408
+ message: string;
150409
+ info: {
150410
+ status: number;
150411
+ code: string;
150412
+ messages: {
150413
+ message: string;
150414
+ rule?: string | undefined;
150415
+ field?: string | undefined;
150416
+ }[];
150417
+ };
150418
+ };
150419
+ success: never;
150420
+ status?: number | undefined;
150421
+ }>]>;
150422
+ };
150423
+ };
150424
+ declare const userDriverRoutes: {
150425
+ liste: {
150426
+ method: "GET";
150427
+ url: string;
150428
+ searchParams: z.ZodObject<{
150429
+ page: z.ZodOptional<z.ZodNumber>;
150430
+ limit: z.ZodOptional<z.ZodNumber>;
150431
+ search: z.ZodOptional<z.ZodString>;
150432
+ sortBy: z.ZodOptional<z.ZodString>;
150433
+ direction: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
150434
+ }, "strip", z.ZodTypeAny, {
150435
+ page?: number | undefined;
150436
+ limit?: number | undefined;
150437
+ search?: string | undefined;
150438
+ sortBy?: string | undefined;
150439
+ direction?: "asc" | "desc" | undefined;
150440
+ }, {
150441
+ page?: number | undefined;
150442
+ limit?: number | undefined;
150443
+ search?: string | undefined;
150444
+ sortBy?: string | undefined;
150445
+ direction?: "asc" | "desc" | undefined;
150446
+ }>;
150447
+ response: z.ZodUnion<[z.ZodObject<{
150448
+ data: z.ZodObject<{
150449
+ meta: typeof import("./../models").PaginationmetaSchema;
150450
+ data: z.ZodArray<z.ZodObject<{
150451
+ id: z.ZodNumber;
150452
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
150453
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
150454
+ firstName: z.ZodString;
150455
+ lastName: z.ZodString;
150456
+ email: z.ZodString;
150457
+ emailVerifiedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
150458
+ password: z.ZodString;
150459
+ isActif: z.ZodBoolean;
150460
+ countryId: z.ZodNullable<z.ZodNumber>;
150461
+ postalCode: z.ZodString;
150462
+ city: z.ZodString;
150463
+ poste: z.ZodString;
150464
+ comments: z.ZodString;
150465
+ addressOne: z.ZodString;
150466
+ addressTwo: z.ZodString;
150467
+ telephoneOne: z.ZodString;
150468
+ telephoneTwo: z.ZodString;
150469
+ emailOne: z.ZodString;
150470
+ emailTwo: z.ZodString;
150471
+ roles: z.ZodArray<z.ZodString, "many">;
150472
+ isOpsAdmin: z.ZodBoolean;
150473
+ civility: z.ZodString;
150474
+ numCodeOne: z.ZodString;
150475
+ numCodeTwo: z.ZodString;
150476
+ isShowCalculatrice: z.ZodBoolean;
150477
+ expedition: z.ZodBoolean;
150478
+ physicCompany: z.ZodString;
150479
+ isParis: z.ZodBoolean;
150480
+ isMedical: z.ZodBoolean;
150481
+ isService: z.ZodBoolean;
150482
+ menus: z.ZodString;
150483
+ ongletExpedition: z.ZodString;
150484
+ chauffeurType: z.ZodString;
150485
+ typeOfOps: z.ZodString;
150486
+ prestation: z.ZodString;
150487
+ tracking: z.ZodString;
150488
+ expeditionCourse: z.ZodString;
150489
+ carnetAddress: z.ZodString;
150490
+ expeditionsCarnet: z.ZodString;
150491
+ accessArchive: z.ZodString;
150492
+ isShowImportMenu: z.ZodBoolean;
150493
+ isShowExportMenu: z.ZodBoolean;
150494
+ isShowCourseMenu: z.ZodBoolean;
150495
+ twoRoues: z.ZodBoolean;
150496
+ vt: z.ZodBoolean;
150497
+ lesTwo: z.ZodBoolean;
150498
+ isMiniTracking: z.ZodBoolean;
150499
+ isFullTracking: z.ZodBoolean;
150500
+ isShareCourseAndExpedition: z.ZodBoolean;
150501
+ isShareCarnetAdresse: z.ZodBoolean;
150502
+ isShareCarnetAdresseAndExpedition: z.ZodBoolean;
150503
+ isAccessAuxArchives: z.ZodBoolean;
150504
+ isShowInfo: z.ZodBoolean;
150505
+ photo: z.ZodNullable<z.ZodString>;
150506
+ entreprisePhysique: z.ZodString;
150507
+ isAdminChauffeur: z.ZodBoolean;
150508
+ isShowTracking: z.ZodBoolean;
150509
+ isSupportActivated: z.ZodBoolean;
150510
+ isClientTransitaire: z.ZodBoolean;
150511
+ customerId: z.ZodNumber;
150512
+ vehiculeId: z.ZodNumber;
150513
+ salaryId: z.ZodNumber;
150514
+ customer: z.ZodOptional<z.ZodLazy<z.ZodObject<{
150515
+ id: z.ZodNumber;
150516
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
150517
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
150518
+ fullName: z.ZodString;
150519
+ countryId: z.ZodNumber;
150520
+ address: z.ZodString;
150521
+ addressTwo: z.ZodNullable<z.ZodString>;
150522
+ postalCode: z.ZodString;
150523
+ city: z.ZodString;
150524
+ telephoneOne: z.ZodString;
150525
+ telephoneTwo: z.ZodNullable<z.ZodString>;
150526
+ invoiceMail: z.ZodString;
150527
+ dafResponsibleName: z.ZodString;
150528
+ email: z.ZodNullable<z.ZodString>;
150529
+ intraVatNumber: z.ZodNullable<z.ZodString>;
150530
+ submittedToFrenchVat: z.ZodBoolean;
150531
+ siren: z.ZodString;
150532
+ numeroEori: z.ZodNullable<z.ZodString>;
150533
+ comments: z.ZodNullable<z.ZodString>;
150534
+ numCodeOne: z.ZodNullable<z.ZodString>;
150535
+ numCodeTwo: z.ZodNullable<z.ZodString>;
150536
+ isActif: z.ZodBoolean;
150537
+ isParis: z.ZodBoolean;
150538
+ isMedical: z.ZodBoolean;
150539
+ isService: z.ZodBoolean;
150540
+ valeurCustomer: z.ZodBoolean;
150541
+ dirigeant: z.ZodNullable<z.ZodString>;
150542
+ dirigeantTel: z.ZodNullable<z.ZodString>;
150543
+ dirigeantEmail: z.ZodNullable<z.ZodString>;
150544
+ responsableComptable: z.ZodNullable<z.ZodString>;
150545
+ responsableComptableTel: z.ZodNullable<z.ZodString>;
150546
+ responsableComptableEmail: z.ZodNullable<z.ZodString>;
150547
+ responsableDaf: z.ZodNullable<z.ZodString>;
150548
+ responsableDafTel: z.ZodNullable<z.ZodString>;
150549
+ responsableDafEmail: z.ZodNullable<z.ZodString>;
150550
+ emailFacturation: z.ZodNullable<z.ZodString>;
150551
+ logo: z.ZodNullable<z.ZodString>;
150552
+ header: z.ZodNullable<z.ZodString>;
150553
+ footer: z.ZodNullable<z.ZodString>;
150554
+ emailOne: z.ZodNullable<z.ZodString>;
150555
+ emailTwo: z.ZodNullable<z.ZodString>;
150556
+ emailThree: z.ZodNullable<z.ZodString>;
150557
+ tva: z.ZodNullable<z.ZodString>;
150558
+ isTrackingMail: z.ZodNullable<z.ZodBoolean>;
150559
+ isBillingCenter: z.ZodBoolean;
150560
+ isShowNameCustomer: z.ZodBoolean;
150561
+ isMailing: z.ZodBoolean;
150562
+ numeroSiret: z.ZodNullable<z.ZodString>;
150563
+ country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
150564
+ id: z.ZodNumber;
150565
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
150566
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
150567
+ name: z.ZodString;
150568
+ code: z.ZodString;
150569
+ phoneCode: z.ZodString;
150570
+ }, "strip", z.ZodTypeAny, {
150571
+ id: number;
150572
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150573
+ code: string;
150574
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150575
+ name: string;
150576
+ phoneCode: string;
150577
+ }, {
150578
+ id: number;
150579
+ createdAt: Date;
150580
+ code: string;
150581
+ updatedAt: Date;
150582
+ name: string;
150583
+ phoneCode: string;
150584
+ }>>>;
150585
+ }, "strip", z.ZodTypeAny, {
150586
+ id: number;
150587
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150588
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150589
+ fullName: string;
150590
+ countryId: number;
150591
+ address: string;
150592
+ addressTwo: string | null;
150593
+ postalCode: string;
150594
+ city: string;
150595
+ telephoneOne: string;
150596
+ telephoneTwo: string | null;
150597
+ invoiceMail: string;
150598
+ dafResponsibleName: string;
150599
+ email: string | null;
150600
+ intraVatNumber: string | null;
150601
+ submittedToFrenchVat: boolean;
150602
+ siren: string;
150603
+ numeroEori: string | null;
150604
+ comments: string | null;
150605
+ numCodeOne: string | null;
150606
+ numCodeTwo: string | null;
150607
+ isActif: boolean;
150608
+ isParis: boolean;
150609
+ isMedical: boolean;
150610
+ isService: boolean;
150611
+ valeurCustomer: boolean;
150612
+ dirigeant: string | null;
150613
+ dirigeantTel: string | null;
150614
+ dirigeantEmail: string | null;
150615
+ responsableComptable: string | null;
150616
+ responsableComptableTel: string | null;
150617
+ responsableComptableEmail: string | null;
150618
+ responsableDaf: string | null;
150619
+ responsableDafTel: string | null;
150620
+ responsableDafEmail: string | null;
150621
+ emailFacturation: string | null;
150622
+ logo: string | null;
150623
+ header: string | null;
150624
+ footer: string | null;
150625
+ emailOne: string | null;
150626
+ emailTwo: string | null;
150627
+ emailThree: string | null;
150628
+ tva: string | null;
150629
+ isTrackingMail: boolean | null;
150630
+ isBillingCenter: boolean;
150631
+ isShowNameCustomer: boolean;
150632
+ isMailing: boolean;
150633
+ numeroSiret: string | null;
150634
+ country?: {
150635
+ id: number;
150636
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150637
+ code: string;
150638
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150639
+ name: string;
150640
+ phoneCode: string;
150641
+ } | undefined;
150642
+ }, {
150643
+ id: number;
150644
+ createdAt: Date;
150645
+ updatedAt: Date;
150646
+ fullName: string;
150647
+ countryId: number;
150648
+ address: string;
150649
+ addressTwo: string | null;
150650
+ postalCode: string;
150651
+ city: string;
150652
+ telephoneOne: string;
150653
+ telephoneTwo: string | null;
150654
+ invoiceMail: string;
150655
+ dafResponsibleName: string;
150656
+ email: string | null;
150657
+ intraVatNumber: string | null;
150658
+ submittedToFrenchVat: boolean;
150659
+ siren: string;
150660
+ numeroEori: string | null;
150661
+ comments: string | null;
150662
+ numCodeOne: string | null;
150663
+ numCodeTwo: string | null;
150664
+ isActif: boolean;
150665
+ isParis: boolean;
150666
+ isMedical: boolean;
150667
+ isService: boolean;
150668
+ valeurCustomer: boolean;
150669
+ dirigeant: string | null;
150670
+ dirigeantTel: string | null;
150671
+ dirigeantEmail: string | null;
150672
+ responsableComptable: string | null;
150673
+ responsableComptableTel: string | null;
150674
+ responsableComptableEmail: string | null;
150675
+ responsableDaf: string | null;
150676
+ responsableDafTel: string | null;
150677
+ responsableDafEmail: string | null;
150678
+ emailFacturation: string | null;
150679
+ logo: string | null;
150680
+ header: string | null;
150681
+ footer: string | null;
150682
+ emailOne: string | null;
150683
+ emailTwo: string | null;
150684
+ emailThree: string | null;
150685
+ tva: string | null;
150686
+ isTrackingMail: boolean | null;
150687
+ isBillingCenter: boolean;
150688
+ isShowNameCustomer: boolean;
150689
+ isMailing: boolean;
150690
+ numeroSiret: string | null;
150691
+ country?: {
150692
+ id: number;
150693
+ createdAt: Date;
150694
+ code: string;
150695
+ updatedAt: Date;
150696
+ name: string;
150697
+ phoneCode: string;
150698
+ } | undefined;
150699
+ }>>>;
150700
+ salary: z.ZodOptional<z.ZodLazy<z.ZodObject<{
150701
+ id: z.ZodNumber;
150702
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
150703
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
150704
+ nom: z.ZodString;
150705
+ prenom: z.ZodString;
150706
+ email: z.ZodString;
150707
+ telephone: z.ZodString;
150708
+ type: z.ZodString;
150709
+ adress: z.ZodString;
150710
+ city: z.ZodString;
150711
+ countryId: z.ZodNullable<z.ZodNumber>;
150712
+ postalCode: z.ZodString;
150713
+ country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
150714
+ id: z.ZodNumber;
150715
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
150716
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
150717
+ name: z.ZodString;
150718
+ code: z.ZodString;
150719
+ phoneCode: z.ZodString;
150720
+ }, "strip", z.ZodTypeAny, {
150721
+ id: number;
150722
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150723
+ code: string;
150724
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150725
+ name: string;
150726
+ phoneCode: string;
150727
+ }, {
150728
+ id: number;
150729
+ createdAt: Date;
150730
+ code: string;
150731
+ updatedAt: Date;
150732
+ name: string;
150733
+ phoneCode: string;
150734
+ }>>>;
150735
+ }, "strip", z.ZodTypeAny, {
150736
+ id: number;
150737
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150738
+ type: string;
150739
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150740
+ countryId: number | null;
150741
+ postalCode: string;
150742
+ city: string;
150743
+ email: string;
150744
+ nom: string;
150745
+ prenom: string;
150746
+ telephone: string;
150747
+ adress: string;
150748
+ country?: {
150749
+ id: number;
150750
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150751
+ code: string;
150752
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150753
+ name: string;
150754
+ phoneCode: string;
150755
+ } | undefined;
150756
+ }, {
150757
+ id: number;
150758
+ createdAt: Date;
150759
+ type: string;
150760
+ updatedAt: Date;
150761
+ countryId: number | null;
150762
+ postalCode: string;
150763
+ city: string;
150764
+ email: string;
150765
+ nom: string;
150766
+ prenom: string;
150767
+ telephone: string;
150768
+ adress: string;
150769
+ country?: {
150770
+ id: number;
150771
+ createdAt: Date;
150772
+ code: string;
150773
+ updatedAt: Date;
150774
+ name: string;
150775
+ phoneCode: string;
150776
+ } | undefined;
150777
+ }>>>;
150778
+ vehicule: z.ZodOptional<z.ZodLazy<z.ZodObject<{
150779
+ id: z.ZodNumber;
150780
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
150781
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
150782
+ plaque: z.ZodString;
150783
+ telephoneSociete: z.ZodString;
150784
+ typeVehicule: z.ZodString;
150785
+ kmDepart: z.ZodNumber;
150786
+ kmRetour: z.ZodNumber;
150787
+ pochetteRecu: z.ZodBoolean;
150788
+ carteCarburant: z.ZodString;
150789
+ carteBancaire: z.ZodString;
150790
+ bipTelepage: z.ZodString;
150791
+ }, "strip", z.ZodTypeAny, {
150792
+ id: number;
150793
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150794
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150795
+ plaque: string;
150796
+ telephoneSociete: string;
150797
+ typeVehicule: string;
150798
+ kmDepart: number;
150799
+ kmRetour: number;
150800
+ pochetteRecu: boolean;
150801
+ carteCarburant: string;
150802
+ carteBancaire: string;
150803
+ bipTelepage: string;
150804
+ }, {
150805
+ id: number;
150806
+ createdAt: Date;
150807
+ updatedAt: Date;
150808
+ plaque: string;
150809
+ telephoneSociete: string;
150810
+ typeVehicule: string;
150811
+ kmDepart: number;
150812
+ kmRetour: number;
150813
+ pochetteRecu: boolean;
150814
+ carteCarburant: string;
150815
+ carteBancaire: string;
150816
+ bipTelepage: string;
150817
+ }>>>;
150818
+ country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
150819
+ id: z.ZodNumber;
150820
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
150821
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
150822
+ name: z.ZodString;
150823
+ code: z.ZodString;
150824
+ phoneCode: z.ZodString;
150825
+ }, "strip", z.ZodTypeAny, {
150826
+ id: number;
150827
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150828
+ code: string;
150829
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150830
+ name: string;
150831
+ phoneCode: string;
150832
+ }, {
150833
+ id: number;
150834
+ createdAt: Date;
150835
+ code: string;
150836
+ updatedAt: Date;
150837
+ name: string;
150838
+ phoneCode: string;
150839
+ }>>>;
150840
+ userBillingCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
150841
+ id: z.ZodNumber;
150842
+ createdAt: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
150843
+ updatedAt: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
150844
+ userId: z.ZodNumber;
150845
+ billingCenterId: z.ZodNumber;
150846
+ billingCenter: z.ZodOptional<z.ZodObject<{
150847
+ id: z.ZodNumber;
150848
+ billingCenterName: z.ZodString;
150849
+ customerId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
150850
+ }, "strip", z.ZodTypeAny, {
150851
+ id: number;
150852
+ billingCenterName: string;
150853
+ customerId?: number | null | undefined;
150854
+ }, {
150855
+ id: number;
150856
+ billingCenterName: string;
150857
+ customerId?: number | null | undefined;
150858
+ }>>;
150859
+ }, "strip", z.ZodTypeAny, {
150860
+ id: number;
150861
+ userId: number;
150862
+ billingCenterId: number;
150863
+ createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
150864
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
150865
+ billingCenter?: {
150866
+ id: number;
150867
+ billingCenterName: string;
150868
+ customerId?: number | null | undefined;
150869
+ } | undefined;
150870
+ }, {
150871
+ id: number;
150872
+ userId: number;
150873
+ billingCenterId: number;
150874
+ createdAt?: Date | undefined;
150875
+ updatedAt?: Date | undefined;
150876
+ billingCenter?: {
150877
+ id: number;
150878
+ billingCenterName: string;
150879
+ customerId?: number | null | undefined;
150880
+ } | undefined;
150881
+ }>, "many">>;
150882
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
150883
+ id: number;
150884
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150885
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150886
+ countryId: number | null;
150887
+ addressTwo: string;
150888
+ postalCode: string;
150889
+ city: string;
150890
+ telephoneOne: string;
150891
+ telephoneTwo: string;
150892
+ email: string;
150893
+ comments: string;
150894
+ numCodeOne: string;
150895
+ numCodeTwo: string;
150896
+ isActif: boolean;
150897
+ isParis: boolean;
150898
+ isMedical: boolean;
150899
+ isService: boolean;
150900
+ emailOne: string;
150901
+ emailTwo: string;
150902
+ addressOne: string;
150903
+ customerId: number;
150904
+ firstName: string;
150905
+ lastName: string;
150906
+ emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150907
+ password: string;
150908
+ poste: string;
150909
+ roles: string[];
150910
+ isOpsAdmin: boolean;
150911
+ civility: string;
150912
+ isShowCalculatrice: boolean;
150913
+ expedition: boolean;
150914
+ physicCompany: string;
150915
+ menus: string;
150916
+ ongletExpedition: string;
150917
+ chauffeurType: string;
150918
+ typeOfOps: string;
150919
+ prestation: string;
150920
+ tracking: string;
150921
+ expeditionCourse: string;
150922
+ carnetAddress: string;
150923
+ expeditionsCarnet: string;
150924
+ accessArchive: string;
150925
+ isShowImportMenu: boolean;
150926
+ isShowExportMenu: boolean;
150927
+ isShowCourseMenu: boolean;
150928
+ twoRoues: boolean;
150929
+ vt: boolean;
150930
+ lesTwo: boolean;
150931
+ isMiniTracking: boolean;
150932
+ isFullTracking: boolean;
150933
+ isShareCourseAndExpedition: boolean;
150934
+ isShareCarnetAdresse: boolean;
150935
+ isShareCarnetAdresseAndExpedition: boolean;
150936
+ isAccessAuxArchives: boolean;
150937
+ isShowInfo: boolean;
150938
+ photo: string | null;
150939
+ entreprisePhysique: string;
150940
+ isAdminChauffeur: boolean;
150941
+ isShowTracking: boolean;
150942
+ isSupportActivated: boolean;
150943
+ isClientTransitaire: boolean;
150944
+ vehiculeId: number;
150945
+ salaryId: number;
150946
+ country?: {
150947
+ id: number;
150948
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150949
+ code: string;
150950
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150951
+ name: string;
150952
+ phoneCode: string;
150953
+ } | undefined;
150954
+ customer?: {
150955
+ id: number;
150956
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150957
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
150958
+ fullName: string;
150959
+ countryId: number;
150960
+ address: string;
150961
+ addressTwo: string | null;
150962
+ postalCode: string;
150963
+ city: string;
150964
+ telephoneOne: string;
150965
+ telephoneTwo: string | null;
150966
+ invoiceMail: string;
150967
+ dafResponsibleName: string;
150968
+ email: string | null;
150969
+ intraVatNumber: string | null;
150970
+ submittedToFrenchVat: boolean;
150971
+ siren: string;
150972
+ numeroEori: string | null;
150973
+ comments: string | null;
150974
+ numCodeOne: string | null;
150975
+ numCodeTwo: string | null;
150976
+ isActif: boolean;
150977
+ isParis: boolean;
150978
+ isMedical: boolean;
150979
+ isService: boolean;
150980
+ valeurCustomer: boolean;
150981
+ dirigeant: string | null;
150982
+ dirigeantTel: string | null;
150983
+ dirigeantEmail: string | null;
150984
+ responsableComptable: string | null;
150985
+ responsableComptableTel: string | null;
150986
+ responsableComptableEmail: string | null;
150987
+ responsableDaf: string | null;
150988
+ responsableDafTel: string | null;
150989
+ responsableDafEmail: string | null;
150990
+ emailFacturation: string | null;
150991
+ logo: string | null;
150992
+ header: string | null;
150993
+ footer: string | null;
150994
+ emailOne: string | null;
150995
+ emailTwo: string | null;
150996
+ emailThree: string | null;
150997
+ tva: string | null;
150998
+ isTrackingMail: boolean | null;
150999
+ isBillingCenter: boolean;
151000
+ isShowNameCustomer: boolean;
151001
+ isMailing: boolean;
151002
+ numeroSiret: string | null;
151003
+ country?: {
151004
+ id: number;
151005
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151006
+ code: string;
151007
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151008
+ name: string;
151009
+ phoneCode: string;
151010
+ } | undefined;
151011
+ } | undefined;
151012
+ salary?: {
151013
+ id: number;
151014
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151015
+ type: string;
151016
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151017
+ countryId: number | null;
151018
+ postalCode: string;
151019
+ city: string;
151020
+ email: string;
151021
+ nom: string;
151022
+ prenom: string;
151023
+ telephone: string;
151024
+ adress: string;
151025
+ country?: {
151026
+ id: number;
151027
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151028
+ code: string;
151029
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151030
+ name: string;
151031
+ phoneCode: string;
151032
+ } | undefined;
151033
+ } | undefined;
151034
+ vehicule?: {
151035
+ id: number;
151036
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151037
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151038
+ plaque: string;
151039
+ telephoneSociete: string;
151040
+ typeVehicule: string;
151041
+ kmDepart: number;
151042
+ kmRetour: number;
151043
+ pochetteRecu: boolean;
151044
+ carteCarburant: string;
151045
+ carteBancaire: string;
151046
+ bipTelepage: string;
151047
+ } | undefined;
151048
+ userBillingCenters?: {
151049
+ id: number;
151050
+ userId: number;
151051
+ billingCenterId: number;
151052
+ createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
151053
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
151054
+ billingCenter?: {
151055
+ id: number;
151056
+ billingCenterName: string;
151057
+ customerId?: number | null | undefined;
151058
+ } | undefined;
151059
+ }[] | undefined;
151060
+ }, {
151061
+ id: number;
151062
+ createdAt: Date;
151063
+ updatedAt: Date;
151064
+ countryId: number | null;
151065
+ addressTwo: string;
151066
+ postalCode: string;
151067
+ city: string;
151068
+ telephoneOne: string;
151069
+ telephoneTwo: string;
151070
+ email: string;
151071
+ comments: string;
151072
+ numCodeOne: string;
151073
+ numCodeTwo: string;
151074
+ isActif: boolean;
151075
+ isParis: boolean;
151076
+ isMedical: boolean;
151077
+ isService: boolean;
151078
+ emailOne: string;
151079
+ emailTwo: string;
151080
+ addressOne: string;
151081
+ customerId: number;
151082
+ firstName: string;
151083
+ lastName: string;
151084
+ emailVerifiedAt: Date;
151085
+ password: string;
151086
+ poste: string;
151087
+ roles: string[];
151088
+ isOpsAdmin: boolean;
151089
+ civility: string;
151090
+ isShowCalculatrice: boolean;
151091
+ expedition: boolean;
151092
+ physicCompany: string;
151093
+ menus: string;
151094
+ ongletExpedition: string;
151095
+ chauffeurType: string;
151096
+ typeOfOps: string;
151097
+ prestation: string;
151098
+ tracking: string;
151099
+ expeditionCourse: string;
151100
+ carnetAddress: string;
151101
+ expeditionsCarnet: string;
151102
+ accessArchive: string;
151103
+ isShowImportMenu: boolean;
151104
+ isShowExportMenu: boolean;
151105
+ isShowCourseMenu: boolean;
151106
+ twoRoues: boolean;
151107
+ vt: boolean;
151108
+ lesTwo: boolean;
151109
+ isMiniTracking: boolean;
151110
+ isFullTracking: boolean;
151111
+ isShareCourseAndExpedition: boolean;
151112
+ isShareCarnetAdresse: boolean;
151113
+ isShareCarnetAdresseAndExpedition: boolean;
151114
+ isAccessAuxArchives: boolean;
151115
+ isShowInfo: boolean;
151116
+ photo: string | null;
151117
+ entreprisePhysique: string;
151118
+ isAdminChauffeur: boolean;
151119
+ isShowTracking: boolean;
151120
+ isSupportActivated: boolean;
151121
+ isClientTransitaire: boolean;
151122
+ vehiculeId: number;
151123
+ salaryId: number;
151124
+ country?: {
151125
+ id: number;
151126
+ createdAt: Date;
151127
+ code: string;
151128
+ updatedAt: Date;
151129
+ name: string;
151130
+ phoneCode: string;
151131
+ } | undefined;
151132
+ customer?: {
151133
+ id: number;
151134
+ createdAt: Date;
151135
+ updatedAt: Date;
151136
+ fullName: string;
151137
+ countryId: number;
151138
+ address: string;
151139
+ addressTwo: string | null;
151140
+ postalCode: string;
151141
+ city: string;
151142
+ telephoneOne: string;
151143
+ telephoneTwo: string | null;
151144
+ invoiceMail: string;
151145
+ dafResponsibleName: string;
151146
+ email: string | null;
151147
+ intraVatNumber: string | null;
151148
+ submittedToFrenchVat: boolean;
151149
+ siren: string;
151150
+ numeroEori: string | null;
151151
+ comments: string | null;
151152
+ numCodeOne: string | null;
151153
+ numCodeTwo: string | null;
151154
+ isActif: boolean;
151155
+ isParis: boolean;
151156
+ isMedical: boolean;
151157
+ isService: boolean;
151158
+ valeurCustomer: boolean;
151159
+ dirigeant: string | null;
151160
+ dirigeantTel: string | null;
151161
+ dirigeantEmail: string | null;
151162
+ responsableComptable: string | null;
151163
+ responsableComptableTel: string | null;
151164
+ responsableComptableEmail: string | null;
151165
+ responsableDaf: string | null;
151166
+ responsableDafTel: string | null;
151167
+ responsableDafEmail: string | null;
151168
+ emailFacturation: string | null;
151169
+ logo: string | null;
151170
+ header: string | null;
151171
+ footer: string | null;
151172
+ emailOne: string | null;
151173
+ emailTwo: string | null;
151174
+ emailThree: string | null;
151175
+ tva: string | null;
151176
+ isTrackingMail: boolean | null;
151177
+ isBillingCenter: boolean;
151178
+ isShowNameCustomer: boolean;
151179
+ isMailing: boolean;
151180
+ numeroSiret: string | null;
151181
+ country?: {
151182
+ id: number;
151183
+ createdAt: Date;
151184
+ code: string;
151185
+ updatedAt: Date;
151186
+ name: string;
151187
+ phoneCode: string;
151188
+ } | undefined;
151189
+ } | undefined;
151190
+ salary?: {
151191
+ id: number;
151192
+ createdAt: Date;
151193
+ type: string;
151194
+ updatedAt: Date;
151195
+ countryId: number | null;
151196
+ postalCode: string;
151197
+ city: string;
151198
+ email: string;
151199
+ nom: string;
151200
+ prenom: string;
151201
+ telephone: string;
151202
+ adress: string;
151203
+ country?: {
151204
+ id: number;
151205
+ createdAt: Date;
151206
+ code: string;
151207
+ updatedAt: Date;
151208
+ name: string;
151209
+ phoneCode: string;
151210
+ } | undefined;
151211
+ } | undefined;
151212
+ vehicule?: {
151213
+ id: number;
151214
+ createdAt: Date;
151215
+ updatedAt: Date;
151216
+ plaque: string;
151217
+ telephoneSociete: string;
151218
+ typeVehicule: string;
151219
+ kmDepart: number;
151220
+ kmRetour: number;
151221
+ pochetteRecu: boolean;
151222
+ carteCarburant: string;
151223
+ carteBancaire: string;
151224
+ bipTelepage: string;
151225
+ } | undefined;
151226
+ userBillingCenters?: {
151227
+ id: number;
151228
+ userId: number;
151229
+ billingCenterId: number;
151230
+ createdAt?: Date | undefined;
151231
+ updatedAt?: Date | undefined;
151232
+ billingCenter?: {
151233
+ id: number;
151234
+ billingCenterName: string;
151235
+ customerId?: number | null | undefined;
151236
+ } | undefined;
151237
+ }[] | undefined;
151238
+ }>, "many">;
151239
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
151240
+ data: {
151241
+ id: number;
151242
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151243
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151244
+ countryId: number | null;
151245
+ addressTwo: string;
151246
+ postalCode: string;
151247
+ city: string;
151248
+ telephoneOne: string;
151249
+ telephoneTwo: string;
151250
+ email: string;
151251
+ comments: string;
151252
+ numCodeOne: string;
151253
+ numCodeTwo: string;
151254
+ isActif: boolean;
151255
+ isParis: boolean;
151256
+ isMedical: boolean;
151257
+ isService: boolean;
151258
+ emailOne: string;
151259
+ emailTwo: string;
151260
+ addressOne: string;
151261
+ customerId: number;
151262
+ firstName: string;
151263
+ lastName: string;
151264
+ emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151265
+ password: string;
151266
+ poste: string;
151267
+ roles: string[];
151268
+ isOpsAdmin: boolean;
151269
+ civility: string;
151270
+ isShowCalculatrice: boolean;
151271
+ expedition: boolean;
151272
+ physicCompany: string;
151273
+ menus: string;
151274
+ ongletExpedition: string;
151275
+ chauffeurType: string;
151276
+ typeOfOps: string;
151277
+ prestation: string;
151278
+ tracking: string;
151279
+ expeditionCourse: string;
151280
+ carnetAddress: string;
151281
+ expeditionsCarnet: string;
151282
+ accessArchive: string;
151283
+ isShowImportMenu: boolean;
151284
+ isShowExportMenu: boolean;
151285
+ isShowCourseMenu: boolean;
151286
+ twoRoues: boolean;
151287
+ vt: boolean;
151288
+ lesTwo: boolean;
151289
+ isMiniTracking: boolean;
151290
+ isFullTracking: boolean;
151291
+ isShareCourseAndExpedition: boolean;
151292
+ isShareCarnetAdresse: boolean;
151293
+ isShareCarnetAdresseAndExpedition: boolean;
151294
+ isAccessAuxArchives: boolean;
151295
+ isShowInfo: boolean;
151296
+ photo: string | null;
151297
+ entreprisePhysique: string;
151298
+ isAdminChauffeur: boolean;
151299
+ isShowTracking: boolean;
151300
+ isSupportActivated: boolean;
151301
+ isClientTransitaire: boolean;
151302
+ vehiculeId: number;
151303
+ salaryId: number;
151304
+ country?: {
151305
+ id: number;
151306
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151307
+ code: string;
151308
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151309
+ name: string;
151310
+ phoneCode: string;
151311
+ } | undefined;
151312
+ customer?: {
151313
+ id: number;
151314
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151315
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151316
+ fullName: string;
151317
+ countryId: number;
151318
+ address: string;
151319
+ addressTwo: string | null;
151320
+ postalCode: string;
151321
+ city: string;
151322
+ telephoneOne: string;
151323
+ telephoneTwo: string | null;
151324
+ invoiceMail: string;
151325
+ dafResponsibleName: string;
151326
+ email: string | null;
151327
+ intraVatNumber: string | null;
151328
+ submittedToFrenchVat: boolean;
151329
+ siren: string;
151330
+ numeroEori: string | null;
151331
+ comments: string | null;
151332
+ numCodeOne: string | null;
151333
+ numCodeTwo: string | null;
151334
+ isActif: boolean;
151335
+ isParis: boolean;
151336
+ isMedical: boolean;
151337
+ isService: boolean;
151338
+ valeurCustomer: boolean;
151339
+ dirigeant: string | null;
151340
+ dirigeantTel: string | null;
151341
+ dirigeantEmail: string | null;
151342
+ responsableComptable: string | null;
151343
+ responsableComptableTel: string | null;
151344
+ responsableComptableEmail: string | null;
151345
+ responsableDaf: string | null;
151346
+ responsableDafTel: string | null;
151347
+ responsableDafEmail: string | null;
151348
+ emailFacturation: string | null;
151349
+ logo: string | null;
151350
+ header: string | null;
151351
+ footer: string | null;
151352
+ emailOne: string | null;
151353
+ emailTwo: string | null;
151354
+ emailThree: string | null;
151355
+ tva: string | null;
151356
+ isTrackingMail: boolean | null;
151357
+ isBillingCenter: boolean;
151358
+ isShowNameCustomer: boolean;
151359
+ isMailing: boolean;
151360
+ numeroSiret: string | null;
151361
+ country?: {
151362
+ id: number;
151363
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151364
+ code: string;
151365
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151366
+ name: string;
151367
+ phoneCode: string;
151368
+ } | undefined;
151369
+ } | undefined;
151370
+ salary?: {
151371
+ id: number;
151372
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151373
+ type: string;
151374
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151375
+ countryId: number | null;
151376
+ postalCode: string;
151377
+ city: string;
151378
+ email: string;
151379
+ nom: string;
151380
+ prenom: string;
151381
+ telephone: string;
151382
+ adress: string;
151383
+ country?: {
151384
+ id: number;
151385
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151386
+ code: string;
151387
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151388
+ name: string;
151389
+ phoneCode: string;
151390
+ } | undefined;
151391
+ } | undefined;
151392
+ vehicule?: {
151393
+ id: number;
151394
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151395
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151396
+ plaque: string;
151397
+ telephoneSociete: string;
151398
+ typeVehicule: string;
151399
+ kmDepart: number;
151400
+ kmRetour: number;
151401
+ pochetteRecu: boolean;
151402
+ carteCarburant: string;
151403
+ carteBancaire: string;
151404
+ bipTelepage: string;
151405
+ } | undefined;
151406
+ userBillingCenters?: {
151407
+ id: number;
151408
+ userId: number;
151409
+ billingCenterId: number;
151410
+ createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
151411
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
151412
+ billingCenter?: {
151413
+ id: number;
151414
+ billingCenterName: string;
151415
+ customerId?: number | null | undefined;
151416
+ } | undefined;
151417
+ }[] | undefined;
151418
+ }[];
151419
+ meta: {
151420
+ total: number;
151421
+ perPage: number;
151422
+ currentPage: number;
151423
+ lastPage: number;
151424
+ firstPage: number;
151425
+ firstPageUrl: string;
151426
+ lastPageUrl: string;
151427
+ nextPageUrl: string | null;
151428
+ previousPageUrl: string | null;
151429
+ };
151430
+ }, {
151431
+ data: {
151432
+ id: number;
151433
+ createdAt: Date;
151434
+ updatedAt: Date;
151435
+ countryId: number | null;
151436
+ addressTwo: string;
151437
+ postalCode: string;
151438
+ city: string;
151439
+ telephoneOne: string;
151440
+ telephoneTwo: string;
151441
+ email: string;
151442
+ comments: string;
151443
+ numCodeOne: string;
151444
+ numCodeTwo: string;
151445
+ isActif: boolean;
151446
+ isParis: boolean;
151447
+ isMedical: boolean;
151448
+ isService: boolean;
151449
+ emailOne: string;
151450
+ emailTwo: string;
151451
+ addressOne: string;
151452
+ customerId: number;
151453
+ firstName: string;
151454
+ lastName: string;
151455
+ emailVerifiedAt: Date;
151456
+ password: string;
151457
+ poste: string;
151458
+ roles: string[];
151459
+ isOpsAdmin: boolean;
151460
+ civility: string;
151461
+ isShowCalculatrice: boolean;
151462
+ expedition: boolean;
151463
+ physicCompany: string;
151464
+ menus: string;
151465
+ ongletExpedition: string;
151466
+ chauffeurType: string;
151467
+ typeOfOps: string;
151468
+ prestation: string;
151469
+ tracking: string;
151470
+ expeditionCourse: string;
151471
+ carnetAddress: string;
151472
+ expeditionsCarnet: string;
151473
+ accessArchive: string;
151474
+ isShowImportMenu: boolean;
151475
+ isShowExportMenu: boolean;
151476
+ isShowCourseMenu: boolean;
151477
+ twoRoues: boolean;
151478
+ vt: boolean;
151479
+ lesTwo: boolean;
151480
+ isMiniTracking: boolean;
151481
+ isFullTracking: boolean;
151482
+ isShareCourseAndExpedition: boolean;
151483
+ isShareCarnetAdresse: boolean;
151484
+ isShareCarnetAdresseAndExpedition: boolean;
151485
+ isAccessAuxArchives: boolean;
151486
+ isShowInfo: boolean;
151487
+ photo: string | null;
151488
+ entreprisePhysique: string;
151489
+ isAdminChauffeur: boolean;
151490
+ isShowTracking: boolean;
151491
+ isSupportActivated: boolean;
151492
+ isClientTransitaire: boolean;
151493
+ vehiculeId: number;
151494
+ salaryId: number;
151495
+ country?: {
151496
+ id: number;
151497
+ createdAt: Date;
151498
+ code: string;
151499
+ updatedAt: Date;
151500
+ name: string;
151501
+ phoneCode: string;
151502
+ } | undefined;
151503
+ customer?: {
151504
+ id: number;
151505
+ createdAt: Date;
151506
+ updatedAt: Date;
151507
+ fullName: string;
151508
+ countryId: number;
151509
+ address: string;
151510
+ addressTwo: string | null;
151511
+ postalCode: string;
151512
+ city: string;
151513
+ telephoneOne: string;
151514
+ telephoneTwo: string | null;
151515
+ invoiceMail: string;
151516
+ dafResponsibleName: string;
151517
+ email: string | null;
151518
+ intraVatNumber: string | null;
151519
+ submittedToFrenchVat: boolean;
151520
+ siren: string;
151521
+ numeroEori: string | null;
151522
+ comments: string | null;
151523
+ numCodeOne: string | null;
151524
+ numCodeTwo: string | null;
151525
+ isActif: boolean;
151526
+ isParis: boolean;
151527
+ isMedical: boolean;
151528
+ isService: boolean;
151529
+ valeurCustomer: boolean;
151530
+ dirigeant: string | null;
151531
+ dirigeantTel: string | null;
151532
+ dirigeantEmail: string | null;
151533
+ responsableComptable: string | null;
151534
+ responsableComptableTel: string | null;
151535
+ responsableComptableEmail: string | null;
151536
+ responsableDaf: string | null;
151537
+ responsableDafTel: string | null;
151538
+ responsableDafEmail: string | null;
151539
+ emailFacturation: string | null;
151540
+ logo: string | null;
151541
+ header: string | null;
151542
+ footer: string | null;
151543
+ emailOne: string | null;
151544
+ emailTwo: string | null;
151545
+ emailThree: string | null;
151546
+ tva: string | null;
151547
+ isTrackingMail: boolean | null;
151548
+ isBillingCenter: boolean;
151549
+ isShowNameCustomer: boolean;
151550
+ isMailing: boolean;
151551
+ numeroSiret: string | null;
151552
+ country?: {
151553
+ id: number;
151554
+ createdAt: Date;
151555
+ code: string;
151556
+ updatedAt: Date;
151557
+ name: string;
151558
+ phoneCode: string;
151559
+ } | undefined;
151560
+ } | undefined;
151561
+ salary?: {
151562
+ id: number;
151563
+ createdAt: Date;
151564
+ type: string;
151565
+ updatedAt: Date;
151566
+ countryId: number | null;
151567
+ postalCode: string;
151568
+ city: string;
151569
+ email: string;
151570
+ nom: string;
151571
+ prenom: string;
151572
+ telephone: string;
151573
+ adress: string;
151574
+ country?: {
151575
+ id: number;
151576
+ createdAt: Date;
151577
+ code: string;
151578
+ updatedAt: Date;
151579
+ name: string;
151580
+ phoneCode: string;
151581
+ } | undefined;
151582
+ } | undefined;
151583
+ vehicule?: {
151584
+ id: number;
151585
+ createdAt: Date;
151586
+ updatedAt: Date;
151587
+ plaque: string;
151588
+ telephoneSociete: string;
151589
+ typeVehicule: string;
151590
+ kmDepart: number;
151591
+ kmRetour: number;
151592
+ pochetteRecu: boolean;
151593
+ carteCarburant: string;
151594
+ carteBancaire: string;
151595
+ bipTelepage: string;
151596
+ } | undefined;
151597
+ userBillingCenters?: {
151598
+ id: number;
151599
+ userId: number;
151600
+ billingCenterId: number;
151601
+ createdAt?: Date | undefined;
151602
+ updatedAt?: Date | undefined;
151603
+ billingCenter?: {
151604
+ id: number;
151605
+ billingCenterName: string;
151606
+ customerId?: number | null | undefined;
151607
+ } | undefined;
151608
+ }[] | undefined;
151609
+ }[];
151610
+ meta: {
151611
+ total: number;
151612
+ perPage: number;
151613
+ currentPage: number;
151614
+ lastPage: number;
151615
+ firstPage: number;
151616
+ firstPageUrl: string;
151617
+ lastPageUrl: string;
151618
+ nextPageUrl: string | null;
151619
+ previousPageUrl: string | null;
151620
+ };
151621
+ }>;
151622
+ message: z.ZodOptional<z.ZodString>;
151623
+ status: z.ZodOptional<z.ZodNumber>;
151624
+ error: z.ZodOptional<z.ZodNever>;
151625
+ success: z.ZodLiteral<true>;
151626
+ }, "strip", z.ZodTypeAny, {
151627
+ data: {
151628
+ data: {
151629
+ id: number;
151630
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151631
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151632
+ countryId: number | null;
151633
+ addressTwo: string;
151634
+ postalCode: string;
151635
+ city: string;
151636
+ telephoneOne: string;
151637
+ telephoneTwo: string;
151638
+ email: string;
151639
+ comments: string;
151640
+ numCodeOne: string;
151641
+ numCodeTwo: string;
151642
+ isActif: boolean;
151643
+ isParis: boolean;
151644
+ isMedical: boolean;
151645
+ isService: boolean;
151646
+ emailOne: string;
151647
+ emailTwo: string;
151648
+ addressOne: string;
151649
+ customerId: number;
151650
+ firstName: string;
151651
+ lastName: string;
151652
+ emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151653
+ password: string;
151654
+ poste: string;
151655
+ roles: string[];
151656
+ isOpsAdmin: boolean;
151657
+ civility: string;
151658
+ isShowCalculatrice: boolean;
151659
+ expedition: boolean;
151660
+ physicCompany: string;
151661
+ menus: string;
151662
+ ongletExpedition: string;
151663
+ chauffeurType: string;
151664
+ typeOfOps: string;
151665
+ prestation: string;
151666
+ tracking: string;
151667
+ expeditionCourse: string;
151668
+ carnetAddress: string;
151669
+ expeditionsCarnet: string;
151670
+ accessArchive: string;
151671
+ isShowImportMenu: boolean;
151672
+ isShowExportMenu: boolean;
151673
+ isShowCourseMenu: boolean;
151674
+ twoRoues: boolean;
151675
+ vt: boolean;
151676
+ lesTwo: boolean;
151677
+ isMiniTracking: boolean;
151678
+ isFullTracking: boolean;
151679
+ isShareCourseAndExpedition: boolean;
151680
+ isShareCarnetAdresse: boolean;
151681
+ isShareCarnetAdresseAndExpedition: boolean;
151682
+ isAccessAuxArchives: boolean;
151683
+ isShowInfo: boolean;
151684
+ photo: string | null;
151685
+ entreprisePhysique: string;
151686
+ isAdminChauffeur: boolean;
151687
+ isShowTracking: boolean;
151688
+ isSupportActivated: boolean;
151689
+ isClientTransitaire: boolean;
151690
+ vehiculeId: number;
151691
+ salaryId: number;
151692
+ country?: {
151693
+ id: number;
151694
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151695
+ code: string;
151696
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151697
+ name: string;
151698
+ phoneCode: string;
151699
+ } | undefined;
151700
+ customer?: {
151701
+ id: number;
151702
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151703
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151704
+ fullName: string;
151705
+ countryId: number;
151706
+ address: string;
151707
+ addressTwo: string | null;
151708
+ postalCode: string;
151709
+ city: string;
151710
+ telephoneOne: string;
151711
+ telephoneTwo: string | null;
151712
+ invoiceMail: string;
151713
+ dafResponsibleName: string;
151714
+ email: string | null;
151715
+ intraVatNumber: string | null;
151716
+ submittedToFrenchVat: boolean;
151717
+ siren: string;
151718
+ numeroEori: string | null;
151719
+ comments: string | null;
151720
+ numCodeOne: string | null;
151721
+ numCodeTwo: string | null;
151722
+ isActif: boolean;
151723
+ isParis: boolean;
151724
+ isMedical: boolean;
151725
+ isService: boolean;
151726
+ valeurCustomer: boolean;
151727
+ dirigeant: string | null;
151728
+ dirigeantTel: string | null;
151729
+ dirigeantEmail: string | null;
151730
+ responsableComptable: string | null;
151731
+ responsableComptableTel: string | null;
151732
+ responsableComptableEmail: string | null;
151733
+ responsableDaf: string | null;
151734
+ responsableDafTel: string | null;
151735
+ responsableDafEmail: string | null;
151736
+ emailFacturation: string | null;
151737
+ logo: string | null;
151738
+ header: string | null;
151739
+ footer: string | null;
151740
+ emailOne: string | null;
151741
+ emailTwo: string | null;
151742
+ emailThree: string | null;
151743
+ tva: string | null;
151744
+ isTrackingMail: boolean | null;
151745
+ isBillingCenter: boolean;
151746
+ isShowNameCustomer: boolean;
151747
+ isMailing: boolean;
151748
+ numeroSiret: string | null;
151749
+ country?: {
151750
+ id: number;
151751
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151752
+ code: string;
151753
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151754
+ name: string;
151755
+ phoneCode: string;
151756
+ } | undefined;
151757
+ } | undefined;
151758
+ salary?: {
151759
+ id: number;
151760
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151761
+ type: string;
151762
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151763
+ countryId: number | null;
151764
+ postalCode: string;
151765
+ city: string;
151766
+ email: string;
151767
+ nom: string;
151768
+ prenom: string;
151769
+ telephone: string;
151770
+ adress: string;
151771
+ country?: {
151772
+ id: number;
151773
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151774
+ code: string;
151775
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151776
+ name: string;
151777
+ phoneCode: string;
151778
+ } | undefined;
151779
+ } | undefined;
151780
+ vehicule?: {
151781
+ id: number;
151782
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151783
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
151784
+ plaque: string;
151785
+ telephoneSociete: string;
151786
+ typeVehicule: string;
151787
+ kmDepart: number;
151788
+ kmRetour: number;
151789
+ pochetteRecu: boolean;
151790
+ carteCarburant: string;
151791
+ carteBancaire: string;
151792
+ bipTelepage: string;
151793
+ } | undefined;
151794
+ userBillingCenters?: {
151795
+ id: number;
151796
+ userId: number;
151797
+ billingCenterId: number;
151798
+ createdAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
151799
+ updatedAt?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
151800
+ billingCenter?: {
151801
+ id: number;
151802
+ billingCenterName: string;
151803
+ customerId?: number | null | undefined;
151804
+ } | undefined;
151805
+ }[] | undefined;
151806
+ }[];
151807
+ meta: {
151808
+ total: number;
151809
+ perPage: number;
151810
+ currentPage: number;
151811
+ lastPage: number;
151812
+ firstPage: number;
151813
+ firstPageUrl: string;
151814
+ lastPageUrl: string;
151815
+ nextPageUrl: string | null;
151816
+ previousPageUrl: string | null;
151817
+ };
151818
+ };
151819
+ success: true;
151820
+ status?: number | undefined;
151821
+ message?: string | undefined;
151822
+ error?: undefined;
151823
+ }, {
151824
+ data: {
151825
+ data: {
151826
+ id: number;
151827
+ createdAt: Date;
151828
+ updatedAt: Date;
151829
+ countryId: number | null;
151830
+ addressTwo: string;
151831
+ postalCode: string;
151832
+ city: string;
151833
+ telephoneOne: string;
151834
+ telephoneTwo: string;
151835
+ email: string;
151836
+ comments: string;
151837
+ numCodeOne: string;
151838
+ numCodeTwo: string;
151839
+ isActif: boolean;
151840
+ isParis: boolean;
151841
+ isMedical: boolean;
151842
+ isService: boolean;
151843
+ emailOne: string;
151844
+ emailTwo: string;
151845
+ addressOne: string;
151846
+ customerId: number;
151847
+ firstName: string;
151848
+ lastName: string;
151849
+ emailVerifiedAt: Date;
151850
+ password: string;
151851
+ poste: string;
151852
+ roles: string[];
151853
+ isOpsAdmin: boolean;
151854
+ civility: string;
151855
+ isShowCalculatrice: boolean;
151856
+ expedition: boolean;
151857
+ physicCompany: string;
151858
+ menus: string;
151859
+ ongletExpedition: string;
151860
+ chauffeurType: string;
151861
+ typeOfOps: string;
151862
+ prestation: string;
151863
+ tracking: string;
151864
+ expeditionCourse: string;
151865
+ carnetAddress: string;
151866
+ expeditionsCarnet: string;
151867
+ accessArchive: string;
151868
+ isShowImportMenu: boolean;
151869
+ isShowExportMenu: boolean;
151870
+ isShowCourseMenu: boolean;
151871
+ twoRoues: boolean;
151872
+ vt: boolean;
151873
+ lesTwo: boolean;
151874
+ isMiniTracking: boolean;
151875
+ isFullTracking: boolean;
151876
+ isShareCourseAndExpedition: boolean;
151877
+ isShareCarnetAdresse: boolean;
151878
+ isShareCarnetAdresseAndExpedition: boolean;
151879
+ isAccessAuxArchives: boolean;
151880
+ isShowInfo: boolean;
151881
+ photo: string | null;
151882
+ entreprisePhysique: string;
151883
+ isAdminChauffeur: boolean;
151884
+ isShowTracking: boolean;
151885
+ isSupportActivated: boolean;
151886
+ isClientTransitaire: boolean;
151887
+ vehiculeId: number;
151888
+ salaryId: number;
151889
+ country?: {
151890
+ id: number;
151891
+ createdAt: Date;
151892
+ code: string;
151893
+ updatedAt: Date;
151894
+ name: string;
151895
+ phoneCode: string;
151896
+ } | undefined;
151897
+ customer?: {
151898
+ id: number;
151899
+ createdAt: Date;
151900
+ updatedAt: Date;
151901
+ fullName: string;
151902
+ countryId: number;
151903
+ address: string;
151904
+ addressTwo: string | null;
151905
+ postalCode: string;
151906
+ city: string;
151907
+ telephoneOne: string;
151908
+ telephoneTwo: string | null;
151909
+ invoiceMail: string;
151910
+ dafResponsibleName: string;
151911
+ email: string | null;
151912
+ intraVatNumber: string | null;
151913
+ submittedToFrenchVat: boolean;
151914
+ siren: string;
151915
+ numeroEori: string | null;
151916
+ comments: string | null;
151917
+ numCodeOne: string | null;
151918
+ numCodeTwo: string | null;
151919
+ isActif: boolean;
151920
+ isParis: boolean;
151921
+ isMedical: boolean;
151922
+ isService: boolean;
151923
+ valeurCustomer: boolean;
151924
+ dirigeant: string | null;
151925
+ dirigeantTel: string | null;
151926
+ dirigeantEmail: string | null;
151927
+ responsableComptable: string | null;
151928
+ responsableComptableTel: string | null;
151929
+ responsableComptableEmail: string | null;
151930
+ responsableDaf: string | null;
151931
+ responsableDafTel: string | null;
151932
+ responsableDafEmail: string | null;
151933
+ emailFacturation: string | null;
151934
+ logo: string | null;
151935
+ header: string | null;
151936
+ footer: string | null;
151937
+ emailOne: string | null;
151938
+ emailTwo: string | null;
151939
+ emailThree: string | null;
151940
+ tva: string | null;
151941
+ isTrackingMail: boolean | null;
151942
+ isBillingCenter: boolean;
151943
+ isShowNameCustomer: boolean;
151944
+ isMailing: boolean;
151945
+ numeroSiret: string | null;
151946
+ country?: {
151947
+ id: number;
151948
+ createdAt: Date;
151949
+ code: string;
151950
+ updatedAt: Date;
151951
+ name: string;
151952
+ phoneCode: string;
151953
+ } | undefined;
151954
+ } | undefined;
151955
+ salary?: {
151956
+ id: number;
151957
+ createdAt: Date;
151958
+ type: string;
151959
+ updatedAt: Date;
151960
+ countryId: number | null;
151961
+ postalCode: string;
151962
+ city: string;
151963
+ email: string;
151964
+ nom: string;
151965
+ prenom: string;
151966
+ telephone: string;
151967
+ adress: string;
151968
+ country?: {
151969
+ id: number;
151970
+ createdAt: Date;
151971
+ code: string;
151972
+ updatedAt: Date;
151973
+ name: string;
151974
+ phoneCode: string;
151975
+ } | undefined;
151976
+ } | undefined;
151977
+ vehicule?: {
151978
+ id: number;
151979
+ createdAt: Date;
151980
+ updatedAt: Date;
151981
+ plaque: string;
151982
+ telephoneSociete: string;
151983
+ typeVehicule: string;
151984
+ kmDepart: number;
151985
+ kmRetour: number;
151986
+ pochetteRecu: boolean;
151987
+ carteCarburant: string;
151988
+ carteBancaire: string;
151989
+ bipTelepage: string;
151990
+ } | undefined;
151991
+ userBillingCenters?: {
151992
+ id: number;
151993
+ userId: number;
151994
+ billingCenterId: number;
151995
+ createdAt?: Date | undefined;
151996
+ updatedAt?: Date | undefined;
151997
+ billingCenter?: {
151998
+ id: number;
151999
+ billingCenterName: string;
152000
+ customerId?: number | null | undefined;
152001
+ } | undefined;
152002
+ }[] | undefined;
152003
+ }[];
152004
+ meta: {
152005
+ total: number;
152006
+ perPage: number;
152007
+ currentPage: number;
152008
+ lastPage: number;
152009
+ firstPage: number;
152010
+ firstPageUrl: string;
152011
+ lastPageUrl: string;
152012
+ nextPageUrl: string | null;
152013
+ previousPageUrl: string | null;
152014
+ };
152015
+ };
152016
+ success: true;
152017
+ status?: number | undefined;
152018
+ message?: string | undefined;
152019
+ error?: undefined;
152020
+ }>, z.ZodObject<{
152021
+ data: z.ZodNever;
152022
+ message: z.ZodString;
152023
+ status: z.ZodOptional<z.ZodNumber>;
152024
+ error: z.ZodObject<{
152025
+ message: z.ZodString;
152026
+ info: z.ZodObject<{
152027
+ status: z.ZodNumber;
152028
+ code: z.ZodString;
152029
+ messages: z.ZodArray<z.ZodObject<{
152030
+ message: z.ZodString;
152031
+ rule: z.ZodOptional<z.ZodString>;
152032
+ field: z.ZodOptional<z.ZodString>;
152033
+ }, "strip", z.ZodTypeAny, {
152034
+ message: string;
152035
+ rule?: string | undefined;
152036
+ field?: string | undefined;
152037
+ }, {
152038
+ message: string;
152039
+ rule?: string | undefined;
152040
+ field?: string | undefined;
152041
+ }>, "many">;
152042
+ }, "strip", z.ZodTypeAny, {
152043
+ status: number;
152044
+ code: string;
152045
+ messages: {
152046
+ message: string;
152047
+ rule?: string | undefined;
152048
+ field?: string | undefined;
152049
+ }[];
152050
+ }, {
152051
+ status: number;
152052
+ code: string;
152053
+ messages: {
152054
+ message: string;
152055
+ rule?: string | undefined;
152056
+ field?: string | undefined;
152057
+ }[];
152058
+ }>;
152059
+ }, "strip", z.ZodTypeAny, {
152060
+ message: string;
152061
+ info: {
152062
+ status: number;
152063
+ code: string;
152064
+ messages: {
152065
+ message: string;
152066
+ rule?: string | undefined;
152067
+ field?: string | undefined;
152068
+ }[];
152069
+ };
152070
+ }, {
152071
+ message: string;
152072
+ info: {
152073
+ status: number;
152074
+ code: string;
152075
+ messages: {
152076
+ message: string;
152077
+ rule?: string | undefined;
152078
+ field?: string | undefined;
152079
+ }[];
152080
+ };
152081
+ }>;
152082
+ success: z.ZodNever;
152083
+ }, "strip", z.ZodTypeAny, {
152084
+ message: string;
152085
+ data: never;
152086
+ error: {
152087
+ message: string;
152088
+ info: {
152089
+ status: number;
152090
+ code: string;
152091
+ messages: {
152092
+ message: string;
152093
+ rule?: string | undefined;
152094
+ field?: string | undefined;
152095
+ }[];
152096
+ };
152097
+ };
152098
+ success: never;
152099
+ status?: number | undefined;
152100
+ }, {
152101
+ message: string;
152102
+ data: never;
152103
+ error: {
152104
+ message: string;
152105
+ info: {
152106
+ status: number;
152107
+ code: string;
152108
+ messages: {
152109
+ message: string;
152110
+ rule?: string | undefined;
152111
+ field?: string | undefined;
152112
+ }[];
152113
+ };
152114
+ };
152115
+ success: never;
152116
+ status?: number | undefined;
152117
+ }>]>;
152118
+ };
147740
152119
  };
147741
152120
  declare const countryRoutes: {
147742
152121
  liste: {
@@ -173343,6 +177722,7 @@ export declare const opsRoutes: {
173343
177722
  manifest: typeof manifestRoutes;
173344
177723
  shippingManifest: typeof shippingManifestRoutes;
173345
177724
  shippingTracking: typeof shippingTrackingRoutes;
177725
+ userDriver: typeof userDriverRoutes;
173346
177726
  country: typeof countryRoutes;
173347
177727
  contact: typeof contactRoutes;
173348
177728
  supportTicket: typeof supportTicketRoutes;