exnet-routing 1.2.42 → 1.2.44

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.
@@ -75609,12 +75609,1687 @@ declare const supportTicketRoutes: {
75609
75609
  }>]>;
75610
75610
  };
75611
75611
  };
75612
+ declare const factureRoutes: {
75613
+ ref: {
75614
+ method: "GET";
75615
+ url: string;
75616
+ params: z.ZodObject<{
75617
+ userInterface: z.ZodEnum<["paris", "medical", "service"]>;
75618
+ }, "strip", z.ZodTypeAny, {
75619
+ userInterface: "paris" | "medical" | "service";
75620
+ }, {
75621
+ userInterface: "paris" | "medical" | "service";
75622
+ }>;
75623
+ response: z.ZodUnion<[z.ZodObject<{
75624
+ data: z.ZodObject<{
75625
+ ref: z.ZodString;
75626
+ }, "strip", z.ZodTypeAny, {
75627
+ ref: string;
75628
+ }, {
75629
+ ref: string;
75630
+ }>;
75631
+ message: z.ZodOptional<z.ZodString>;
75632
+ status: z.ZodOptional<z.ZodNumber>;
75633
+ error: z.ZodOptional<z.ZodNever>;
75634
+ success: z.ZodLiteral<true>;
75635
+ }, "strip", z.ZodTypeAny, {
75636
+ data: {
75637
+ ref: string;
75638
+ };
75639
+ success: true;
75640
+ status?: number | undefined;
75641
+ message?: string | undefined;
75642
+ error?: undefined;
75643
+ }, {
75644
+ data: {
75645
+ ref: string;
75646
+ };
75647
+ success: true;
75648
+ status?: number | undefined;
75649
+ message?: string | undefined;
75650
+ error?: undefined;
75651
+ }>, z.ZodObject<{
75652
+ data: z.ZodNever;
75653
+ message: z.ZodString;
75654
+ status: z.ZodOptional<z.ZodNumber>;
75655
+ error: z.ZodObject<{
75656
+ message: z.ZodString;
75657
+ info: z.ZodObject<{
75658
+ status: z.ZodNumber;
75659
+ code: z.ZodString;
75660
+ messages: z.ZodArray<z.ZodObject<{
75661
+ message: z.ZodString;
75662
+ rule: z.ZodOptional<z.ZodString>;
75663
+ field: z.ZodOptional<z.ZodString>;
75664
+ }, "strip", z.ZodTypeAny, {
75665
+ message: string;
75666
+ rule?: string | undefined;
75667
+ field?: string | undefined;
75668
+ }, {
75669
+ message: string;
75670
+ rule?: string | undefined;
75671
+ field?: string | undefined;
75672
+ }>, "many">;
75673
+ }, "strip", z.ZodTypeAny, {
75674
+ status: number;
75675
+ code: string;
75676
+ messages: {
75677
+ message: string;
75678
+ rule?: string | undefined;
75679
+ field?: string | undefined;
75680
+ }[];
75681
+ }, {
75682
+ status: number;
75683
+ code: string;
75684
+ messages: {
75685
+ message: string;
75686
+ rule?: string | undefined;
75687
+ field?: string | undefined;
75688
+ }[];
75689
+ }>;
75690
+ }, "strip", z.ZodTypeAny, {
75691
+ message: string;
75692
+ info: {
75693
+ status: number;
75694
+ code: string;
75695
+ messages: {
75696
+ message: string;
75697
+ rule?: string | undefined;
75698
+ field?: string | undefined;
75699
+ }[];
75700
+ };
75701
+ }, {
75702
+ message: string;
75703
+ info: {
75704
+ status: number;
75705
+ code: string;
75706
+ messages: {
75707
+ message: string;
75708
+ rule?: string | undefined;
75709
+ field?: string | undefined;
75710
+ }[];
75711
+ };
75712
+ }>;
75713
+ success: z.ZodNever;
75714
+ }, "strip", z.ZodTypeAny, {
75715
+ message: string;
75716
+ data: never;
75717
+ error: {
75718
+ message: string;
75719
+ info: {
75720
+ status: number;
75721
+ code: string;
75722
+ messages: {
75723
+ message: string;
75724
+ rule?: string | undefined;
75725
+ field?: string | undefined;
75726
+ }[];
75727
+ };
75728
+ };
75729
+ success: never;
75730
+ status?: number | undefined;
75731
+ }, {
75732
+ message: string;
75733
+ data: never;
75734
+ error: {
75735
+ message: string;
75736
+ info: {
75737
+ status: number;
75738
+ code: string;
75739
+ messages: {
75740
+ message: string;
75741
+ rule?: string | undefined;
75742
+ field?: string | undefined;
75743
+ }[];
75744
+ };
75745
+ };
75746
+ success: never;
75747
+ status?: number | undefined;
75748
+ }>]>;
75749
+ };
75750
+ activeReediter: {
75751
+ method: "PUT";
75752
+ url: string;
75753
+ params: z.ZodObject<{
75754
+ userInterface: z.ZodEnum<["paris", "medical", "service"]>;
75755
+ id: z.ZodString;
75756
+ }, "strip", z.ZodTypeAny, {
75757
+ id: string;
75758
+ userInterface: "paris" | "medical" | "service";
75759
+ }, {
75760
+ id: string;
75761
+ userInterface: "paris" | "medical" | "service";
75762
+ }>;
75763
+ response: z.ZodUnion<[z.ZodObject<{
75764
+ data: z.ZodObject<{
75765
+ id: z.ZodNumber;
75766
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
75767
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
75768
+ isParis: z.ZodBoolean;
75769
+ isMedical: z.ZodBoolean;
75770
+ isService: z.ZodBoolean;
75771
+ echeance: z.ZodString;
75772
+ statut: z.ZodString;
75773
+ montant: z.ZodNumber;
75774
+ shippingIds: z.ZodArray<z.ZodString, "many">;
75775
+ fuel: z.ZodNumber;
75776
+ tva: z.ZodNumber;
75777
+ total: z.ZodNumber;
75778
+ ref: z.ZodNumber;
75779
+ isDeleted: z.ZodBoolean;
75780
+ bonDeCommende: z.ZodNullable<z.ZodString>;
75781
+ isVariation: z.ZodBoolean;
75782
+ isActiveForReedited: z.ZodBoolean;
75783
+ docFacture: z.ZodString;
75784
+ fullRef: z.ZodString;
75785
+ message: z.ZodNullable<z.ZodString>;
75786
+ modeReglement: z.ZodNullable<z.ZodString>;
75787
+ source: z.ZodNullable<z.ZodString>;
75788
+ provenanceCommande: z.ZodNullable<z.ZodString>;
75789
+ billingCenterId: z.ZodNumber;
75790
+ billingCenter: z.ZodOptional<z.ZodLazy<z.ZodObject<{
75791
+ id: z.ZodNumber;
75792
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
75793
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
75794
+ billingCenterName: z.ZodString;
75795
+ numeroEori: z.ZodNullable<z.ZodString>;
75796
+ numeroSiren: z.ZodNullable<z.ZodString>;
75797
+ countryId: z.ZodNumber;
75798
+ address: z.ZodString;
75799
+ addressTwo: z.ZodNullable<z.ZodString>;
75800
+ postalCode: z.ZodString;
75801
+ city: z.ZodString;
75802
+ telephoneOne: z.ZodString;
75803
+ telephoneTwo: z.ZodNullable<z.ZodString>;
75804
+ invoiceMailOne: z.ZodString;
75805
+ invoiceMailTwo: z.ZodNullable<z.ZodString>;
75806
+ dafResponsibleName: z.ZodNullable<z.ZodString>;
75807
+ telephone: z.ZodNullable<z.ZodString>;
75808
+ email: z.ZodNullable<z.ZodString>;
75809
+ intraVatNumber: z.ZodNullable<z.ZodString>;
75810
+ isSubmittedToFrenchVat: z.ZodBoolean;
75811
+ comments: z.ZodNullable<z.ZodString>;
75812
+ numCodeOne: z.ZodNullable<z.ZodString>;
75813
+ numCodeTwo: z.ZodNullable<z.ZodString>;
75814
+ isActiveMailInstruction: z.ZodBoolean;
75815
+ isActif: z.ZodBoolean;
75816
+ isActiveVariation: z.ZodBoolean;
75817
+ isMailing: z.ZodBoolean;
75818
+ isParis: z.ZodBoolean;
75819
+ isMedical: z.ZodBoolean;
75820
+ isService: z.ZodBoolean;
75821
+ isShowSecondBordereaux: z.ZodBoolean;
75822
+ isShowCustomerName: z.ZodBoolean;
75823
+ isShowCommercialValue: z.ZodBoolean;
75824
+ dirigeant: z.ZodNullable<z.ZodString>;
75825
+ dirigeantTel: z.ZodNullable<z.ZodString>;
75826
+ dirigeantEmail: z.ZodNullable<z.ZodString>;
75827
+ responsableComptable: z.ZodNullable<z.ZodString>;
75828
+ responsableComptableTel: z.ZodNullable<z.ZodString>;
75829
+ responsableComptableEmail: z.ZodNullable<z.ZodString>;
75830
+ responsableDaf: z.ZodNullable<z.ZodString>;
75831
+ responsableDafTel: z.ZodNullable<z.ZodString>;
75832
+ responsableDafEmail: z.ZodNullable<z.ZodString>;
75833
+ emailFacturation: z.ZodNullable<z.ZodString>;
75834
+ logo: z.ZodNullable<z.ZodString>;
75835
+ header: z.ZodNullable<z.ZodString>;
75836
+ footer: z.ZodNullable<z.ZodString>;
75837
+ emailOne: z.ZodNullable<z.ZodString>;
75838
+ emailTwo: z.ZodNullable<z.ZodString>;
75839
+ emailThree: z.ZodNullable<z.ZodString>;
75840
+ tva: z.ZodNullable<z.ZodString>;
75841
+ customerId: z.ZodNullable<z.ZodNumber>;
75842
+ customer: z.ZodOptional<z.ZodLazy<z.ZodObject<{
75843
+ id: z.ZodNumber;
75844
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
75845
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
75846
+ fullName: z.ZodString;
75847
+ countryId: z.ZodNumber;
75848
+ address: z.ZodString;
75849
+ addressTwo: z.ZodNullable<z.ZodString>;
75850
+ postalCode: z.ZodString;
75851
+ city: z.ZodString;
75852
+ telephoneOne: z.ZodString;
75853
+ telephoneTwo: z.ZodNullable<z.ZodString>;
75854
+ invoiceMail: z.ZodString;
75855
+ dafResponsibleName: z.ZodString;
75856
+ email: z.ZodNullable<z.ZodString>;
75857
+ intraVatNumber: z.ZodNullable<z.ZodString>;
75858
+ submittedToFrenchVat: z.ZodBoolean;
75859
+ siren: z.ZodString;
75860
+ numeroEori: z.ZodNullable<z.ZodString>;
75861
+ comments: z.ZodNullable<z.ZodString>;
75862
+ numCodeOne: z.ZodNullable<z.ZodString>;
75863
+ numCodeTwo: z.ZodNullable<z.ZodString>;
75864
+ isActif: z.ZodBoolean;
75865
+ isParis: z.ZodBoolean;
75866
+ isMedical: z.ZodBoolean;
75867
+ isService: z.ZodBoolean;
75868
+ valeurCustomer: z.ZodBoolean;
75869
+ dirigeant: z.ZodNullable<z.ZodString>;
75870
+ dirigeantTel: z.ZodNullable<z.ZodString>;
75871
+ dirigeantEmail: z.ZodNullable<z.ZodString>;
75872
+ responsableComptable: z.ZodNullable<z.ZodString>;
75873
+ responsableComptableTel: z.ZodNullable<z.ZodString>;
75874
+ responsableComptableEmail: z.ZodNullable<z.ZodString>;
75875
+ responsableDaf: z.ZodNullable<z.ZodString>;
75876
+ responsableDafTel: z.ZodNullable<z.ZodString>;
75877
+ responsableDafEmail: z.ZodNullable<z.ZodString>;
75878
+ emailFacturation: z.ZodNullable<z.ZodString>;
75879
+ logo: z.ZodNullable<z.ZodString>;
75880
+ header: z.ZodNullable<z.ZodString>;
75881
+ footer: z.ZodNullable<z.ZodString>;
75882
+ emailOne: z.ZodNullable<z.ZodString>;
75883
+ emailTwo: z.ZodNullable<z.ZodString>;
75884
+ emailThree: z.ZodNullable<z.ZodString>;
75885
+ tva: z.ZodNullable<z.ZodString>;
75886
+ isTrackingMail: z.ZodNullable<z.ZodBoolean>;
75887
+ isBillingCenter: z.ZodBoolean;
75888
+ isShowNameCustomer: z.ZodBoolean;
75889
+ isMailing: z.ZodBoolean;
75890
+ numeroSiret: z.ZodNullable<z.ZodString>;
75891
+ country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
75892
+ id: z.ZodNumber;
75893
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
75894
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
75895
+ name: z.ZodString;
75896
+ code: z.ZodString;
75897
+ phoneCode: z.ZodString;
75898
+ }, "strip", z.ZodTypeAny, {
75899
+ id: number;
75900
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
75901
+ code: string;
75902
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
75903
+ name: string;
75904
+ phoneCode: string;
75905
+ }, {
75906
+ id: number;
75907
+ createdAt: Date;
75908
+ code: string;
75909
+ updatedAt: Date;
75910
+ name: string;
75911
+ phoneCode: string;
75912
+ }>>>;
75913
+ }, "strip", z.ZodTypeAny, {
75914
+ id: number;
75915
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
75916
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
75917
+ fullName: string;
75918
+ countryId: number;
75919
+ address: string;
75920
+ addressTwo: string | null;
75921
+ postalCode: string;
75922
+ city: string;
75923
+ telephoneOne: string;
75924
+ telephoneTwo: string | null;
75925
+ invoiceMail: string;
75926
+ dafResponsibleName: string;
75927
+ email: string | null;
75928
+ intraVatNumber: string | null;
75929
+ submittedToFrenchVat: boolean;
75930
+ siren: string;
75931
+ numeroEori: string | null;
75932
+ comments: string | null;
75933
+ numCodeOne: string | null;
75934
+ numCodeTwo: string | null;
75935
+ isActif: boolean;
75936
+ isParis: boolean;
75937
+ isMedical: boolean;
75938
+ isService: boolean;
75939
+ valeurCustomer: boolean;
75940
+ dirigeant: string | null;
75941
+ dirigeantTel: string | null;
75942
+ dirigeantEmail: string | null;
75943
+ responsableComptable: string | null;
75944
+ responsableComptableTel: string | null;
75945
+ responsableComptableEmail: string | null;
75946
+ responsableDaf: string | null;
75947
+ responsableDafTel: string | null;
75948
+ responsableDafEmail: string | null;
75949
+ emailFacturation: string | null;
75950
+ logo: string | null;
75951
+ header: string | null;
75952
+ footer: string | null;
75953
+ emailOne: string | null;
75954
+ emailTwo: string | null;
75955
+ emailThree: string | null;
75956
+ tva: string | null;
75957
+ isTrackingMail: boolean | null;
75958
+ isBillingCenter: boolean;
75959
+ isShowNameCustomer: boolean;
75960
+ isMailing: boolean;
75961
+ numeroSiret: string | null;
75962
+ country?: {
75963
+ id: number;
75964
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
75965
+ code: string;
75966
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
75967
+ name: string;
75968
+ phoneCode: string;
75969
+ } | undefined;
75970
+ }, {
75971
+ id: number;
75972
+ createdAt: Date;
75973
+ updatedAt: Date;
75974
+ fullName: string;
75975
+ countryId: number;
75976
+ address: string;
75977
+ addressTwo: string | null;
75978
+ postalCode: string;
75979
+ city: string;
75980
+ telephoneOne: string;
75981
+ telephoneTwo: string | null;
75982
+ invoiceMail: string;
75983
+ dafResponsibleName: string;
75984
+ email: string | null;
75985
+ intraVatNumber: string | null;
75986
+ submittedToFrenchVat: boolean;
75987
+ siren: string;
75988
+ numeroEori: string | null;
75989
+ comments: string | null;
75990
+ numCodeOne: string | null;
75991
+ numCodeTwo: string | null;
75992
+ isActif: boolean;
75993
+ isParis: boolean;
75994
+ isMedical: boolean;
75995
+ isService: boolean;
75996
+ valeurCustomer: boolean;
75997
+ dirigeant: string | null;
75998
+ dirigeantTel: string | null;
75999
+ dirigeantEmail: string | null;
76000
+ responsableComptable: string | null;
76001
+ responsableComptableTel: string | null;
76002
+ responsableComptableEmail: string | null;
76003
+ responsableDaf: string | null;
76004
+ responsableDafTel: string | null;
76005
+ responsableDafEmail: string | null;
76006
+ emailFacturation: string | null;
76007
+ logo: string | null;
76008
+ header: string | null;
76009
+ footer: string | null;
76010
+ emailOne: string | null;
76011
+ emailTwo: string | null;
76012
+ emailThree: string | null;
76013
+ tva: string | null;
76014
+ isTrackingMail: boolean | null;
76015
+ isBillingCenter: boolean;
76016
+ isShowNameCustomer: boolean;
76017
+ isMailing: boolean;
76018
+ numeroSiret: string | null;
76019
+ country?: {
76020
+ id: number;
76021
+ createdAt: Date;
76022
+ code: string;
76023
+ updatedAt: Date;
76024
+ name: string;
76025
+ phoneCode: string;
76026
+ } | undefined;
76027
+ }>>>;
76028
+ country: z.ZodOptional<z.ZodLazy<z.ZodObject<{
76029
+ id: z.ZodNumber;
76030
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
76031
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
76032
+ name: z.ZodString;
76033
+ code: z.ZodString;
76034
+ phoneCode: z.ZodString;
76035
+ }, "strip", z.ZodTypeAny, {
76036
+ id: number;
76037
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76038
+ code: string;
76039
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76040
+ name: string;
76041
+ phoneCode: string;
76042
+ }, {
76043
+ id: number;
76044
+ createdAt: Date;
76045
+ code: string;
76046
+ updatedAt: Date;
76047
+ name: string;
76048
+ phoneCode: string;
76049
+ }>>>;
76050
+ userBillingCenters: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodTypeAny>, "many">>;
76051
+ }, "strip", z.ZodTypeAny, {
76052
+ id: number;
76053
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76054
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76055
+ countryId: number;
76056
+ address: string;
76057
+ addressTwo: string | null;
76058
+ postalCode: string;
76059
+ city: string;
76060
+ telephoneOne: string;
76061
+ telephoneTwo: string | null;
76062
+ dafResponsibleName: string | null;
76063
+ email: string | null;
76064
+ intraVatNumber: string | null;
76065
+ numeroEori: string | null;
76066
+ comments: string | null;
76067
+ numCodeOne: string | null;
76068
+ numCodeTwo: string | null;
76069
+ isActif: boolean;
76070
+ isParis: boolean;
76071
+ isMedical: boolean;
76072
+ isService: boolean;
76073
+ dirigeant: string | null;
76074
+ dirigeantTel: string | null;
76075
+ dirigeantEmail: string | null;
76076
+ responsableComptable: string | null;
76077
+ responsableComptableTel: string | null;
76078
+ responsableComptableEmail: string | null;
76079
+ responsableDaf: string | null;
76080
+ responsableDafTel: string | null;
76081
+ responsableDafEmail: string | null;
76082
+ emailFacturation: string | null;
76083
+ logo: string | null;
76084
+ header: string | null;
76085
+ footer: string | null;
76086
+ emailOne: string | null;
76087
+ emailTwo: string | null;
76088
+ emailThree: string | null;
76089
+ tva: string | null;
76090
+ isMailing: boolean;
76091
+ telephone: string | null;
76092
+ billingCenterName: string;
76093
+ customerId: number | null;
76094
+ numeroSiren: string | null;
76095
+ invoiceMailOne: string;
76096
+ invoiceMailTwo: string | null;
76097
+ isSubmittedToFrenchVat: boolean;
76098
+ isActiveMailInstruction: boolean;
76099
+ isActiveVariation: boolean;
76100
+ isShowSecondBordereaux: boolean;
76101
+ isShowCustomerName: boolean;
76102
+ isShowCommercialValue: boolean;
76103
+ country?: {
76104
+ id: number;
76105
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76106
+ code: string;
76107
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76108
+ name: string;
76109
+ phoneCode: string;
76110
+ } | undefined;
76111
+ customer?: {
76112
+ id: number;
76113
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76114
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76115
+ fullName: string;
76116
+ countryId: number;
76117
+ address: string;
76118
+ addressTwo: string | null;
76119
+ postalCode: string;
76120
+ city: string;
76121
+ telephoneOne: string;
76122
+ telephoneTwo: string | null;
76123
+ invoiceMail: string;
76124
+ dafResponsibleName: string;
76125
+ email: string | null;
76126
+ intraVatNumber: string | null;
76127
+ submittedToFrenchVat: boolean;
76128
+ siren: string;
76129
+ numeroEori: string | null;
76130
+ comments: string | null;
76131
+ numCodeOne: string | null;
76132
+ numCodeTwo: string | null;
76133
+ isActif: boolean;
76134
+ isParis: boolean;
76135
+ isMedical: boolean;
76136
+ isService: boolean;
76137
+ valeurCustomer: boolean;
76138
+ dirigeant: string | null;
76139
+ dirigeantTel: string | null;
76140
+ dirigeantEmail: string | null;
76141
+ responsableComptable: string | null;
76142
+ responsableComptableTel: string | null;
76143
+ responsableComptableEmail: string | null;
76144
+ responsableDaf: string | null;
76145
+ responsableDafTel: string | null;
76146
+ responsableDafEmail: string | null;
76147
+ emailFacturation: string | null;
76148
+ logo: string | null;
76149
+ header: string | null;
76150
+ footer: string | null;
76151
+ emailOne: string | null;
76152
+ emailTwo: string | null;
76153
+ emailThree: string | null;
76154
+ tva: string | null;
76155
+ isTrackingMail: boolean | null;
76156
+ isBillingCenter: boolean;
76157
+ isShowNameCustomer: boolean;
76158
+ isMailing: boolean;
76159
+ numeroSiret: string | null;
76160
+ country?: {
76161
+ id: number;
76162
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76163
+ code: string;
76164
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76165
+ name: string;
76166
+ phoneCode: string;
76167
+ } | undefined;
76168
+ } | undefined;
76169
+ userBillingCenters?: any[] | undefined;
76170
+ }, {
76171
+ id: number;
76172
+ createdAt: Date;
76173
+ updatedAt: Date;
76174
+ countryId: number;
76175
+ address: string;
76176
+ addressTwo: string | null;
76177
+ postalCode: string;
76178
+ city: string;
76179
+ telephoneOne: string;
76180
+ telephoneTwo: string | null;
76181
+ dafResponsibleName: string | null;
76182
+ email: string | null;
76183
+ intraVatNumber: string | null;
76184
+ numeroEori: string | null;
76185
+ comments: string | null;
76186
+ numCodeOne: string | null;
76187
+ numCodeTwo: string | null;
76188
+ isActif: boolean;
76189
+ isParis: boolean;
76190
+ isMedical: boolean;
76191
+ isService: boolean;
76192
+ dirigeant: string | null;
76193
+ dirigeantTel: string | null;
76194
+ dirigeantEmail: string | null;
76195
+ responsableComptable: string | null;
76196
+ responsableComptableTel: string | null;
76197
+ responsableComptableEmail: string | null;
76198
+ responsableDaf: string | null;
76199
+ responsableDafTel: string | null;
76200
+ responsableDafEmail: string | null;
76201
+ emailFacturation: string | null;
76202
+ logo: string | null;
76203
+ header: string | null;
76204
+ footer: string | null;
76205
+ emailOne: string | null;
76206
+ emailTwo: string | null;
76207
+ emailThree: string | null;
76208
+ tva: string | null;
76209
+ isMailing: boolean;
76210
+ telephone: string | null;
76211
+ billingCenterName: string;
76212
+ customerId: number | null;
76213
+ numeroSiren: string | null;
76214
+ invoiceMailOne: string;
76215
+ invoiceMailTwo: string | null;
76216
+ isSubmittedToFrenchVat: boolean;
76217
+ isActiveMailInstruction: boolean;
76218
+ isActiveVariation: boolean;
76219
+ isShowSecondBordereaux: boolean;
76220
+ isShowCustomerName: boolean;
76221
+ isShowCommercialValue: boolean;
76222
+ country?: {
76223
+ id: number;
76224
+ createdAt: Date;
76225
+ code: string;
76226
+ updatedAt: Date;
76227
+ name: string;
76228
+ phoneCode: string;
76229
+ } | undefined;
76230
+ customer?: {
76231
+ id: number;
76232
+ createdAt: Date;
76233
+ updatedAt: Date;
76234
+ fullName: string;
76235
+ countryId: number;
76236
+ address: string;
76237
+ addressTwo: string | null;
76238
+ postalCode: string;
76239
+ city: string;
76240
+ telephoneOne: string;
76241
+ telephoneTwo: string | null;
76242
+ invoiceMail: string;
76243
+ dafResponsibleName: string;
76244
+ email: string | null;
76245
+ intraVatNumber: string | null;
76246
+ submittedToFrenchVat: boolean;
76247
+ siren: string;
76248
+ numeroEori: string | null;
76249
+ comments: string | null;
76250
+ numCodeOne: string | null;
76251
+ numCodeTwo: string | null;
76252
+ isActif: boolean;
76253
+ isParis: boolean;
76254
+ isMedical: boolean;
76255
+ isService: boolean;
76256
+ valeurCustomer: boolean;
76257
+ dirigeant: string | null;
76258
+ dirigeantTel: string | null;
76259
+ dirigeantEmail: string | null;
76260
+ responsableComptable: string | null;
76261
+ responsableComptableTel: string | null;
76262
+ responsableComptableEmail: string | null;
76263
+ responsableDaf: string | null;
76264
+ responsableDafTel: string | null;
76265
+ responsableDafEmail: string | null;
76266
+ emailFacturation: string | null;
76267
+ logo: string | null;
76268
+ header: string | null;
76269
+ footer: string | null;
76270
+ emailOne: string | null;
76271
+ emailTwo: string | null;
76272
+ emailThree: string | null;
76273
+ tva: string | null;
76274
+ isTrackingMail: boolean | null;
76275
+ isBillingCenter: boolean;
76276
+ isShowNameCustomer: boolean;
76277
+ isMailing: boolean;
76278
+ numeroSiret: string | null;
76279
+ country?: {
76280
+ id: number;
76281
+ createdAt: Date;
76282
+ code: string;
76283
+ updatedAt: Date;
76284
+ name: string;
76285
+ phoneCode: string;
76286
+ } | undefined;
76287
+ } | undefined;
76288
+ userBillingCenters?: any[] | undefined;
76289
+ }>>>;
76290
+ factureLines: z.ZodArray<z.ZodLazy<z.ZodObject<{
76291
+ id: z.ZodNumber;
76292
+ createdAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
76293
+ updatedAt: z.ZodEffects<z.ZodDate, import("luxon").DateTime<true> | import("luxon").DateTime<false>, Date>;
76294
+ classifications: z.ZodString;
76295
+ comment: z.ZodNullable<z.ZodString>;
76296
+ lineType: z.ZodString;
76297
+ prix: z.ZodNumber;
76298
+ qte: z.ZodNumber;
76299
+ total: z.ZodNumber;
76300
+ totalFinal: z.ZodNumber;
76301
+ fuel: z.ZodNumber;
76302
+ tva: z.ZodNumber;
76303
+ factureRef: z.ZodNullable<z.ZodNumber>;
76304
+ oldFactureRef: z.ZodNullable<z.ZodNumber>;
76305
+ isVariation: z.ZodBoolean;
76306
+ fullRef: z.ZodString;
76307
+ factureId: z.ZodNullable<z.ZodNumber>;
76308
+ shippingId: z.ZodNumber;
76309
+ facturationLineId: z.ZodNumber;
76310
+ }, "strip", z.ZodTypeAny, {
76311
+ id: number;
76312
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76313
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76314
+ tva: number;
76315
+ shippingId: number;
76316
+ classifications: string;
76317
+ comment: string | null;
76318
+ fuel: number;
76319
+ total: number;
76320
+ isVariation: boolean;
76321
+ fullRef: string;
76322
+ lineType: string;
76323
+ prix: number;
76324
+ qte: number;
76325
+ totalFinal: number;
76326
+ factureRef: number | null;
76327
+ oldFactureRef: number | null;
76328
+ factureId: number | null;
76329
+ facturationLineId: number;
76330
+ }, {
76331
+ id: number;
76332
+ createdAt: Date;
76333
+ updatedAt: Date;
76334
+ tva: number;
76335
+ shippingId: number;
76336
+ classifications: string;
76337
+ comment: string | null;
76338
+ fuel: number;
76339
+ total: number;
76340
+ isVariation: boolean;
76341
+ fullRef: string;
76342
+ lineType: string;
76343
+ prix: number;
76344
+ qte: number;
76345
+ totalFinal: number;
76346
+ factureRef: number | null;
76347
+ oldFactureRef: number | null;
76348
+ factureId: number | null;
76349
+ facturationLineId: number;
76350
+ }>>, "many">;
76351
+ type: z.ZodNativeEnum<{
76352
+ readonly FACTURE: "facture";
76353
+ readonly AVOIR: "avoir";
76354
+ }>;
76355
+ }, "strip", z.ZodTypeAny, {
76356
+ id: number;
76357
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76358
+ message: string | null;
76359
+ type: "facture" | "avoir";
76360
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76361
+ isParis: boolean;
76362
+ isMedical: boolean;
76363
+ isService: boolean;
76364
+ tva: number;
76365
+ billingCenterId: number;
76366
+ ref: number;
76367
+ isDeleted: boolean;
76368
+ provenanceCommande: string | null;
76369
+ statut: string;
76370
+ echeance: string;
76371
+ montant: number;
76372
+ shippingIds: string[];
76373
+ fuel: number;
76374
+ total: number;
76375
+ bonDeCommende: string | null;
76376
+ isVariation: boolean;
76377
+ isActiveForReedited: boolean;
76378
+ docFacture: string;
76379
+ fullRef: string;
76380
+ modeReglement: string | null;
76381
+ source: string | null;
76382
+ factureLines: {
76383
+ id: number;
76384
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76385
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76386
+ tva: number;
76387
+ shippingId: number;
76388
+ classifications: string;
76389
+ comment: string | null;
76390
+ fuel: number;
76391
+ total: number;
76392
+ isVariation: boolean;
76393
+ fullRef: string;
76394
+ lineType: string;
76395
+ prix: number;
76396
+ qte: number;
76397
+ totalFinal: number;
76398
+ factureRef: number | null;
76399
+ oldFactureRef: number | null;
76400
+ factureId: number | null;
76401
+ facturationLineId: number;
76402
+ }[];
76403
+ billingCenter?: {
76404
+ id: number;
76405
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76406
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76407
+ countryId: number;
76408
+ address: string;
76409
+ addressTwo: string | null;
76410
+ postalCode: string;
76411
+ city: string;
76412
+ telephoneOne: string;
76413
+ telephoneTwo: string | null;
76414
+ dafResponsibleName: string | null;
76415
+ email: string | null;
76416
+ intraVatNumber: string | null;
76417
+ numeroEori: string | null;
76418
+ comments: string | null;
76419
+ numCodeOne: string | null;
76420
+ numCodeTwo: string | null;
76421
+ isActif: boolean;
76422
+ isParis: boolean;
76423
+ isMedical: boolean;
76424
+ isService: boolean;
76425
+ dirigeant: string | null;
76426
+ dirigeantTel: string | null;
76427
+ dirigeantEmail: string | null;
76428
+ responsableComptable: string | null;
76429
+ responsableComptableTel: string | null;
76430
+ responsableComptableEmail: string | null;
76431
+ responsableDaf: string | null;
76432
+ responsableDafTel: string | null;
76433
+ responsableDafEmail: string | null;
76434
+ emailFacturation: string | null;
76435
+ logo: string | null;
76436
+ header: string | null;
76437
+ footer: string | null;
76438
+ emailOne: string | null;
76439
+ emailTwo: string | null;
76440
+ emailThree: string | null;
76441
+ tva: string | null;
76442
+ isMailing: boolean;
76443
+ telephone: string | null;
76444
+ billingCenterName: string;
76445
+ customerId: number | null;
76446
+ numeroSiren: string | null;
76447
+ invoiceMailOne: string;
76448
+ invoiceMailTwo: string | null;
76449
+ isSubmittedToFrenchVat: boolean;
76450
+ isActiveMailInstruction: boolean;
76451
+ isActiveVariation: boolean;
76452
+ isShowSecondBordereaux: boolean;
76453
+ isShowCustomerName: boolean;
76454
+ isShowCommercialValue: boolean;
76455
+ country?: {
76456
+ id: number;
76457
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76458
+ code: string;
76459
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76460
+ name: string;
76461
+ phoneCode: string;
76462
+ } | undefined;
76463
+ customer?: {
76464
+ id: number;
76465
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76466
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76467
+ fullName: string;
76468
+ countryId: number;
76469
+ address: string;
76470
+ addressTwo: string | null;
76471
+ postalCode: string;
76472
+ city: string;
76473
+ telephoneOne: string;
76474
+ telephoneTwo: string | null;
76475
+ invoiceMail: string;
76476
+ dafResponsibleName: string;
76477
+ email: string | null;
76478
+ intraVatNumber: string | null;
76479
+ submittedToFrenchVat: boolean;
76480
+ siren: string;
76481
+ numeroEori: string | null;
76482
+ comments: string | null;
76483
+ numCodeOne: string | null;
76484
+ numCodeTwo: string | null;
76485
+ isActif: boolean;
76486
+ isParis: boolean;
76487
+ isMedical: boolean;
76488
+ isService: boolean;
76489
+ valeurCustomer: boolean;
76490
+ dirigeant: string | null;
76491
+ dirigeantTel: string | null;
76492
+ dirigeantEmail: string | null;
76493
+ responsableComptable: string | null;
76494
+ responsableComptableTel: string | null;
76495
+ responsableComptableEmail: string | null;
76496
+ responsableDaf: string | null;
76497
+ responsableDafTel: string | null;
76498
+ responsableDafEmail: string | null;
76499
+ emailFacturation: string | null;
76500
+ logo: string | null;
76501
+ header: string | null;
76502
+ footer: string | null;
76503
+ emailOne: string | null;
76504
+ emailTwo: string | null;
76505
+ emailThree: string | null;
76506
+ tva: string | null;
76507
+ isTrackingMail: boolean | null;
76508
+ isBillingCenter: boolean;
76509
+ isShowNameCustomer: boolean;
76510
+ isMailing: boolean;
76511
+ numeroSiret: string | null;
76512
+ country?: {
76513
+ id: number;
76514
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76515
+ code: string;
76516
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76517
+ name: string;
76518
+ phoneCode: string;
76519
+ } | undefined;
76520
+ } | undefined;
76521
+ userBillingCenters?: any[] | undefined;
76522
+ } | undefined;
76523
+ }, {
76524
+ id: number;
76525
+ createdAt: Date;
76526
+ message: string | null;
76527
+ type: "facture" | "avoir";
76528
+ updatedAt: Date;
76529
+ isParis: boolean;
76530
+ isMedical: boolean;
76531
+ isService: boolean;
76532
+ tva: number;
76533
+ billingCenterId: number;
76534
+ ref: number;
76535
+ isDeleted: boolean;
76536
+ provenanceCommande: string | null;
76537
+ statut: string;
76538
+ echeance: string;
76539
+ montant: number;
76540
+ shippingIds: string[];
76541
+ fuel: number;
76542
+ total: number;
76543
+ bonDeCommende: string | null;
76544
+ isVariation: boolean;
76545
+ isActiveForReedited: boolean;
76546
+ docFacture: string;
76547
+ fullRef: string;
76548
+ modeReglement: string | null;
76549
+ source: string | null;
76550
+ factureLines: {
76551
+ id: number;
76552
+ createdAt: Date;
76553
+ updatedAt: Date;
76554
+ tva: number;
76555
+ shippingId: number;
76556
+ classifications: string;
76557
+ comment: string | null;
76558
+ fuel: number;
76559
+ total: number;
76560
+ isVariation: boolean;
76561
+ fullRef: string;
76562
+ lineType: string;
76563
+ prix: number;
76564
+ qte: number;
76565
+ totalFinal: number;
76566
+ factureRef: number | null;
76567
+ oldFactureRef: number | null;
76568
+ factureId: number | null;
76569
+ facturationLineId: number;
76570
+ }[];
76571
+ billingCenter?: {
76572
+ id: number;
76573
+ createdAt: Date;
76574
+ updatedAt: Date;
76575
+ countryId: number;
76576
+ address: string;
76577
+ addressTwo: string | null;
76578
+ postalCode: string;
76579
+ city: string;
76580
+ telephoneOne: string;
76581
+ telephoneTwo: string | null;
76582
+ dafResponsibleName: string | null;
76583
+ email: string | null;
76584
+ intraVatNumber: string | null;
76585
+ numeroEori: string | null;
76586
+ comments: string | null;
76587
+ numCodeOne: string | null;
76588
+ numCodeTwo: string | null;
76589
+ isActif: boolean;
76590
+ isParis: boolean;
76591
+ isMedical: boolean;
76592
+ isService: boolean;
76593
+ dirigeant: string | null;
76594
+ dirigeantTel: string | null;
76595
+ dirigeantEmail: string | null;
76596
+ responsableComptable: string | null;
76597
+ responsableComptableTel: string | null;
76598
+ responsableComptableEmail: string | null;
76599
+ responsableDaf: string | null;
76600
+ responsableDafTel: string | null;
76601
+ responsableDafEmail: string | null;
76602
+ emailFacturation: string | null;
76603
+ logo: string | null;
76604
+ header: string | null;
76605
+ footer: string | null;
76606
+ emailOne: string | null;
76607
+ emailTwo: string | null;
76608
+ emailThree: string | null;
76609
+ tva: string | null;
76610
+ isMailing: boolean;
76611
+ telephone: string | null;
76612
+ billingCenterName: string;
76613
+ customerId: number | null;
76614
+ numeroSiren: string | null;
76615
+ invoiceMailOne: string;
76616
+ invoiceMailTwo: string | null;
76617
+ isSubmittedToFrenchVat: boolean;
76618
+ isActiveMailInstruction: boolean;
76619
+ isActiveVariation: boolean;
76620
+ isShowSecondBordereaux: boolean;
76621
+ isShowCustomerName: boolean;
76622
+ isShowCommercialValue: boolean;
76623
+ country?: {
76624
+ id: number;
76625
+ createdAt: Date;
76626
+ code: string;
76627
+ updatedAt: Date;
76628
+ name: string;
76629
+ phoneCode: string;
76630
+ } | undefined;
76631
+ customer?: {
76632
+ id: number;
76633
+ createdAt: Date;
76634
+ updatedAt: Date;
76635
+ fullName: string;
76636
+ countryId: number;
76637
+ address: string;
76638
+ addressTwo: string | null;
76639
+ postalCode: string;
76640
+ city: string;
76641
+ telephoneOne: string;
76642
+ telephoneTwo: string | null;
76643
+ invoiceMail: string;
76644
+ dafResponsibleName: string;
76645
+ email: string | null;
76646
+ intraVatNumber: string | null;
76647
+ submittedToFrenchVat: boolean;
76648
+ siren: string;
76649
+ numeroEori: string | null;
76650
+ comments: string | null;
76651
+ numCodeOne: string | null;
76652
+ numCodeTwo: string | null;
76653
+ isActif: boolean;
76654
+ isParis: boolean;
76655
+ isMedical: boolean;
76656
+ isService: boolean;
76657
+ valeurCustomer: boolean;
76658
+ dirigeant: string | null;
76659
+ dirigeantTel: string | null;
76660
+ dirigeantEmail: string | null;
76661
+ responsableComptable: string | null;
76662
+ responsableComptableTel: string | null;
76663
+ responsableComptableEmail: string | null;
76664
+ responsableDaf: string | null;
76665
+ responsableDafTel: string | null;
76666
+ responsableDafEmail: string | null;
76667
+ emailFacturation: string | null;
76668
+ logo: string | null;
76669
+ header: string | null;
76670
+ footer: string | null;
76671
+ emailOne: string | null;
76672
+ emailTwo: string | null;
76673
+ emailThree: string | null;
76674
+ tva: string | null;
76675
+ isTrackingMail: boolean | null;
76676
+ isBillingCenter: boolean;
76677
+ isShowNameCustomer: boolean;
76678
+ isMailing: boolean;
76679
+ numeroSiret: string | null;
76680
+ country?: {
76681
+ id: number;
76682
+ createdAt: Date;
76683
+ code: string;
76684
+ updatedAt: Date;
76685
+ name: string;
76686
+ phoneCode: string;
76687
+ } | undefined;
76688
+ } | undefined;
76689
+ userBillingCenters?: any[] | undefined;
76690
+ } | undefined;
76691
+ }>;
76692
+ message: z.ZodOptional<z.ZodString>;
76693
+ status: z.ZodOptional<z.ZodNumber>;
76694
+ error: z.ZodOptional<z.ZodNever>;
76695
+ success: z.ZodLiteral<true>;
76696
+ }, "strip", z.ZodTypeAny, {
76697
+ data: {
76698
+ id: number;
76699
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76700
+ message: string | null;
76701
+ type: "facture" | "avoir";
76702
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76703
+ isParis: boolean;
76704
+ isMedical: boolean;
76705
+ isService: boolean;
76706
+ tva: number;
76707
+ billingCenterId: number;
76708
+ ref: number;
76709
+ isDeleted: boolean;
76710
+ provenanceCommande: string | null;
76711
+ statut: string;
76712
+ echeance: string;
76713
+ montant: number;
76714
+ shippingIds: string[];
76715
+ fuel: number;
76716
+ total: number;
76717
+ bonDeCommende: string | null;
76718
+ isVariation: boolean;
76719
+ isActiveForReedited: boolean;
76720
+ docFacture: string;
76721
+ fullRef: string;
76722
+ modeReglement: string | null;
76723
+ source: string | null;
76724
+ factureLines: {
76725
+ id: number;
76726
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76727
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76728
+ tva: number;
76729
+ shippingId: number;
76730
+ classifications: string;
76731
+ comment: string | null;
76732
+ fuel: number;
76733
+ total: number;
76734
+ isVariation: boolean;
76735
+ fullRef: string;
76736
+ lineType: string;
76737
+ prix: number;
76738
+ qte: number;
76739
+ totalFinal: number;
76740
+ factureRef: number | null;
76741
+ oldFactureRef: number | null;
76742
+ factureId: number | null;
76743
+ facturationLineId: number;
76744
+ }[];
76745
+ billingCenter?: {
76746
+ id: number;
76747
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76748
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76749
+ countryId: number;
76750
+ address: string;
76751
+ addressTwo: string | null;
76752
+ postalCode: string;
76753
+ city: string;
76754
+ telephoneOne: string;
76755
+ telephoneTwo: string | null;
76756
+ dafResponsibleName: string | null;
76757
+ email: string | null;
76758
+ intraVatNumber: string | null;
76759
+ numeroEori: string | null;
76760
+ comments: string | null;
76761
+ numCodeOne: string | null;
76762
+ numCodeTwo: string | null;
76763
+ isActif: boolean;
76764
+ isParis: boolean;
76765
+ isMedical: boolean;
76766
+ isService: boolean;
76767
+ dirigeant: string | null;
76768
+ dirigeantTel: string | null;
76769
+ dirigeantEmail: string | null;
76770
+ responsableComptable: string | null;
76771
+ responsableComptableTel: string | null;
76772
+ responsableComptableEmail: string | null;
76773
+ responsableDaf: string | null;
76774
+ responsableDafTel: string | null;
76775
+ responsableDafEmail: string | null;
76776
+ emailFacturation: string | null;
76777
+ logo: string | null;
76778
+ header: string | null;
76779
+ footer: string | null;
76780
+ emailOne: string | null;
76781
+ emailTwo: string | null;
76782
+ emailThree: string | null;
76783
+ tva: string | null;
76784
+ isMailing: boolean;
76785
+ telephone: string | null;
76786
+ billingCenterName: string;
76787
+ customerId: number | null;
76788
+ numeroSiren: string | null;
76789
+ invoiceMailOne: string;
76790
+ invoiceMailTwo: string | null;
76791
+ isSubmittedToFrenchVat: boolean;
76792
+ isActiveMailInstruction: boolean;
76793
+ isActiveVariation: boolean;
76794
+ isShowSecondBordereaux: boolean;
76795
+ isShowCustomerName: boolean;
76796
+ isShowCommercialValue: boolean;
76797
+ country?: {
76798
+ id: number;
76799
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76800
+ code: string;
76801
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76802
+ name: string;
76803
+ phoneCode: string;
76804
+ } | undefined;
76805
+ customer?: {
76806
+ id: number;
76807
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76808
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76809
+ fullName: string;
76810
+ countryId: number;
76811
+ address: string;
76812
+ addressTwo: string | null;
76813
+ postalCode: string;
76814
+ city: string;
76815
+ telephoneOne: string;
76816
+ telephoneTwo: string | null;
76817
+ invoiceMail: string;
76818
+ dafResponsibleName: string;
76819
+ email: string | null;
76820
+ intraVatNumber: string | null;
76821
+ submittedToFrenchVat: boolean;
76822
+ siren: string;
76823
+ numeroEori: string | null;
76824
+ comments: string | null;
76825
+ numCodeOne: string | null;
76826
+ numCodeTwo: string | null;
76827
+ isActif: boolean;
76828
+ isParis: boolean;
76829
+ isMedical: boolean;
76830
+ isService: boolean;
76831
+ valeurCustomer: boolean;
76832
+ dirigeant: string | null;
76833
+ dirigeantTel: string | null;
76834
+ dirigeantEmail: string | null;
76835
+ responsableComptable: string | null;
76836
+ responsableComptableTel: string | null;
76837
+ responsableComptableEmail: string | null;
76838
+ responsableDaf: string | null;
76839
+ responsableDafTel: string | null;
76840
+ responsableDafEmail: string | null;
76841
+ emailFacturation: string | null;
76842
+ logo: string | null;
76843
+ header: string | null;
76844
+ footer: string | null;
76845
+ emailOne: string | null;
76846
+ emailTwo: string | null;
76847
+ emailThree: string | null;
76848
+ tva: string | null;
76849
+ isTrackingMail: boolean | null;
76850
+ isBillingCenter: boolean;
76851
+ isShowNameCustomer: boolean;
76852
+ isMailing: boolean;
76853
+ numeroSiret: string | null;
76854
+ country?: {
76855
+ id: number;
76856
+ createdAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76857
+ code: string;
76858
+ updatedAt: import("luxon").DateTime<true> | import("luxon").DateTime<false>;
76859
+ name: string;
76860
+ phoneCode: string;
76861
+ } | undefined;
76862
+ } | undefined;
76863
+ userBillingCenters?: any[] | undefined;
76864
+ } | undefined;
76865
+ };
76866
+ success: true;
76867
+ status?: number | undefined;
76868
+ message?: string | undefined;
76869
+ error?: undefined;
76870
+ }, {
76871
+ data: {
76872
+ id: number;
76873
+ createdAt: Date;
76874
+ message: string | null;
76875
+ type: "facture" | "avoir";
76876
+ updatedAt: Date;
76877
+ isParis: boolean;
76878
+ isMedical: boolean;
76879
+ isService: boolean;
76880
+ tva: number;
76881
+ billingCenterId: number;
76882
+ ref: number;
76883
+ isDeleted: boolean;
76884
+ provenanceCommande: string | null;
76885
+ statut: string;
76886
+ echeance: string;
76887
+ montant: number;
76888
+ shippingIds: string[];
76889
+ fuel: number;
76890
+ total: number;
76891
+ bonDeCommende: string | null;
76892
+ isVariation: boolean;
76893
+ isActiveForReedited: boolean;
76894
+ docFacture: string;
76895
+ fullRef: string;
76896
+ modeReglement: string | null;
76897
+ source: string | null;
76898
+ factureLines: {
76899
+ id: number;
76900
+ createdAt: Date;
76901
+ updatedAt: Date;
76902
+ tva: number;
76903
+ shippingId: number;
76904
+ classifications: string;
76905
+ comment: string | null;
76906
+ fuel: number;
76907
+ total: number;
76908
+ isVariation: boolean;
76909
+ fullRef: string;
76910
+ lineType: string;
76911
+ prix: number;
76912
+ qte: number;
76913
+ totalFinal: number;
76914
+ factureRef: number | null;
76915
+ oldFactureRef: number | null;
76916
+ factureId: number | null;
76917
+ facturationLineId: number;
76918
+ }[];
76919
+ billingCenter?: {
76920
+ id: number;
76921
+ createdAt: Date;
76922
+ updatedAt: Date;
76923
+ countryId: number;
76924
+ address: string;
76925
+ addressTwo: string | null;
76926
+ postalCode: string;
76927
+ city: string;
76928
+ telephoneOne: string;
76929
+ telephoneTwo: string | null;
76930
+ dafResponsibleName: string | null;
76931
+ email: string | null;
76932
+ intraVatNumber: string | null;
76933
+ numeroEori: string | null;
76934
+ comments: string | null;
76935
+ numCodeOne: string | null;
76936
+ numCodeTwo: string | null;
76937
+ isActif: boolean;
76938
+ isParis: boolean;
76939
+ isMedical: boolean;
76940
+ isService: boolean;
76941
+ dirigeant: string | null;
76942
+ dirigeantTel: string | null;
76943
+ dirigeantEmail: string | null;
76944
+ responsableComptable: string | null;
76945
+ responsableComptableTel: string | null;
76946
+ responsableComptableEmail: string | null;
76947
+ responsableDaf: string | null;
76948
+ responsableDafTel: string | null;
76949
+ responsableDafEmail: string | null;
76950
+ emailFacturation: string | null;
76951
+ logo: string | null;
76952
+ header: string | null;
76953
+ footer: string | null;
76954
+ emailOne: string | null;
76955
+ emailTwo: string | null;
76956
+ emailThree: string | null;
76957
+ tva: string | null;
76958
+ isMailing: boolean;
76959
+ telephone: string | null;
76960
+ billingCenterName: string;
76961
+ customerId: number | null;
76962
+ numeroSiren: string | null;
76963
+ invoiceMailOne: string;
76964
+ invoiceMailTwo: string | null;
76965
+ isSubmittedToFrenchVat: boolean;
76966
+ isActiveMailInstruction: boolean;
76967
+ isActiveVariation: boolean;
76968
+ isShowSecondBordereaux: boolean;
76969
+ isShowCustomerName: boolean;
76970
+ isShowCommercialValue: boolean;
76971
+ country?: {
76972
+ id: number;
76973
+ createdAt: Date;
76974
+ code: string;
76975
+ updatedAt: Date;
76976
+ name: string;
76977
+ phoneCode: string;
76978
+ } | undefined;
76979
+ customer?: {
76980
+ id: number;
76981
+ createdAt: Date;
76982
+ updatedAt: Date;
76983
+ fullName: string;
76984
+ countryId: number;
76985
+ address: string;
76986
+ addressTwo: string | null;
76987
+ postalCode: string;
76988
+ city: string;
76989
+ telephoneOne: string;
76990
+ telephoneTwo: string | null;
76991
+ invoiceMail: string;
76992
+ dafResponsibleName: string;
76993
+ email: string | null;
76994
+ intraVatNumber: string | null;
76995
+ submittedToFrenchVat: boolean;
76996
+ siren: string;
76997
+ numeroEori: string | null;
76998
+ comments: string | null;
76999
+ numCodeOne: string | null;
77000
+ numCodeTwo: string | null;
77001
+ isActif: boolean;
77002
+ isParis: boolean;
77003
+ isMedical: boolean;
77004
+ isService: boolean;
77005
+ valeurCustomer: boolean;
77006
+ dirigeant: string | null;
77007
+ dirigeantTel: string | null;
77008
+ dirigeantEmail: string | null;
77009
+ responsableComptable: string | null;
77010
+ responsableComptableTel: string | null;
77011
+ responsableComptableEmail: string | null;
77012
+ responsableDaf: string | null;
77013
+ responsableDafTel: string | null;
77014
+ responsableDafEmail: string | null;
77015
+ emailFacturation: string | null;
77016
+ logo: string | null;
77017
+ header: string | null;
77018
+ footer: string | null;
77019
+ emailOne: string | null;
77020
+ emailTwo: string | null;
77021
+ emailThree: string | null;
77022
+ tva: string | null;
77023
+ isTrackingMail: boolean | null;
77024
+ isBillingCenter: boolean;
77025
+ isShowNameCustomer: boolean;
77026
+ isMailing: boolean;
77027
+ numeroSiret: string | null;
77028
+ country?: {
77029
+ id: number;
77030
+ createdAt: Date;
77031
+ code: string;
77032
+ updatedAt: Date;
77033
+ name: string;
77034
+ phoneCode: string;
77035
+ } | undefined;
77036
+ } | undefined;
77037
+ userBillingCenters?: any[] | undefined;
77038
+ } | undefined;
77039
+ };
77040
+ success: true;
77041
+ status?: number | undefined;
77042
+ message?: string | undefined;
77043
+ error?: undefined;
77044
+ }>, z.ZodObject<{
77045
+ data: z.ZodNever;
77046
+ message: z.ZodString;
77047
+ status: z.ZodOptional<z.ZodNumber>;
77048
+ error: z.ZodObject<{
77049
+ message: z.ZodString;
77050
+ info: z.ZodObject<{
77051
+ status: z.ZodNumber;
77052
+ code: z.ZodString;
77053
+ messages: z.ZodArray<z.ZodObject<{
77054
+ message: z.ZodString;
77055
+ rule: z.ZodOptional<z.ZodString>;
77056
+ field: z.ZodOptional<z.ZodString>;
77057
+ }, "strip", z.ZodTypeAny, {
77058
+ message: string;
77059
+ rule?: string | undefined;
77060
+ field?: string | undefined;
77061
+ }, {
77062
+ message: string;
77063
+ rule?: string | undefined;
77064
+ field?: string | undefined;
77065
+ }>, "many">;
77066
+ }, "strip", z.ZodTypeAny, {
77067
+ status: number;
77068
+ code: string;
77069
+ messages: {
77070
+ message: string;
77071
+ rule?: string | undefined;
77072
+ field?: string | undefined;
77073
+ }[];
77074
+ }, {
77075
+ status: number;
77076
+ code: string;
77077
+ messages: {
77078
+ message: string;
77079
+ rule?: string | undefined;
77080
+ field?: string | undefined;
77081
+ }[];
77082
+ }>;
77083
+ }, "strip", z.ZodTypeAny, {
77084
+ message: string;
77085
+ info: {
77086
+ status: number;
77087
+ code: string;
77088
+ messages: {
77089
+ message: string;
77090
+ rule?: string | undefined;
77091
+ field?: string | undefined;
77092
+ }[];
77093
+ };
77094
+ }, {
77095
+ message: string;
77096
+ info: {
77097
+ status: number;
77098
+ code: string;
77099
+ messages: {
77100
+ message: string;
77101
+ rule?: string | undefined;
77102
+ field?: string | undefined;
77103
+ }[];
77104
+ };
77105
+ }>;
77106
+ success: z.ZodNever;
77107
+ }, "strip", z.ZodTypeAny, {
77108
+ message: string;
77109
+ data: never;
77110
+ error: {
77111
+ message: string;
77112
+ info: {
77113
+ status: number;
77114
+ code: string;
77115
+ messages: {
77116
+ message: string;
77117
+ rule?: string | undefined;
77118
+ field?: string | undefined;
77119
+ }[];
77120
+ };
77121
+ };
77122
+ success: never;
77123
+ status?: number | undefined;
77124
+ }, {
77125
+ message: string;
77126
+ data: never;
77127
+ error: {
77128
+ message: string;
77129
+ info: {
77130
+ status: number;
77131
+ code: string;
77132
+ messages: {
77133
+ message: string;
77134
+ rule?: string | undefined;
77135
+ field?: string | undefined;
77136
+ }[];
77137
+ };
77138
+ };
77139
+ success: never;
77140
+ status?: number | undefined;
77141
+ }>]>;
77142
+ };
77143
+ listeRefReediter: {
77144
+ method: "GET";
77145
+ url: string;
77146
+ params: z.ZodObject<{
77147
+ userInterface: z.ZodEnum<["paris", "medical", "service"]>;
77148
+ }, "strip", z.ZodTypeAny, {
77149
+ userInterface: "paris" | "medical" | "service";
77150
+ }, {
77151
+ userInterface: "paris" | "medical" | "service";
77152
+ }>;
77153
+ response: z.ZodUnion<[z.ZodObject<{
77154
+ data: z.ZodArray<z.ZodObject<{
77155
+ ref: z.ZodNumber;
77156
+ fullRef: z.ZodString;
77157
+ }, "strip", z.ZodTypeAny, {
77158
+ ref: number;
77159
+ fullRef: string;
77160
+ }, {
77161
+ ref: number;
77162
+ fullRef: string;
77163
+ }>, "many">;
77164
+ message: z.ZodOptional<z.ZodString>;
77165
+ status: z.ZodOptional<z.ZodNumber>;
77166
+ error: z.ZodOptional<z.ZodNever>;
77167
+ success: z.ZodLiteral<true>;
77168
+ }, "strip", z.ZodTypeAny, {
77169
+ data: {
77170
+ ref: number;
77171
+ fullRef: string;
77172
+ }[];
77173
+ success: true;
77174
+ status?: number | undefined;
77175
+ message?: string | undefined;
77176
+ error?: undefined;
77177
+ }, {
77178
+ data: {
77179
+ ref: number;
77180
+ fullRef: string;
77181
+ }[];
77182
+ success: true;
77183
+ status?: number | undefined;
77184
+ message?: string | undefined;
77185
+ error?: undefined;
77186
+ }>, z.ZodObject<{
77187
+ data: z.ZodNever;
77188
+ message: z.ZodString;
77189
+ status: z.ZodOptional<z.ZodNumber>;
77190
+ error: z.ZodObject<{
77191
+ message: z.ZodString;
77192
+ info: z.ZodObject<{
77193
+ status: z.ZodNumber;
77194
+ code: z.ZodString;
77195
+ messages: z.ZodArray<z.ZodObject<{
77196
+ message: z.ZodString;
77197
+ rule: z.ZodOptional<z.ZodString>;
77198
+ field: z.ZodOptional<z.ZodString>;
77199
+ }, "strip", z.ZodTypeAny, {
77200
+ message: string;
77201
+ rule?: string | undefined;
77202
+ field?: string | undefined;
77203
+ }, {
77204
+ message: string;
77205
+ rule?: string | undefined;
77206
+ field?: string | undefined;
77207
+ }>, "many">;
77208
+ }, "strip", z.ZodTypeAny, {
77209
+ status: number;
77210
+ code: string;
77211
+ messages: {
77212
+ message: string;
77213
+ rule?: string | undefined;
77214
+ field?: string | undefined;
77215
+ }[];
77216
+ }, {
77217
+ status: number;
77218
+ code: string;
77219
+ messages: {
77220
+ message: string;
77221
+ rule?: string | undefined;
77222
+ field?: string | undefined;
77223
+ }[];
77224
+ }>;
77225
+ }, "strip", z.ZodTypeAny, {
77226
+ message: string;
77227
+ info: {
77228
+ status: number;
77229
+ code: string;
77230
+ messages: {
77231
+ message: string;
77232
+ rule?: string | undefined;
77233
+ field?: string | undefined;
77234
+ }[];
77235
+ };
77236
+ }, {
77237
+ message: string;
77238
+ info: {
77239
+ status: number;
77240
+ code: string;
77241
+ messages: {
77242
+ message: string;
77243
+ rule?: string | undefined;
77244
+ field?: string | undefined;
77245
+ }[];
77246
+ };
77247
+ }>;
77248
+ success: z.ZodNever;
77249
+ }, "strip", z.ZodTypeAny, {
77250
+ message: string;
77251
+ data: never;
77252
+ error: {
77253
+ message: string;
77254
+ info: {
77255
+ status: number;
77256
+ code: string;
77257
+ messages: {
77258
+ message: string;
77259
+ rule?: string | undefined;
77260
+ field?: string | undefined;
77261
+ }[];
77262
+ };
77263
+ };
77264
+ success: never;
77265
+ status?: number | undefined;
77266
+ }, {
77267
+ message: string;
77268
+ data: never;
77269
+ error: {
77270
+ message: string;
77271
+ info: {
77272
+ status: number;
77273
+ code: string;
77274
+ messages: {
77275
+ message: string;
77276
+ rule?: string | undefined;
77277
+ field?: string | undefined;
77278
+ }[];
77279
+ };
77280
+ };
77281
+ success: never;
77282
+ status?: number | undefined;
77283
+ }>]>;
77284
+ };
77285
+ };
75612
77286
  export declare const userRoutes: {
75613
77287
  auth: typeof authRoutes;
75614
77288
  banniere: typeof activeBanniereRoutes;
75615
77289
  shipping: typeof shippingRoutes;
75616
77290
  contact: typeof contactRoutes;
75617
77291
  billingCenter: typeof billingCenterRoutes;
77292
+ facture: typeof factureRoutes;
75618
77293
  typeDiagnobag: typeof typeDiagnobagRoutes;
75619
77294
  typeEmballage: typeof typeEmballageRoutes;
75620
77295
  typeSonde: typeof typeSondeRoutes;