exnet-routing 1.2.18 → 1.2.19
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/models/_billing_center.d.ts +36 -12
- package/dist/models/_billing_center.js +12 -4
- package/dist/models/_facture.d.ts +15 -5
- package/dist/models/_facture_line.d.ts +21 -7
- package/dist/models/_shipping.d.ts +15 -5
- package/dist/models/_user_billing_center.d.ts +15 -5
- package/dist/routes/admin.d.ts +216 -72
- package/dist/routes/ops.d.ts +936 -312
- package/dist/routes/user.d.ts +306 -102
- package/package.json +1 -1
|
@@ -31,7 +31,9 @@ export declare const BillingCenterSchema: z.ZodObject<{
|
|
|
31
31
|
isParis: z.ZodBoolean;
|
|
32
32
|
isMedical: z.ZodBoolean;
|
|
33
33
|
isService: z.ZodBoolean;
|
|
34
|
-
|
|
34
|
+
isShowSecondBordereaux: z.ZodBoolean;
|
|
35
|
+
isShowCustomerName: z.ZodBoolean;
|
|
36
|
+
isShowCommercialValue: z.ZodBoolean;
|
|
35
37
|
dirigeant: z.ZodNullable<z.ZodString>;
|
|
36
38
|
dirigeantTel: z.ZodNullable<z.ZodString>;
|
|
37
39
|
dirigeantEmail: z.ZodNullable<z.ZodString>;
|
|
@@ -317,7 +319,9 @@ export declare const BillingCenterSchema: z.ZodObject<{
|
|
|
317
319
|
isSubmittedToFrenchVat: boolean;
|
|
318
320
|
isActiveMailInstruction: boolean;
|
|
319
321
|
isActiveVariation: boolean;
|
|
320
|
-
|
|
322
|
+
isShowSecondBordereaux: boolean;
|
|
323
|
+
isShowCustomerName: boolean;
|
|
324
|
+
isShowCommercialValue: boolean;
|
|
321
325
|
customerId: number | null;
|
|
322
326
|
country?: {
|
|
323
327
|
id: number;
|
|
@@ -437,7 +441,9 @@ export declare const BillingCenterSchema: z.ZodObject<{
|
|
|
437
441
|
isSubmittedToFrenchVat: boolean;
|
|
438
442
|
isActiveMailInstruction: boolean;
|
|
439
443
|
isActiveVariation: boolean;
|
|
440
|
-
|
|
444
|
+
isShowSecondBordereaux: boolean;
|
|
445
|
+
isShowCustomerName: boolean;
|
|
446
|
+
isShowCommercialValue: boolean;
|
|
441
447
|
customerId: number | null;
|
|
442
448
|
country?: {
|
|
443
449
|
id: number;
|
|
@@ -540,7 +546,9 @@ export declare const BillingCenterSchemaSimple: z.ZodObject<{
|
|
|
540
546
|
isParis: z.ZodBoolean;
|
|
541
547
|
isMedical: z.ZodBoolean;
|
|
542
548
|
isService: z.ZodBoolean;
|
|
543
|
-
|
|
549
|
+
isShowSecondBordereaux: z.ZodBoolean;
|
|
550
|
+
isShowCustomerName: z.ZodBoolean;
|
|
551
|
+
isShowCommercialValue: z.ZodBoolean;
|
|
544
552
|
dirigeant: z.ZodNullable<z.ZodString>;
|
|
545
553
|
dirigeantTel: z.ZodNullable<z.ZodString>;
|
|
546
554
|
dirigeantEmail: z.ZodNullable<z.ZodString>;
|
|
@@ -609,7 +617,9 @@ export declare const BillingCenterSchemaSimple: z.ZodObject<{
|
|
|
609
617
|
isSubmittedToFrenchVat: boolean;
|
|
610
618
|
isActiveMailInstruction: boolean;
|
|
611
619
|
isActiveVariation: boolean;
|
|
612
|
-
|
|
620
|
+
isShowSecondBordereaux: boolean;
|
|
621
|
+
isShowCustomerName: boolean;
|
|
622
|
+
isShowCommercialValue: boolean;
|
|
613
623
|
customerId: number | null;
|
|
614
624
|
}, {
|
|
615
625
|
id: number;
|
|
@@ -660,7 +670,9 @@ export declare const BillingCenterSchemaSimple: z.ZodObject<{
|
|
|
660
670
|
isSubmittedToFrenchVat: boolean;
|
|
661
671
|
isActiveMailInstruction: boolean;
|
|
662
672
|
isActiveVariation: boolean;
|
|
663
|
-
|
|
673
|
+
isShowSecondBordereaux: boolean;
|
|
674
|
+
isShowCustomerName: boolean;
|
|
675
|
+
isShowCommercialValue: boolean;
|
|
664
676
|
customerId: number | null;
|
|
665
677
|
}>;
|
|
666
678
|
export declare const BillingCenterCreateSchema: z.ZodObject<{
|
|
@@ -692,7 +704,9 @@ export declare const BillingCenterCreateSchema: z.ZodObject<{
|
|
|
692
704
|
isParis: z.ZodBoolean;
|
|
693
705
|
isMedical: z.ZodBoolean;
|
|
694
706
|
isService: z.ZodBoolean;
|
|
695
|
-
|
|
707
|
+
isShowSecondBordereaux: z.ZodOptional<z.ZodBoolean>;
|
|
708
|
+
isShowCustomerName: z.ZodOptional<z.ZodBoolean>;
|
|
709
|
+
isShowCommercialValue: z.ZodOptional<z.ZodBoolean>;
|
|
696
710
|
dirigeant: z.ZodOptional<z.ZodString>;
|
|
697
711
|
dirigeantTel: z.ZodOptional<z.ZodString>;
|
|
698
712
|
dirigeantEmail: z.ZodOptional<z.ZodString>;
|
|
@@ -760,7 +774,9 @@ export declare const BillingCenterCreateSchema: z.ZodObject<{
|
|
|
760
774
|
tva?: string | undefined;
|
|
761
775
|
numeroSiren?: string | undefined;
|
|
762
776
|
invoiceMailTwo?: string | undefined;
|
|
763
|
-
|
|
777
|
+
isShowSecondBordereaux?: boolean | undefined;
|
|
778
|
+
isShowCustomerName?: boolean | undefined;
|
|
779
|
+
isShowCommercialValue?: boolean | undefined;
|
|
764
780
|
}, {
|
|
765
781
|
countryId: number;
|
|
766
782
|
address: string;
|
|
@@ -809,7 +825,9 @@ export declare const BillingCenterCreateSchema: z.ZodObject<{
|
|
|
809
825
|
tva?: string | undefined;
|
|
810
826
|
numeroSiren?: string | undefined;
|
|
811
827
|
invoiceMailTwo?: string | undefined;
|
|
812
|
-
|
|
828
|
+
isShowSecondBordereaux?: boolean | undefined;
|
|
829
|
+
isShowCustomerName?: boolean | undefined;
|
|
830
|
+
isShowCommercialValue?: boolean | undefined;
|
|
813
831
|
}>;
|
|
814
832
|
export declare const BillingCenterUpdateSchema: z.ZodObject<{
|
|
815
833
|
billingCenterName: z.ZodOptional<z.ZodString>;
|
|
@@ -840,7 +858,9 @@ export declare const BillingCenterUpdateSchema: z.ZodObject<{
|
|
|
840
858
|
isParis: z.ZodOptional<z.ZodBoolean>;
|
|
841
859
|
isMedical: z.ZodOptional<z.ZodBoolean>;
|
|
842
860
|
isService: z.ZodOptional<z.ZodBoolean>;
|
|
843
|
-
|
|
861
|
+
isShowSecondBordereaux: z.ZodOptional<z.ZodBoolean>;
|
|
862
|
+
isShowCustomerName: z.ZodOptional<z.ZodBoolean>;
|
|
863
|
+
isShowCommercialValue: z.ZodOptional<z.ZodBoolean>;
|
|
844
864
|
dirigeant: z.ZodOptional<z.ZodString>;
|
|
845
865
|
dirigeantTel: z.ZodOptional<z.ZodString>;
|
|
846
866
|
dirigeantEmail: z.ZodOptional<z.ZodString>;
|
|
@@ -906,7 +926,9 @@ export declare const BillingCenterUpdateSchema: z.ZodObject<{
|
|
|
906
926
|
isSubmittedToFrenchVat?: boolean | undefined;
|
|
907
927
|
isActiveMailInstruction?: boolean | undefined;
|
|
908
928
|
isActiveVariation?: boolean | undefined;
|
|
909
|
-
|
|
929
|
+
isShowSecondBordereaux?: boolean | undefined;
|
|
930
|
+
isShowCustomerName?: boolean | undefined;
|
|
931
|
+
isShowCommercialValue?: boolean | undefined;
|
|
910
932
|
customerId?: number | undefined;
|
|
911
933
|
activeVariation?: boolean | undefined;
|
|
912
934
|
}, {
|
|
@@ -955,7 +977,9 @@ export declare const BillingCenterUpdateSchema: z.ZodObject<{
|
|
|
955
977
|
isSubmittedToFrenchVat?: boolean | undefined;
|
|
956
978
|
isActiveMailInstruction?: boolean | undefined;
|
|
957
979
|
isActiveVariation?: boolean | undefined;
|
|
958
|
-
|
|
980
|
+
isShowSecondBordereaux?: boolean | undefined;
|
|
981
|
+
isShowCustomerName?: boolean | undefined;
|
|
982
|
+
isShowCommercialValue?: boolean | undefined;
|
|
959
983
|
customerId?: number | undefined;
|
|
960
984
|
activeVariation?: boolean | undefined;
|
|
961
985
|
}>;
|
|
@@ -36,7 +36,9 @@ exports.BillingCenterSchema = zod_1.z.object({
|
|
|
36
36
|
isParis: zod_1.z.boolean(),
|
|
37
37
|
isMedical: zod_1.z.boolean(),
|
|
38
38
|
isService: zod_1.z.boolean(),
|
|
39
|
-
|
|
39
|
+
isShowSecondBordereaux: zod_1.z.boolean(),
|
|
40
|
+
isShowCustomerName: zod_1.z.boolean(),
|
|
41
|
+
isShowCommercialValue: zod_1.z.boolean(),
|
|
40
42
|
dirigeant: zod_1.z.string().nullable(),
|
|
41
43
|
dirigeantTel: zod_1.z.string().nullable(),
|
|
42
44
|
dirigeantEmail: zod_1.z.string().nullable(),
|
|
@@ -90,7 +92,9 @@ exports.BillingCenterSchemaSimple = zod_1.z.object({
|
|
|
90
92
|
isParis: zod_1.z.boolean(),
|
|
91
93
|
isMedical: zod_1.z.boolean(),
|
|
92
94
|
isService: zod_1.z.boolean(),
|
|
93
|
-
|
|
95
|
+
isShowSecondBordereaux: zod_1.z.boolean(),
|
|
96
|
+
isShowCustomerName: zod_1.z.boolean(),
|
|
97
|
+
isShowCommercialValue: zod_1.z.boolean(),
|
|
94
98
|
dirigeant: zod_1.z.string().nullable(),
|
|
95
99
|
dirigeantTel: zod_1.z.string().nullable(),
|
|
96
100
|
dirigeantEmail: zod_1.z.string().nullable(),
|
|
@@ -140,7 +144,9 @@ exports.BillingCenterCreateSchema = zod_1.z.object({
|
|
|
140
144
|
isParis: zod_1.z.boolean(),
|
|
141
145
|
isMedical: zod_1.z.boolean(),
|
|
142
146
|
isService: zod_1.z.boolean(),
|
|
143
|
-
|
|
147
|
+
isShowSecondBordereaux: zod_1.z.boolean().optional(),
|
|
148
|
+
isShowCustomerName: zod_1.z.boolean().optional(),
|
|
149
|
+
isShowCommercialValue: zod_1.z.boolean().optional(),
|
|
144
150
|
dirigeant: zod_1.z.string().optional(),
|
|
145
151
|
dirigeantTel: zod_1.z.string().optional(),
|
|
146
152
|
dirigeantEmail: zod_1.z.string().optional(),
|
|
@@ -190,7 +196,9 @@ exports.BillingCenterUpdateSchema = zod_1.z.object({
|
|
|
190
196
|
isParis: zod_1.z.boolean().optional(),
|
|
191
197
|
isMedical: zod_1.z.boolean().optional(),
|
|
192
198
|
isService: zod_1.z.boolean().optional(),
|
|
193
|
-
|
|
199
|
+
isShowSecondBordereaux: zod_1.z.boolean().optional(),
|
|
200
|
+
isShowCustomerName: zod_1.z.boolean().optional(),
|
|
201
|
+
isShowCommercialValue: zod_1.z.boolean().optional(),
|
|
194
202
|
dirigeant: zod_1.z.string().optional(),
|
|
195
203
|
dirigeantTel: zod_1.z.string().optional(),
|
|
196
204
|
dirigeantEmail: zod_1.z.string().optional(),
|
|
@@ -70,7 +70,9 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
70
70
|
isParis: z.ZodBoolean;
|
|
71
71
|
isMedical: z.ZodBoolean;
|
|
72
72
|
isService: z.ZodBoolean;
|
|
73
|
-
|
|
73
|
+
isShowSecondBordereaux: z.ZodBoolean;
|
|
74
|
+
isShowCustomerName: z.ZodBoolean;
|
|
75
|
+
isShowCommercialValue: z.ZodBoolean;
|
|
74
76
|
dirigeant: z.ZodNullable<z.ZodString>;
|
|
75
77
|
dirigeantTel: z.ZodNullable<z.ZodString>;
|
|
76
78
|
dirigeantEmail: z.ZodNullable<z.ZodString>;
|
|
@@ -356,7 +358,9 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
356
358
|
isSubmittedToFrenchVat: boolean;
|
|
357
359
|
isActiveMailInstruction: boolean;
|
|
358
360
|
isActiveVariation: boolean;
|
|
359
|
-
|
|
361
|
+
isShowSecondBordereaux: boolean;
|
|
362
|
+
isShowCustomerName: boolean;
|
|
363
|
+
isShowCommercialValue: boolean;
|
|
360
364
|
customerId: number | null;
|
|
361
365
|
country?: {
|
|
362
366
|
id: number;
|
|
@@ -476,7 +480,9 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
476
480
|
isSubmittedToFrenchVat: boolean;
|
|
477
481
|
isActiveMailInstruction: boolean;
|
|
478
482
|
isActiveVariation: boolean;
|
|
479
|
-
|
|
483
|
+
isShowSecondBordereaux: boolean;
|
|
484
|
+
isShowCustomerName: boolean;
|
|
485
|
+
isShowCommercialValue: boolean;
|
|
480
486
|
customerId: number | null;
|
|
481
487
|
country?: {
|
|
482
488
|
id: number;
|
|
@@ -710,7 +716,9 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
710
716
|
isSubmittedToFrenchVat: boolean;
|
|
711
717
|
isActiveMailInstruction: boolean;
|
|
712
718
|
isActiveVariation: boolean;
|
|
713
|
-
|
|
719
|
+
isShowSecondBordereaux: boolean;
|
|
720
|
+
isShowCustomerName: boolean;
|
|
721
|
+
isShowCommercialValue: boolean;
|
|
714
722
|
customerId: number | null;
|
|
715
723
|
country?: {
|
|
716
724
|
id: number;
|
|
@@ -879,7 +887,9 @@ export declare const FactureSchema: z.ZodObject<{
|
|
|
879
887
|
isSubmittedToFrenchVat: boolean;
|
|
880
888
|
isActiveMailInstruction: boolean;
|
|
881
889
|
isActiveVariation: boolean;
|
|
882
|
-
|
|
890
|
+
isShowSecondBordereaux: boolean;
|
|
891
|
+
isShowCustomerName: boolean;
|
|
892
|
+
isShowCommercialValue: boolean;
|
|
883
893
|
customerId: number | null;
|
|
884
894
|
country?: {
|
|
885
895
|
id: number;
|
|
@@ -77,7 +77,9 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
77
77
|
isParis: z.ZodBoolean;
|
|
78
78
|
isMedical: z.ZodBoolean;
|
|
79
79
|
isService: z.ZodBoolean;
|
|
80
|
-
|
|
80
|
+
isShowSecondBordereaux: z.ZodBoolean;
|
|
81
|
+
isShowCustomerName: z.ZodBoolean;
|
|
82
|
+
isShowCommercialValue: z.ZodBoolean;
|
|
81
83
|
dirigeant: z.ZodNullable<z.ZodString>;
|
|
82
84
|
dirigeantTel: z.ZodNullable<z.ZodString>;
|
|
83
85
|
dirigeantEmail: z.ZodNullable<z.ZodString>;
|
|
@@ -363,7 +365,9 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
363
365
|
isSubmittedToFrenchVat: boolean;
|
|
364
366
|
isActiveMailInstruction: boolean;
|
|
365
367
|
isActiveVariation: boolean;
|
|
366
|
-
|
|
368
|
+
isShowSecondBordereaux: boolean;
|
|
369
|
+
isShowCustomerName: boolean;
|
|
370
|
+
isShowCommercialValue: boolean;
|
|
367
371
|
customerId: number | null;
|
|
368
372
|
country?: {
|
|
369
373
|
id: number;
|
|
@@ -483,7 +487,9 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
483
487
|
isSubmittedToFrenchVat: boolean;
|
|
484
488
|
isActiveMailInstruction: boolean;
|
|
485
489
|
isActiveVariation: boolean;
|
|
486
|
-
|
|
490
|
+
isShowSecondBordereaux: boolean;
|
|
491
|
+
isShowCustomerName: boolean;
|
|
492
|
+
isShowCommercialValue: boolean;
|
|
487
493
|
customerId: number | null;
|
|
488
494
|
country?: {
|
|
489
495
|
id: number;
|
|
@@ -717,7 +723,9 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
717
723
|
isSubmittedToFrenchVat: boolean;
|
|
718
724
|
isActiveMailInstruction: boolean;
|
|
719
725
|
isActiveVariation: boolean;
|
|
720
|
-
|
|
726
|
+
isShowSecondBordereaux: boolean;
|
|
727
|
+
isShowCustomerName: boolean;
|
|
728
|
+
isShowCommercialValue: boolean;
|
|
721
729
|
customerId: number | null;
|
|
722
730
|
country?: {
|
|
723
731
|
id: number;
|
|
@@ -886,7 +894,9 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
886
894
|
isSubmittedToFrenchVat: boolean;
|
|
887
895
|
isActiveMailInstruction: boolean;
|
|
888
896
|
isActiveVariation: boolean;
|
|
889
|
-
|
|
897
|
+
isShowSecondBordereaux: boolean;
|
|
898
|
+
isShowCustomerName: boolean;
|
|
899
|
+
isShowCommercialValue: boolean;
|
|
890
900
|
customerId: number | null;
|
|
891
901
|
country?: {
|
|
892
902
|
id: number;
|
|
@@ -1367,7 +1377,9 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
1367
1377
|
isSubmittedToFrenchVat: boolean;
|
|
1368
1378
|
isActiveMailInstruction: boolean;
|
|
1369
1379
|
isActiveVariation: boolean;
|
|
1370
|
-
|
|
1380
|
+
isShowSecondBordereaux: boolean;
|
|
1381
|
+
isShowCustomerName: boolean;
|
|
1382
|
+
isShowCommercialValue: boolean;
|
|
1371
1383
|
customerId: number | null;
|
|
1372
1384
|
country?: {
|
|
1373
1385
|
id: number;
|
|
@@ -1636,7 +1648,9 @@ export declare const FactureLineSchema: z.ZodObject<{
|
|
|
1636
1648
|
isSubmittedToFrenchVat: boolean;
|
|
1637
1649
|
isActiveMailInstruction: boolean;
|
|
1638
1650
|
isActiveVariation: boolean;
|
|
1639
|
-
|
|
1651
|
+
isShowSecondBordereaux: boolean;
|
|
1652
|
+
isShowCustomerName: boolean;
|
|
1653
|
+
isShowCommercialValue: boolean;
|
|
1640
1654
|
customerId: number | null;
|
|
1641
1655
|
country?: {
|
|
1642
1656
|
id: number;
|
|
@@ -102,7 +102,9 @@ export declare const ShippingSchema: z.ZodObject<{
|
|
|
102
102
|
isParis: z.ZodBoolean;
|
|
103
103
|
isMedical: z.ZodBoolean;
|
|
104
104
|
isService: z.ZodBoolean;
|
|
105
|
-
|
|
105
|
+
isShowSecondBordereaux: z.ZodBoolean;
|
|
106
|
+
isShowCustomerName: z.ZodBoolean;
|
|
107
|
+
isShowCommercialValue: z.ZodBoolean;
|
|
106
108
|
dirigeant: z.ZodNullable<z.ZodString>;
|
|
107
109
|
dirigeantTel: z.ZodNullable<z.ZodString>;
|
|
108
110
|
dirigeantEmail: z.ZodNullable<z.ZodString>;
|
|
@@ -171,7 +173,9 @@ export declare const ShippingSchema: z.ZodObject<{
|
|
|
171
173
|
isSubmittedToFrenchVat: boolean;
|
|
172
174
|
isActiveMailInstruction: boolean;
|
|
173
175
|
isActiveVariation: boolean;
|
|
174
|
-
|
|
176
|
+
isShowSecondBordereaux: boolean;
|
|
177
|
+
isShowCustomerName: boolean;
|
|
178
|
+
isShowCommercialValue: boolean;
|
|
175
179
|
customerId: number | null;
|
|
176
180
|
}, {
|
|
177
181
|
id: number;
|
|
@@ -222,7 +226,9 @@ export declare const ShippingSchema: z.ZodObject<{
|
|
|
222
226
|
isSubmittedToFrenchVat: boolean;
|
|
223
227
|
isActiveMailInstruction: boolean;
|
|
224
228
|
isActiveVariation: boolean;
|
|
225
|
-
|
|
229
|
+
isShowSecondBordereaux: boolean;
|
|
230
|
+
isShowCustomerName: boolean;
|
|
231
|
+
isShowCommercialValue: boolean;
|
|
226
232
|
customerId: number | null;
|
|
227
233
|
}>>>;
|
|
228
234
|
user: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
@@ -1234,7 +1240,9 @@ export declare const ShippingSchema: z.ZodObject<{
|
|
|
1234
1240
|
isSubmittedToFrenchVat: boolean;
|
|
1235
1241
|
isActiveMailInstruction: boolean;
|
|
1236
1242
|
isActiveVariation: boolean;
|
|
1237
|
-
|
|
1243
|
+
isShowSecondBordereaux: boolean;
|
|
1244
|
+
isShowCustomerName: boolean;
|
|
1245
|
+
isShowCommercialValue: boolean;
|
|
1238
1246
|
customerId: number | null;
|
|
1239
1247
|
} | undefined;
|
|
1240
1248
|
factureLines?: {
|
|
@@ -1626,7 +1634,9 @@ export declare const ShippingSchema: z.ZodObject<{
|
|
|
1626
1634
|
isSubmittedToFrenchVat: boolean;
|
|
1627
1635
|
isActiveMailInstruction: boolean;
|
|
1628
1636
|
isActiveVariation: boolean;
|
|
1629
|
-
|
|
1637
|
+
isShowSecondBordereaux: boolean;
|
|
1638
|
+
isShowCustomerName: boolean;
|
|
1639
|
+
isShowCommercialValue: boolean;
|
|
1630
1640
|
customerId: number | null;
|
|
1631
1641
|
} | undefined;
|
|
1632
1642
|
factureLines?: {
|
|
@@ -769,7 +769,9 @@ export declare const UserBillingCenterSchema: z.ZodObject<{
|
|
|
769
769
|
isParis: z.ZodBoolean;
|
|
770
770
|
isMedical: z.ZodBoolean;
|
|
771
771
|
isService: z.ZodBoolean;
|
|
772
|
-
|
|
772
|
+
isShowSecondBordereaux: z.ZodBoolean;
|
|
773
|
+
isShowCustomerName: z.ZodBoolean;
|
|
774
|
+
isShowCommercialValue: z.ZodBoolean;
|
|
773
775
|
dirigeant: z.ZodNullable<z.ZodString>;
|
|
774
776
|
dirigeantTel: z.ZodNullable<z.ZodString>;
|
|
775
777
|
dirigeantEmail: z.ZodNullable<z.ZodString>;
|
|
@@ -1055,7 +1057,9 @@ export declare const UserBillingCenterSchema: z.ZodObject<{
|
|
|
1055
1057
|
isSubmittedToFrenchVat: boolean;
|
|
1056
1058
|
isActiveMailInstruction: boolean;
|
|
1057
1059
|
isActiveVariation: boolean;
|
|
1058
|
-
|
|
1060
|
+
isShowSecondBordereaux: boolean;
|
|
1061
|
+
isShowCustomerName: boolean;
|
|
1062
|
+
isShowCommercialValue: boolean;
|
|
1059
1063
|
customerId: number | null;
|
|
1060
1064
|
country?: {
|
|
1061
1065
|
id: number;
|
|
@@ -1175,7 +1179,9 @@ export declare const UserBillingCenterSchema: z.ZodObject<{
|
|
|
1175
1179
|
isSubmittedToFrenchVat: boolean;
|
|
1176
1180
|
isActiveMailInstruction: boolean;
|
|
1177
1181
|
isActiveVariation: boolean;
|
|
1178
|
-
|
|
1182
|
+
isShowSecondBordereaux: boolean;
|
|
1183
|
+
isShowCustomerName: boolean;
|
|
1184
|
+
isShowCommercialValue: boolean;
|
|
1179
1185
|
customerId: number | null;
|
|
1180
1186
|
country?: {
|
|
1181
1187
|
id: number;
|
|
@@ -1470,7 +1476,9 @@ export declare const UserBillingCenterSchema: z.ZodObject<{
|
|
|
1470
1476
|
isSubmittedToFrenchVat: boolean;
|
|
1471
1477
|
isActiveMailInstruction: boolean;
|
|
1472
1478
|
isActiveVariation: boolean;
|
|
1473
|
-
|
|
1479
|
+
isShowSecondBordereaux: boolean;
|
|
1480
|
+
isShowCustomerName: boolean;
|
|
1481
|
+
isShowCommercialValue: boolean;
|
|
1474
1482
|
customerId: number | null;
|
|
1475
1483
|
country?: {
|
|
1476
1484
|
id: number;
|
|
@@ -1765,7 +1773,9 @@ export declare const UserBillingCenterSchema: z.ZodObject<{
|
|
|
1765
1773
|
isSubmittedToFrenchVat: boolean;
|
|
1766
1774
|
isActiveMailInstruction: boolean;
|
|
1767
1775
|
isActiveVariation: boolean;
|
|
1768
|
-
|
|
1776
|
+
isShowSecondBordereaux: boolean;
|
|
1777
|
+
isShowCustomerName: boolean;
|
|
1778
|
+
isShowCommercialValue: boolean;
|
|
1769
1779
|
customerId: number | null;
|
|
1770
1780
|
country?: {
|
|
1771
1781
|
id: number;
|