exnet-routing 1.2.44 → 1.2.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/routes/ops.d.ts +3902 -0
- package/dist/routes/ops.js +11 -0
- package/package.json +1 -1
package/dist/routes/ops.d.ts
CHANGED
|
@@ -125697,6 +125697,3908 @@ declare const factureRoutes: {
|
|
|
125697
125697
|
status?: number | undefined;
|
|
125698
125698
|
}>]>;
|
|
125699
125699
|
};
|
|
125700
|
+
bordereaux: {
|
|
125701
|
+
method: "GET";
|
|
125702
|
+
url: string;
|
|
125703
|
+
searchParams: z.ZodObject<z.objectUtil.extendShape<{
|
|
125704
|
+
page: z.ZodOptional<z.ZodNumber>;
|
|
125705
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
125706
|
+
search: z.ZodOptional<z.ZodString>;
|
|
125707
|
+
sortBy: z.ZodOptional<z.ZodString>;
|
|
125708
|
+
direction: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
125709
|
+
}, {
|
|
125710
|
+
contact: z.ZodOptional<z.ZodString>;
|
|
125711
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
125712
|
+
pickupDate: z.ZodOptional<z.ZodString>;
|
|
125713
|
+
deliveryDate: z.ZodOptional<z.ZodString>;
|
|
125714
|
+
billingCenter: z.ZodOptional<z.ZodString>;
|
|
125715
|
+
isforALL: z.ZodOptional<z.ZodBoolean>;
|
|
125716
|
+
tracking: z.ZodOptional<z.ZodString>;
|
|
125717
|
+
}>, "strip", z.ZodTypeAny, {
|
|
125718
|
+
billingCenter?: string | undefined;
|
|
125719
|
+
tracking?: string | undefined;
|
|
125720
|
+
pickupDate?: string | undefined;
|
|
125721
|
+
deliveryDate?: string | undefined;
|
|
125722
|
+
ref?: string | undefined;
|
|
125723
|
+
page?: number | undefined;
|
|
125724
|
+
limit?: number | undefined;
|
|
125725
|
+
search?: string | undefined;
|
|
125726
|
+
sortBy?: string | undefined;
|
|
125727
|
+
direction?: "asc" | "desc" | undefined;
|
|
125728
|
+
contact?: string | undefined;
|
|
125729
|
+
isforALL?: boolean | undefined;
|
|
125730
|
+
}, {
|
|
125731
|
+
billingCenter?: string | undefined;
|
|
125732
|
+
tracking?: string | undefined;
|
|
125733
|
+
pickupDate?: string | undefined;
|
|
125734
|
+
deliveryDate?: string | undefined;
|
|
125735
|
+
ref?: string | undefined;
|
|
125736
|
+
page?: number | undefined;
|
|
125737
|
+
limit?: number | undefined;
|
|
125738
|
+
search?: string | undefined;
|
|
125739
|
+
sortBy?: string | undefined;
|
|
125740
|
+
direction?: "asc" | "desc" | undefined;
|
|
125741
|
+
contact?: string | undefined;
|
|
125742
|
+
isforALL?: boolean | undefined;
|
|
125743
|
+
}>;
|
|
125744
|
+
params: z.ZodObject<{
|
|
125745
|
+
userInterface: z.ZodEnum<["paris", "medical", "service"]>;
|
|
125746
|
+
}, "strip", z.ZodTypeAny, {
|
|
125747
|
+
userInterface: "paris" | "medical" | "service";
|
|
125748
|
+
}, {
|
|
125749
|
+
userInterface: "paris" | "medical" | "service";
|
|
125750
|
+
}>;
|
|
125751
|
+
response: z.ZodUnion<[z.ZodObject<{
|
|
125752
|
+
data: z.ZodObject<{
|
|
125753
|
+
meta: typeof import("./../models").PaginationmetaSchema;
|
|
125754
|
+
data: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
125755
|
+
id: z.ZodNumber;
|
|
125756
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
125757
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
125758
|
+
customerRef: z.ZodNullable<z.ZodString>;
|
|
125759
|
+
pickupDate: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
|
|
125760
|
+
deliveryDate: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
|
|
125761
|
+
pickupInstruction: z.ZodNullable<z.ZodString>;
|
|
125762
|
+
deliveryInstruction: z.ZodNullable<z.ZodString>;
|
|
125763
|
+
billContact: z.ZodNullable<z.ZodString>;
|
|
125764
|
+
trackingMail: z.ZodNullable<z.ZodString>;
|
|
125765
|
+
pickupTime: z.ZodNullable<z.ZodString>;
|
|
125766
|
+
deliveryTime: z.ZodNullable<z.ZodString>;
|
|
125767
|
+
ref: z.ZodNullable<z.ZodNumber>;
|
|
125768
|
+
trackingNumber: z.ZodNullable<z.ZodString>;
|
|
125769
|
+
classifications: z.ZodNullable<z.ZodString>;
|
|
125770
|
+
userName: z.ZodNullable<z.ZodString>;
|
|
125771
|
+
transportType: z.ZodNullable<z.ZodString>;
|
|
125772
|
+
isDeleted: z.ZodNullable<z.ZodBoolean>;
|
|
125773
|
+
codeDonneur: z.ZodNullable<z.ZodString>;
|
|
125774
|
+
codeReceveur: z.ZodNullable<z.ZodString>;
|
|
125775
|
+
hasManifest: z.ZodBoolean;
|
|
125776
|
+
isOps: z.ZodBoolean;
|
|
125777
|
+
comment: z.ZodNullable<z.ZodString>;
|
|
125778
|
+
createdFor: z.ZodNullable<z.ZodNumber>;
|
|
125779
|
+
isArchived: z.ZodBoolean;
|
|
125780
|
+
isNeedArchive: z.ZodBoolean;
|
|
125781
|
+
isAnnulee: z.ZodBoolean;
|
|
125782
|
+
raison: z.ZodNullable<z.ZodString>;
|
|
125783
|
+
color: z.ZodNullable<z.ZodString>;
|
|
125784
|
+
docBordereaux: z.ZodNullable<z.ZodString>;
|
|
125785
|
+
docAccompagnement: z.ZodNullable<z.ZodString>;
|
|
125786
|
+
category: z.ZodNativeEnum<{
|
|
125787
|
+
readonly ALL: "all";
|
|
125788
|
+
readonly IMPORT: "import";
|
|
125789
|
+
readonly EXPORT: "export";
|
|
125790
|
+
readonly COURSE: "course";
|
|
125791
|
+
}>;
|
|
125792
|
+
typeExpedition: z.ZodNativeEnum<{
|
|
125793
|
+
readonly COURSE: "course";
|
|
125794
|
+
readonly EXPEDITION: "expedition";
|
|
125795
|
+
}>;
|
|
125796
|
+
driverId: z.ZodNumber;
|
|
125797
|
+
typeDeRoue: z.ZodNullable<z.ZodString>;
|
|
125798
|
+
isRecupererOps: z.ZodNullable<z.ZodBoolean>;
|
|
125799
|
+
isRemisOps: z.ZodNullable<z.ZodBoolean>;
|
|
125800
|
+
isRecupererChauffeur: z.ZodNullable<z.ZodBoolean>;
|
|
125801
|
+
isRemisChauffeur: z.ZodNullable<z.ZodBoolean>;
|
|
125802
|
+
heureRecupererOps: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
|
|
125803
|
+
heureRemisOps: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
|
|
125804
|
+
heureRecupererChauffeur: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
|
|
125805
|
+
heureRemisChauffeur: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
|
|
125806
|
+
lastCronRunAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
125807
|
+
devises: z.ZodNullable<z.ZodString>;
|
|
125808
|
+
provenanceCommande: z.ZodNullable<z.ZodString>;
|
|
125809
|
+
hasEmballage: z.ZodBoolean;
|
|
125810
|
+
billingCenterId: z.ZodNullable<z.ZodNumber>;
|
|
125811
|
+
userId: z.ZodNullable<z.ZodNumber>;
|
|
125812
|
+
billingCenter: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
125813
|
+
id: z.ZodNumber;
|
|
125814
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
125815
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
125816
|
+
billingCenterName: z.ZodString;
|
|
125817
|
+
numeroEori: z.ZodNullable<z.ZodString>;
|
|
125818
|
+
numeroSiren: z.ZodNullable<z.ZodString>;
|
|
125819
|
+
countryId: z.ZodNumber;
|
|
125820
|
+
address: z.ZodString;
|
|
125821
|
+
addressTwo: z.ZodNullable<z.ZodString>;
|
|
125822
|
+
postalCode: z.ZodString;
|
|
125823
|
+
city: z.ZodString;
|
|
125824
|
+
telephoneOne: z.ZodString;
|
|
125825
|
+
telephoneTwo: z.ZodNullable<z.ZodString>;
|
|
125826
|
+
invoiceMailOne: z.ZodString;
|
|
125827
|
+
invoiceMailTwo: z.ZodNullable<z.ZodString>;
|
|
125828
|
+
dafResponsibleName: z.ZodNullable<z.ZodString>;
|
|
125829
|
+
telephone: z.ZodNullable<z.ZodString>;
|
|
125830
|
+
email: z.ZodNullable<z.ZodString>;
|
|
125831
|
+
intraVatNumber: z.ZodNullable<z.ZodString>;
|
|
125832
|
+
isSubmittedToFrenchVat: z.ZodBoolean;
|
|
125833
|
+
comments: z.ZodNullable<z.ZodString>;
|
|
125834
|
+
numCodeOne: z.ZodNullable<z.ZodString>;
|
|
125835
|
+
numCodeTwo: z.ZodNullable<z.ZodString>;
|
|
125836
|
+
isActiveMailInstruction: z.ZodBoolean;
|
|
125837
|
+
isActif: z.ZodBoolean;
|
|
125838
|
+
isActiveVariation: z.ZodBoolean;
|
|
125839
|
+
isMailing: z.ZodBoolean;
|
|
125840
|
+
isParis: z.ZodBoolean;
|
|
125841
|
+
isMedical: z.ZodBoolean;
|
|
125842
|
+
isService: z.ZodBoolean;
|
|
125843
|
+
isShowSecondBordereaux: z.ZodBoolean;
|
|
125844
|
+
isShowCustomerName: z.ZodBoolean;
|
|
125845
|
+
isShowCommercialValue: z.ZodBoolean;
|
|
125846
|
+
dirigeant: z.ZodNullable<z.ZodString>;
|
|
125847
|
+
dirigeantTel: z.ZodNullable<z.ZodString>;
|
|
125848
|
+
dirigeantEmail: z.ZodNullable<z.ZodString>;
|
|
125849
|
+
responsableComptable: z.ZodNullable<z.ZodString>;
|
|
125850
|
+
responsableComptableTel: z.ZodNullable<z.ZodString>;
|
|
125851
|
+
responsableComptableEmail: z.ZodNullable<z.ZodString>;
|
|
125852
|
+
responsableDaf: z.ZodNullable<z.ZodString>;
|
|
125853
|
+
responsableDafTel: z.ZodNullable<z.ZodString>;
|
|
125854
|
+
responsableDafEmail: z.ZodNullable<z.ZodString>;
|
|
125855
|
+
emailFacturation: z.ZodNullable<z.ZodString>;
|
|
125856
|
+
logo: z.ZodNullable<z.ZodString>;
|
|
125857
|
+
header: z.ZodNullable<z.ZodString>;
|
|
125858
|
+
footer: z.ZodNullable<z.ZodString>;
|
|
125859
|
+
emailOne: z.ZodNullable<z.ZodString>;
|
|
125860
|
+
emailTwo: z.ZodNullable<z.ZodString>;
|
|
125861
|
+
emailThree: z.ZodNullable<z.ZodString>;
|
|
125862
|
+
tva: z.ZodNullable<z.ZodString>;
|
|
125863
|
+
customerId: z.ZodNullable<z.ZodNumber>;
|
|
125864
|
+
}, "strip", z.ZodTypeAny, {
|
|
125865
|
+
id: number;
|
|
125866
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
125867
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
125868
|
+
countryId: number;
|
|
125869
|
+
address: string;
|
|
125870
|
+
addressTwo: string | null;
|
|
125871
|
+
postalCode: string;
|
|
125872
|
+
city: string;
|
|
125873
|
+
telephoneOne: string;
|
|
125874
|
+
telephoneTwo: string | null;
|
|
125875
|
+
dafResponsibleName: string | null;
|
|
125876
|
+
email: string | null;
|
|
125877
|
+
intraVatNumber: string | null;
|
|
125878
|
+
numeroEori: string | null;
|
|
125879
|
+
comments: string | null;
|
|
125880
|
+
numCodeOne: string | null;
|
|
125881
|
+
numCodeTwo: string | null;
|
|
125882
|
+
isActif: boolean;
|
|
125883
|
+
isParis: boolean;
|
|
125884
|
+
isMedical: boolean;
|
|
125885
|
+
isService: boolean;
|
|
125886
|
+
dirigeant: string | null;
|
|
125887
|
+
dirigeantTel: string | null;
|
|
125888
|
+
dirigeantEmail: string | null;
|
|
125889
|
+
responsableComptable: string | null;
|
|
125890
|
+
responsableComptableTel: string | null;
|
|
125891
|
+
responsableComptableEmail: string | null;
|
|
125892
|
+
responsableDaf: string | null;
|
|
125893
|
+
responsableDafTel: string | null;
|
|
125894
|
+
responsableDafEmail: string | null;
|
|
125895
|
+
emailFacturation: string | null;
|
|
125896
|
+
logo: string | null;
|
|
125897
|
+
header: string | null;
|
|
125898
|
+
footer: string | null;
|
|
125899
|
+
emailOne: string | null;
|
|
125900
|
+
emailTwo: string | null;
|
|
125901
|
+
emailThree: string | null;
|
|
125902
|
+
tva: string | null;
|
|
125903
|
+
isMailing: boolean;
|
|
125904
|
+
telephone: string | null;
|
|
125905
|
+
billingCenterName: string;
|
|
125906
|
+
customerId: number | null;
|
|
125907
|
+
numeroSiren: string | null;
|
|
125908
|
+
invoiceMailOne: string;
|
|
125909
|
+
invoiceMailTwo: string | null;
|
|
125910
|
+
isSubmittedToFrenchVat: boolean;
|
|
125911
|
+
isActiveMailInstruction: boolean;
|
|
125912
|
+
isActiveVariation: boolean;
|
|
125913
|
+
isShowSecondBordereaux: boolean;
|
|
125914
|
+
isShowCustomerName: boolean;
|
|
125915
|
+
isShowCommercialValue: boolean;
|
|
125916
|
+
}, {
|
|
125917
|
+
id: number;
|
|
125918
|
+
createdAt: Date;
|
|
125919
|
+
updatedAt: Date;
|
|
125920
|
+
countryId: number;
|
|
125921
|
+
address: string;
|
|
125922
|
+
addressTwo: string | null;
|
|
125923
|
+
postalCode: string;
|
|
125924
|
+
city: string;
|
|
125925
|
+
telephoneOne: string;
|
|
125926
|
+
telephoneTwo: string | null;
|
|
125927
|
+
dafResponsibleName: string | null;
|
|
125928
|
+
email: string | null;
|
|
125929
|
+
intraVatNumber: string | null;
|
|
125930
|
+
numeroEori: string | null;
|
|
125931
|
+
comments: string | null;
|
|
125932
|
+
numCodeOne: string | null;
|
|
125933
|
+
numCodeTwo: string | null;
|
|
125934
|
+
isActif: boolean;
|
|
125935
|
+
isParis: boolean;
|
|
125936
|
+
isMedical: boolean;
|
|
125937
|
+
isService: boolean;
|
|
125938
|
+
dirigeant: string | null;
|
|
125939
|
+
dirigeantTel: string | null;
|
|
125940
|
+
dirigeantEmail: string | null;
|
|
125941
|
+
responsableComptable: string | null;
|
|
125942
|
+
responsableComptableTel: string | null;
|
|
125943
|
+
responsableComptableEmail: string | null;
|
|
125944
|
+
responsableDaf: string | null;
|
|
125945
|
+
responsableDafTel: string | null;
|
|
125946
|
+
responsableDafEmail: string | null;
|
|
125947
|
+
emailFacturation: string | null;
|
|
125948
|
+
logo: string | null;
|
|
125949
|
+
header: string | null;
|
|
125950
|
+
footer: string | null;
|
|
125951
|
+
emailOne: string | null;
|
|
125952
|
+
emailTwo: string | null;
|
|
125953
|
+
emailThree: string | null;
|
|
125954
|
+
tva: string | null;
|
|
125955
|
+
isMailing: boolean;
|
|
125956
|
+
telephone: string | null;
|
|
125957
|
+
billingCenterName: string;
|
|
125958
|
+
customerId: number | null;
|
|
125959
|
+
numeroSiren: string | null;
|
|
125960
|
+
invoiceMailOne: string;
|
|
125961
|
+
invoiceMailTwo: string | null;
|
|
125962
|
+
isSubmittedToFrenchVat: boolean;
|
|
125963
|
+
isActiveMailInstruction: boolean;
|
|
125964
|
+
isActiveVariation: boolean;
|
|
125965
|
+
isShowSecondBordereaux: boolean;
|
|
125966
|
+
isShowCustomerName: boolean;
|
|
125967
|
+
isShowCommercialValue: boolean;
|
|
125968
|
+
}>>>;
|
|
125969
|
+
user: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
125970
|
+
id: z.ZodNumber;
|
|
125971
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
125972
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
125973
|
+
firstName: z.ZodString;
|
|
125974
|
+
lastName: z.ZodString;
|
|
125975
|
+
email: z.ZodString;
|
|
125976
|
+
emailVerifiedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
125977
|
+
password: z.ZodString;
|
|
125978
|
+
isActif: z.ZodBoolean;
|
|
125979
|
+
countryId: z.ZodNullable<z.ZodNumber>;
|
|
125980
|
+
postalCode: z.ZodString;
|
|
125981
|
+
city: z.ZodString;
|
|
125982
|
+
poste: z.ZodString;
|
|
125983
|
+
comments: z.ZodString;
|
|
125984
|
+
addressOne: z.ZodString;
|
|
125985
|
+
addressTwo: z.ZodString;
|
|
125986
|
+
telephoneOne: z.ZodString;
|
|
125987
|
+
telephoneTwo: z.ZodString;
|
|
125988
|
+
emailOne: z.ZodString;
|
|
125989
|
+
emailTwo: z.ZodString;
|
|
125990
|
+
roles: z.ZodArray<z.ZodString, "many">;
|
|
125991
|
+
isOpsAdmin: z.ZodBoolean;
|
|
125992
|
+
civility: z.ZodString;
|
|
125993
|
+
numCodeOne: z.ZodString;
|
|
125994
|
+
numCodeTwo: z.ZodString;
|
|
125995
|
+
isShowCalculatrice: z.ZodBoolean;
|
|
125996
|
+
expedition: z.ZodBoolean;
|
|
125997
|
+
physicCompany: z.ZodString;
|
|
125998
|
+
isParis: z.ZodBoolean;
|
|
125999
|
+
isMedical: z.ZodBoolean;
|
|
126000
|
+
isService: z.ZodBoolean;
|
|
126001
|
+
menus: z.ZodString;
|
|
126002
|
+
ongletExpedition: z.ZodString;
|
|
126003
|
+
chauffeurType: z.ZodString;
|
|
126004
|
+
typeOfOps: z.ZodString;
|
|
126005
|
+
prestation: z.ZodString;
|
|
126006
|
+
tracking: z.ZodString;
|
|
126007
|
+
expeditionCourse: z.ZodString;
|
|
126008
|
+
carnetAddress: z.ZodString;
|
|
126009
|
+
expeditionsCarnet: z.ZodString;
|
|
126010
|
+
accessArchive: z.ZodString;
|
|
126011
|
+
isShowImportMenu: z.ZodBoolean;
|
|
126012
|
+
isShowExportMenu: z.ZodBoolean;
|
|
126013
|
+
isShowCourseMenu: z.ZodBoolean;
|
|
126014
|
+
twoRoues: z.ZodBoolean;
|
|
126015
|
+
vt: z.ZodBoolean;
|
|
126016
|
+
lesTwo: z.ZodBoolean;
|
|
126017
|
+
isMiniTracking: z.ZodBoolean;
|
|
126018
|
+
isFullTracking: z.ZodBoolean;
|
|
126019
|
+
isShareCourseAndExpedition: z.ZodBoolean;
|
|
126020
|
+
isShareCarnetAdresse: z.ZodBoolean;
|
|
126021
|
+
isShareCarnetAdresseAndExpedition: z.ZodBoolean;
|
|
126022
|
+
isAccessAuxArchives: z.ZodBoolean;
|
|
126023
|
+
isShowInfo: z.ZodBoolean;
|
|
126024
|
+
photo: z.ZodNullable<z.ZodString>;
|
|
126025
|
+
entreprisePhysique: z.ZodString;
|
|
126026
|
+
isAdminChauffeur: z.ZodBoolean;
|
|
126027
|
+
isShowTracking: z.ZodBoolean;
|
|
126028
|
+
isSupportActivated: z.ZodBoolean;
|
|
126029
|
+
isClientTransitaire: z.ZodBoolean;
|
|
126030
|
+
customerId: z.ZodNumber;
|
|
126031
|
+
vehiculeId: z.ZodNumber;
|
|
126032
|
+
salaryId: z.ZodNumber;
|
|
126033
|
+
}, "strip", z.ZodTypeAny, {
|
|
126034
|
+
id: number;
|
|
126035
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126036
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126037
|
+
countryId: number | null;
|
|
126038
|
+
addressTwo: string;
|
|
126039
|
+
postalCode: string;
|
|
126040
|
+
city: string;
|
|
126041
|
+
telephoneOne: string;
|
|
126042
|
+
telephoneTwo: string;
|
|
126043
|
+
email: string;
|
|
126044
|
+
comments: string;
|
|
126045
|
+
numCodeOne: string;
|
|
126046
|
+
numCodeTwo: string;
|
|
126047
|
+
isActif: boolean;
|
|
126048
|
+
isParis: boolean;
|
|
126049
|
+
isMedical: boolean;
|
|
126050
|
+
isService: boolean;
|
|
126051
|
+
emailOne: string;
|
|
126052
|
+
emailTwo: string;
|
|
126053
|
+
addressOne: string;
|
|
126054
|
+
customerId: number;
|
|
126055
|
+
firstName: string;
|
|
126056
|
+
lastName: string;
|
|
126057
|
+
emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126058
|
+
password: string;
|
|
126059
|
+
poste: string;
|
|
126060
|
+
roles: string[];
|
|
126061
|
+
isOpsAdmin: boolean;
|
|
126062
|
+
civility: string;
|
|
126063
|
+
isShowCalculatrice: boolean;
|
|
126064
|
+
expedition: boolean;
|
|
126065
|
+
physicCompany: string;
|
|
126066
|
+
menus: string;
|
|
126067
|
+
ongletExpedition: string;
|
|
126068
|
+
chauffeurType: string;
|
|
126069
|
+
typeOfOps: string;
|
|
126070
|
+
prestation: string;
|
|
126071
|
+
tracking: string;
|
|
126072
|
+
expeditionCourse: string;
|
|
126073
|
+
carnetAddress: string;
|
|
126074
|
+
expeditionsCarnet: string;
|
|
126075
|
+
accessArchive: string;
|
|
126076
|
+
isShowImportMenu: boolean;
|
|
126077
|
+
isShowExportMenu: boolean;
|
|
126078
|
+
isShowCourseMenu: boolean;
|
|
126079
|
+
twoRoues: boolean;
|
|
126080
|
+
vt: boolean;
|
|
126081
|
+
lesTwo: boolean;
|
|
126082
|
+
isMiniTracking: boolean;
|
|
126083
|
+
isFullTracking: boolean;
|
|
126084
|
+
isShareCourseAndExpedition: boolean;
|
|
126085
|
+
isShareCarnetAdresse: boolean;
|
|
126086
|
+
isShareCarnetAdresseAndExpedition: boolean;
|
|
126087
|
+
isAccessAuxArchives: boolean;
|
|
126088
|
+
isShowInfo: boolean;
|
|
126089
|
+
photo: string | null;
|
|
126090
|
+
entreprisePhysique: string;
|
|
126091
|
+
isAdminChauffeur: boolean;
|
|
126092
|
+
isShowTracking: boolean;
|
|
126093
|
+
isSupportActivated: boolean;
|
|
126094
|
+
isClientTransitaire: boolean;
|
|
126095
|
+
vehiculeId: number;
|
|
126096
|
+
salaryId: number;
|
|
126097
|
+
}, {
|
|
126098
|
+
id: number;
|
|
126099
|
+
createdAt: Date;
|
|
126100
|
+
updatedAt: Date;
|
|
126101
|
+
countryId: number | null;
|
|
126102
|
+
addressTwo: string;
|
|
126103
|
+
postalCode: string;
|
|
126104
|
+
city: string;
|
|
126105
|
+
telephoneOne: string;
|
|
126106
|
+
telephoneTwo: string;
|
|
126107
|
+
email: string;
|
|
126108
|
+
comments: string;
|
|
126109
|
+
numCodeOne: string;
|
|
126110
|
+
numCodeTwo: string;
|
|
126111
|
+
isActif: boolean;
|
|
126112
|
+
isParis: boolean;
|
|
126113
|
+
isMedical: boolean;
|
|
126114
|
+
isService: boolean;
|
|
126115
|
+
emailOne: string;
|
|
126116
|
+
emailTwo: string;
|
|
126117
|
+
addressOne: string;
|
|
126118
|
+
customerId: number;
|
|
126119
|
+
firstName: string;
|
|
126120
|
+
lastName: string;
|
|
126121
|
+
emailVerifiedAt: Date;
|
|
126122
|
+
password: string;
|
|
126123
|
+
poste: string;
|
|
126124
|
+
roles: string[];
|
|
126125
|
+
isOpsAdmin: boolean;
|
|
126126
|
+
civility: string;
|
|
126127
|
+
isShowCalculatrice: boolean;
|
|
126128
|
+
expedition: boolean;
|
|
126129
|
+
physicCompany: string;
|
|
126130
|
+
menus: string;
|
|
126131
|
+
ongletExpedition: string;
|
|
126132
|
+
chauffeurType: string;
|
|
126133
|
+
typeOfOps: string;
|
|
126134
|
+
prestation: string;
|
|
126135
|
+
tracking: string;
|
|
126136
|
+
expeditionCourse: string;
|
|
126137
|
+
carnetAddress: string;
|
|
126138
|
+
expeditionsCarnet: string;
|
|
126139
|
+
accessArchive: string;
|
|
126140
|
+
isShowImportMenu: boolean;
|
|
126141
|
+
isShowExportMenu: boolean;
|
|
126142
|
+
isShowCourseMenu: boolean;
|
|
126143
|
+
twoRoues: boolean;
|
|
126144
|
+
vt: boolean;
|
|
126145
|
+
lesTwo: boolean;
|
|
126146
|
+
isMiniTracking: boolean;
|
|
126147
|
+
isFullTracking: boolean;
|
|
126148
|
+
isShareCourseAndExpedition: boolean;
|
|
126149
|
+
isShareCarnetAdresse: boolean;
|
|
126150
|
+
isShareCarnetAdresseAndExpedition: boolean;
|
|
126151
|
+
isAccessAuxArchives: boolean;
|
|
126152
|
+
isShowInfo: boolean;
|
|
126153
|
+
photo: string | null;
|
|
126154
|
+
entreprisePhysique: string;
|
|
126155
|
+
isAdminChauffeur: boolean;
|
|
126156
|
+
isShowTracking: boolean;
|
|
126157
|
+
isSupportActivated: boolean;
|
|
126158
|
+
isClientTransitaire: boolean;
|
|
126159
|
+
vehiculeId: number;
|
|
126160
|
+
salaryId: number;
|
|
126161
|
+
}>>>;
|
|
126162
|
+
shippingManifests: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
126163
|
+
id: z.ZodNumber;
|
|
126164
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126165
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126166
|
+
shippingId: z.ZodNumber;
|
|
126167
|
+
manifestId: z.ZodNumber;
|
|
126168
|
+
}, "strip", z.ZodTypeAny, {
|
|
126169
|
+
id: number;
|
|
126170
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126171
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126172
|
+
shippingId: number;
|
|
126173
|
+
manifestId: number;
|
|
126174
|
+
}, {
|
|
126175
|
+
id: number;
|
|
126176
|
+
createdAt: Date;
|
|
126177
|
+
updatedAt: Date;
|
|
126178
|
+
shippingId: number;
|
|
126179
|
+
manifestId: number;
|
|
126180
|
+
}>>>;
|
|
126181
|
+
shippingClassification: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
126182
|
+
id: z.ZodNumber;
|
|
126183
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126184
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126185
|
+
europe: z.ZodBoolean;
|
|
126186
|
+
express: z.ZodBoolean;
|
|
126187
|
+
international: z.ZodBoolean;
|
|
126188
|
+
locale: z.ZodBoolean;
|
|
126189
|
+
spxHOneHourThirty: z.ZodBoolean;
|
|
126190
|
+
spxHThreeHours: z.ZodBoolean;
|
|
126191
|
+
national: z.ZodBoolean;
|
|
126192
|
+
premium: z.ZodBoolean;
|
|
126193
|
+
spx: z.ZodBoolean;
|
|
126194
|
+
spxHNineHours: z.ZodBoolean;
|
|
126195
|
+
spxHTenHours: z.ZodBoolean;
|
|
126196
|
+
spxHTwelveHours: z.ZodBoolean;
|
|
126197
|
+
spxDrive: z.ZodBoolean;
|
|
126198
|
+
spxPlus: z.ZodBoolean;
|
|
126199
|
+
spxSat: z.ZodBoolean;
|
|
126200
|
+
voiture: z.ZodBoolean;
|
|
126201
|
+
shippingId: z.ZodNumber;
|
|
126202
|
+
}, "strip", z.ZodTypeAny, {
|
|
126203
|
+
id: number;
|
|
126204
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126205
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126206
|
+
shippingId: number;
|
|
126207
|
+
europe: boolean;
|
|
126208
|
+
express: boolean;
|
|
126209
|
+
international: boolean;
|
|
126210
|
+
locale: boolean;
|
|
126211
|
+
national: boolean;
|
|
126212
|
+
premium: boolean;
|
|
126213
|
+
spx: boolean;
|
|
126214
|
+
spxDrive: boolean;
|
|
126215
|
+
spxPlus: boolean;
|
|
126216
|
+
spxSat: boolean;
|
|
126217
|
+
voiture: boolean;
|
|
126218
|
+
spxHOneHourThirty: boolean;
|
|
126219
|
+
spxHThreeHours: boolean;
|
|
126220
|
+
spxHNineHours: boolean;
|
|
126221
|
+
spxHTenHours: boolean;
|
|
126222
|
+
spxHTwelveHours: boolean;
|
|
126223
|
+
}, {
|
|
126224
|
+
id: number;
|
|
126225
|
+
createdAt: Date;
|
|
126226
|
+
updatedAt: Date;
|
|
126227
|
+
shippingId: number;
|
|
126228
|
+
europe: boolean;
|
|
126229
|
+
express: boolean;
|
|
126230
|
+
international: boolean;
|
|
126231
|
+
locale: boolean;
|
|
126232
|
+
national: boolean;
|
|
126233
|
+
premium: boolean;
|
|
126234
|
+
spx: boolean;
|
|
126235
|
+
spxDrive: boolean;
|
|
126236
|
+
spxPlus: boolean;
|
|
126237
|
+
spxSat: boolean;
|
|
126238
|
+
voiture: boolean;
|
|
126239
|
+
spxHOneHourThirty: boolean;
|
|
126240
|
+
spxHThreeHours: boolean;
|
|
126241
|
+
spxHNineHours: boolean;
|
|
126242
|
+
spxHTenHours: boolean;
|
|
126243
|
+
spxHTwelveHours: boolean;
|
|
126244
|
+
}>>>;
|
|
126245
|
+
shippingCourse: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
126246
|
+
id: z.ZodNumber;
|
|
126247
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126248
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126249
|
+
packageDescription: z.ZodString;
|
|
126250
|
+
additionalInsurance: z.ZodBoolean;
|
|
126251
|
+
additionalInsuranceAmount: z.ZodNullable<z.ZodNumber>;
|
|
126252
|
+
documents: z.ZodNullable<z.ZodString>;
|
|
126253
|
+
valeurDouane: z.ZodNullable<z.ZodString>;
|
|
126254
|
+
porteur: z.ZodString;
|
|
126255
|
+
nombreRoue: z.ZodString;
|
|
126256
|
+
userId: z.ZodNumber;
|
|
126257
|
+
shippingId: z.ZodNumber;
|
|
126258
|
+
}, "strip", z.ZodTypeAny, {
|
|
126259
|
+
id: number;
|
|
126260
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126261
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126262
|
+
userId: number;
|
|
126263
|
+
packageDescription: string;
|
|
126264
|
+
additionalInsurance: boolean;
|
|
126265
|
+
additionalInsuranceAmount: number | null;
|
|
126266
|
+
documents: string | null;
|
|
126267
|
+
valeurDouane: string | null;
|
|
126268
|
+
porteur: string;
|
|
126269
|
+
nombreRoue: string;
|
|
126270
|
+
shippingId: number;
|
|
126271
|
+
}, {
|
|
126272
|
+
id: number;
|
|
126273
|
+
createdAt: Date;
|
|
126274
|
+
updatedAt: Date;
|
|
126275
|
+
userId: number;
|
|
126276
|
+
packageDescription: string;
|
|
126277
|
+
additionalInsurance: boolean;
|
|
126278
|
+
additionalInsuranceAmount: number | null;
|
|
126279
|
+
documents: string | null;
|
|
126280
|
+
valeurDouane: string | null;
|
|
126281
|
+
porteur: string;
|
|
126282
|
+
nombreRoue: string;
|
|
126283
|
+
shippingId: number;
|
|
126284
|
+
}>>>;
|
|
126285
|
+
livraisonChauffeur: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
126286
|
+
id: z.ZodNumber;
|
|
126287
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126288
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126289
|
+
visibleTo: z.ZodBoolean;
|
|
126290
|
+
userId: z.ZodNumber;
|
|
126291
|
+
shippingId: z.ZodNumber;
|
|
126292
|
+
}, "strip", z.ZodTypeAny, {
|
|
126293
|
+
id: number;
|
|
126294
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126295
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126296
|
+
userId: number;
|
|
126297
|
+
shippingId: number;
|
|
126298
|
+
visibleTo: boolean;
|
|
126299
|
+
}, {
|
|
126300
|
+
id: number;
|
|
126301
|
+
createdAt: Date;
|
|
126302
|
+
updatedAt: Date;
|
|
126303
|
+
userId: number;
|
|
126304
|
+
shippingId: number;
|
|
126305
|
+
visibleTo: boolean;
|
|
126306
|
+
}>>>;
|
|
126307
|
+
shippingPackage: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
126308
|
+
id: z.ZodNumber;
|
|
126309
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126310
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126311
|
+
length: z.ZodNumber;
|
|
126312
|
+
width: z.ZodNumber;
|
|
126313
|
+
height: z.ZodNumber;
|
|
126314
|
+
weight: z.ZodNumber;
|
|
126315
|
+
weightVolume: z.ZodNumber;
|
|
126316
|
+
description: z.ZodString;
|
|
126317
|
+
valueInDouane: z.ZodNullable<z.ZodString>;
|
|
126318
|
+
documents: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
|
|
126319
|
+
valeurAssure: z.ZodNullable<z.ZodString>;
|
|
126320
|
+
statut: z.ZodNullable<z.ZodString>;
|
|
126321
|
+
montantDevi: z.ZodNullable<z.ZodString>;
|
|
126322
|
+
nombreDevi: z.ZodNullable<z.ZodString>;
|
|
126323
|
+
additionalInsurance: z.ZodBoolean;
|
|
126324
|
+
additionalInsuranceAmount: z.ZodNullable<z.ZodNumber>;
|
|
126325
|
+
ref: z.ZodNullable<z.ZodString>;
|
|
126326
|
+
incoterm: z.ZodNullable<z.ZodString>;
|
|
126327
|
+
devises: z.ZodNullable<z.ZodString>;
|
|
126328
|
+
shippingId: z.ZodNumber;
|
|
126329
|
+
}, "strip", z.ZodTypeAny, {
|
|
126330
|
+
id: number;
|
|
126331
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126332
|
+
length: number;
|
|
126333
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126334
|
+
additionalInsurance: boolean;
|
|
126335
|
+
additionalInsuranceAmount: number | null;
|
|
126336
|
+
documents: string[] | null;
|
|
126337
|
+
shippingId: number;
|
|
126338
|
+
ref: string | null;
|
|
126339
|
+
devises: string | null;
|
|
126340
|
+
width: number;
|
|
126341
|
+
height: number;
|
|
126342
|
+
weight: number;
|
|
126343
|
+
weightVolume: number;
|
|
126344
|
+
description: string;
|
|
126345
|
+
valueInDouane: string | null;
|
|
126346
|
+
valeurAssure: string | null;
|
|
126347
|
+
statut: string | null;
|
|
126348
|
+
montantDevi: string | null;
|
|
126349
|
+
nombreDevi: string | null;
|
|
126350
|
+
incoterm: string | null;
|
|
126351
|
+
}, {
|
|
126352
|
+
id: number;
|
|
126353
|
+
createdAt: Date;
|
|
126354
|
+
length: number;
|
|
126355
|
+
updatedAt: Date;
|
|
126356
|
+
additionalInsurance: boolean;
|
|
126357
|
+
additionalInsuranceAmount: number | null;
|
|
126358
|
+
documents: string[] | null;
|
|
126359
|
+
shippingId: number;
|
|
126360
|
+
ref: string | null;
|
|
126361
|
+
devises: string | null;
|
|
126362
|
+
width: number;
|
|
126363
|
+
height: number;
|
|
126364
|
+
weight: number;
|
|
126365
|
+
weightVolume: number;
|
|
126366
|
+
description: string;
|
|
126367
|
+
valueInDouane: string | null;
|
|
126368
|
+
valeurAssure: string | null;
|
|
126369
|
+
statut: string | null;
|
|
126370
|
+
montantDevi: string | null;
|
|
126371
|
+
nombreDevi: string | null;
|
|
126372
|
+
incoterm: string | null;
|
|
126373
|
+
}>>>;
|
|
126374
|
+
shippingPod: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
126375
|
+
id: z.ZodNumber;
|
|
126376
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126377
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126378
|
+
signature: z.ZodString;
|
|
126379
|
+
coursier: z.ZodString;
|
|
126380
|
+
date: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126381
|
+
heurs: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126382
|
+
picturePod: z.ZodNullable<z.ZodString>;
|
|
126383
|
+
shippingId: z.ZodNumber;
|
|
126384
|
+
}, "strip", z.ZodTypeAny, {
|
|
126385
|
+
id: number;
|
|
126386
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126387
|
+
date: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126388
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126389
|
+
shippingId: number;
|
|
126390
|
+
signature: string;
|
|
126391
|
+
coursier: string;
|
|
126392
|
+
heurs: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126393
|
+
picturePod: string | null;
|
|
126394
|
+
}, {
|
|
126395
|
+
id: number;
|
|
126396
|
+
createdAt: Date;
|
|
126397
|
+
date: Date;
|
|
126398
|
+
updatedAt: Date;
|
|
126399
|
+
shippingId: number;
|
|
126400
|
+
signature: string;
|
|
126401
|
+
coursier: string;
|
|
126402
|
+
heurs: Date;
|
|
126403
|
+
picturePod: string | null;
|
|
126404
|
+
}>>>;
|
|
126405
|
+
ramassageChauffeur: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
126406
|
+
id: z.ZodNumber;
|
|
126407
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126408
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126409
|
+
nom: z.ZodString;
|
|
126410
|
+
prenom: z.ZodString;
|
|
126411
|
+
signature: z.ZodNullable<z.ZodString>;
|
|
126412
|
+
picture: z.ZodNullable<z.ZodString>;
|
|
126413
|
+
date: z.ZodNullable<z.ZodString>;
|
|
126414
|
+
heurs: z.ZodNullable<z.ZodString>;
|
|
126415
|
+
visibleTo: z.ZodBoolean;
|
|
126416
|
+
userId: z.ZodNumber;
|
|
126417
|
+
shippingId: z.ZodNumber;
|
|
126418
|
+
}, "strip", z.ZodTypeAny, {
|
|
126419
|
+
id: number;
|
|
126420
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126421
|
+
date: string | null;
|
|
126422
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126423
|
+
nom: string;
|
|
126424
|
+
prenom: string;
|
|
126425
|
+
userId: number;
|
|
126426
|
+
shippingId: number;
|
|
126427
|
+
visibleTo: boolean;
|
|
126428
|
+
signature: string | null;
|
|
126429
|
+
heurs: string | null;
|
|
126430
|
+
picture: string | null;
|
|
126431
|
+
}, {
|
|
126432
|
+
id: number;
|
|
126433
|
+
createdAt: Date;
|
|
126434
|
+
date: string | null;
|
|
126435
|
+
updatedAt: Date;
|
|
126436
|
+
nom: string;
|
|
126437
|
+
prenom: string;
|
|
126438
|
+
userId: number;
|
|
126439
|
+
shippingId: number;
|
|
126440
|
+
visibleTo: boolean;
|
|
126441
|
+
signature: string | null;
|
|
126442
|
+
heurs: string | null;
|
|
126443
|
+
picture: string | null;
|
|
126444
|
+
}>>>;
|
|
126445
|
+
shippingEmballage: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
126446
|
+
id: z.ZodNumber;
|
|
126447
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126448
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126449
|
+
nbrDiagnobag: z.ZodNumber;
|
|
126450
|
+
hasSonde: z.ZodBoolean;
|
|
126451
|
+
hasDiagnobag: z.ZodBoolean;
|
|
126452
|
+
isPrepared: z.ZodBoolean;
|
|
126453
|
+
comment: z.ZodString;
|
|
126454
|
+
shippingId: z.ZodNumber;
|
|
126455
|
+
emballageId: z.ZodNumber;
|
|
126456
|
+
typeSondeId: z.ZodNumber;
|
|
126457
|
+
typeDiagnobagId: z.ZodNumber;
|
|
126458
|
+
}, "strip", z.ZodTypeAny, {
|
|
126459
|
+
id: number;
|
|
126460
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126461
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126462
|
+
shippingId: number;
|
|
126463
|
+
comment: string;
|
|
126464
|
+
nbrDiagnobag: number;
|
|
126465
|
+
hasSonde: boolean;
|
|
126466
|
+
hasDiagnobag: boolean;
|
|
126467
|
+
isPrepared: boolean;
|
|
126468
|
+
emballageId: number;
|
|
126469
|
+
typeSondeId: number;
|
|
126470
|
+
typeDiagnobagId: number;
|
|
126471
|
+
}, {
|
|
126472
|
+
id: number;
|
|
126473
|
+
createdAt: Date;
|
|
126474
|
+
updatedAt: Date;
|
|
126475
|
+
shippingId: number;
|
|
126476
|
+
comment: string;
|
|
126477
|
+
nbrDiagnobag: number;
|
|
126478
|
+
hasSonde: boolean;
|
|
126479
|
+
hasDiagnobag: boolean;
|
|
126480
|
+
isPrepared: boolean;
|
|
126481
|
+
emballageId: number;
|
|
126482
|
+
typeSondeId: number;
|
|
126483
|
+
typeDiagnobagId: number;
|
|
126484
|
+
}>>>;
|
|
126485
|
+
shippingAffecteds: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
126486
|
+
id: z.ZodNumber;
|
|
126487
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126488
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126489
|
+
userId: z.ZodNumber;
|
|
126490
|
+
shippingId: z.ZodNumber;
|
|
126491
|
+
}, "strip", z.ZodTypeAny, {
|
|
126492
|
+
id: number;
|
|
126493
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126494
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126495
|
+
userId: number;
|
|
126496
|
+
shippingId: number;
|
|
126497
|
+
}, {
|
|
126498
|
+
id: number;
|
|
126499
|
+
createdAt: Date;
|
|
126500
|
+
updatedAt: Date;
|
|
126501
|
+
userId: number;
|
|
126502
|
+
shippingId: number;
|
|
126503
|
+
}>>, "many">>;
|
|
126504
|
+
shippingComments: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
126505
|
+
id: z.ZodNumber;
|
|
126506
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126507
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126508
|
+
content: z.ZodString;
|
|
126509
|
+
userId: z.ZodNumber;
|
|
126510
|
+
shippingId: z.ZodNumber;
|
|
126511
|
+
}, "strip", z.ZodTypeAny, {
|
|
126512
|
+
id: number;
|
|
126513
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126514
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126515
|
+
userId: number;
|
|
126516
|
+
shippingId: number;
|
|
126517
|
+
content: string;
|
|
126518
|
+
}, {
|
|
126519
|
+
id: number;
|
|
126520
|
+
createdAt: Date;
|
|
126521
|
+
updatedAt: Date;
|
|
126522
|
+
userId: number;
|
|
126523
|
+
shippingId: number;
|
|
126524
|
+
content: string;
|
|
126525
|
+
}>>, "many">>;
|
|
126526
|
+
shippingDetails: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
126527
|
+
id: z.ZodNumber;
|
|
126528
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126529
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126530
|
+
civility: z.ZodString;
|
|
126531
|
+
company: z.ZodString;
|
|
126532
|
+
fullName: z.ZodString;
|
|
126533
|
+
address1: z.ZodString;
|
|
126534
|
+
addressTwo: z.ZodNullable<z.ZodString>;
|
|
126535
|
+
postalCode: z.ZodString;
|
|
126536
|
+
city: z.ZodString;
|
|
126537
|
+
countryId: z.ZodNullable<z.ZodNumber>;
|
|
126538
|
+
phoneCode: z.ZodString;
|
|
126539
|
+
phoneOne: z.ZodString;
|
|
126540
|
+
phoneTwo: z.ZodNullable<z.ZodString>;
|
|
126541
|
+
email: z.ZodString;
|
|
126542
|
+
type: z.ZodNativeEnum<{
|
|
126543
|
+
readonly EXPEDITOR: "expeditor";
|
|
126544
|
+
readonly RECEIVER: "receiver";
|
|
126545
|
+
}>;
|
|
126546
|
+
shippingId: z.ZodNumber;
|
|
126547
|
+
}, "strip", z.ZodTypeAny, {
|
|
126548
|
+
id: number;
|
|
126549
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126550
|
+
type: "expeditor" | "receiver";
|
|
126551
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126552
|
+
phoneCode: string;
|
|
126553
|
+
fullName: string;
|
|
126554
|
+
countryId: number | null;
|
|
126555
|
+
addressTwo: string | null;
|
|
126556
|
+
postalCode: string;
|
|
126557
|
+
city: string;
|
|
126558
|
+
email: string;
|
|
126559
|
+
civility: string;
|
|
126560
|
+
shippingId: number;
|
|
126561
|
+
company: string;
|
|
126562
|
+
address1: string;
|
|
126563
|
+
phoneOne: string;
|
|
126564
|
+
phoneTwo: string | null;
|
|
126565
|
+
}, {
|
|
126566
|
+
id: number;
|
|
126567
|
+
createdAt: Date;
|
|
126568
|
+
type: "expeditor" | "receiver";
|
|
126569
|
+
updatedAt: Date;
|
|
126570
|
+
phoneCode: string;
|
|
126571
|
+
fullName: string;
|
|
126572
|
+
countryId: number | null;
|
|
126573
|
+
addressTwo: string | null;
|
|
126574
|
+
postalCode: string;
|
|
126575
|
+
city: string;
|
|
126576
|
+
email: string;
|
|
126577
|
+
civility: string;
|
|
126578
|
+
shippingId: number;
|
|
126579
|
+
company: string;
|
|
126580
|
+
address1: string;
|
|
126581
|
+
phoneOne: string;
|
|
126582
|
+
phoneTwo: string | null;
|
|
126583
|
+
}>>, "many">>;
|
|
126584
|
+
shippingDocuments: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
126585
|
+
id: z.ZodNumber;
|
|
126586
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126587
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126588
|
+
document: z.ZodString;
|
|
126589
|
+
type: z.ZodString;
|
|
126590
|
+
nom: z.ZodString;
|
|
126591
|
+
shippingId: z.ZodNumber;
|
|
126592
|
+
userId: z.ZodNumber;
|
|
126593
|
+
}, "strip", z.ZodTypeAny, {
|
|
126594
|
+
id: number;
|
|
126595
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126596
|
+
type: string;
|
|
126597
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126598
|
+
nom: string;
|
|
126599
|
+
userId: number;
|
|
126600
|
+
shippingId: number;
|
|
126601
|
+
document: string;
|
|
126602
|
+
}, {
|
|
126603
|
+
id: number;
|
|
126604
|
+
createdAt: Date;
|
|
126605
|
+
type: string;
|
|
126606
|
+
updatedAt: Date;
|
|
126607
|
+
nom: string;
|
|
126608
|
+
userId: number;
|
|
126609
|
+
shippingId: number;
|
|
126610
|
+
document: string;
|
|
126611
|
+
}>>, "many">>;
|
|
126612
|
+
factureLines: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
126613
|
+
id: z.ZodNumber;
|
|
126614
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126615
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126616
|
+
classifications: z.ZodString;
|
|
126617
|
+
comment: z.ZodNullable<z.ZodString>;
|
|
126618
|
+
lineType: z.ZodString;
|
|
126619
|
+
prix: z.ZodNumber;
|
|
126620
|
+
qte: z.ZodNumber;
|
|
126621
|
+
total: z.ZodNumber;
|
|
126622
|
+
totalFinal: z.ZodNumber;
|
|
126623
|
+
fuel: z.ZodNumber;
|
|
126624
|
+
tva: z.ZodNumber;
|
|
126625
|
+
factureRef: z.ZodNullable<z.ZodNumber>;
|
|
126626
|
+
oldFactureRef: z.ZodNullable<z.ZodNumber>;
|
|
126627
|
+
isVariation: z.ZodBoolean;
|
|
126628
|
+
fullRef: z.ZodString;
|
|
126629
|
+
factureId: z.ZodNullable<z.ZodNumber>;
|
|
126630
|
+
shippingId: z.ZodNumber;
|
|
126631
|
+
facturationLineId: z.ZodNumber;
|
|
126632
|
+
}, "strip", z.ZodTypeAny, {
|
|
126633
|
+
id: number;
|
|
126634
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126635
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126636
|
+
tva: number;
|
|
126637
|
+
shippingId: number;
|
|
126638
|
+
classifications: string;
|
|
126639
|
+
comment: string | null;
|
|
126640
|
+
fuel: number;
|
|
126641
|
+
total: number;
|
|
126642
|
+
isVariation: boolean;
|
|
126643
|
+
fullRef: string;
|
|
126644
|
+
lineType: string;
|
|
126645
|
+
prix: number;
|
|
126646
|
+
qte: number;
|
|
126647
|
+
totalFinal: number;
|
|
126648
|
+
factureRef: number | null;
|
|
126649
|
+
oldFactureRef: number | null;
|
|
126650
|
+
factureId: number | null;
|
|
126651
|
+
facturationLineId: number;
|
|
126652
|
+
}, {
|
|
126653
|
+
id: number;
|
|
126654
|
+
createdAt: Date;
|
|
126655
|
+
updatedAt: Date;
|
|
126656
|
+
tva: number;
|
|
126657
|
+
shippingId: number;
|
|
126658
|
+
classifications: string;
|
|
126659
|
+
comment: string | null;
|
|
126660
|
+
fuel: number;
|
|
126661
|
+
total: number;
|
|
126662
|
+
isVariation: boolean;
|
|
126663
|
+
fullRef: string;
|
|
126664
|
+
lineType: string;
|
|
126665
|
+
prix: number;
|
|
126666
|
+
qte: number;
|
|
126667
|
+
totalFinal: number;
|
|
126668
|
+
factureRef: number | null;
|
|
126669
|
+
oldFactureRef: number | null;
|
|
126670
|
+
factureId: number | null;
|
|
126671
|
+
facturationLineId: number;
|
|
126672
|
+
}>>, "many">>;
|
|
126673
|
+
historiqueActions: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
126674
|
+
id: z.ZodNumber;
|
|
126675
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126676
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126677
|
+
action: z.ZodString;
|
|
126678
|
+
type: z.ZodEnum<["CONNEXION", "DECONNEXION", "ACTION"]>;
|
|
126679
|
+
data: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
126680
|
+
userId: z.ZodNullable<z.ZodNumber>;
|
|
126681
|
+
shippingId: z.ZodNullable<z.ZodNumber>;
|
|
126682
|
+
}, "strip", z.ZodTypeAny, {
|
|
126683
|
+
id: number;
|
|
126684
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126685
|
+
type: "CONNEXION" | "DECONNEXION" | "ACTION";
|
|
126686
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126687
|
+
userId: number | null;
|
|
126688
|
+
shippingId: number | null;
|
|
126689
|
+
action: string;
|
|
126690
|
+
data: Record<string, any>;
|
|
126691
|
+
}, {
|
|
126692
|
+
id: number;
|
|
126693
|
+
createdAt: Date;
|
|
126694
|
+
type: "CONNEXION" | "DECONNEXION" | "ACTION";
|
|
126695
|
+
updatedAt: Date;
|
|
126696
|
+
userId: number | null;
|
|
126697
|
+
shippingId: number | null;
|
|
126698
|
+
action: string;
|
|
126699
|
+
data: Record<string, any>;
|
|
126700
|
+
}>>, "many">>;
|
|
126701
|
+
informationImportantes: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
126702
|
+
id: z.ZodNumber;
|
|
126703
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126704
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126705
|
+
information: z.ZodString;
|
|
126706
|
+
userId: z.ZodNumber;
|
|
126707
|
+
shippingId: z.ZodNumber;
|
|
126708
|
+
}, "strip", z.ZodTypeAny, {
|
|
126709
|
+
id: number;
|
|
126710
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126711
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126712
|
+
userId: number;
|
|
126713
|
+
shippingId: number;
|
|
126714
|
+
information: string;
|
|
126715
|
+
}, {
|
|
126716
|
+
id: number;
|
|
126717
|
+
createdAt: Date;
|
|
126718
|
+
updatedAt: Date;
|
|
126719
|
+
userId: number;
|
|
126720
|
+
shippingId: number;
|
|
126721
|
+
information: string;
|
|
126722
|
+
}>>, "many">>;
|
|
126723
|
+
shippingTrackings: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
126724
|
+
id: z.ZodNumber;
|
|
126725
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126726
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126727
|
+
dateTracking: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126728
|
+
dateSuivi: z.ZodString;
|
|
126729
|
+
heurSuivi: z.ZodString;
|
|
126730
|
+
details: z.ZodString;
|
|
126731
|
+
agents: z.ZodString;
|
|
126732
|
+
chauffeur: z.ZodString;
|
|
126733
|
+
visible: z.ZodBoolean;
|
|
126734
|
+
isTemplate: z.ZodBoolean;
|
|
126735
|
+
isParis: z.ZodBoolean;
|
|
126736
|
+
isMedical: z.ZodBoolean;
|
|
126737
|
+
isService: z.ZodBoolean;
|
|
126738
|
+
state: z.ZodBoolean;
|
|
126739
|
+
location: z.ZodNullable<z.ZodString>;
|
|
126740
|
+
userId: z.ZodNumber;
|
|
126741
|
+
isDriver: z.ZodBoolean;
|
|
126742
|
+
status: z.ZodNullable<z.ZodString>;
|
|
126743
|
+
userOpsId: z.ZodNullable<z.ZodNumber>;
|
|
126744
|
+
dateValidateOps: z.ZodOptional<z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>>;
|
|
126745
|
+
shippingId: z.ZodNumber;
|
|
126746
|
+
}, "strip", z.ZodTypeAny, {
|
|
126747
|
+
id: number;
|
|
126748
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126749
|
+
status: string | null;
|
|
126750
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126751
|
+
isParis: boolean;
|
|
126752
|
+
isMedical: boolean;
|
|
126753
|
+
isService: boolean;
|
|
126754
|
+
userId: number;
|
|
126755
|
+
chauffeur: string;
|
|
126756
|
+
shippingId: number;
|
|
126757
|
+
dateTracking: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126758
|
+
dateSuivi: string;
|
|
126759
|
+
heurSuivi: string;
|
|
126760
|
+
details: string;
|
|
126761
|
+
agents: string;
|
|
126762
|
+
visible: boolean;
|
|
126763
|
+
isTemplate: boolean;
|
|
126764
|
+
state: boolean;
|
|
126765
|
+
location: string | null;
|
|
126766
|
+
isDriver: boolean;
|
|
126767
|
+
userOpsId: number | null;
|
|
126768
|
+
dateValidateOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
126769
|
+
}, {
|
|
126770
|
+
id: number;
|
|
126771
|
+
createdAt: Date;
|
|
126772
|
+
status: string | null;
|
|
126773
|
+
updatedAt: Date;
|
|
126774
|
+
isParis: boolean;
|
|
126775
|
+
isMedical: boolean;
|
|
126776
|
+
isService: boolean;
|
|
126777
|
+
userId: number;
|
|
126778
|
+
chauffeur: string;
|
|
126779
|
+
shippingId: number;
|
|
126780
|
+
dateTracking: Date;
|
|
126781
|
+
dateSuivi: string;
|
|
126782
|
+
heurSuivi: string;
|
|
126783
|
+
details: string;
|
|
126784
|
+
agents: string;
|
|
126785
|
+
visible: boolean;
|
|
126786
|
+
isTemplate: boolean;
|
|
126787
|
+
state: boolean;
|
|
126788
|
+
location: string | null;
|
|
126789
|
+
isDriver: boolean;
|
|
126790
|
+
userOpsId: number | null;
|
|
126791
|
+
dateValidateOps?: Date | undefined;
|
|
126792
|
+
}>>, "many">>;
|
|
126793
|
+
country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
126794
|
+
id: z.ZodNumber;
|
|
126795
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126796
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126797
|
+
name: z.ZodString;
|
|
126798
|
+
code: z.ZodString;
|
|
126799
|
+
phoneCode: z.ZodString;
|
|
126800
|
+
}, "strip", z.ZodTypeAny, {
|
|
126801
|
+
id: number;
|
|
126802
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126803
|
+
code: string;
|
|
126804
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126805
|
+
name: string;
|
|
126806
|
+
phoneCode: string;
|
|
126807
|
+
}, {
|
|
126808
|
+
id: number;
|
|
126809
|
+
createdAt: Date;
|
|
126810
|
+
code: string;
|
|
126811
|
+
updatedAt: Date;
|
|
126812
|
+
name: string;
|
|
126813
|
+
phoneCode: string;
|
|
126814
|
+
}>>>;
|
|
126815
|
+
}, {
|
|
126816
|
+
facture: z.ZodNullable<z.ZodObject<{
|
|
126817
|
+
id: z.ZodNumber;
|
|
126818
|
+
createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126819
|
+
updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
|
|
126820
|
+
isParis: z.ZodBoolean;
|
|
126821
|
+
isMedical: z.ZodBoolean;
|
|
126822
|
+
isService: z.ZodBoolean;
|
|
126823
|
+
echeance: z.ZodString;
|
|
126824
|
+
statut: z.ZodString;
|
|
126825
|
+
montant: z.ZodNumber;
|
|
126826
|
+
shippingIds: z.ZodArray<z.ZodString, "many">;
|
|
126827
|
+
fuel: z.ZodNumber;
|
|
126828
|
+
tva: z.ZodNumber;
|
|
126829
|
+
total: z.ZodNumber;
|
|
126830
|
+
ref: z.ZodNumber;
|
|
126831
|
+
isDeleted: z.ZodBoolean;
|
|
126832
|
+
bonDeCommende: z.ZodNullable<z.ZodString>;
|
|
126833
|
+
isVariation: z.ZodBoolean;
|
|
126834
|
+
isActiveForReedited: z.ZodBoolean;
|
|
126835
|
+
docFacture: z.ZodString;
|
|
126836
|
+
fullRef: z.ZodString;
|
|
126837
|
+
message: z.ZodNullable<z.ZodString>;
|
|
126838
|
+
modeReglement: z.ZodNullable<z.ZodString>;
|
|
126839
|
+
source: z.ZodNullable<z.ZodString>;
|
|
126840
|
+
provenanceCommande: z.ZodNullable<z.ZodString>;
|
|
126841
|
+
billingCenterId: z.ZodNumber;
|
|
126842
|
+
}, "strip", z.ZodTypeAny, {
|
|
126843
|
+
id: number;
|
|
126844
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126845
|
+
message: string | null;
|
|
126846
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126847
|
+
isParis: boolean;
|
|
126848
|
+
isMedical: boolean;
|
|
126849
|
+
isService: boolean;
|
|
126850
|
+
tva: number;
|
|
126851
|
+
billingCenterId: number;
|
|
126852
|
+
ref: number;
|
|
126853
|
+
isDeleted: boolean;
|
|
126854
|
+
provenanceCommande: string | null;
|
|
126855
|
+
statut: string;
|
|
126856
|
+
echeance: string;
|
|
126857
|
+
montant: number;
|
|
126858
|
+
shippingIds: string[];
|
|
126859
|
+
fuel: number;
|
|
126860
|
+
total: number;
|
|
126861
|
+
bonDeCommende: string | null;
|
|
126862
|
+
isVariation: boolean;
|
|
126863
|
+
isActiveForReedited: boolean;
|
|
126864
|
+
docFacture: string;
|
|
126865
|
+
fullRef: string;
|
|
126866
|
+
modeReglement: string | null;
|
|
126867
|
+
source: string | null;
|
|
126868
|
+
}, {
|
|
126869
|
+
id: number;
|
|
126870
|
+
createdAt: Date;
|
|
126871
|
+
message: string | null;
|
|
126872
|
+
updatedAt: Date;
|
|
126873
|
+
isParis: boolean;
|
|
126874
|
+
isMedical: boolean;
|
|
126875
|
+
isService: boolean;
|
|
126876
|
+
tva: number;
|
|
126877
|
+
billingCenterId: number;
|
|
126878
|
+
ref: number;
|
|
126879
|
+
isDeleted: boolean;
|
|
126880
|
+
provenanceCommande: string | null;
|
|
126881
|
+
statut: string;
|
|
126882
|
+
echeance: string;
|
|
126883
|
+
montant: number;
|
|
126884
|
+
shippingIds: string[];
|
|
126885
|
+
fuel: number;
|
|
126886
|
+
total: number;
|
|
126887
|
+
bonDeCommende: string | null;
|
|
126888
|
+
isVariation: boolean;
|
|
126889
|
+
isActiveForReedited: boolean;
|
|
126890
|
+
docFacture: string;
|
|
126891
|
+
fullRef: string;
|
|
126892
|
+
modeReglement: string | null;
|
|
126893
|
+
source: string | null;
|
|
126894
|
+
}>>;
|
|
126895
|
+
}>, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
126896
|
+
id: number;
|
|
126897
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126898
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126899
|
+
userId: number | null;
|
|
126900
|
+
billingCenterId: number | null;
|
|
126901
|
+
trackingMail: string | null;
|
|
126902
|
+
customerRef: string | null;
|
|
126903
|
+
pickupInstruction: string | null;
|
|
126904
|
+
deliveryInstruction: string | null;
|
|
126905
|
+
billContact: string | null;
|
|
126906
|
+
pickupTime: string | null;
|
|
126907
|
+
deliveryTime: string | null;
|
|
126908
|
+
ref: number | null;
|
|
126909
|
+
trackingNumber: string | null;
|
|
126910
|
+
classifications: string | null;
|
|
126911
|
+
userName: string | null;
|
|
126912
|
+
transportType: string | null;
|
|
126913
|
+
isDeleted: boolean | null;
|
|
126914
|
+
codeDonneur: string | null;
|
|
126915
|
+
codeReceveur: string | null;
|
|
126916
|
+
hasManifest: boolean;
|
|
126917
|
+
isOps: boolean;
|
|
126918
|
+
comment: string | null;
|
|
126919
|
+
createdFor: number | null;
|
|
126920
|
+
isArchived: boolean;
|
|
126921
|
+
isNeedArchive: boolean;
|
|
126922
|
+
isAnnulee: boolean;
|
|
126923
|
+
raison: string | null;
|
|
126924
|
+
color: string | null;
|
|
126925
|
+
docBordereaux: string | null;
|
|
126926
|
+
docAccompagnement: string | null;
|
|
126927
|
+
category: "course" | "all" | "import" | "export";
|
|
126928
|
+
typeExpedition: "expedition" | "course";
|
|
126929
|
+
driverId: number;
|
|
126930
|
+
typeDeRoue: string | null;
|
|
126931
|
+
isRecupererOps: boolean | null;
|
|
126932
|
+
isRemisOps: boolean | null;
|
|
126933
|
+
isRecupererChauffeur: boolean | null;
|
|
126934
|
+
isRemisChauffeur: boolean | null;
|
|
126935
|
+
lastCronRunAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126936
|
+
devises: string | null;
|
|
126937
|
+
provenanceCommande: string | null;
|
|
126938
|
+
hasEmballage: boolean;
|
|
126939
|
+
facture: {
|
|
126940
|
+
id: number;
|
|
126941
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126942
|
+
message: string | null;
|
|
126943
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126944
|
+
isParis: boolean;
|
|
126945
|
+
isMedical: boolean;
|
|
126946
|
+
isService: boolean;
|
|
126947
|
+
tva: number;
|
|
126948
|
+
billingCenterId: number;
|
|
126949
|
+
ref: number;
|
|
126950
|
+
isDeleted: boolean;
|
|
126951
|
+
provenanceCommande: string | null;
|
|
126952
|
+
statut: string;
|
|
126953
|
+
echeance: string;
|
|
126954
|
+
montant: number;
|
|
126955
|
+
shippingIds: string[];
|
|
126956
|
+
fuel: number;
|
|
126957
|
+
total: number;
|
|
126958
|
+
bonDeCommende: string | null;
|
|
126959
|
+
isVariation: boolean;
|
|
126960
|
+
isActiveForReedited: boolean;
|
|
126961
|
+
docFacture: string;
|
|
126962
|
+
fullRef: string;
|
|
126963
|
+
modeReglement: string | null;
|
|
126964
|
+
source: string | null;
|
|
126965
|
+
} | null;
|
|
126966
|
+
country?: {
|
|
126967
|
+
id: number;
|
|
126968
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126969
|
+
code: string;
|
|
126970
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126971
|
+
name: string;
|
|
126972
|
+
phoneCode: string;
|
|
126973
|
+
} | undefined;
|
|
126974
|
+
billingCenter?: {
|
|
126975
|
+
id: number;
|
|
126976
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126977
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
126978
|
+
countryId: number;
|
|
126979
|
+
address: string;
|
|
126980
|
+
addressTwo: string | null;
|
|
126981
|
+
postalCode: string;
|
|
126982
|
+
city: string;
|
|
126983
|
+
telephoneOne: string;
|
|
126984
|
+
telephoneTwo: string | null;
|
|
126985
|
+
dafResponsibleName: string | null;
|
|
126986
|
+
email: string | null;
|
|
126987
|
+
intraVatNumber: string | null;
|
|
126988
|
+
numeroEori: string | null;
|
|
126989
|
+
comments: string | null;
|
|
126990
|
+
numCodeOne: string | null;
|
|
126991
|
+
numCodeTwo: string | null;
|
|
126992
|
+
isActif: boolean;
|
|
126993
|
+
isParis: boolean;
|
|
126994
|
+
isMedical: boolean;
|
|
126995
|
+
isService: boolean;
|
|
126996
|
+
dirigeant: string | null;
|
|
126997
|
+
dirigeantTel: string | null;
|
|
126998
|
+
dirigeantEmail: string | null;
|
|
126999
|
+
responsableComptable: string | null;
|
|
127000
|
+
responsableComptableTel: string | null;
|
|
127001
|
+
responsableComptableEmail: string | null;
|
|
127002
|
+
responsableDaf: string | null;
|
|
127003
|
+
responsableDafTel: string | null;
|
|
127004
|
+
responsableDafEmail: string | null;
|
|
127005
|
+
emailFacturation: string | null;
|
|
127006
|
+
logo: string | null;
|
|
127007
|
+
header: string | null;
|
|
127008
|
+
footer: string | null;
|
|
127009
|
+
emailOne: string | null;
|
|
127010
|
+
emailTwo: string | null;
|
|
127011
|
+
emailThree: string | null;
|
|
127012
|
+
tva: string | null;
|
|
127013
|
+
isMailing: boolean;
|
|
127014
|
+
telephone: string | null;
|
|
127015
|
+
billingCenterName: string;
|
|
127016
|
+
customerId: number | null;
|
|
127017
|
+
numeroSiren: string | null;
|
|
127018
|
+
invoiceMailOne: string;
|
|
127019
|
+
invoiceMailTwo: string | null;
|
|
127020
|
+
isSubmittedToFrenchVat: boolean;
|
|
127021
|
+
isActiveMailInstruction: boolean;
|
|
127022
|
+
isActiveVariation: boolean;
|
|
127023
|
+
isShowSecondBordereaux: boolean;
|
|
127024
|
+
isShowCustomerName: boolean;
|
|
127025
|
+
isShowCommercialValue: boolean;
|
|
127026
|
+
} | undefined;
|
|
127027
|
+
user?: {
|
|
127028
|
+
id: number;
|
|
127029
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127030
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127031
|
+
countryId: number | null;
|
|
127032
|
+
addressTwo: string;
|
|
127033
|
+
postalCode: string;
|
|
127034
|
+
city: string;
|
|
127035
|
+
telephoneOne: string;
|
|
127036
|
+
telephoneTwo: string;
|
|
127037
|
+
email: string;
|
|
127038
|
+
comments: string;
|
|
127039
|
+
numCodeOne: string;
|
|
127040
|
+
numCodeTwo: string;
|
|
127041
|
+
isActif: boolean;
|
|
127042
|
+
isParis: boolean;
|
|
127043
|
+
isMedical: boolean;
|
|
127044
|
+
isService: boolean;
|
|
127045
|
+
emailOne: string;
|
|
127046
|
+
emailTwo: string;
|
|
127047
|
+
addressOne: string;
|
|
127048
|
+
customerId: number;
|
|
127049
|
+
firstName: string;
|
|
127050
|
+
lastName: string;
|
|
127051
|
+
emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127052
|
+
password: string;
|
|
127053
|
+
poste: string;
|
|
127054
|
+
roles: string[];
|
|
127055
|
+
isOpsAdmin: boolean;
|
|
127056
|
+
civility: string;
|
|
127057
|
+
isShowCalculatrice: boolean;
|
|
127058
|
+
expedition: boolean;
|
|
127059
|
+
physicCompany: string;
|
|
127060
|
+
menus: string;
|
|
127061
|
+
ongletExpedition: string;
|
|
127062
|
+
chauffeurType: string;
|
|
127063
|
+
typeOfOps: string;
|
|
127064
|
+
prestation: string;
|
|
127065
|
+
tracking: string;
|
|
127066
|
+
expeditionCourse: string;
|
|
127067
|
+
carnetAddress: string;
|
|
127068
|
+
expeditionsCarnet: string;
|
|
127069
|
+
accessArchive: string;
|
|
127070
|
+
isShowImportMenu: boolean;
|
|
127071
|
+
isShowExportMenu: boolean;
|
|
127072
|
+
isShowCourseMenu: boolean;
|
|
127073
|
+
twoRoues: boolean;
|
|
127074
|
+
vt: boolean;
|
|
127075
|
+
lesTwo: boolean;
|
|
127076
|
+
isMiniTracking: boolean;
|
|
127077
|
+
isFullTracking: boolean;
|
|
127078
|
+
isShareCourseAndExpedition: boolean;
|
|
127079
|
+
isShareCarnetAdresse: boolean;
|
|
127080
|
+
isShareCarnetAdresseAndExpedition: boolean;
|
|
127081
|
+
isAccessAuxArchives: boolean;
|
|
127082
|
+
isShowInfo: boolean;
|
|
127083
|
+
photo: string | null;
|
|
127084
|
+
entreprisePhysique: string;
|
|
127085
|
+
isAdminChauffeur: boolean;
|
|
127086
|
+
isShowTracking: boolean;
|
|
127087
|
+
isSupportActivated: boolean;
|
|
127088
|
+
isClientTransitaire: boolean;
|
|
127089
|
+
vehiculeId: number;
|
|
127090
|
+
salaryId: number;
|
|
127091
|
+
} | undefined;
|
|
127092
|
+
pickupDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
127093
|
+
deliveryDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
127094
|
+
heureRecupererOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
127095
|
+
heureRemisOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
127096
|
+
heureRecupererChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
127097
|
+
heureRemisChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
127098
|
+
factureLines?: {
|
|
127099
|
+
id: number;
|
|
127100
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127101
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127102
|
+
tva: number;
|
|
127103
|
+
shippingId: number;
|
|
127104
|
+
classifications: string;
|
|
127105
|
+
comment: string | null;
|
|
127106
|
+
fuel: number;
|
|
127107
|
+
total: number;
|
|
127108
|
+
isVariation: boolean;
|
|
127109
|
+
fullRef: string;
|
|
127110
|
+
lineType: string;
|
|
127111
|
+
prix: number;
|
|
127112
|
+
qte: number;
|
|
127113
|
+
totalFinal: number;
|
|
127114
|
+
factureRef: number | null;
|
|
127115
|
+
oldFactureRef: number | null;
|
|
127116
|
+
factureId: number | null;
|
|
127117
|
+
facturationLineId: number;
|
|
127118
|
+
}[] | undefined;
|
|
127119
|
+
shippingManifests?: {
|
|
127120
|
+
id: number;
|
|
127121
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127122
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127123
|
+
shippingId: number;
|
|
127124
|
+
manifestId: number;
|
|
127125
|
+
} | undefined;
|
|
127126
|
+
shippingClassification?: {
|
|
127127
|
+
id: number;
|
|
127128
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127129
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127130
|
+
shippingId: number;
|
|
127131
|
+
europe: boolean;
|
|
127132
|
+
express: boolean;
|
|
127133
|
+
international: boolean;
|
|
127134
|
+
locale: boolean;
|
|
127135
|
+
national: boolean;
|
|
127136
|
+
premium: boolean;
|
|
127137
|
+
spx: boolean;
|
|
127138
|
+
spxDrive: boolean;
|
|
127139
|
+
spxPlus: boolean;
|
|
127140
|
+
spxSat: boolean;
|
|
127141
|
+
voiture: boolean;
|
|
127142
|
+
spxHOneHourThirty: boolean;
|
|
127143
|
+
spxHThreeHours: boolean;
|
|
127144
|
+
spxHNineHours: boolean;
|
|
127145
|
+
spxHTenHours: boolean;
|
|
127146
|
+
spxHTwelveHours: boolean;
|
|
127147
|
+
} | undefined;
|
|
127148
|
+
shippingCourse?: {
|
|
127149
|
+
id: number;
|
|
127150
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127151
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127152
|
+
userId: number;
|
|
127153
|
+
packageDescription: string;
|
|
127154
|
+
additionalInsurance: boolean;
|
|
127155
|
+
additionalInsuranceAmount: number | null;
|
|
127156
|
+
documents: string | null;
|
|
127157
|
+
valeurDouane: string | null;
|
|
127158
|
+
porteur: string;
|
|
127159
|
+
nombreRoue: string;
|
|
127160
|
+
shippingId: number;
|
|
127161
|
+
} | undefined;
|
|
127162
|
+
livraisonChauffeur?: {
|
|
127163
|
+
id: number;
|
|
127164
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127165
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127166
|
+
userId: number;
|
|
127167
|
+
shippingId: number;
|
|
127168
|
+
visibleTo: boolean;
|
|
127169
|
+
} | undefined;
|
|
127170
|
+
shippingPackage?: {
|
|
127171
|
+
id: number;
|
|
127172
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127173
|
+
length: number;
|
|
127174
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127175
|
+
additionalInsurance: boolean;
|
|
127176
|
+
additionalInsuranceAmount: number | null;
|
|
127177
|
+
documents: string[] | null;
|
|
127178
|
+
shippingId: number;
|
|
127179
|
+
ref: string | null;
|
|
127180
|
+
devises: string | null;
|
|
127181
|
+
width: number;
|
|
127182
|
+
height: number;
|
|
127183
|
+
weight: number;
|
|
127184
|
+
weightVolume: number;
|
|
127185
|
+
description: string;
|
|
127186
|
+
valueInDouane: string | null;
|
|
127187
|
+
valeurAssure: string | null;
|
|
127188
|
+
statut: string | null;
|
|
127189
|
+
montantDevi: string | null;
|
|
127190
|
+
nombreDevi: string | null;
|
|
127191
|
+
incoterm: string | null;
|
|
127192
|
+
} | undefined;
|
|
127193
|
+
shippingPod?: {
|
|
127194
|
+
id: number;
|
|
127195
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127196
|
+
date: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127197
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127198
|
+
shippingId: number;
|
|
127199
|
+
signature: string;
|
|
127200
|
+
coursier: string;
|
|
127201
|
+
heurs: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127202
|
+
picturePod: string | null;
|
|
127203
|
+
} | undefined;
|
|
127204
|
+
ramassageChauffeur?: {
|
|
127205
|
+
id: number;
|
|
127206
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127207
|
+
date: string | null;
|
|
127208
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127209
|
+
nom: string;
|
|
127210
|
+
prenom: string;
|
|
127211
|
+
userId: number;
|
|
127212
|
+
shippingId: number;
|
|
127213
|
+
visibleTo: boolean;
|
|
127214
|
+
signature: string | null;
|
|
127215
|
+
heurs: string | null;
|
|
127216
|
+
picture: string | null;
|
|
127217
|
+
} | undefined;
|
|
127218
|
+
shippingEmballage?: {
|
|
127219
|
+
id: number;
|
|
127220
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127221
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127222
|
+
shippingId: number;
|
|
127223
|
+
comment: string;
|
|
127224
|
+
nbrDiagnobag: number;
|
|
127225
|
+
hasSonde: boolean;
|
|
127226
|
+
hasDiagnobag: boolean;
|
|
127227
|
+
isPrepared: boolean;
|
|
127228
|
+
emballageId: number;
|
|
127229
|
+
typeSondeId: number;
|
|
127230
|
+
typeDiagnobagId: number;
|
|
127231
|
+
} | undefined;
|
|
127232
|
+
shippingAffecteds?: {
|
|
127233
|
+
id: number;
|
|
127234
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127235
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127236
|
+
userId: number;
|
|
127237
|
+
shippingId: number;
|
|
127238
|
+
}[] | undefined;
|
|
127239
|
+
shippingComments?: {
|
|
127240
|
+
id: number;
|
|
127241
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127242
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127243
|
+
userId: number;
|
|
127244
|
+
shippingId: number;
|
|
127245
|
+
content: string;
|
|
127246
|
+
}[] | undefined;
|
|
127247
|
+
shippingDetails?: {
|
|
127248
|
+
id: number;
|
|
127249
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127250
|
+
type: "expeditor" | "receiver";
|
|
127251
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127252
|
+
phoneCode: string;
|
|
127253
|
+
fullName: string;
|
|
127254
|
+
countryId: number | null;
|
|
127255
|
+
addressTwo: string | null;
|
|
127256
|
+
postalCode: string;
|
|
127257
|
+
city: string;
|
|
127258
|
+
email: string;
|
|
127259
|
+
civility: string;
|
|
127260
|
+
shippingId: number;
|
|
127261
|
+
company: string;
|
|
127262
|
+
address1: string;
|
|
127263
|
+
phoneOne: string;
|
|
127264
|
+
phoneTwo: string | null;
|
|
127265
|
+
}[] | undefined;
|
|
127266
|
+
shippingDocuments?: {
|
|
127267
|
+
id: number;
|
|
127268
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127269
|
+
type: string;
|
|
127270
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127271
|
+
nom: string;
|
|
127272
|
+
userId: number;
|
|
127273
|
+
shippingId: number;
|
|
127274
|
+
document: string;
|
|
127275
|
+
}[] | undefined;
|
|
127276
|
+
historiqueActions?: {
|
|
127277
|
+
id: number;
|
|
127278
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127279
|
+
type: "CONNEXION" | "DECONNEXION" | "ACTION";
|
|
127280
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127281
|
+
userId: number | null;
|
|
127282
|
+
shippingId: number | null;
|
|
127283
|
+
action: string;
|
|
127284
|
+
data: Record<string, any>;
|
|
127285
|
+
}[] | undefined;
|
|
127286
|
+
informationImportantes?: {
|
|
127287
|
+
id: number;
|
|
127288
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127289
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127290
|
+
userId: number;
|
|
127291
|
+
shippingId: number;
|
|
127292
|
+
information: string;
|
|
127293
|
+
}[] | undefined;
|
|
127294
|
+
shippingTrackings?: {
|
|
127295
|
+
id: number;
|
|
127296
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127297
|
+
status: string | null;
|
|
127298
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127299
|
+
isParis: boolean;
|
|
127300
|
+
isMedical: boolean;
|
|
127301
|
+
isService: boolean;
|
|
127302
|
+
userId: number;
|
|
127303
|
+
chauffeur: string;
|
|
127304
|
+
shippingId: number;
|
|
127305
|
+
dateTracking: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127306
|
+
dateSuivi: string;
|
|
127307
|
+
heurSuivi: string;
|
|
127308
|
+
details: string;
|
|
127309
|
+
agents: string;
|
|
127310
|
+
visible: boolean;
|
|
127311
|
+
isTemplate: boolean;
|
|
127312
|
+
state: boolean;
|
|
127313
|
+
location: string | null;
|
|
127314
|
+
isDriver: boolean;
|
|
127315
|
+
userOpsId: number | null;
|
|
127316
|
+
dateValidateOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
127317
|
+
}[] | undefined;
|
|
127318
|
+
}, {
|
|
127319
|
+
id: number;
|
|
127320
|
+
createdAt: Date;
|
|
127321
|
+
updatedAt: Date;
|
|
127322
|
+
userId: number | null;
|
|
127323
|
+
billingCenterId: number | null;
|
|
127324
|
+
trackingMail: string | null;
|
|
127325
|
+
customerRef: string | null;
|
|
127326
|
+
pickupInstruction: string | null;
|
|
127327
|
+
deliveryInstruction: string | null;
|
|
127328
|
+
billContact: string | null;
|
|
127329
|
+
pickupTime: string | null;
|
|
127330
|
+
deliveryTime: string | null;
|
|
127331
|
+
ref: number | null;
|
|
127332
|
+
trackingNumber: string | null;
|
|
127333
|
+
classifications: string | null;
|
|
127334
|
+
userName: string | null;
|
|
127335
|
+
transportType: string | null;
|
|
127336
|
+
isDeleted: boolean | null;
|
|
127337
|
+
codeDonneur: string | null;
|
|
127338
|
+
codeReceveur: string | null;
|
|
127339
|
+
hasManifest: boolean;
|
|
127340
|
+
isOps: boolean;
|
|
127341
|
+
comment: string | null;
|
|
127342
|
+
createdFor: number | null;
|
|
127343
|
+
isArchived: boolean;
|
|
127344
|
+
isNeedArchive: boolean;
|
|
127345
|
+
isAnnulee: boolean;
|
|
127346
|
+
raison: string | null;
|
|
127347
|
+
color: string | null;
|
|
127348
|
+
docBordereaux: string | null;
|
|
127349
|
+
docAccompagnement: string | null;
|
|
127350
|
+
category: "course" | "all" | "import" | "export";
|
|
127351
|
+
typeExpedition: "expedition" | "course";
|
|
127352
|
+
driverId: number;
|
|
127353
|
+
typeDeRoue: string | null;
|
|
127354
|
+
isRecupererOps: boolean | null;
|
|
127355
|
+
isRemisOps: boolean | null;
|
|
127356
|
+
isRecupererChauffeur: boolean | null;
|
|
127357
|
+
isRemisChauffeur: boolean | null;
|
|
127358
|
+
lastCronRunAt: Date;
|
|
127359
|
+
devises: string | null;
|
|
127360
|
+
provenanceCommande: string | null;
|
|
127361
|
+
hasEmballage: boolean;
|
|
127362
|
+
facture: {
|
|
127363
|
+
id: number;
|
|
127364
|
+
createdAt: Date;
|
|
127365
|
+
message: string | null;
|
|
127366
|
+
updatedAt: Date;
|
|
127367
|
+
isParis: boolean;
|
|
127368
|
+
isMedical: boolean;
|
|
127369
|
+
isService: boolean;
|
|
127370
|
+
tva: number;
|
|
127371
|
+
billingCenterId: number;
|
|
127372
|
+
ref: number;
|
|
127373
|
+
isDeleted: boolean;
|
|
127374
|
+
provenanceCommande: string | null;
|
|
127375
|
+
statut: string;
|
|
127376
|
+
echeance: string;
|
|
127377
|
+
montant: number;
|
|
127378
|
+
shippingIds: string[];
|
|
127379
|
+
fuel: number;
|
|
127380
|
+
total: number;
|
|
127381
|
+
bonDeCommende: string | null;
|
|
127382
|
+
isVariation: boolean;
|
|
127383
|
+
isActiveForReedited: boolean;
|
|
127384
|
+
docFacture: string;
|
|
127385
|
+
fullRef: string;
|
|
127386
|
+
modeReglement: string | null;
|
|
127387
|
+
source: string | null;
|
|
127388
|
+
} | null;
|
|
127389
|
+
country?: {
|
|
127390
|
+
id: number;
|
|
127391
|
+
createdAt: Date;
|
|
127392
|
+
code: string;
|
|
127393
|
+
updatedAt: Date;
|
|
127394
|
+
name: string;
|
|
127395
|
+
phoneCode: string;
|
|
127396
|
+
} | undefined;
|
|
127397
|
+
billingCenter?: {
|
|
127398
|
+
id: number;
|
|
127399
|
+
createdAt: Date;
|
|
127400
|
+
updatedAt: Date;
|
|
127401
|
+
countryId: number;
|
|
127402
|
+
address: string;
|
|
127403
|
+
addressTwo: string | null;
|
|
127404
|
+
postalCode: string;
|
|
127405
|
+
city: string;
|
|
127406
|
+
telephoneOne: string;
|
|
127407
|
+
telephoneTwo: string | null;
|
|
127408
|
+
dafResponsibleName: string | null;
|
|
127409
|
+
email: string | null;
|
|
127410
|
+
intraVatNumber: string | null;
|
|
127411
|
+
numeroEori: string | null;
|
|
127412
|
+
comments: string | null;
|
|
127413
|
+
numCodeOne: string | null;
|
|
127414
|
+
numCodeTwo: string | null;
|
|
127415
|
+
isActif: boolean;
|
|
127416
|
+
isParis: boolean;
|
|
127417
|
+
isMedical: boolean;
|
|
127418
|
+
isService: boolean;
|
|
127419
|
+
dirigeant: string | null;
|
|
127420
|
+
dirigeantTel: string | null;
|
|
127421
|
+
dirigeantEmail: string | null;
|
|
127422
|
+
responsableComptable: string | null;
|
|
127423
|
+
responsableComptableTel: string | null;
|
|
127424
|
+
responsableComptableEmail: string | null;
|
|
127425
|
+
responsableDaf: string | null;
|
|
127426
|
+
responsableDafTel: string | null;
|
|
127427
|
+
responsableDafEmail: string | null;
|
|
127428
|
+
emailFacturation: string | null;
|
|
127429
|
+
logo: string | null;
|
|
127430
|
+
header: string | null;
|
|
127431
|
+
footer: string | null;
|
|
127432
|
+
emailOne: string | null;
|
|
127433
|
+
emailTwo: string | null;
|
|
127434
|
+
emailThree: string | null;
|
|
127435
|
+
tva: string | null;
|
|
127436
|
+
isMailing: boolean;
|
|
127437
|
+
telephone: string | null;
|
|
127438
|
+
billingCenterName: string;
|
|
127439
|
+
customerId: number | null;
|
|
127440
|
+
numeroSiren: string | null;
|
|
127441
|
+
invoiceMailOne: string;
|
|
127442
|
+
invoiceMailTwo: string | null;
|
|
127443
|
+
isSubmittedToFrenchVat: boolean;
|
|
127444
|
+
isActiveMailInstruction: boolean;
|
|
127445
|
+
isActiveVariation: boolean;
|
|
127446
|
+
isShowSecondBordereaux: boolean;
|
|
127447
|
+
isShowCustomerName: boolean;
|
|
127448
|
+
isShowCommercialValue: boolean;
|
|
127449
|
+
} | undefined;
|
|
127450
|
+
user?: {
|
|
127451
|
+
id: number;
|
|
127452
|
+
createdAt: Date;
|
|
127453
|
+
updatedAt: Date;
|
|
127454
|
+
countryId: number | null;
|
|
127455
|
+
addressTwo: string;
|
|
127456
|
+
postalCode: string;
|
|
127457
|
+
city: string;
|
|
127458
|
+
telephoneOne: string;
|
|
127459
|
+
telephoneTwo: string;
|
|
127460
|
+
email: string;
|
|
127461
|
+
comments: string;
|
|
127462
|
+
numCodeOne: string;
|
|
127463
|
+
numCodeTwo: string;
|
|
127464
|
+
isActif: boolean;
|
|
127465
|
+
isParis: boolean;
|
|
127466
|
+
isMedical: boolean;
|
|
127467
|
+
isService: boolean;
|
|
127468
|
+
emailOne: string;
|
|
127469
|
+
emailTwo: string;
|
|
127470
|
+
addressOne: string;
|
|
127471
|
+
customerId: number;
|
|
127472
|
+
firstName: string;
|
|
127473
|
+
lastName: string;
|
|
127474
|
+
emailVerifiedAt: Date;
|
|
127475
|
+
password: string;
|
|
127476
|
+
poste: string;
|
|
127477
|
+
roles: string[];
|
|
127478
|
+
isOpsAdmin: boolean;
|
|
127479
|
+
civility: string;
|
|
127480
|
+
isShowCalculatrice: boolean;
|
|
127481
|
+
expedition: boolean;
|
|
127482
|
+
physicCompany: string;
|
|
127483
|
+
menus: string;
|
|
127484
|
+
ongletExpedition: string;
|
|
127485
|
+
chauffeurType: string;
|
|
127486
|
+
typeOfOps: string;
|
|
127487
|
+
prestation: string;
|
|
127488
|
+
tracking: string;
|
|
127489
|
+
expeditionCourse: string;
|
|
127490
|
+
carnetAddress: string;
|
|
127491
|
+
expeditionsCarnet: string;
|
|
127492
|
+
accessArchive: string;
|
|
127493
|
+
isShowImportMenu: boolean;
|
|
127494
|
+
isShowExportMenu: boolean;
|
|
127495
|
+
isShowCourseMenu: boolean;
|
|
127496
|
+
twoRoues: boolean;
|
|
127497
|
+
vt: boolean;
|
|
127498
|
+
lesTwo: boolean;
|
|
127499
|
+
isMiniTracking: boolean;
|
|
127500
|
+
isFullTracking: boolean;
|
|
127501
|
+
isShareCourseAndExpedition: boolean;
|
|
127502
|
+
isShareCarnetAdresse: boolean;
|
|
127503
|
+
isShareCarnetAdresseAndExpedition: boolean;
|
|
127504
|
+
isAccessAuxArchives: boolean;
|
|
127505
|
+
isShowInfo: boolean;
|
|
127506
|
+
photo: string | null;
|
|
127507
|
+
entreprisePhysique: string;
|
|
127508
|
+
isAdminChauffeur: boolean;
|
|
127509
|
+
isShowTracking: boolean;
|
|
127510
|
+
isSupportActivated: boolean;
|
|
127511
|
+
isClientTransitaire: boolean;
|
|
127512
|
+
vehiculeId: number;
|
|
127513
|
+
salaryId: number;
|
|
127514
|
+
} | undefined;
|
|
127515
|
+
pickupDate?: Date | undefined;
|
|
127516
|
+
deliveryDate?: Date | undefined;
|
|
127517
|
+
heureRecupererOps?: Date | undefined;
|
|
127518
|
+
heureRemisOps?: Date | undefined;
|
|
127519
|
+
heureRecupererChauffeur?: Date | undefined;
|
|
127520
|
+
heureRemisChauffeur?: Date | undefined;
|
|
127521
|
+
factureLines?: {
|
|
127522
|
+
id: number;
|
|
127523
|
+
createdAt: Date;
|
|
127524
|
+
updatedAt: Date;
|
|
127525
|
+
tva: number;
|
|
127526
|
+
shippingId: number;
|
|
127527
|
+
classifications: string;
|
|
127528
|
+
comment: string | null;
|
|
127529
|
+
fuel: number;
|
|
127530
|
+
total: number;
|
|
127531
|
+
isVariation: boolean;
|
|
127532
|
+
fullRef: string;
|
|
127533
|
+
lineType: string;
|
|
127534
|
+
prix: number;
|
|
127535
|
+
qte: number;
|
|
127536
|
+
totalFinal: number;
|
|
127537
|
+
factureRef: number | null;
|
|
127538
|
+
oldFactureRef: number | null;
|
|
127539
|
+
factureId: number | null;
|
|
127540
|
+
facturationLineId: number;
|
|
127541
|
+
}[] | undefined;
|
|
127542
|
+
shippingManifests?: {
|
|
127543
|
+
id: number;
|
|
127544
|
+
createdAt: Date;
|
|
127545
|
+
updatedAt: Date;
|
|
127546
|
+
shippingId: number;
|
|
127547
|
+
manifestId: number;
|
|
127548
|
+
} | undefined;
|
|
127549
|
+
shippingClassification?: {
|
|
127550
|
+
id: number;
|
|
127551
|
+
createdAt: Date;
|
|
127552
|
+
updatedAt: Date;
|
|
127553
|
+
shippingId: number;
|
|
127554
|
+
europe: boolean;
|
|
127555
|
+
express: boolean;
|
|
127556
|
+
international: boolean;
|
|
127557
|
+
locale: boolean;
|
|
127558
|
+
national: boolean;
|
|
127559
|
+
premium: boolean;
|
|
127560
|
+
spx: boolean;
|
|
127561
|
+
spxDrive: boolean;
|
|
127562
|
+
spxPlus: boolean;
|
|
127563
|
+
spxSat: boolean;
|
|
127564
|
+
voiture: boolean;
|
|
127565
|
+
spxHOneHourThirty: boolean;
|
|
127566
|
+
spxHThreeHours: boolean;
|
|
127567
|
+
spxHNineHours: boolean;
|
|
127568
|
+
spxHTenHours: boolean;
|
|
127569
|
+
spxHTwelveHours: boolean;
|
|
127570
|
+
} | undefined;
|
|
127571
|
+
shippingCourse?: {
|
|
127572
|
+
id: number;
|
|
127573
|
+
createdAt: Date;
|
|
127574
|
+
updatedAt: Date;
|
|
127575
|
+
userId: number;
|
|
127576
|
+
packageDescription: string;
|
|
127577
|
+
additionalInsurance: boolean;
|
|
127578
|
+
additionalInsuranceAmount: number | null;
|
|
127579
|
+
documents: string | null;
|
|
127580
|
+
valeurDouane: string | null;
|
|
127581
|
+
porteur: string;
|
|
127582
|
+
nombreRoue: string;
|
|
127583
|
+
shippingId: number;
|
|
127584
|
+
} | undefined;
|
|
127585
|
+
livraisonChauffeur?: {
|
|
127586
|
+
id: number;
|
|
127587
|
+
createdAt: Date;
|
|
127588
|
+
updatedAt: Date;
|
|
127589
|
+
userId: number;
|
|
127590
|
+
shippingId: number;
|
|
127591
|
+
visibleTo: boolean;
|
|
127592
|
+
} | undefined;
|
|
127593
|
+
shippingPackage?: {
|
|
127594
|
+
id: number;
|
|
127595
|
+
createdAt: Date;
|
|
127596
|
+
length: number;
|
|
127597
|
+
updatedAt: Date;
|
|
127598
|
+
additionalInsurance: boolean;
|
|
127599
|
+
additionalInsuranceAmount: number | null;
|
|
127600
|
+
documents: string[] | null;
|
|
127601
|
+
shippingId: number;
|
|
127602
|
+
ref: string | null;
|
|
127603
|
+
devises: string | null;
|
|
127604
|
+
width: number;
|
|
127605
|
+
height: number;
|
|
127606
|
+
weight: number;
|
|
127607
|
+
weightVolume: number;
|
|
127608
|
+
description: string;
|
|
127609
|
+
valueInDouane: string | null;
|
|
127610
|
+
valeurAssure: string | null;
|
|
127611
|
+
statut: string | null;
|
|
127612
|
+
montantDevi: string | null;
|
|
127613
|
+
nombreDevi: string | null;
|
|
127614
|
+
incoterm: string | null;
|
|
127615
|
+
} | undefined;
|
|
127616
|
+
shippingPod?: {
|
|
127617
|
+
id: number;
|
|
127618
|
+
createdAt: Date;
|
|
127619
|
+
date: Date;
|
|
127620
|
+
updatedAt: Date;
|
|
127621
|
+
shippingId: number;
|
|
127622
|
+
signature: string;
|
|
127623
|
+
coursier: string;
|
|
127624
|
+
heurs: Date;
|
|
127625
|
+
picturePod: string | null;
|
|
127626
|
+
} | undefined;
|
|
127627
|
+
ramassageChauffeur?: {
|
|
127628
|
+
id: number;
|
|
127629
|
+
createdAt: Date;
|
|
127630
|
+
date: string | null;
|
|
127631
|
+
updatedAt: Date;
|
|
127632
|
+
nom: string;
|
|
127633
|
+
prenom: string;
|
|
127634
|
+
userId: number;
|
|
127635
|
+
shippingId: number;
|
|
127636
|
+
visibleTo: boolean;
|
|
127637
|
+
signature: string | null;
|
|
127638
|
+
heurs: string | null;
|
|
127639
|
+
picture: string | null;
|
|
127640
|
+
} | undefined;
|
|
127641
|
+
shippingEmballage?: {
|
|
127642
|
+
id: number;
|
|
127643
|
+
createdAt: Date;
|
|
127644
|
+
updatedAt: Date;
|
|
127645
|
+
shippingId: number;
|
|
127646
|
+
comment: string;
|
|
127647
|
+
nbrDiagnobag: number;
|
|
127648
|
+
hasSonde: boolean;
|
|
127649
|
+
hasDiagnobag: boolean;
|
|
127650
|
+
isPrepared: boolean;
|
|
127651
|
+
emballageId: number;
|
|
127652
|
+
typeSondeId: number;
|
|
127653
|
+
typeDiagnobagId: number;
|
|
127654
|
+
} | undefined;
|
|
127655
|
+
shippingAffecteds?: {
|
|
127656
|
+
id: number;
|
|
127657
|
+
createdAt: Date;
|
|
127658
|
+
updatedAt: Date;
|
|
127659
|
+
userId: number;
|
|
127660
|
+
shippingId: number;
|
|
127661
|
+
}[] | undefined;
|
|
127662
|
+
shippingComments?: {
|
|
127663
|
+
id: number;
|
|
127664
|
+
createdAt: Date;
|
|
127665
|
+
updatedAt: Date;
|
|
127666
|
+
userId: number;
|
|
127667
|
+
shippingId: number;
|
|
127668
|
+
content: string;
|
|
127669
|
+
}[] | undefined;
|
|
127670
|
+
shippingDetails?: {
|
|
127671
|
+
id: number;
|
|
127672
|
+
createdAt: Date;
|
|
127673
|
+
type: "expeditor" | "receiver";
|
|
127674
|
+
updatedAt: Date;
|
|
127675
|
+
phoneCode: string;
|
|
127676
|
+
fullName: string;
|
|
127677
|
+
countryId: number | null;
|
|
127678
|
+
addressTwo: string | null;
|
|
127679
|
+
postalCode: string;
|
|
127680
|
+
city: string;
|
|
127681
|
+
email: string;
|
|
127682
|
+
civility: string;
|
|
127683
|
+
shippingId: number;
|
|
127684
|
+
company: string;
|
|
127685
|
+
address1: string;
|
|
127686
|
+
phoneOne: string;
|
|
127687
|
+
phoneTwo: string | null;
|
|
127688
|
+
}[] | undefined;
|
|
127689
|
+
shippingDocuments?: {
|
|
127690
|
+
id: number;
|
|
127691
|
+
createdAt: Date;
|
|
127692
|
+
type: string;
|
|
127693
|
+
updatedAt: Date;
|
|
127694
|
+
nom: string;
|
|
127695
|
+
userId: number;
|
|
127696
|
+
shippingId: number;
|
|
127697
|
+
document: string;
|
|
127698
|
+
}[] | undefined;
|
|
127699
|
+
historiqueActions?: {
|
|
127700
|
+
id: number;
|
|
127701
|
+
createdAt: Date;
|
|
127702
|
+
type: "CONNEXION" | "DECONNEXION" | "ACTION";
|
|
127703
|
+
updatedAt: Date;
|
|
127704
|
+
userId: number | null;
|
|
127705
|
+
shippingId: number | null;
|
|
127706
|
+
action: string;
|
|
127707
|
+
data: Record<string, any>;
|
|
127708
|
+
}[] | undefined;
|
|
127709
|
+
informationImportantes?: {
|
|
127710
|
+
id: number;
|
|
127711
|
+
createdAt: Date;
|
|
127712
|
+
updatedAt: Date;
|
|
127713
|
+
userId: number;
|
|
127714
|
+
shippingId: number;
|
|
127715
|
+
information: string;
|
|
127716
|
+
}[] | undefined;
|
|
127717
|
+
shippingTrackings?: {
|
|
127718
|
+
id: number;
|
|
127719
|
+
createdAt: Date;
|
|
127720
|
+
status: string | null;
|
|
127721
|
+
updatedAt: Date;
|
|
127722
|
+
isParis: boolean;
|
|
127723
|
+
isMedical: boolean;
|
|
127724
|
+
isService: boolean;
|
|
127725
|
+
userId: number;
|
|
127726
|
+
chauffeur: string;
|
|
127727
|
+
shippingId: number;
|
|
127728
|
+
dateTracking: Date;
|
|
127729
|
+
dateSuivi: string;
|
|
127730
|
+
heurSuivi: string;
|
|
127731
|
+
details: string;
|
|
127732
|
+
agents: string;
|
|
127733
|
+
visible: boolean;
|
|
127734
|
+
isTemplate: boolean;
|
|
127735
|
+
state: boolean;
|
|
127736
|
+
location: string | null;
|
|
127737
|
+
isDriver: boolean;
|
|
127738
|
+
userOpsId: number | null;
|
|
127739
|
+
dateValidateOps?: Date | undefined;
|
|
127740
|
+
}[] | undefined;
|
|
127741
|
+
}>, "many">;
|
|
127742
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
127743
|
+
data: {
|
|
127744
|
+
id: number;
|
|
127745
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127746
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127747
|
+
userId: number | null;
|
|
127748
|
+
billingCenterId: number | null;
|
|
127749
|
+
trackingMail: string | null;
|
|
127750
|
+
customerRef: string | null;
|
|
127751
|
+
pickupInstruction: string | null;
|
|
127752
|
+
deliveryInstruction: string | null;
|
|
127753
|
+
billContact: string | null;
|
|
127754
|
+
pickupTime: string | null;
|
|
127755
|
+
deliveryTime: string | null;
|
|
127756
|
+
ref: number | null;
|
|
127757
|
+
trackingNumber: string | null;
|
|
127758
|
+
classifications: string | null;
|
|
127759
|
+
userName: string | null;
|
|
127760
|
+
transportType: string | null;
|
|
127761
|
+
isDeleted: boolean | null;
|
|
127762
|
+
codeDonneur: string | null;
|
|
127763
|
+
codeReceveur: string | null;
|
|
127764
|
+
hasManifest: boolean;
|
|
127765
|
+
isOps: boolean;
|
|
127766
|
+
comment: string | null;
|
|
127767
|
+
createdFor: number | null;
|
|
127768
|
+
isArchived: boolean;
|
|
127769
|
+
isNeedArchive: boolean;
|
|
127770
|
+
isAnnulee: boolean;
|
|
127771
|
+
raison: string | null;
|
|
127772
|
+
color: string | null;
|
|
127773
|
+
docBordereaux: string | null;
|
|
127774
|
+
docAccompagnement: string | null;
|
|
127775
|
+
category: "course" | "all" | "import" | "export";
|
|
127776
|
+
typeExpedition: "expedition" | "course";
|
|
127777
|
+
driverId: number;
|
|
127778
|
+
typeDeRoue: string | null;
|
|
127779
|
+
isRecupererOps: boolean | null;
|
|
127780
|
+
isRemisOps: boolean | null;
|
|
127781
|
+
isRecupererChauffeur: boolean | null;
|
|
127782
|
+
isRemisChauffeur: boolean | null;
|
|
127783
|
+
lastCronRunAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127784
|
+
devises: string | null;
|
|
127785
|
+
provenanceCommande: string | null;
|
|
127786
|
+
hasEmballage: boolean;
|
|
127787
|
+
facture: {
|
|
127788
|
+
id: number;
|
|
127789
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127790
|
+
message: string | null;
|
|
127791
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127792
|
+
isParis: boolean;
|
|
127793
|
+
isMedical: boolean;
|
|
127794
|
+
isService: boolean;
|
|
127795
|
+
tva: number;
|
|
127796
|
+
billingCenterId: number;
|
|
127797
|
+
ref: number;
|
|
127798
|
+
isDeleted: boolean;
|
|
127799
|
+
provenanceCommande: string | null;
|
|
127800
|
+
statut: string;
|
|
127801
|
+
echeance: string;
|
|
127802
|
+
montant: number;
|
|
127803
|
+
shippingIds: string[];
|
|
127804
|
+
fuel: number;
|
|
127805
|
+
total: number;
|
|
127806
|
+
bonDeCommende: string | null;
|
|
127807
|
+
isVariation: boolean;
|
|
127808
|
+
isActiveForReedited: boolean;
|
|
127809
|
+
docFacture: string;
|
|
127810
|
+
fullRef: string;
|
|
127811
|
+
modeReglement: string | null;
|
|
127812
|
+
source: string | null;
|
|
127813
|
+
} | null;
|
|
127814
|
+
country?: {
|
|
127815
|
+
id: number;
|
|
127816
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127817
|
+
code: string;
|
|
127818
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127819
|
+
name: string;
|
|
127820
|
+
phoneCode: string;
|
|
127821
|
+
} | undefined;
|
|
127822
|
+
billingCenter?: {
|
|
127823
|
+
id: number;
|
|
127824
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127825
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127826
|
+
countryId: number;
|
|
127827
|
+
address: string;
|
|
127828
|
+
addressTwo: string | null;
|
|
127829
|
+
postalCode: string;
|
|
127830
|
+
city: string;
|
|
127831
|
+
telephoneOne: string;
|
|
127832
|
+
telephoneTwo: string | null;
|
|
127833
|
+
dafResponsibleName: string | null;
|
|
127834
|
+
email: string | null;
|
|
127835
|
+
intraVatNumber: string | null;
|
|
127836
|
+
numeroEori: string | null;
|
|
127837
|
+
comments: string | null;
|
|
127838
|
+
numCodeOne: string | null;
|
|
127839
|
+
numCodeTwo: string | null;
|
|
127840
|
+
isActif: boolean;
|
|
127841
|
+
isParis: boolean;
|
|
127842
|
+
isMedical: boolean;
|
|
127843
|
+
isService: boolean;
|
|
127844
|
+
dirigeant: string | null;
|
|
127845
|
+
dirigeantTel: string | null;
|
|
127846
|
+
dirigeantEmail: string | null;
|
|
127847
|
+
responsableComptable: string | null;
|
|
127848
|
+
responsableComptableTel: string | null;
|
|
127849
|
+
responsableComptableEmail: string | null;
|
|
127850
|
+
responsableDaf: string | null;
|
|
127851
|
+
responsableDafTel: string | null;
|
|
127852
|
+
responsableDafEmail: string | null;
|
|
127853
|
+
emailFacturation: string | null;
|
|
127854
|
+
logo: string | null;
|
|
127855
|
+
header: string | null;
|
|
127856
|
+
footer: string | null;
|
|
127857
|
+
emailOne: string | null;
|
|
127858
|
+
emailTwo: string | null;
|
|
127859
|
+
emailThree: string | null;
|
|
127860
|
+
tva: string | null;
|
|
127861
|
+
isMailing: boolean;
|
|
127862
|
+
telephone: string | null;
|
|
127863
|
+
billingCenterName: string;
|
|
127864
|
+
customerId: number | null;
|
|
127865
|
+
numeroSiren: string | null;
|
|
127866
|
+
invoiceMailOne: string;
|
|
127867
|
+
invoiceMailTwo: string | null;
|
|
127868
|
+
isSubmittedToFrenchVat: boolean;
|
|
127869
|
+
isActiveMailInstruction: boolean;
|
|
127870
|
+
isActiveVariation: boolean;
|
|
127871
|
+
isShowSecondBordereaux: boolean;
|
|
127872
|
+
isShowCustomerName: boolean;
|
|
127873
|
+
isShowCommercialValue: boolean;
|
|
127874
|
+
} | undefined;
|
|
127875
|
+
user?: {
|
|
127876
|
+
id: number;
|
|
127877
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127878
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127879
|
+
countryId: number | null;
|
|
127880
|
+
addressTwo: string;
|
|
127881
|
+
postalCode: string;
|
|
127882
|
+
city: string;
|
|
127883
|
+
telephoneOne: string;
|
|
127884
|
+
telephoneTwo: string;
|
|
127885
|
+
email: string;
|
|
127886
|
+
comments: string;
|
|
127887
|
+
numCodeOne: string;
|
|
127888
|
+
numCodeTwo: string;
|
|
127889
|
+
isActif: boolean;
|
|
127890
|
+
isParis: boolean;
|
|
127891
|
+
isMedical: boolean;
|
|
127892
|
+
isService: boolean;
|
|
127893
|
+
emailOne: string;
|
|
127894
|
+
emailTwo: string;
|
|
127895
|
+
addressOne: string;
|
|
127896
|
+
customerId: number;
|
|
127897
|
+
firstName: string;
|
|
127898
|
+
lastName: string;
|
|
127899
|
+
emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127900
|
+
password: string;
|
|
127901
|
+
poste: string;
|
|
127902
|
+
roles: string[];
|
|
127903
|
+
isOpsAdmin: boolean;
|
|
127904
|
+
civility: string;
|
|
127905
|
+
isShowCalculatrice: boolean;
|
|
127906
|
+
expedition: boolean;
|
|
127907
|
+
physicCompany: string;
|
|
127908
|
+
menus: string;
|
|
127909
|
+
ongletExpedition: string;
|
|
127910
|
+
chauffeurType: string;
|
|
127911
|
+
typeOfOps: string;
|
|
127912
|
+
prestation: string;
|
|
127913
|
+
tracking: string;
|
|
127914
|
+
expeditionCourse: string;
|
|
127915
|
+
carnetAddress: string;
|
|
127916
|
+
expeditionsCarnet: string;
|
|
127917
|
+
accessArchive: string;
|
|
127918
|
+
isShowImportMenu: boolean;
|
|
127919
|
+
isShowExportMenu: boolean;
|
|
127920
|
+
isShowCourseMenu: boolean;
|
|
127921
|
+
twoRoues: boolean;
|
|
127922
|
+
vt: boolean;
|
|
127923
|
+
lesTwo: boolean;
|
|
127924
|
+
isMiniTracking: boolean;
|
|
127925
|
+
isFullTracking: boolean;
|
|
127926
|
+
isShareCourseAndExpedition: boolean;
|
|
127927
|
+
isShareCarnetAdresse: boolean;
|
|
127928
|
+
isShareCarnetAdresseAndExpedition: boolean;
|
|
127929
|
+
isAccessAuxArchives: boolean;
|
|
127930
|
+
isShowInfo: boolean;
|
|
127931
|
+
photo: string | null;
|
|
127932
|
+
entreprisePhysique: string;
|
|
127933
|
+
isAdminChauffeur: boolean;
|
|
127934
|
+
isShowTracking: boolean;
|
|
127935
|
+
isSupportActivated: boolean;
|
|
127936
|
+
isClientTransitaire: boolean;
|
|
127937
|
+
vehiculeId: number;
|
|
127938
|
+
salaryId: number;
|
|
127939
|
+
} | undefined;
|
|
127940
|
+
pickupDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
127941
|
+
deliveryDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
127942
|
+
heureRecupererOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
127943
|
+
heureRemisOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
127944
|
+
heureRecupererChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
127945
|
+
heureRemisChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
127946
|
+
factureLines?: {
|
|
127947
|
+
id: number;
|
|
127948
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127949
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127950
|
+
tva: number;
|
|
127951
|
+
shippingId: number;
|
|
127952
|
+
classifications: string;
|
|
127953
|
+
comment: string | null;
|
|
127954
|
+
fuel: number;
|
|
127955
|
+
total: number;
|
|
127956
|
+
isVariation: boolean;
|
|
127957
|
+
fullRef: string;
|
|
127958
|
+
lineType: string;
|
|
127959
|
+
prix: number;
|
|
127960
|
+
qte: number;
|
|
127961
|
+
totalFinal: number;
|
|
127962
|
+
factureRef: number | null;
|
|
127963
|
+
oldFactureRef: number | null;
|
|
127964
|
+
factureId: number | null;
|
|
127965
|
+
facturationLineId: number;
|
|
127966
|
+
}[] | undefined;
|
|
127967
|
+
shippingManifests?: {
|
|
127968
|
+
id: number;
|
|
127969
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127970
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127971
|
+
shippingId: number;
|
|
127972
|
+
manifestId: number;
|
|
127973
|
+
} | undefined;
|
|
127974
|
+
shippingClassification?: {
|
|
127975
|
+
id: number;
|
|
127976
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127977
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127978
|
+
shippingId: number;
|
|
127979
|
+
europe: boolean;
|
|
127980
|
+
express: boolean;
|
|
127981
|
+
international: boolean;
|
|
127982
|
+
locale: boolean;
|
|
127983
|
+
national: boolean;
|
|
127984
|
+
premium: boolean;
|
|
127985
|
+
spx: boolean;
|
|
127986
|
+
spxDrive: boolean;
|
|
127987
|
+
spxPlus: boolean;
|
|
127988
|
+
spxSat: boolean;
|
|
127989
|
+
voiture: boolean;
|
|
127990
|
+
spxHOneHourThirty: boolean;
|
|
127991
|
+
spxHThreeHours: boolean;
|
|
127992
|
+
spxHNineHours: boolean;
|
|
127993
|
+
spxHTenHours: boolean;
|
|
127994
|
+
spxHTwelveHours: boolean;
|
|
127995
|
+
} | undefined;
|
|
127996
|
+
shippingCourse?: {
|
|
127997
|
+
id: number;
|
|
127998
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
127999
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128000
|
+
userId: number;
|
|
128001
|
+
packageDescription: string;
|
|
128002
|
+
additionalInsurance: boolean;
|
|
128003
|
+
additionalInsuranceAmount: number | null;
|
|
128004
|
+
documents: string | null;
|
|
128005
|
+
valeurDouane: string | null;
|
|
128006
|
+
porteur: string;
|
|
128007
|
+
nombreRoue: string;
|
|
128008
|
+
shippingId: number;
|
|
128009
|
+
} | undefined;
|
|
128010
|
+
livraisonChauffeur?: {
|
|
128011
|
+
id: number;
|
|
128012
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128013
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128014
|
+
userId: number;
|
|
128015
|
+
shippingId: number;
|
|
128016
|
+
visibleTo: boolean;
|
|
128017
|
+
} | undefined;
|
|
128018
|
+
shippingPackage?: {
|
|
128019
|
+
id: number;
|
|
128020
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128021
|
+
length: number;
|
|
128022
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128023
|
+
additionalInsurance: boolean;
|
|
128024
|
+
additionalInsuranceAmount: number | null;
|
|
128025
|
+
documents: string[] | null;
|
|
128026
|
+
shippingId: number;
|
|
128027
|
+
ref: string | null;
|
|
128028
|
+
devises: string | null;
|
|
128029
|
+
width: number;
|
|
128030
|
+
height: number;
|
|
128031
|
+
weight: number;
|
|
128032
|
+
weightVolume: number;
|
|
128033
|
+
description: string;
|
|
128034
|
+
valueInDouane: string | null;
|
|
128035
|
+
valeurAssure: string | null;
|
|
128036
|
+
statut: string | null;
|
|
128037
|
+
montantDevi: string | null;
|
|
128038
|
+
nombreDevi: string | null;
|
|
128039
|
+
incoterm: string | null;
|
|
128040
|
+
} | undefined;
|
|
128041
|
+
shippingPod?: {
|
|
128042
|
+
id: number;
|
|
128043
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128044
|
+
date: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128045
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128046
|
+
shippingId: number;
|
|
128047
|
+
signature: string;
|
|
128048
|
+
coursier: string;
|
|
128049
|
+
heurs: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128050
|
+
picturePod: string | null;
|
|
128051
|
+
} | undefined;
|
|
128052
|
+
ramassageChauffeur?: {
|
|
128053
|
+
id: number;
|
|
128054
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128055
|
+
date: string | null;
|
|
128056
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128057
|
+
nom: string;
|
|
128058
|
+
prenom: string;
|
|
128059
|
+
userId: number;
|
|
128060
|
+
shippingId: number;
|
|
128061
|
+
visibleTo: boolean;
|
|
128062
|
+
signature: string | null;
|
|
128063
|
+
heurs: string | null;
|
|
128064
|
+
picture: string | null;
|
|
128065
|
+
} | undefined;
|
|
128066
|
+
shippingEmballage?: {
|
|
128067
|
+
id: number;
|
|
128068
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128069
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128070
|
+
shippingId: number;
|
|
128071
|
+
comment: string;
|
|
128072
|
+
nbrDiagnobag: number;
|
|
128073
|
+
hasSonde: boolean;
|
|
128074
|
+
hasDiagnobag: boolean;
|
|
128075
|
+
isPrepared: boolean;
|
|
128076
|
+
emballageId: number;
|
|
128077
|
+
typeSondeId: number;
|
|
128078
|
+
typeDiagnobagId: number;
|
|
128079
|
+
} | undefined;
|
|
128080
|
+
shippingAffecteds?: {
|
|
128081
|
+
id: number;
|
|
128082
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128083
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128084
|
+
userId: number;
|
|
128085
|
+
shippingId: number;
|
|
128086
|
+
}[] | undefined;
|
|
128087
|
+
shippingComments?: {
|
|
128088
|
+
id: number;
|
|
128089
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128090
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128091
|
+
userId: number;
|
|
128092
|
+
shippingId: number;
|
|
128093
|
+
content: string;
|
|
128094
|
+
}[] | undefined;
|
|
128095
|
+
shippingDetails?: {
|
|
128096
|
+
id: number;
|
|
128097
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128098
|
+
type: "expeditor" | "receiver";
|
|
128099
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128100
|
+
phoneCode: string;
|
|
128101
|
+
fullName: string;
|
|
128102
|
+
countryId: number | null;
|
|
128103
|
+
addressTwo: string | null;
|
|
128104
|
+
postalCode: string;
|
|
128105
|
+
city: string;
|
|
128106
|
+
email: string;
|
|
128107
|
+
civility: string;
|
|
128108
|
+
shippingId: number;
|
|
128109
|
+
company: string;
|
|
128110
|
+
address1: string;
|
|
128111
|
+
phoneOne: string;
|
|
128112
|
+
phoneTwo: string | null;
|
|
128113
|
+
}[] | undefined;
|
|
128114
|
+
shippingDocuments?: {
|
|
128115
|
+
id: number;
|
|
128116
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128117
|
+
type: string;
|
|
128118
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128119
|
+
nom: string;
|
|
128120
|
+
userId: number;
|
|
128121
|
+
shippingId: number;
|
|
128122
|
+
document: string;
|
|
128123
|
+
}[] | undefined;
|
|
128124
|
+
historiqueActions?: {
|
|
128125
|
+
id: number;
|
|
128126
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128127
|
+
type: "CONNEXION" | "DECONNEXION" | "ACTION";
|
|
128128
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128129
|
+
userId: number | null;
|
|
128130
|
+
shippingId: number | null;
|
|
128131
|
+
action: string;
|
|
128132
|
+
data: Record<string, any>;
|
|
128133
|
+
}[] | undefined;
|
|
128134
|
+
informationImportantes?: {
|
|
128135
|
+
id: number;
|
|
128136
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128137
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128138
|
+
userId: number;
|
|
128139
|
+
shippingId: number;
|
|
128140
|
+
information: string;
|
|
128141
|
+
}[] | undefined;
|
|
128142
|
+
shippingTrackings?: {
|
|
128143
|
+
id: number;
|
|
128144
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128145
|
+
status: string | null;
|
|
128146
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128147
|
+
isParis: boolean;
|
|
128148
|
+
isMedical: boolean;
|
|
128149
|
+
isService: boolean;
|
|
128150
|
+
userId: number;
|
|
128151
|
+
chauffeur: string;
|
|
128152
|
+
shippingId: number;
|
|
128153
|
+
dateTracking: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128154
|
+
dateSuivi: string;
|
|
128155
|
+
heurSuivi: string;
|
|
128156
|
+
details: string;
|
|
128157
|
+
agents: string;
|
|
128158
|
+
visible: boolean;
|
|
128159
|
+
isTemplate: boolean;
|
|
128160
|
+
state: boolean;
|
|
128161
|
+
location: string | null;
|
|
128162
|
+
isDriver: boolean;
|
|
128163
|
+
userOpsId: number | null;
|
|
128164
|
+
dateValidateOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
128165
|
+
}[] | undefined;
|
|
128166
|
+
}[];
|
|
128167
|
+
meta: {
|
|
128168
|
+
total: number;
|
|
128169
|
+
perPage: number;
|
|
128170
|
+
currentPage: number;
|
|
128171
|
+
lastPage: number;
|
|
128172
|
+
firstPage: number;
|
|
128173
|
+
firstPageUrl: string;
|
|
128174
|
+
lastPageUrl: string;
|
|
128175
|
+
nextPageUrl: string | null;
|
|
128176
|
+
previousPageUrl: string | null;
|
|
128177
|
+
};
|
|
128178
|
+
}, {
|
|
128179
|
+
data: {
|
|
128180
|
+
id: number;
|
|
128181
|
+
createdAt: Date;
|
|
128182
|
+
updatedAt: Date;
|
|
128183
|
+
userId: number | null;
|
|
128184
|
+
billingCenterId: number | null;
|
|
128185
|
+
trackingMail: string | null;
|
|
128186
|
+
customerRef: string | null;
|
|
128187
|
+
pickupInstruction: string | null;
|
|
128188
|
+
deliveryInstruction: string | null;
|
|
128189
|
+
billContact: string | null;
|
|
128190
|
+
pickupTime: string | null;
|
|
128191
|
+
deliveryTime: string | null;
|
|
128192
|
+
ref: number | null;
|
|
128193
|
+
trackingNumber: string | null;
|
|
128194
|
+
classifications: string | null;
|
|
128195
|
+
userName: string | null;
|
|
128196
|
+
transportType: string | null;
|
|
128197
|
+
isDeleted: boolean | null;
|
|
128198
|
+
codeDonneur: string | null;
|
|
128199
|
+
codeReceveur: string | null;
|
|
128200
|
+
hasManifest: boolean;
|
|
128201
|
+
isOps: boolean;
|
|
128202
|
+
comment: string | null;
|
|
128203
|
+
createdFor: number | null;
|
|
128204
|
+
isArchived: boolean;
|
|
128205
|
+
isNeedArchive: boolean;
|
|
128206
|
+
isAnnulee: boolean;
|
|
128207
|
+
raison: string | null;
|
|
128208
|
+
color: string | null;
|
|
128209
|
+
docBordereaux: string | null;
|
|
128210
|
+
docAccompagnement: string | null;
|
|
128211
|
+
category: "course" | "all" | "import" | "export";
|
|
128212
|
+
typeExpedition: "expedition" | "course";
|
|
128213
|
+
driverId: number;
|
|
128214
|
+
typeDeRoue: string | null;
|
|
128215
|
+
isRecupererOps: boolean | null;
|
|
128216
|
+
isRemisOps: boolean | null;
|
|
128217
|
+
isRecupererChauffeur: boolean | null;
|
|
128218
|
+
isRemisChauffeur: boolean | null;
|
|
128219
|
+
lastCronRunAt: Date;
|
|
128220
|
+
devises: string | null;
|
|
128221
|
+
provenanceCommande: string | null;
|
|
128222
|
+
hasEmballage: boolean;
|
|
128223
|
+
facture: {
|
|
128224
|
+
id: number;
|
|
128225
|
+
createdAt: Date;
|
|
128226
|
+
message: string | null;
|
|
128227
|
+
updatedAt: Date;
|
|
128228
|
+
isParis: boolean;
|
|
128229
|
+
isMedical: boolean;
|
|
128230
|
+
isService: boolean;
|
|
128231
|
+
tva: number;
|
|
128232
|
+
billingCenterId: number;
|
|
128233
|
+
ref: number;
|
|
128234
|
+
isDeleted: boolean;
|
|
128235
|
+
provenanceCommande: string | null;
|
|
128236
|
+
statut: string;
|
|
128237
|
+
echeance: string;
|
|
128238
|
+
montant: number;
|
|
128239
|
+
shippingIds: string[];
|
|
128240
|
+
fuel: number;
|
|
128241
|
+
total: number;
|
|
128242
|
+
bonDeCommende: string | null;
|
|
128243
|
+
isVariation: boolean;
|
|
128244
|
+
isActiveForReedited: boolean;
|
|
128245
|
+
docFacture: string;
|
|
128246
|
+
fullRef: string;
|
|
128247
|
+
modeReglement: string | null;
|
|
128248
|
+
source: string | null;
|
|
128249
|
+
} | null;
|
|
128250
|
+
country?: {
|
|
128251
|
+
id: number;
|
|
128252
|
+
createdAt: Date;
|
|
128253
|
+
code: string;
|
|
128254
|
+
updatedAt: Date;
|
|
128255
|
+
name: string;
|
|
128256
|
+
phoneCode: string;
|
|
128257
|
+
} | undefined;
|
|
128258
|
+
billingCenter?: {
|
|
128259
|
+
id: number;
|
|
128260
|
+
createdAt: Date;
|
|
128261
|
+
updatedAt: Date;
|
|
128262
|
+
countryId: number;
|
|
128263
|
+
address: string;
|
|
128264
|
+
addressTwo: string | null;
|
|
128265
|
+
postalCode: string;
|
|
128266
|
+
city: string;
|
|
128267
|
+
telephoneOne: string;
|
|
128268
|
+
telephoneTwo: string | null;
|
|
128269
|
+
dafResponsibleName: string | null;
|
|
128270
|
+
email: string | null;
|
|
128271
|
+
intraVatNumber: string | null;
|
|
128272
|
+
numeroEori: string | null;
|
|
128273
|
+
comments: string | null;
|
|
128274
|
+
numCodeOne: string | null;
|
|
128275
|
+
numCodeTwo: string | null;
|
|
128276
|
+
isActif: boolean;
|
|
128277
|
+
isParis: boolean;
|
|
128278
|
+
isMedical: boolean;
|
|
128279
|
+
isService: boolean;
|
|
128280
|
+
dirigeant: string | null;
|
|
128281
|
+
dirigeantTel: string | null;
|
|
128282
|
+
dirigeantEmail: string | null;
|
|
128283
|
+
responsableComptable: string | null;
|
|
128284
|
+
responsableComptableTel: string | null;
|
|
128285
|
+
responsableComptableEmail: string | null;
|
|
128286
|
+
responsableDaf: string | null;
|
|
128287
|
+
responsableDafTel: string | null;
|
|
128288
|
+
responsableDafEmail: string | null;
|
|
128289
|
+
emailFacturation: string | null;
|
|
128290
|
+
logo: string | null;
|
|
128291
|
+
header: string | null;
|
|
128292
|
+
footer: string | null;
|
|
128293
|
+
emailOne: string | null;
|
|
128294
|
+
emailTwo: string | null;
|
|
128295
|
+
emailThree: string | null;
|
|
128296
|
+
tva: string | null;
|
|
128297
|
+
isMailing: boolean;
|
|
128298
|
+
telephone: string | null;
|
|
128299
|
+
billingCenterName: string;
|
|
128300
|
+
customerId: number | null;
|
|
128301
|
+
numeroSiren: string | null;
|
|
128302
|
+
invoiceMailOne: string;
|
|
128303
|
+
invoiceMailTwo: string | null;
|
|
128304
|
+
isSubmittedToFrenchVat: boolean;
|
|
128305
|
+
isActiveMailInstruction: boolean;
|
|
128306
|
+
isActiveVariation: boolean;
|
|
128307
|
+
isShowSecondBordereaux: boolean;
|
|
128308
|
+
isShowCustomerName: boolean;
|
|
128309
|
+
isShowCommercialValue: boolean;
|
|
128310
|
+
} | undefined;
|
|
128311
|
+
user?: {
|
|
128312
|
+
id: number;
|
|
128313
|
+
createdAt: Date;
|
|
128314
|
+
updatedAt: Date;
|
|
128315
|
+
countryId: number | null;
|
|
128316
|
+
addressTwo: string;
|
|
128317
|
+
postalCode: string;
|
|
128318
|
+
city: string;
|
|
128319
|
+
telephoneOne: string;
|
|
128320
|
+
telephoneTwo: string;
|
|
128321
|
+
email: string;
|
|
128322
|
+
comments: string;
|
|
128323
|
+
numCodeOne: string;
|
|
128324
|
+
numCodeTwo: string;
|
|
128325
|
+
isActif: boolean;
|
|
128326
|
+
isParis: boolean;
|
|
128327
|
+
isMedical: boolean;
|
|
128328
|
+
isService: boolean;
|
|
128329
|
+
emailOne: string;
|
|
128330
|
+
emailTwo: string;
|
|
128331
|
+
addressOne: string;
|
|
128332
|
+
customerId: number;
|
|
128333
|
+
firstName: string;
|
|
128334
|
+
lastName: string;
|
|
128335
|
+
emailVerifiedAt: Date;
|
|
128336
|
+
password: string;
|
|
128337
|
+
poste: string;
|
|
128338
|
+
roles: string[];
|
|
128339
|
+
isOpsAdmin: boolean;
|
|
128340
|
+
civility: string;
|
|
128341
|
+
isShowCalculatrice: boolean;
|
|
128342
|
+
expedition: boolean;
|
|
128343
|
+
physicCompany: string;
|
|
128344
|
+
menus: string;
|
|
128345
|
+
ongletExpedition: string;
|
|
128346
|
+
chauffeurType: string;
|
|
128347
|
+
typeOfOps: string;
|
|
128348
|
+
prestation: string;
|
|
128349
|
+
tracking: string;
|
|
128350
|
+
expeditionCourse: string;
|
|
128351
|
+
carnetAddress: string;
|
|
128352
|
+
expeditionsCarnet: string;
|
|
128353
|
+
accessArchive: string;
|
|
128354
|
+
isShowImportMenu: boolean;
|
|
128355
|
+
isShowExportMenu: boolean;
|
|
128356
|
+
isShowCourseMenu: boolean;
|
|
128357
|
+
twoRoues: boolean;
|
|
128358
|
+
vt: boolean;
|
|
128359
|
+
lesTwo: boolean;
|
|
128360
|
+
isMiniTracking: boolean;
|
|
128361
|
+
isFullTracking: boolean;
|
|
128362
|
+
isShareCourseAndExpedition: boolean;
|
|
128363
|
+
isShareCarnetAdresse: boolean;
|
|
128364
|
+
isShareCarnetAdresseAndExpedition: boolean;
|
|
128365
|
+
isAccessAuxArchives: boolean;
|
|
128366
|
+
isShowInfo: boolean;
|
|
128367
|
+
photo: string | null;
|
|
128368
|
+
entreprisePhysique: string;
|
|
128369
|
+
isAdminChauffeur: boolean;
|
|
128370
|
+
isShowTracking: boolean;
|
|
128371
|
+
isSupportActivated: boolean;
|
|
128372
|
+
isClientTransitaire: boolean;
|
|
128373
|
+
vehiculeId: number;
|
|
128374
|
+
salaryId: number;
|
|
128375
|
+
} | undefined;
|
|
128376
|
+
pickupDate?: Date | undefined;
|
|
128377
|
+
deliveryDate?: Date | undefined;
|
|
128378
|
+
heureRecupererOps?: Date | undefined;
|
|
128379
|
+
heureRemisOps?: Date | undefined;
|
|
128380
|
+
heureRecupererChauffeur?: Date | undefined;
|
|
128381
|
+
heureRemisChauffeur?: Date | undefined;
|
|
128382
|
+
factureLines?: {
|
|
128383
|
+
id: number;
|
|
128384
|
+
createdAt: Date;
|
|
128385
|
+
updatedAt: Date;
|
|
128386
|
+
tva: number;
|
|
128387
|
+
shippingId: number;
|
|
128388
|
+
classifications: string;
|
|
128389
|
+
comment: string | null;
|
|
128390
|
+
fuel: number;
|
|
128391
|
+
total: number;
|
|
128392
|
+
isVariation: boolean;
|
|
128393
|
+
fullRef: string;
|
|
128394
|
+
lineType: string;
|
|
128395
|
+
prix: number;
|
|
128396
|
+
qte: number;
|
|
128397
|
+
totalFinal: number;
|
|
128398
|
+
factureRef: number | null;
|
|
128399
|
+
oldFactureRef: number | null;
|
|
128400
|
+
factureId: number | null;
|
|
128401
|
+
facturationLineId: number;
|
|
128402
|
+
}[] | undefined;
|
|
128403
|
+
shippingManifests?: {
|
|
128404
|
+
id: number;
|
|
128405
|
+
createdAt: Date;
|
|
128406
|
+
updatedAt: Date;
|
|
128407
|
+
shippingId: number;
|
|
128408
|
+
manifestId: number;
|
|
128409
|
+
} | undefined;
|
|
128410
|
+
shippingClassification?: {
|
|
128411
|
+
id: number;
|
|
128412
|
+
createdAt: Date;
|
|
128413
|
+
updatedAt: Date;
|
|
128414
|
+
shippingId: number;
|
|
128415
|
+
europe: boolean;
|
|
128416
|
+
express: boolean;
|
|
128417
|
+
international: boolean;
|
|
128418
|
+
locale: boolean;
|
|
128419
|
+
national: boolean;
|
|
128420
|
+
premium: boolean;
|
|
128421
|
+
spx: boolean;
|
|
128422
|
+
spxDrive: boolean;
|
|
128423
|
+
spxPlus: boolean;
|
|
128424
|
+
spxSat: boolean;
|
|
128425
|
+
voiture: boolean;
|
|
128426
|
+
spxHOneHourThirty: boolean;
|
|
128427
|
+
spxHThreeHours: boolean;
|
|
128428
|
+
spxHNineHours: boolean;
|
|
128429
|
+
spxHTenHours: boolean;
|
|
128430
|
+
spxHTwelveHours: boolean;
|
|
128431
|
+
} | undefined;
|
|
128432
|
+
shippingCourse?: {
|
|
128433
|
+
id: number;
|
|
128434
|
+
createdAt: Date;
|
|
128435
|
+
updatedAt: Date;
|
|
128436
|
+
userId: number;
|
|
128437
|
+
packageDescription: string;
|
|
128438
|
+
additionalInsurance: boolean;
|
|
128439
|
+
additionalInsuranceAmount: number | null;
|
|
128440
|
+
documents: string | null;
|
|
128441
|
+
valeurDouane: string | null;
|
|
128442
|
+
porteur: string;
|
|
128443
|
+
nombreRoue: string;
|
|
128444
|
+
shippingId: number;
|
|
128445
|
+
} | undefined;
|
|
128446
|
+
livraisonChauffeur?: {
|
|
128447
|
+
id: number;
|
|
128448
|
+
createdAt: Date;
|
|
128449
|
+
updatedAt: Date;
|
|
128450
|
+
userId: number;
|
|
128451
|
+
shippingId: number;
|
|
128452
|
+
visibleTo: boolean;
|
|
128453
|
+
} | undefined;
|
|
128454
|
+
shippingPackage?: {
|
|
128455
|
+
id: number;
|
|
128456
|
+
createdAt: Date;
|
|
128457
|
+
length: number;
|
|
128458
|
+
updatedAt: Date;
|
|
128459
|
+
additionalInsurance: boolean;
|
|
128460
|
+
additionalInsuranceAmount: number | null;
|
|
128461
|
+
documents: string[] | null;
|
|
128462
|
+
shippingId: number;
|
|
128463
|
+
ref: string | null;
|
|
128464
|
+
devises: string | null;
|
|
128465
|
+
width: number;
|
|
128466
|
+
height: number;
|
|
128467
|
+
weight: number;
|
|
128468
|
+
weightVolume: number;
|
|
128469
|
+
description: string;
|
|
128470
|
+
valueInDouane: string | null;
|
|
128471
|
+
valeurAssure: string | null;
|
|
128472
|
+
statut: string | null;
|
|
128473
|
+
montantDevi: string | null;
|
|
128474
|
+
nombreDevi: string | null;
|
|
128475
|
+
incoterm: string | null;
|
|
128476
|
+
} | undefined;
|
|
128477
|
+
shippingPod?: {
|
|
128478
|
+
id: number;
|
|
128479
|
+
createdAt: Date;
|
|
128480
|
+
date: Date;
|
|
128481
|
+
updatedAt: Date;
|
|
128482
|
+
shippingId: number;
|
|
128483
|
+
signature: string;
|
|
128484
|
+
coursier: string;
|
|
128485
|
+
heurs: Date;
|
|
128486
|
+
picturePod: string | null;
|
|
128487
|
+
} | undefined;
|
|
128488
|
+
ramassageChauffeur?: {
|
|
128489
|
+
id: number;
|
|
128490
|
+
createdAt: Date;
|
|
128491
|
+
date: string | null;
|
|
128492
|
+
updatedAt: Date;
|
|
128493
|
+
nom: string;
|
|
128494
|
+
prenom: string;
|
|
128495
|
+
userId: number;
|
|
128496
|
+
shippingId: number;
|
|
128497
|
+
visibleTo: boolean;
|
|
128498
|
+
signature: string | null;
|
|
128499
|
+
heurs: string | null;
|
|
128500
|
+
picture: string | null;
|
|
128501
|
+
} | undefined;
|
|
128502
|
+
shippingEmballage?: {
|
|
128503
|
+
id: number;
|
|
128504
|
+
createdAt: Date;
|
|
128505
|
+
updatedAt: Date;
|
|
128506
|
+
shippingId: number;
|
|
128507
|
+
comment: string;
|
|
128508
|
+
nbrDiagnobag: number;
|
|
128509
|
+
hasSonde: boolean;
|
|
128510
|
+
hasDiagnobag: boolean;
|
|
128511
|
+
isPrepared: boolean;
|
|
128512
|
+
emballageId: number;
|
|
128513
|
+
typeSondeId: number;
|
|
128514
|
+
typeDiagnobagId: number;
|
|
128515
|
+
} | undefined;
|
|
128516
|
+
shippingAffecteds?: {
|
|
128517
|
+
id: number;
|
|
128518
|
+
createdAt: Date;
|
|
128519
|
+
updatedAt: Date;
|
|
128520
|
+
userId: number;
|
|
128521
|
+
shippingId: number;
|
|
128522
|
+
}[] | undefined;
|
|
128523
|
+
shippingComments?: {
|
|
128524
|
+
id: number;
|
|
128525
|
+
createdAt: Date;
|
|
128526
|
+
updatedAt: Date;
|
|
128527
|
+
userId: number;
|
|
128528
|
+
shippingId: number;
|
|
128529
|
+
content: string;
|
|
128530
|
+
}[] | undefined;
|
|
128531
|
+
shippingDetails?: {
|
|
128532
|
+
id: number;
|
|
128533
|
+
createdAt: Date;
|
|
128534
|
+
type: "expeditor" | "receiver";
|
|
128535
|
+
updatedAt: Date;
|
|
128536
|
+
phoneCode: string;
|
|
128537
|
+
fullName: string;
|
|
128538
|
+
countryId: number | null;
|
|
128539
|
+
addressTwo: string | null;
|
|
128540
|
+
postalCode: string;
|
|
128541
|
+
city: string;
|
|
128542
|
+
email: string;
|
|
128543
|
+
civility: string;
|
|
128544
|
+
shippingId: number;
|
|
128545
|
+
company: string;
|
|
128546
|
+
address1: string;
|
|
128547
|
+
phoneOne: string;
|
|
128548
|
+
phoneTwo: string | null;
|
|
128549
|
+
}[] | undefined;
|
|
128550
|
+
shippingDocuments?: {
|
|
128551
|
+
id: number;
|
|
128552
|
+
createdAt: Date;
|
|
128553
|
+
type: string;
|
|
128554
|
+
updatedAt: Date;
|
|
128555
|
+
nom: string;
|
|
128556
|
+
userId: number;
|
|
128557
|
+
shippingId: number;
|
|
128558
|
+
document: string;
|
|
128559
|
+
}[] | undefined;
|
|
128560
|
+
historiqueActions?: {
|
|
128561
|
+
id: number;
|
|
128562
|
+
createdAt: Date;
|
|
128563
|
+
type: "CONNEXION" | "DECONNEXION" | "ACTION";
|
|
128564
|
+
updatedAt: Date;
|
|
128565
|
+
userId: number | null;
|
|
128566
|
+
shippingId: number | null;
|
|
128567
|
+
action: string;
|
|
128568
|
+
data: Record<string, any>;
|
|
128569
|
+
}[] | undefined;
|
|
128570
|
+
informationImportantes?: {
|
|
128571
|
+
id: number;
|
|
128572
|
+
createdAt: Date;
|
|
128573
|
+
updatedAt: Date;
|
|
128574
|
+
userId: number;
|
|
128575
|
+
shippingId: number;
|
|
128576
|
+
information: string;
|
|
128577
|
+
}[] | undefined;
|
|
128578
|
+
shippingTrackings?: {
|
|
128579
|
+
id: number;
|
|
128580
|
+
createdAt: Date;
|
|
128581
|
+
status: string | null;
|
|
128582
|
+
updatedAt: Date;
|
|
128583
|
+
isParis: boolean;
|
|
128584
|
+
isMedical: boolean;
|
|
128585
|
+
isService: boolean;
|
|
128586
|
+
userId: number;
|
|
128587
|
+
chauffeur: string;
|
|
128588
|
+
shippingId: number;
|
|
128589
|
+
dateTracking: Date;
|
|
128590
|
+
dateSuivi: string;
|
|
128591
|
+
heurSuivi: string;
|
|
128592
|
+
details: string;
|
|
128593
|
+
agents: string;
|
|
128594
|
+
visible: boolean;
|
|
128595
|
+
isTemplate: boolean;
|
|
128596
|
+
state: boolean;
|
|
128597
|
+
location: string | null;
|
|
128598
|
+
isDriver: boolean;
|
|
128599
|
+
userOpsId: number | null;
|
|
128600
|
+
dateValidateOps?: Date | undefined;
|
|
128601
|
+
}[] | undefined;
|
|
128602
|
+
}[];
|
|
128603
|
+
meta: {
|
|
128604
|
+
total: number;
|
|
128605
|
+
perPage: number;
|
|
128606
|
+
currentPage: number;
|
|
128607
|
+
lastPage: number;
|
|
128608
|
+
firstPage: number;
|
|
128609
|
+
firstPageUrl: string;
|
|
128610
|
+
lastPageUrl: string;
|
|
128611
|
+
nextPageUrl: string | null;
|
|
128612
|
+
previousPageUrl: string | null;
|
|
128613
|
+
};
|
|
128614
|
+
}>;
|
|
128615
|
+
message: z.ZodOptional<z.ZodString>;
|
|
128616
|
+
status: z.ZodOptional<z.ZodNumber>;
|
|
128617
|
+
error: z.ZodOptional<z.ZodNever>;
|
|
128618
|
+
success: z.ZodLiteral<true>;
|
|
128619
|
+
}, "strip", z.ZodTypeAny, {
|
|
128620
|
+
data: {
|
|
128621
|
+
data: {
|
|
128622
|
+
id: number;
|
|
128623
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128624
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128625
|
+
userId: number | null;
|
|
128626
|
+
billingCenterId: number | null;
|
|
128627
|
+
trackingMail: string | null;
|
|
128628
|
+
customerRef: string | null;
|
|
128629
|
+
pickupInstruction: string | null;
|
|
128630
|
+
deliveryInstruction: string | null;
|
|
128631
|
+
billContact: string | null;
|
|
128632
|
+
pickupTime: string | null;
|
|
128633
|
+
deliveryTime: string | null;
|
|
128634
|
+
ref: number | null;
|
|
128635
|
+
trackingNumber: string | null;
|
|
128636
|
+
classifications: string | null;
|
|
128637
|
+
userName: string | null;
|
|
128638
|
+
transportType: string | null;
|
|
128639
|
+
isDeleted: boolean | null;
|
|
128640
|
+
codeDonneur: string | null;
|
|
128641
|
+
codeReceveur: string | null;
|
|
128642
|
+
hasManifest: boolean;
|
|
128643
|
+
isOps: boolean;
|
|
128644
|
+
comment: string | null;
|
|
128645
|
+
createdFor: number | null;
|
|
128646
|
+
isArchived: boolean;
|
|
128647
|
+
isNeedArchive: boolean;
|
|
128648
|
+
isAnnulee: boolean;
|
|
128649
|
+
raison: string | null;
|
|
128650
|
+
color: string | null;
|
|
128651
|
+
docBordereaux: string | null;
|
|
128652
|
+
docAccompagnement: string | null;
|
|
128653
|
+
category: "course" | "all" | "import" | "export";
|
|
128654
|
+
typeExpedition: "expedition" | "course";
|
|
128655
|
+
driverId: number;
|
|
128656
|
+
typeDeRoue: string | null;
|
|
128657
|
+
isRecupererOps: boolean | null;
|
|
128658
|
+
isRemisOps: boolean | null;
|
|
128659
|
+
isRecupererChauffeur: boolean | null;
|
|
128660
|
+
isRemisChauffeur: boolean | null;
|
|
128661
|
+
lastCronRunAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128662
|
+
devises: string | null;
|
|
128663
|
+
provenanceCommande: string | null;
|
|
128664
|
+
hasEmballage: boolean;
|
|
128665
|
+
facture: {
|
|
128666
|
+
id: number;
|
|
128667
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128668
|
+
message: string | null;
|
|
128669
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128670
|
+
isParis: boolean;
|
|
128671
|
+
isMedical: boolean;
|
|
128672
|
+
isService: boolean;
|
|
128673
|
+
tva: number;
|
|
128674
|
+
billingCenterId: number;
|
|
128675
|
+
ref: number;
|
|
128676
|
+
isDeleted: boolean;
|
|
128677
|
+
provenanceCommande: string | null;
|
|
128678
|
+
statut: string;
|
|
128679
|
+
echeance: string;
|
|
128680
|
+
montant: number;
|
|
128681
|
+
shippingIds: string[];
|
|
128682
|
+
fuel: number;
|
|
128683
|
+
total: number;
|
|
128684
|
+
bonDeCommende: string | null;
|
|
128685
|
+
isVariation: boolean;
|
|
128686
|
+
isActiveForReedited: boolean;
|
|
128687
|
+
docFacture: string;
|
|
128688
|
+
fullRef: string;
|
|
128689
|
+
modeReglement: string | null;
|
|
128690
|
+
source: string | null;
|
|
128691
|
+
} | null;
|
|
128692
|
+
country?: {
|
|
128693
|
+
id: number;
|
|
128694
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128695
|
+
code: string;
|
|
128696
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128697
|
+
name: string;
|
|
128698
|
+
phoneCode: string;
|
|
128699
|
+
} | undefined;
|
|
128700
|
+
billingCenter?: {
|
|
128701
|
+
id: number;
|
|
128702
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128703
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128704
|
+
countryId: number;
|
|
128705
|
+
address: string;
|
|
128706
|
+
addressTwo: string | null;
|
|
128707
|
+
postalCode: string;
|
|
128708
|
+
city: string;
|
|
128709
|
+
telephoneOne: string;
|
|
128710
|
+
telephoneTwo: string | null;
|
|
128711
|
+
dafResponsibleName: string | null;
|
|
128712
|
+
email: string | null;
|
|
128713
|
+
intraVatNumber: string | null;
|
|
128714
|
+
numeroEori: string | null;
|
|
128715
|
+
comments: string | null;
|
|
128716
|
+
numCodeOne: string | null;
|
|
128717
|
+
numCodeTwo: string | null;
|
|
128718
|
+
isActif: boolean;
|
|
128719
|
+
isParis: boolean;
|
|
128720
|
+
isMedical: boolean;
|
|
128721
|
+
isService: boolean;
|
|
128722
|
+
dirigeant: string | null;
|
|
128723
|
+
dirigeantTel: string | null;
|
|
128724
|
+
dirigeantEmail: string | null;
|
|
128725
|
+
responsableComptable: string | null;
|
|
128726
|
+
responsableComptableTel: string | null;
|
|
128727
|
+
responsableComptableEmail: string | null;
|
|
128728
|
+
responsableDaf: string | null;
|
|
128729
|
+
responsableDafTel: string | null;
|
|
128730
|
+
responsableDafEmail: string | null;
|
|
128731
|
+
emailFacturation: string | null;
|
|
128732
|
+
logo: string | null;
|
|
128733
|
+
header: string | null;
|
|
128734
|
+
footer: string | null;
|
|
128735
|
+
emailOne: string | null;
|
|
128736
|
+
emailTwo: string | null;
|
|
128737
|
+
emailThree: string | null;
|
|
128738
|
+
tva: string | null;
|
|
128739
|
+
isMailing: boolean;
|
|
128740
|
+
telephone: string | null;
|
|
128741
|
+
billingCenterName: string;
|
|
128742
|
+
customerId: number | null;
|
|
128743
|
+
numeroSiren: string | null;
|
|
128744
|
+
invoiceMailOne: string;
|
|
128745
|
+
invoiceMailTwo: string | null;
|
|
128746
|
+
isSubmittedToFrenchVat: boolean;
|
|
128747
|
+
isActiveMailInstruction: boolean;
|
|
128748
|
+
isActiveVariation: boolean;
|
|
128749
|
+
isShowSecondBordereaux: boolean;
|
|
128750
|
+
isShowCustomerName: boolean;
|
|
128751
|
+
isShowCommercialValue: boolean;
|
|
128752
|
+
} | undefined;
|
|
128753
|
+
user?: {
|
|
128754
|
+
id: number;
|
|
128755
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128756
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128757
|
+
countryId: number | null;
|
|
128758
|
+
addressTwo: string;
|
|
128759
|
+
postalCode: string;
|
|
128760
|
+
city: string;
|
|
128761
|
+
telephoneOne: string;
|
|
128762
|
+
telephoneTwo: string;
|
|
128763
|
+
email: string;
|
|
128764
|
+
comments: string;
|
|
128765
|
+
numCodeOne: string;
|
|
128766
|
+
numCodeTwo: string;
|
|
128767
|
+
isActif: boolean;
|
|
128768
|
+
isParis: boolean;
|
|
128769
|
+
isMedical: boolean;
|
|
128770
|
+
isService: boolean;
|
|
128771
|
+
emailOne: string;
|
|
128772
|
+
emailTwo: string;
|
|
128773
|
+
addressOne: string;
|
|
128774
|
+
customerId: number;
|
|
128775
|
+
firstName: string;
|
|
128776
|
+
lastName: string;
|
|
128777
|
+
emailVerifiedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128778
|
+
password: string;
|
|
128779
|
+
poste: string;
|
|
128780
|
+
roles: string[];
|
|
128781
|
+
isOpsAdmin: boolean;
|
|
128782
|
+
civility: string;
|
|
128783
|
+
isShowCalculatrice: boolean;
|
|
128784
|
+
expedition: boolean;
|
|
128785
|
+
physicCompany: string;
|
|
128786
|
+
menus: string;
|
|
128787
|
+
ongletExpedition: string;
|
|
128788
|
+
chauffeurType: string;
|
|
128789
|
+
typeOfOps: string;
|
|
128790
|
+
prestation: string;
|
|
128791
|
+
tracking: string;
|
|
128792
|
+
expeditionCourse: string;
|
|
128793
|
+
carnetAddress: string;
|
|
128794
|
+
expeditionsCarnet: string;
|
|
128795
|
+
accessArchive: string;
|
|
128796
|
+
isShowImportMenu: boolean;
|
|
128797
|
+
isShowExportMenu: boolean;
|
|
128798
|
+
isShowCourseMenu: boolean;
|
|
128799
|
+
twoRoues: boolean;
|
|
128800
|
+
vt: boolean;
|
|
128801
|
+
lesTwo: boolean;
|
|
128802
|
+
isMiniTracking: boolean;
|
|
128803
|
+
isFullTracking: boolean;
|
|
128804
|
+
isShareCourseAndExpedition: boolean;
|
|
128805
|
+
isShareCarnetAdresse: boolean;
|
|
128806
|
+
isShareCarnetAdresseAndExpedition: boolean;
|
|
128807
|
+
isAccessAuxArchives: boolean;
|
|
128808
|
+
isShowInfo: boolean;
|
|
128809
|
+
photo: string | null;
|
|
128810
|
+
entreprisePhysique: string;
|
|
128811
|
+
isAdminChauffeur: boolean;
|
|
128812
|
+
isShowTracking: boolean;
|
|
128813
|
+
isSupportActivated: boolean;
|
|
128814
|
+
isClientTransitaire: boolean;
|
|
128815
|
+
vehiculeId: number;
|
|
128816
|
+
salaryId: number;
|
|
128817
|
+
} | undefined;
|
|
128818
|
+
pickupDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
128819
|
+
deliveryDate?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
128820
|
+
heureRecupererOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
128821
|
+
heureRemisOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
128822
|
+
heureRecupererChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
128823
|
+
heureRemisChauffeur?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
128824
|
+
factureLines?: {
|
|
128825
|
+
id: number;
|
|
128826
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128827
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128828
|
+
tva: number;
|
|
128829
|
+
shippingId: number;
|
|
128830
|
+
classifications: string;
|
|
128831
|
+
comment: string | null;
|
|
128832
|
+
fuel: number;
|
|
128833
|
+
total: number;
|
|
128834
|
+
isVariation: boolean;
|
|
128835
|
+
fullRef: string;
|
|
128836
|
+
lineType: string;
|
|
128837
|
+
prix: number;
|
|
128838
|
+
qte: number;
|
|
128839
|
+
totalFinal: number;
|
|
128840
|
+
factureRef: number | null;
|
|
128841
|
+
oldFactureRef: number | null;
|
|
128842
|
+
factureId: number | null;
|
|
128843
|
+
facturationLineId: number;
|
|
128844
|
+
}[] | undefined;
|
|
128845
|
+
shippingManifests?: {
|
|
128846
|
+
id: number;
|
|
128847
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128848
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128849
|
+
shippingId: number;
|
|
128850
|
+
manifestId: number;
|
|
128851
|
+
} | undefined;
|
|
128852
|
+
shippingClassification?: {
|
|
128853
|
+
id: number;
|
|
128854
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128855
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128856
|
+
shippingId: number;
|
|
128857
|
+
europe: boolean;
|
|
128858
|
+
express: boolean;
|
|
128859
|
+
international: boolean;
|
|
128860
|
+
locale: boolean;
|
|
128861
|
+
national: boolean;
|
|
128862
|
+
premium: boolean;
|
|
128863
|
+
spx: boolean;
|
|
128864
|
+
spxDrive: boolean;
|
|
128865
|
+
spxPlus: boolean;
|
|
128866
|
+
spxSat: boolean;
|
|
128867
|
+
voiture: boolean;
|
|
128868
|
+
spxHOneHourThirty: boolean;
|
|
128869
|
+
spxHThreeHours: boolean;
|
|
128870
|
+
spxHNineHours: boolean;
|
|
128871
|
+
spxHTenHours: boolean;
|
|
128872
|
+
spxHTwelveHours: boolean;
|
|
128873
|
+
} | undefined;
|
|
128874
|
+
shippingCourse?: {
|
|
128875
|
+
id: number;
|
|
128876
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128877
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128878
|
+
userId: number;
|
|
128879
|
+
packageDescription: string;
|
|
128880
|
+
additionalInsurance: boolean;
|
|
128881
|
+
additionalInsuranceAmount: number | null;
|
|
128882
|
+
documents: string | null;
|
|
128883
|
+
valeurDouane: string | null;
|
|
128884
|
+
porteur: string;
|
|
128885
|
+
nombreRoue: string;
|
|
128886
|
+
shippingId: number;
|
|
128887
|
+
} | undefined;
|
|
128888
|
+
livraisonChauffeur?: {
|
|
128889
|
+
id: number;
|
|
128890
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128891
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128892
|
+
userId: number;
|
|
128893
|
+
shippingId: number;
|
|
128894
|
+
visibleTo: boolean;
|
|
128895
|
+
} | undefined;
|
|
128896
|
+
shippingPackage?: {
|
|
128897
|
+
id: number;
|
|
128898
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128899
|
+
length: number;
|
|
128900
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128901
|
+
additionalInsurance: boolean;
|
|
128902
|
+
additionalInsuranceAmount: number | null;
|
|
128903
|
+
documents: string[] | null;
|
|
128904
|
+
shippingId: number;
|
|
128905
|
+
ref: string | null;
|
|
128906
|
+
devises: string | null;
|
|
128907
|
+
width: number;
|
|
128908
|
+
height: number;
|
|
128909
|
+
weight: number;
|
|
128910
|
+
weightVolume: number;
|
|
128911
|
+
description: string;
|
|
128912
|
+
valueInDouane: string | null;
|
|
128913
|
+
valeurAssure: string | null;
|
|
128914
|
+
statut: string | null;
|
|
128915
|
+
montantDevi: string | null;
|
|
128916
|
+
nombreDevi: string | null;
|
|
128917
|
+
incoterm: string | null;
|
|
128918
|
+
} | undefined;
|
|
128919
|
+
shippingPod?: {
|
|
128920
|
+
id: number;
|
|
128921
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128922
|
+
date: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128923
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128924
|
+
shippingId: number;
|
|
128925
|
+
signature: string;
|
|
128926
|
+
coursier: string;
|
|
128927
|
+
heurs: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128928
|
+
picturePod: string | null;
|
|
128929
|
+
} | undefined;
|
|
128930
|
+
ramassageChauffeur?: {
|
|
128931
|
+
id: number;
|
|
128932
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128933
|
+
date: string | null;
|
|
128934
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128935
|
+
nom: string;
|
|
128936
|
+
prenom: string;
|
|
128937
|
+
userId: number;
|
|
128938
|
+
shippingId: number;
|
|
128939
|
+
visibleTo: boolean;
|
|
128940
|
+
signature: string | null;
|
|
128941
|
+
heurs: string | null;
|
|
128942
|
+
picture: string | null;
|
|
128943
|
+
} | undefined;
|
|
128944
|
+
shippingEmballage?: {
|
|
128945
|
+
id: number;
|
|
128946
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128947
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128948
|
+
shippingId: number;
|
|
128949
|
+
comment: string;
|
|
128950
|
+
nbrDiagnobag: number;
|
|
128951
|
+
hasSonde: boolean;
|
|
128952
|
+
hasDiagnobag: boolean;
|
|
128953
|
+
isPrepared: boolean;
|
|
128954
|
+
emballageId: number;
|
|
128955
|
+
typeSondeId: number;
|
|
128956
|
+
typeDiagnobagId: number;
|
|
128957
|
+
} | undefined;
|
|
128958
|
+
shippingAffecteds?: {
|
|
128959
|
+
id: number;
|
|
128960
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128961
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128962
|
+
userId: number;
|
|
128963
|
+
shippingId: number;
|
|
128964
|
+
}[] | undefined;
|
|
128965
|
+
shippingComments?: {
|
|
128966
|
+
id: number;
|
|
128967
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128968
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128969
|
+
userId: number;
|
|
128970
|
+
shippingId: number;
|
|
128971
|
+
content: string;
|
|
128972
|
+
}[] | undefined;
|
|
128973
|
+
shippingDetails?: {
|
|
128974
|
+
id: number;
|
|
128975
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128976
|
+
type: "expeditor" | "receiver";
|
|
128977
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128978
|
+
phoneCode: string;
|
|
128979
|
+
fullName: string;
|
|
128980
|
+
countryId: number | null;
|
|
128981
|
+
addressTwo: string | null;
|
|
128982
|
+
postalCode: string;
|
|
128983
|
+
city: string;
|
|
128984
|
+
email: string;
|
|
128985
|
+
civility: string;
|
|
128986
|
+
shippingId: number;
|
|
128987
|
+
company: string;
|
|
128988
|
+
address1: string;
|
|
128989
|
+
phoneOne: string;
|
|
128990
|
+
phoneTwo: string | null;
|
|
128991
|
+
}[] | undefined;
|
|
128992
|
+
shippingDocuments?: {
|
|
128993
|
+
id: number;
|
|
128994
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128995
|
+
type: string;
|
|
128996
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
128997
|
+
nom: string;
|
|
128998
|
+
userId: number;
|
|
128999
|
+
shippingId: number;
|
|
129000
|
+
document: string;
|
|
129001
|
+
}[] | undefined;
|
|
129002
|
+
historiqueActions?: {
|
|
129003
|
+
id: number;
|
|
129004
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
129005
|
+
type: "CONNEXION" | "DECONNEXION" | "ACTION";
|
|
129006
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
129007
|
+
userId: number | null;
|
|
129008
|
+
shippingId: number | null;
|
|
129009
|
+
action: string;
|
|
129010
|
+
data: Record<string, any>;
|
|
129011
|
+
}[] | undefined;
|
|
129012
|
+
informationImportantes?: {
|
|
129013
|
+
id: number;
|
|
129014
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
129015
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
129016
|
+
userId: number;
|
|
129017
|
+
shippingId: number;
|
|
129018
|
+
information: string;
|
|
129019
|
+
}[] | undefined;
|
|
129020
|
+
shippingTrackings?: {
|
|
129021
|
+
id: number;
|
|
129022
|
+
createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
129023
|
+
status: string | null;
|
|
129024
|
+
updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
129025
|
+
isParis: boolean;
|
|
129026
|
+
isMedical: boolean;
|
|
129027
|
+
isService: boolean;
|
|
129028
|
+
userId: number;
|
|
129029
|
+
chauffeur: string;
|
|
129030
|
+
shippingId: number;
|
|
129031
|
+
dateTracking: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
|
|
129032
|
+
dateSuivi: string;
|
|
129033
|
+
heurSuivi: string;
|
|
129034
|
+
details: string;
|
|
129035
|
+
agents: string;
|
|
129036
|
+
visible: boolean;
|
|
129037
|
+
isTemplate: boolean;
|
|
129038
|
+
state: boolean;
|
|
129039
|
+
location: string | null;
|
|
129040
|
+
isDriver: boolean;
|
|
129041
|
+
userOpsId: number | null;
|
|
129042
|
+
dateValidateOps?: import("luxon").DateTime<true> | import("luxon").DateTime<false> | undefined;
|
|
129043
|
+
}[] | undefined;
|
|
129044
|
+
}[];
|
|
129045
|
+
meta: {
|
|
129046
|
+
total: number;
|
|
129047
|
+
perPage: number;
|
|
129048
|
+
currentPage: number;
|
|
129049
|
+
lastPage: number;
|
|
129050
|
+
firstPage: number;
|
|
129051
|
+
firstPageUrl: string;
|
|
129052
|
+
lastPageUrl: string;
|
|
129053
|
+
nextPageUrl: string | null;
|
|
129054
|
+
previousPageUrl: string | null;
|
|
129055
|
+
};
|
|
129056
|
+
};
|
|
129057
|
+
success: true;
|
|
129058
|
+
status?: number | undefined;
|
|
129059
|
+
message?: string | undefined;
|
|
129060
|
+
error?: undefined;
|
|
129061
|
+
}, {
|
|
129062
|
+
data: {
|
|
129063
|
+
data: {
|
|
129064
|
+
id: number;
|
|
129065
|
+
createdAt: Date;
|
|
129066
|
+
updatedAt: Date;
|
|
129067
|
+
userId: number | null;
|
|
129068
|
+
billingCenterId: number | null;
|
|
129069
|
+
trackingMail: string | null;
|
|
129070
|
+
customerRef: string | null;
|
|
129071
|
+
pickupInstruction: string | null;
|
|
129072
|
+
deliveryInstruction: string | null;
|
|
129073
|
+
billContact: string | null;
|
|
129074
|
+
pickupTime: string | null;
|
|
129075
|
+
deliveryTime: string | null;
|
|
129076
|
+
ref: number | null;
|
|
129077
|
+
trackingNumber: string | null;
|
|
129078
|
+
classifications: string | null;
|
|
129079
|
+
userName: string | null;
|
|
129080
|
+
transportType: string | null;
|
|
129081
|
+
isDeleted: boolean | null;
|
|
129082
|
+
codeDonneur: string | null;
|
|
129083
|
+
codeReceveur: string | null;
|
|
129084
|
+
hasManifest: boolean;
|
|
129085
|
+
isOps: boolean;
|
|
129086
|
+
comment: string | null;
|
|
129087
|
+
createdFor: number | null;
|
|
129088
|
+
isArchived: boolean;
|
|
129089
|
+
isNeedArchive: boolean;
|
|
129090
|
+
isAnnulee: boolean;
|
|
129091
|
+
raison: string | null;
|
|
129092
|
+
color: string | null;
|
|
129093
|
+
docBordereaux: string | null;
|
|
129094
|
+
docAccompagnement: string | null;
|
|
129095
|
+
category: "course" | "all" | "import" | "export";
|
|
129096
|
+
typeExpedition: "expedition" | "course";
|
|
129097
|
+
driverId: number;
|
|
129098
|
+
typeDeRoue: string | null;
|
|
129099
|
+
isRecupererOps: boolean | null;
|
|
129100
|
+
isRemisOps: boolean | null;
|
|
129101
|
+
isRecupererChauffeur: boolean | null;
|
|
129102
|
+
isRemisChauffeur: boolean | null;
|
|
129103
|
+
lastCronRunAt: Date;
|
|
129104
|
+
devises: string | null;
|
|
129105
|
+
provenanceCommande: string | null;
|
|
129106
|
+
hasEmballage: boolean;
|
|
129107
|
+
facture: {
|
|
129108
|
+
id: number;
|
|
129109
|
+
createdAt: Date;
|
|
129110
|
+
message: string | null;
|
|
129111
|
+
updatedAt: Date;
|
|
129112
|
+
isParis: boolean;
|
|
129113
|
+
isMedical: boolean;
|
|
129114
|
+
isService: boolean;
|
|
129115
|
+
tva: number;
|
|
129116
|
+
billingCenterId: number;
|
|
129117
|
+
ref: number;
|
|
129118
|
+
isDeleted: boolean;
|
|
129119
|
+
provenanceCommande: string | null;
|
|
129120
|
+
statut: string;
|
|
129121
|
+
echeance: string;
|
|
129122
|
+
montant: number;
|
|
129123
|
+
shippingIds: string[];
|
|
129124
|
+
fuel: number;
|
|
129125
|
+
total: number;
|
|
129126
|
+
bonDeCommende: string | null;
|
|
129127
|
+
isVariation: boolean;
|
|
129128
|
+
isActiveForReedited: boolean;
|
|
129129
|
+
docFacture: string;
|
|
129130
|
+
fullRef: string;
|
|
129131
|
+
modeReglement: string | null;
|
|
129132
|
+
source: string | null;
|
|
129133
|
+
} | null;
|
|
129134
|
+
country?: {
|
|
129135
|
+
id: number;
|
|
129136
|
+
createdAt: Date;
|
|
129137
|
+
code: string;
|
|
129138
|
+
updatedAt: Date;
|
|
129139
|
+
name: string;
|
|
129140
|
+
phoneCode: string;
|
|
129141
|
+
} | undefined;
|
|
129142
|
+
billingCenter?: {
|
|
129143
|
+
id: number;
|
|
129144
|
+
createdAt: Date;
|
|
129145
|
+
updatedAt: Date;
|
|
129146
|
+
countryId: number;
|
|
129147
|
+
address: string;
|
|
129148
|
+
addressTwo: string | null;
|
|
129149
|
+
postalCode: string;
|
|
129150
|
+
city: string;
|
|
129151
|
+
telephoneOne: string;
|
|
129152
|
+
telephoneTwo: string | null;
|
|
129153
|
+
dafResponsibleName: string | null;
|
|
129154
|
+
email: string | null;
|
|
129155
|
+
intraVatNumber: string | null;
|
|
129156
|
+
numeroEori: string | null;
|
|
129157
|
+
comments: string | null;
|
|
129158
|
+
numCodeOne: string | null;
|
|
129159
|
+
numCodeTwo: string | null;
|
|
129160
|
+
isActif: boolean;
|
|
129161
|
+
isParis: boolean;
|
|
129162
|
+
isMedical: boolean;
|
|
129163
|
+
isService: boolean;
|
|
129164
|
+
dirigeant: string | null;
|
|
129165
|
+
dirigeantTel: string | null;
|
|
129166
|
+
dirigeantEmail: string | null;
|
|
129167
|
+
responsableComptable: string | null;
|
|
129168
|
+
responsableComptableTel: string | null;
|
|
129169
|
+
responsableComptableEmail: string | null;
|
|
129170
|
+
responsableDaf: string | null;
|
|
129171
|
+
responsableDafTel: string | null;
|
|
129172
|
+
responsableDafEmail: string | null;
|
|
129173
|
+
emailFacturation: string | null;
|
|
129174
|
+
logo: string | null;
|
|
129175
|
+
header: string | null;
|
|
129176
|
+
footer: string | null;
|
|
129177
|
+
emailOne: string | null;
|
|
129178
|
+
emailTwo: string | null;
|
|
129179
|
+
emailThree: string | null;
|
|
129180
|
+
tva: string | null;
|
|
129181
|
+
isMailing: boolean;
|
|
129182
|
+
telephone: string | null;
|
|
129183
|
+
billingCenterName: string;
|
|
129184
|
+
customerId: number | null;
|
|
129185
|
+
numeroSiren: string | null;
|
|
129186
|
+
invoiceMailOne: string;
|
|
129187
|
+
invoiceMailTwo: string | null;
|
|
129188
|
+
isSubmittedToFrenchVat: boolean;
|
|
129189
|
+
isActiveMailInstruction: boolean;
|
|
129190
|
+
isActiveVariation: boolean;
|
|
129191
|
+
isShowSecondBordereaux: boolean;
|
|
129192
|
+
isShowCustomerName: boolean;
|
|
129193
|
+
isShowCommercialValue: boolean;
|
|
129194
|
+
} | undefined;
|
|
129195
|
+
user?: {
|
|
129196
|
+
id: number;
|
|
129197
|
+
createdAt: Date;
|
|
129198
|
+
updatedAt: Date;
|
|
129199
|
+
countryId: number | null;
|
|
129200
|
+
addressTwo: string;
|
|
129201
|
+
postalCode: string;
|
|
129202
|
+
city: string;
|
|
129203
|
+
telephoneOne: string;
|
|
129204
|
+
telephoneTwo: string;
|
|
129205
|
+
email: string;
|
|
129206
|
+
comments: string;
|
|
129207
|
+
numCodeOne: string;
|
|
129208
|
+
numCodeTwo: string;
|
|
129209
|
+
isActif: boolean;
|
|
129210
|
+
isParis: boolean;
|
|
129211
|
+
isMedical: boolean;
|
|
129212
|
+
isService: boolean;
|
|
129213
|
+
emailOne: string;
|
|
129214
|
+
emailTwo: string;
|
|
129215
|
+
addressOne: string;
|
|
129216
|
+
customerId: number;
|
|
129217
|
+
firstName: string;
|
|
129218
|
+
lastName: string;
|
|
129219
|
+
emailVerifiedAt: Date;
|
|
129220
|
+
password: string;
|
|
129221
|
+
poste: string;
|
|
129222
|
+
roles: string[];
|
|
129223
|
+
isOpsAdmin: boolean;
|
|
129224
|
+
civility: string;
|
|
129225
|
+
isShowCalculatrice: boolean;
|
|
129226
|
+
expedition: boolean;
|
|
129227
|
+
physicCompany: string;
|
|
129228
|
+
menus: string;
|
|
129229
|
+
ongletExpedition: string;
|
|
129230
|
+
chauffeurType: string;
|
|
129231
|
+
typeOfOps: string;
|
|
129232
|
+
prestation: string;
|
|
129233
|
+
tracking: string;
|
|
129234
|
+
expeditionCourse: string;
|
|
129235
|
+
carnetAddress: string;
|
|
129236
|
+
expeditionsCarnet: string;
|
|
129237
|
+
accessArchive: string;
|
|
129238
|
+
isShowImportMenu: boolean;
|
|
129239
|
+
isShowExportMenu: boolean;
|
|
129240
|
+
isShowCourseMenu: boolean;
|
|
129241
|
+
twoRoues: boolean;
|
|
129242
|
+
vt: boolean;
|
|
129243
|
+
lesTwo: boolean;
|
|
129244
|
+
isMiniTracking: boolean;
|
|
129245
|
+
isFullTracking: boolean;
|
|
129246
|
+
isShareCourseAndExpedition: boolean;
|
|
129247
|
+
isShareCarnetAdresse: boolean;
|
|
129248
|
+
isShareCarnetAdresseAndExpedition: boolean;
|
|
129249
|
+
isAccessAuxArchives: boolean;
|
|
129250
|
+
isShowInfo: boolean;
|
|
129251
|
+
photo: string | null;
|
|
129252
|
+
entreprisePhysique: string;
|
|
129253
|
+
isAdminChauffeur: boolean;
|
|
129254
|
+
isShowTracking: boolean;
|
|
129255
|
+
isSupportActivated: boolean;
|
|
129256
|
+
isClientTransitaire: boolean;
|
|
129257
|
+
vehiculeId: number;
|
|
129258
|
+
salaryId: number;
|
|
129259
|
+
} | undefined;
|
|
129260
|
+
pickupDate?: Date | undefined;
|
|
129261
|
+
deliveryDate?: Date | undefined;
|
|
129262
|
+
heureRecupererOps?: Date | undefined;
|
|
129263
|
+
heureRemisOps?: Date | undefined;
|
|
129264
|
+
heureRecupererChauffeur?: Date | undefined;
|
|
129265
|
+
heureRemisChauffeur?: Date | undefined;
|
|
129266
|
+
factureLines?: {
|
|
129267
|
+
id: number;
|
|
129268
|
+
createdAt: Date;
|
|
129269
|
+
updatedAt: Date;
|
|
129270
|
+
tva: number;
|
|
129271
|
+
shippingId: number;
|
|
129272
|
+
classifications: string;
|
|
129273
|
+
comment: string | null;
|
|
129274
|
+
fuel: number;
|
|
129275
|
+
total: number;
|
|
129276
|
+
isVariation: boolean;
|
|
129277
|
+
fullRef: string;
|
|
129278
|
+
lineType: string;
|
|
129279
|
+
prix: number;
|
|
129280
|
+
qte: number;
|
|
129281
|
+
totalFinal: number;
|
|
129282
|
+
factureRef: number | null;
|
|
129283
|
+
oldFactureRef: number | null;
|
|
129284
|
+
factureId: number | null;
|
|
129285
|
+
facturationLineId: number;
|
|
129286
|
+
}[] | undefined;
|
|
129287
|
+
shippingManifests?: {
|
|
129288
|
+
id: number;
|
|
129289
|
+
createdAt: Date;
|
|
129290
|
+
updatedAt: Date;
|
|
129291
|
+
shippingId: number;
|
|
129292
|
+
manifestId: number;
|
|
129293
|
+
} | undefined;
|
|
129294
|
+
shippingClassification?: {
|
|
129295
|
+
id: number;
|
|
129296
|
+
createdAt: Date;
|
|
129297
|
+
updatedAt: Date;
|
|
129298
|
+
shippingId: number;
|
|
129299
|
+
europe: boolean;
|
|
129300
|
+
express: boolean;
|
|
129301
|
+
international: boolean;
|
|
129302
|
+
locale: boolean;
|
|
129303
|
+
national: boolean;
|
|
129304
|
+
premium: boolean;
|
|
129305
|
+
spx: boolean;
|
|
129306
|
+
spxDrive: boolean;
|
|
129307
|
+
spxPlus: boolean;
|
|
129308
|
+
spxSat: boolean;
|
|
129309
|
+
voiture: boolean;
|
|
129310
|
+
spxHOneHourThirty: boolean;
|
|
129311
|
+
spxHThreeHours: boolean;
|
|
129312
|
+
spxHNineHours: boolean;
|
|
129313
|
+
spxHTenHours: boolean;
|
|
129314
|
+
spxHTwelveHours: boolean;
|
|
129315
|
+
} | undefined;
|
|
129316
|
+
shippingCourse?: {
|
|
129317
|
+
id: number;
|
|
129318
|
+
createdAt: Date;
|
|
129319
|
+
updatedAt: Date;
|
|
129320
|
+
userId: number;
|
|
129321
|
+
packageDescription: string;
|
|
129322
|
+
additionalInsurance: boolean;
|
|
129323
|
+
additionalInsuranceAmount: number | null;
|
|
129324
|
+
documents: string | null;
|
|
129325
|
+
valeurDouane: string | null;
|
|
129326
|
+
porteur: string;
|
|
129327
|
+
nombreRoue: string;
|
|
129328
|
+
shippingId: number;
|
|
129329
|
+
} | undefined;
|
|
129330
|
+
livraisonChauffeur?: {
|
|
129331
|
+
id: number;
|
|
129332
|
+
createdAt: Date;
|
|
129333
|
+
updatedAt: Date;
|
|
129334
|
+
userId: number;
|
|
129335
|
+
shippingId: number;
|
|
129336
|
+
visibleTo: boolean;
|
|
129337
|
+
} | undefined;
|
|
129338
|
+
shippingPackage?: {
|
|
129339
|
+
id: number;
|
|
129340
|
+
createdAt: Date;
|
|
129341
|
+
length: number;
|
|
129342
|
+
updatedAt: Date;
|
|
129343
|
+
additionalInsurance: boolean;
|
|
129344
|
+
additionalInsuranceAmount: number | null;
|
|
129345
|
+
documents: string[] | null;
|
|
129346
|
+
shippingId: number;
|
|
129347
|
+
ref: string | null;
|
|
129348
|
+
devises: string | null;
|
|
129349
|
+
width: number;
|
|
129350
|
+
height: number;
|
|
129351
|
+
weight: number;
|
|
129352
|
+
weightVolume: number;
|
|
129353
|
+
description: string;
|
|
129354
|
+
valueInDouane: string | null;
|
|
129355
|
+
valeurAssure: string | null;
|
|
129356
|
+
statut: string | null;
|
|
129357
|
+
montantDevi: string | null;
|
|
129358
|
+
nombreDevi: string | null;
|
|
129359
|
+
incoterm: string | null;
|
|
129360
|
+
} | undefined;
|
|
129361
|
+
shippingPod?: {
|
|
129362
|
+
id: number;
|
|
129363
|
+
createdAt: Date;
|
|
129364
|
+
date: Date;
|
|
129365
|
+
updatedAt: Date;
|
|
129366
|
+
shippingId: number;
|
|
129367
|
+
signature: string;
|
|
129368
|
+
coursier: string;
|
|
129369
|
+
heurs: Date;
|
|
129370
|
+
picturePod: string | null;
|
|
129371
|
+
} | undefined;
|
|
129372
|
+
ramassageChauffeur?: {
|
|
129373
|
+
id: number;
|
|
129374
|
+
createdAt: Date;
|
|
129375
|
+
date: string | null;
|
|
129376
|
+
updatedAt: Date;
|
|
129377
|
+
nom: string;
|
|
129378
|
+
prenom: string;
|
|
129379
|
+
userId: number;
|
|
129380
|
+
shippingId: number;
|
|
129381
|
+
visibleTo: boolean;
|
|
129382
|
+
signature: string | null;
|
|
129383
|
+
heurs: string | null;
|
|
129384
|
+
picture: string | null;
|
|
129385
|
+
} | undefined;
|
|
129386
|
+
shippingEmballage?: {
|
|
129387
|
+
id: number;
|
|
129388
|
+
createdAt: Date;
|
|
129389
|
+
updatedAt: Date;
|
|
129390
|
+
shippingId: number;
|
|
129391
|
+
comment: string;
|
|
129392
|
+
nbrDiagnobag: number;
|
|
129393
|
+
hasSonde: boolean;
|
|
129394
|
+
hasDiagnobag: boolean;
|
|
129395
|
+
isPrepared: boolean;
|
|
129396
|
+
emballageId: number;
|
|
129397
|
+
typeSondeId: number;
|
|
129398
|
+
typeDiagnobagId: number;
|
|
129399
|
+
} | undefined;
|
|
129400
|
+
shippingAffecteds?: {
|
|
129401
|
+
id: number;
|
|
129402
|
+
createdAt: Date;
|
|
129403
|
+
updatedAt: Date;
|
|
129404
|
+
userId: number;
|
|
129405
|
+
shippingId: number;
|
|
129406
|
+
}[] | undefined;
|
|
129407
|
+
shippingComments?: {
|
|
129408
|
+
id: number;
|
|
129409
|
+
createdAt: Date;
|
|
129410
|
+
updatedAt: Date;
|
|
129411
|
+
userId: number;
|
|
129412
|
+
shippingId: number;
|
|
129413
|
+
content: string;
|
|
129414
|
+
}[] | undefined;
|
|
129415
|
+
shippingDetails?: {
|
|
129416
|
+
id: number;
|
|
129417
|
+
createdAt: Date;
|
|
129418
|
+
type: "expeditor" | "receiver";
|
|
129419
|
+
updatedAt: Date;
|
|
129420
|
+
phoneCode: string;
|
|
129421
|
+
fullName: string;
|
|
129422
|
+
countryId: number | null;
|
|
129423
|
+
addressTwo: string | null;
|
|
129424
|
+
postalCode: string;
|
|
129425
|
+
city: string;
|
|
129426
|
+
email: string;
|
|
129427
|
+
civility: string;
|
|
129428
|
+
shippingId: number;
|
|
129429
|
+
company: string;
|
|
129430
|
+
address1: string;
|
|
129431
|
+
phoneOne: string;
|
|
129432
|
+
phoneTwo: string | null;
|
|
129433
|
+
}[] | undefined;
|
|
129434
|
+
shippingDocuments?: {
|
|
129435
|
+
id: number;
|
|
129436
|
+
createdAt: Date;
|
|
129437
|
+
type: string;
|
|
129438
|
+
updatedAt: Date;
|
|
129439
|
+
nom: string;
|
|
129440
|
+
userId: number;
|
|
129441
|
+
shippingId: number;
|
|
129442
|
+
document: string;
|
|
129443
|
+
}[] | undefined;
|
|
129444
|
+
historiqueActions?: {
|
|
129445
|
+
id: number;
|
|
129446
|
+
createdAt: Date;
|
|
129447
|
+
type: "CONNEXION" | "DECONNEXION" | "ACTION";
|
|
129448
|
+
updatedAt: Date;
|
|
129449
|
+
userId: number | null;
|
|
129450
|
+
shippingId: number | null;
|
|
129451
|
+
action: string;
|
|
129452
|
+
data: Record<string, any>;
|
|
129453
|
+
}[] | undefined;
|
|
129454
|
+
informationImportantes?: {
|
|
129455
|
+
id: number;
|
|
129456
|
+
createdAt: Date;
|
|
129457
|
+
updatedAt: Date;
|
|
129458
|
+
userId: number;
|
|
129459
|
+
shippingId: number;
|
|
129460
|
+
information: string;
|
|
129461
|
+
}[] | undefined;
|
|
129462
|
+
shippingTrackings?: {
|
|
129463
|
+
id: number;
|
|
129464
|
+
createdAt: Date;
|
|
129465
|
+
status: string | null;
|
|
129466
|
+
updatedAt: Date;
|
|
129467
|
+
isParis: boolean;
|
|
129468
|
+
isMedical: boolean;
|
|
129469
|
+
isService: boolean;
|
|
129470
|
+
userId: number;
|
|
129471
|
+
chauffeur: string;
|
|
129472
|
+
shippingId: number;
|
|
129473
|
+
dateTracking: Date;
|
|
129474
|
+
dateSuivi: string;
|
|
129475
|
+
heurSuivi: string;
|
|
129476
|
+
details: string;
|
|
129477
|
+
agents: string;
|
|
129478
|
+
visible: boolean;
|
|
129479
|
+
isTemplate: boolean;
|
|
129480
|
+
state: boolean;
|
|
129481
|
+
location: string | null;
|
|
129482
|
+
isDriver: boolean;
|
|
129483
|
+
userOpsId: number | null;
|
|
129484
|
+
dateValidateOps?: Date | undefined;
|
|
129485
|
+
}[] | undefined;
|
|
129486
|
+
}[];
|
|
129487
|
+
meta: {
|
|
129488
|
+
total: number;
|
|
129489
|
+
perPage: number;
|
|
129490
|
+
currentPage: number;
|
|
129491
|
+
lastPage: number;
|
|
129492
|
+
firstPage: number;
|
|
129493
|
+
firstPageUrl: string;
|
|
129494
|
+
lastPageUrl: string;
|
|
129495
|
+
nextPageUrl: string | null;
|
|
129496
|
+
previousPageUrl: string | null;
|
|
129497
|
+
};
|
|
129498
|
+
};
|
|
129499
|
+
success: true;
|
|
129500
|
+
status?: number | undefined;
|
|
129501
|
+
message?: string | undefined;
|
|
129502
|
+
error?: undefined;
|
|
129503
|
+
}>, z.ZodObject<{
|
|
129504
|
+
data: z.ZodNever;
|
|
129505
|
+
message: z.ZodString;
|
|
129506
|
+
status: z.ZodOptional<z.ZodNumber>;
|
|
129507
|
+
error: z.ZodObject<{
|
|
129508
|
+
message: z.ZodString;
|
|
129509
|
+
info: z.ZodObject<{
|
|
129510
|
+
status: z.ZodNumber;
|
|
129511
|
+
code: z.ZodString;
|
|
129512
|
+
messages: z.ZodArray<z.ZodObject<{
|
|
129513
|
+
message: z.ZodString;
|
|
129514
|
+
rule: z.ZodOptional<z.ZodString>;
|
|
129515
|
+
field: z.ZodOptional<z.ZodString>;
|
|
129516
|
+
}, "strip", z.ZodTypeAny, {
|
|
129517
|
+
message: string;
|
|
129518
|
+
rule?: string | undefined;
|
|
129519
|
+
field?: string | undefined;
|
|
129520
|
+
}, {
|
|
129521
|
+
message: string;
|
|
129522
|
+
rule?: string | undefined;
|
|
129523
|
+
field?: string | undefined;
|
|
129524
|
+
}>, "many">;
|
|
129525
|
+
}, "strip", z.ZodTypeAny, {
|
|
129526
|
+
status: number;
|
|
129527
|
+
code: string;
|
|
129528
|
+
messages: {
|
|
129529
|
+
message: string;
|
|
129530
|
+
rule?: string | undefined;
|
|
129531
|
+
field?: string | undefined;
|
|
129532
|
+
}[];
|
|
129533
|
+
}, {
|
|
129534
|
+
status: number;
|
|
129535
|
+
code: string;
|
|
129536
|
+
messages: {
|
|
129537
|
+
message: string;
|
|
129538
|
+
rule?: string | undefined;
|
|
129539
|
+
field?: string | undefined;
|
|
129540
|
+
}[];
|
|
129541
|
+
}>;
|
|
129542
|
+
}, "strip", z.ZodTypeAny, {
|
|
129543
|
+
message: string;
|
|
129544
|
+
info: {
|
|
129545
|
+
status: number;
|
|
129546
|
+
code: string;
|
|
129547
|
+
messages: {
|
|
129548
|
+
message: string;
|
|
129549
|
+
rule?: string | undefined;
|
|
129550
|
+
field?: string | undefined;
|
|
129551
|
+
}[];
|
|
129552
|
+
};
|
|
129553
|
+
}, {
|
|
129554
|
+
message: string;
|
|
129555
|
+
info: {
|
|
129556
|
+
status: number;
|
|
129557
|
+
code: string;
|
|
129558
|
+
messages: {
|
|
129559
|
+
message: string;
|
|
129560
|
+
rule?: string | undefined;
|
|
129561
|
+
field?: string | undefined;
|
|
129562
|
+
}[];
|
|
129563
|
+
};
|
|
129564
|
+
}>;
|
|
129565
|
+
success: z.ZodNever;
|
|
129566
|
+
}, "strip", z.ZodTypeAny, {
|
|
129567
|
+
message: string;
|
|
129568
|
+
data: never;
|
|
129569
|
+
error: {
|
|
129570
|
+
message: string;
|
|
129571
|
+
info: {
|
|
129572
|
+
status: number;
|
|
129573
|
+
code: string;
|
|
129574
|
+
messages: {
|
|
129575
|
+
message: string;
|
|
129576
|
+
rule?: string | undefined;
|
|
129577
|
+
field?: string | undefined;
|
|
129578
|
+
}[];
|
|
129579
|
+
};
|
|
129580
|
+
};
|
|
129581
|
+
success: never;
|
|
129582
|
+
status?: number | undefined;
|
|
129583
|
+
}, {
|
|
129584
|
+
message: string;
|
|
129585
|
+
data: never;
|
|
129586
|
+
error: {
|
|
129587
|
+
message: string;
|
|
129588
|
+
info: {
|
|
129589
|
+
status: number;
|
|
129590
|
+
code: string;
|
|
129591
|
+
messages: {
|
|
129592
|
+
message: string;
|
|
129593
|
+
rule?: string | undefined;
|
|
129594
|
+
field?: string | undefined;
|
|
129595
|
+
}[];
|
|
129596
|
+
};
|
|
129597
|
+
};
|
|
129598
|
+
success: never;
|
|
129599
|
+
status?: number | undefined;
|
|
129600
|
+
}>]>;
|
|
129601
|
+
};
|
|
125700
129602
|
};
|
|
125701
129603
|
declare const historiqueActionRoutes: {
|
|
125702
129604
|
liste: {
|