erpnext-queue-client 1.18.2 → 1.19.1
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.
|
@@ -43,7 +43,7 @@ export declare class ERPNextServicecase {
|
|
|
43
43
|
is_complaint?: boolean | null | undefined;
|
|
44
44
|
external_id?: string | null | undefined;
|
|
45
45
|
customer_email?: string | null | undefined;
|
|
46
|
-
complaint_date?:
|
|
46
|
+
complaint_date?: string | null | undefined;
|
|
47
47
|
is_sent_to_client?: boolean | null | undefined;
|
|
48
48
|
is_sent_to_cc?: boolean | null | undefined;
|
|
49
49
|
customer_message?: string | null | undefined;
|
|
@@ -93,7 +93,7 @@ export declare class ERPNextServicecase {
|
|
|
93
93
|
is_complaint?: boolean | null | undefined;
|
|
94
94
|
external_id?: string | null | undefined;
|
|
95
95
|
customer_email?: string | null | undefined;
|
|
96
|
-
complaint_date?:
|
|
96
|
+
complaint_date?: string | null | undefined;
|
|
97
97
|
is_sent_to_client?: boolean | null | undefined;
|
|
98
98
|
is_sent_to_cc?: boolean | null | undefined;
|
|
99
99
|
customer_message?: string | null | undefined;
|
|
@@ -138,7 +138,7 @@ export declare class ERPNextServicecase {
|
|
|
138
138
|
is_complaint?: boolean | null | undefined;
|
|
139
139
|
external_id?: string | null | undefined;
|
|
140
140
|
customer_email?: string | null | undefined;
|
|
141
|
-
complaint_date?:
|
|
141
|
+
complaint_date?: string | null | undefined;
|
|
142
142
|
is_sent_to_client?: boolean | null | undefined;
|
|
143
143
|
is_sent_to_cc?: boolean | null | undefined;
|
|
144
144
|
customer_message?: string | null | undefined;
|
|
@@ -180,7 +180,7 @@ export declare class ERPNextServicecase {
|
|
|
180
180
|
is_complaint?: boolean | null | undefined;
|
|
181
181
|
external_id?: string | null | undefined;
|
|
182
182
|
customer_email?: string | null | undefined;
|
|
183
|
-
complaint_date?:
|
|
183
|
+
complaint_date?: string | null | undefined;
|
|
184
184
|
is_sent_to_client?: boolean | null | undefined;
|
|
185
185
|
is_sent_to_cc?: boolean | null | undefined;
|
|
186
186
|
customer_message?: string | null | undefined;
|
|
@@ -227,7 +227,7 @@ export declare class ERPNextServicecase {
|
|
|
227
227
|
is_complaint?: boolean | null | undefined;
|
|
228
228
|
external_id?: string | null | undefined;
|
|
229
229
|
customer_email?: string | null | undefined;
|
|
230
|
-
complaint_date?:
|
|
230
|
+
complaint_date?: string | null | undefined;
|
|
231
231
|
is_sent_to_client?: boolean | null | undefined;
|
|
232
232
|
is_sent_to_cc?: boolean | null | undefined;
|
|
233
233
|
customer_message?: string | null | undefined;
|
|
@@ -269,7 +269,7 @@ export declare class ERPNextServicecase {
|
|
|
269
269
|
is_complaint?: boolean | null | undefined;
|
|
270
270
|
external_id?: string | null | undefined;
|
|
271
271
|
customer_email?: string | null | undefined;
|
|
272
|
-
complaint_date?:
|
|
272
|
+
complaint_date?: string | null | undefined;
|
|
273
273
|
is_sent_to_client?: boolean | null | undefined;
|
|
274
274
|
is_sent_to_cc?: boolean | null | undefined;
|
|
275
275
|
customer_message?: string | null | undefined;
|
|
@@ -314,7 +314,7 @@ export declare class ERPNextServicecase {
|
|
|
314
314
|
is_complaint?: boolean | null | undefined;
|
|
315
315
|
external_id?: string | null | undefined;
|
|
316
316
|
customer_email?: string | null | undefined;
|
|
317
|
-
complaint_date?:
|
|
317
|
+
complaint_date?: string | null | undefined;
|
|
318
318
|
is_sent_to_client?: boolean | null | undefined;
|
|
319
319
|
is_sent_to_cc?: boolean | null | undefined;
|
|
320
320
|
customer_message?: string | null | undefined;
|
|
@@ -222,7 +222,7 @@ export declare const Servicecase: z.ZodObject<{
|
|
|
222
222
|
shop: z.ZodEnum<["Shopify", "Amazon FBA", "Amazon FBM", "Otto"]>;
|
|
223
223
|
customer_email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
224
224
|
status: z.ZodDefault<z.ZodEnum<["EDITING", "SUBMITTING", "VALIDATING", "REJECTED", "SHIPPING", "COMPLETED"]>>;
|
|
225
|
-
complaint_date: z.ZodNullable<z.ZodOptional<z.
|
|
225
|
+
complaint_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
226
226
|
is_complaint: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodNumber, boolean, number>>>;
|
|
227
227
|
is_sent_to_client: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodNumber, boolean, number>>>;
|
|
228
228
|
is_sent_to_cc: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodNumber, boolean, number>>>;
|
|
@@ -327,7 +327,7 @@ export declare const Servicecase: z.ZodObject<{
|
|
|
327
327
|
is_complaint?: boolean | null | undefined;
|
|
328
328
|
external_id?: string | null | undefined;
|
|
329
329
|
customer_email?: string | null | undefined;
|
|
330
|
-
complaint_date?:
|
|
330
|
+
complaint_date?: string | null | undefined;
|
|
331
331
|
is_sent_to_client?: boolean | null | undefined;
|
|
332
332
|
is_sent_to_cc?: boolean | null | undefined;
|
|
333
333
|
customer_message?: string | null | undefined;
|
|
@@ -367,7 +367,7 @@ export declare const Servicecase: z.ZodObject<{
|
|
|
367
367
|
is_complaint?: number | null | undefined;
|
|
368
368
|
external_id?: string | null | undefined;
|
|
369
369
|
customer_email?: string | null | undefined;
|
|
370
|
-
complaint_date?:
|
|
370
|
+
complaint_date?: string | null | undefined;
|
|
371
371
|
is_sent_to_client?: number | null | undefined;
|
|
372
372
|
is_sent_to_cc?: number | null | undefined;
|
|
373
373
|
customer_message?: string | null | undefined;
|
|
@@ -386,7 +386,7 @@ export declare const ServicecaseInput: z.ZodObject<z.objectUtil.extendShape<Omit
|
|
|
386
386
|
shop: z.ZodEnum<["Shopify", "Amazon FBA", "Amazon FBM", "Otto"]>;
|
|
387
387
|
customer_email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
388
388
|
status: z.ZodDefault<z.ZodEnum<["EDITING", "SUBMITTING", "VALIDATING", "REJECTED", "SHIPPING", "COMPLETED"]>>;
|
|
389
|
-
complaint_date: z.ZodNullable<z.ZodOptional<z.
|
|
389
|
+
complaint_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
390
390
|
is_complaint: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodNumber, boolean, number>>>;
|
|
391
391
|
is_sent_to_client: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodNumber, boolean, number>>>;
|
|
392
392
|
is_sent_to_cc: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodNumber, boolean, number>>>;
|
|
@@ -530,7 +530,7 @@ export declare const ServicecaseInput: z.ZodObject<z.objectUtil.extendShape<Omit
|
|
|
530
530
|
is_complaint?: boolean | null | undefined;
|
|
531
531
|
external_id?: string | null | undefined;
|
|
532
532
|
customer_email?: string | null | undefined;
|
|
533
|
-
complaint_date?:
|
|
533
|
+
complaint_date?: string | null | undefined;
|
|
534
534
|
is_sent_to_client?: boolean | null | undefined;
|
|
535
535
|
is_sent_to_cc?: boolean | null | undefined;
|
|
536
536
|
customer_message?: string | null | undefined;
|
|
@@ -559,7 +559,7 @@ export declare const ServicecaseInput: z.ZodObject<z.objectUtil.extendShape<Omit
|
|
|
559
559
|
is_complaint?: number | null | undefined;
|
|
560
560
|
external_id?: string | null | undefined;
|
|
561
561
|
customer_email?: string | null | undefined;
|
|
562
|
-
complaint_date?:
|
|
562
|
+
complaint_date?: string | null | undefined;
|
|
563
563
|
is_sent_to_client?: number | null | undefined;
|
|
564
564
|
is_sent_to_cc?: number | null | undefined;
|
|
565
565
|
customer_message?: string | null | undefined;
|
|
@@ -578,7 +578,7 @@ export declare const ServicecaseExtended: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
578
578
|
shop: z.ZodEnum<["Shopify", "Amazon FBA", "Amazon FBM", "Otto"]>;
|
|
579
579
|
customer_email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
580
580
|
status: z.ZodDefault<z.ZodEnum<["EDITING", "SUBMITTING", "VALIDATING", "REJECTED", "SHIPPING", "COMPLETED"]>>;
|
|
581
|
-
complaint_date: z.ZodNullable<z.ZodOptional<z.
|
|
581
|
+
complaint_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
582
582
|
is_complaint: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodNumber, boolean, number>>>;
|
|
583
583
|
is_sent_to_client: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodNumber, boolean, number>>>;
|
|
584
584
|
is_sent_to_cc: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodNumber, boolean, number>>>;
|
|
@@ -748,7 +748,7 @@ export declare const ServicecaseExtended: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
748
748
|
is_complaint?: boolean | null | undefined;
|
|
749
749
|
external_id?: string | null | undefined;
|
|
750
750
|
customer_email?: string | null | undefined;
|
|
751
|
-
complaint_date?:
|
|
751
|
+
complaint_date?: string | null | undefined;
|
|
752
752
|
is_sent_to_client?: boolean | null | undefined;
|
|
753
753
|
is_sent_to_cc?: boolean | null | undefined;
|
|
754
754
|
customer_message?: string | null | undefined;
|
|
@@ -788,7 +788,7 @@ export declare const ServicecaseExtended: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
788
788
|
is_complaint?: number | null | undefined;
|
|
789
789
|
external_id?: string | null | undefined;
|
|
790
790
|
customer_email?: string | null | undefined;
|
|
791
|
-
complaint_date?:
|
|
791
|
+
complaint_date?: string | null | undefined;
|
|
792
792
|
is_sent_to_client?: number | null | undefined;
|
|
793
793
|
is_sent_to_cc?: number | null | undefined;
|
|
794
794
|
customer_message?: string | null | undefined;
|
|
@@ -808,7 +808,7 @@ export declare const ServicecaseMethodResponse: z.ZodArray<z.ZodObject<z.objectU
|
|
|
808
808
|
shop: z.ZodEnum<["Shopify", "Amazon FBA", "Amazon FBM", "Otto"]>;
|
|
809
809
|
customer_email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
810
810
|
status: z.ZodDefault<z.ZodEnum<["EDITING", "SUBMITTING", "VALIDATING", "REJECTED", "SHIPPING", "COMPLETED"]>>;
|
|
811
|
-
complaint_date: z.ZodNullable<z.ZodOptional<z.
|
|
811
|
+
complaint_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
812
812
|
is_complaint: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodNumber, boolean, number>>>;
|
|
813
813
|
is_sent_to_client: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodNumber, boolean, number>>>;
|
|
814
814
|
is_sent_to_cc: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodNumber, boolean, number>>>;
|
|
@@ -978,7 +978,7 @@ export declare const ServicecaseMethodResponse: z.ZodArray<z.ZodObject<z.objectU
|
|
|
978
978
|
is_complaint?: boolean | null | undefined;
|
|
979
979
|
external_id?: string | null | undefined;
|
|
980
980
|
customer_email?: string | null | undefined;
|
|
981
|
-
complaint_date?:
|
|
981
|
+
complaint_date?: string | null | undefined;
|
|
982
982
|
is_sent_to_client?: boolean | null | undefined;
|
|
983
983
|
is_sent_to_cc?: boolean | null | undefined;
|
|
984
984
|
customer_message?: string | null | undefined;
|
|
@@ -1018,7 +1018,7 @@ export declare const ServicecaseMethodResponse: z.ZodArray<z.ZodObject<z.objectU
|
|
|
1018
1018
|
is_complaint?: number | null | undefined;
|
|
1019
1019
|
external_id?: string | null | undefined;
|
|
1020
1020
|
customer_email?: string | null | undefined;
|
|
1021
|
-
complaint_date?:
|
|
1021
|
+
complaint_date?: string | null | undefined;
|
|
1022
1022
|
is_sent_to_client?: number | null | undefined;
|
|
1023
1023
|
is_sent_to_cc?: number | null | undefined;
|
|
1024
1024
|
customer_message?: string | null | undefined;
|
|
@@ -112,7 +112,7 @@ exports.Servicecase = zod_1.z
|
|
|
112
112
|
shop: Shop,
|
|
113
113
|
customer_email: zod_1.z.string().email().optional().nullable(),
|
|
114
114
|
status: Status.default("EDITING"),
|
|
115
|
-
complaint_date: zod_1.z.
|
|
115
|
+
complaint_date: zod_1.z.string().optional().nullable(),
|
|
116
116
|
is_complaint: zod_1.z.number().transform(Boolean).optional().nullable(),
|
|
117
117
|
is_sent_to_client: zod_1.z.number().transform(Boolean).optional().nullable(),
|
|
118
118
|
is_sent_to_cc: zod_1.z.number().transform(Boolean).optional().nullable(),
|
|
@@ -124,11 +124,7 @@ export declare const ShippingProvider: z.ZodObject<{
|
|
|
124
124
|
modified: z.ZodString;
|
|
125
125
|
modified_by: z.ZodString;
|
|
126
126
|
owner: z.ZodString;
|
|
127
|
-
|
|
128
|
-
parent: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
129
|
-
parentfield: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
130
|
-
parenttype: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
131
|
-
idx: z.ZodNumber;
|
|
127
|
+
is_active: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
132
128
|
is_transport_by_freight_forwarding: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
133
129
|
is_print_label: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
134
130
|
label_service: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"GLS Germany">, z.ZodLiteral<"GLS ADE-plus">]>, z.ZodLiteral<"DHL">]>, z.ZodLiteral<"DHL-2-Mann">]>, z.ZodLiteral<"Deutsche Post">]>, z.ZodLiteral<"Billbee">]>, z.ZodLiteral<"Billbee Amazon MCF">]>;
|
|
@@ -156,9 +152,8 @@ export declare const ShippingProvider: z.ZodObject<{
|
|
|
156
152
|
creation: string;
|
|
157
153
|
modified: string;
|
|
158
154
|
modified_by: string;
|
|
159
|
-
idx: number;
|
|
160
|
-
docstatus: number;
|
|
161
155
|
title: string;
|
|
156
|
+
is_active: boolean;
|
|
162
157
|
is_transport_by_freight_forwarding: boolean;
|
|
163
158
|
is_print_label: boolean;
|
|
164
159
|
label_service: "DHL" | "Deutsche Post" | "GLS Germany" | "GLS ADE-plus" | "DHL-2-Mann" | "Billbee" | "Billbee Amazon MCF";
|
|
@@ -169,9 +164,6 @@ export declare const ShippingProvider: z.ZodObject<{
|
|
|
169
164
|
is_return_shipping_provider: boolean;
|
|
170
165
|
return_address: string;
|
|
171
166
|
is_self_service: boolean;
|
|
172
|
-
parent?: string | null | undefined;
|
|
173
|
-
parentfield?: string | null | undefined;
|
|
174
|
-
parenttype?: string | null | undefined;
|
|
175
167
|
dhl_ekp_number?: string | null | undefined;
|
|
176
168
|
api_user?: string | null | undefined;
|
|
177
169
|
api_password?: string | null | undefined;
|
|
@@ -187,9 +179,8 @@ export declare const ShippingProvider: z.ZodObject<{
|
|
|
187
179
|
creation: string;
|
|
188
180
|
modified: string;
|
|
189
181
|
modified_by: string;
|
|
190
|
-
idx: number;
|
|
191
|
-
docstatus: number;
|
|
192
182
|
title: string;
|
|
183
|
+
is_active: number;
|
|
193
184
|
is_transport_by_freight_forwarding: number;
|
|
194
185
|
is_print_label: number;
|
|
195
186
|
label_service: "DHL" | "Deutsche Post" | "GLS Germany" | "GLS ADE-plus" | "DHL-2-Mann" | "Billbee" | "Billbee Amazon MCF";
|
|
@@ -200,9 +191,6 @@ export declare const ShippingProvider: z.ZodObject<{
|
|
|
200
191
|
is_return_shipping_provider: number;
|
|
201
192
|
return_address: string;
|
|
202
193
|
is_self_service: number;
|
|
203
|
-
parent?: string | null | undefined;
|
|
204
|
-
parentfield?: string | null | undefined;
|
|
205
|
-
parenttype?: string | null | undefined;
|
|
206
194
|
dhl_ekp_number?: string | null | undefined;
|
|
207
195
|
api_user?: string | null | undefined;
|
|
208
196
|
api_password?: string | null | undefined;
|
|
@@ -219,11 +207,7 @@ export declare const ShippingProviderFromList: z.ZodObject<Omit<{
|
|
|
219
207
|
modified: z.ZodString;
|
|
220
208
|
modified_by: z.ZodString;
|
|
221
209
|
owner: z.ZodString;
|
|
222
|
-
|
|
223
|
-
parent: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
224
|
-
parentfield: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
225
|
-
parenttype: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
226
|
-
idx: z.ZodNumber;
|
|
210
|
+
is_active: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
227
211
|
is_transport_by_freight_forwarding: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
228
212
|
is_print_label: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
229
213
|
label_service: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"GLS Germany">, z.ZodLiteral<"GLS ADE-plus">]>, z.ZodLiteral<"DHL">]>, z.ZodLiteral<"DHL-2-Mann">]>, z.ZodLiteral<"Deutsche Post">]>, z.ZodLiteral<"Billbee">]>, z.ZodLiteral<"Billbee Amazon MCF">]>;
|
|
@@ -250,9 +234,8 @@ export declare const ShippingProviderFromList: z.ZodObject<Omit<{
|
|
|
250
234
|
creation: string;
|
|
251
235
|
modified: string;
|
|
252
236
|
modified_by: string;
|
|
253
|
-
idx: number;
|
|
254
|
-
docstatus: number;
|
|
255
237
|
title: string;
|
|
238
|
+
is_active: boolean;
|
|
256
239
|
is_transport_by_freight_forwarding: boolean;
|
|
257
240
|
is_print_label: boolean;
|
|
258
241
|
label_service: "DHL" | "Deutsche Post" | "GLS Germany" | "GLS ADE-plus" | "DHL-2-Mann" | "Billbee" | "Billbee Amazon MCF";
|
|
@@ -263,9 +246,6 @@ export declare const ShippingProviderFromList: z.ZodObject<Omit<{
|
|
|
263
246
|
is_return_shipping_provider: boolean;
|
|
264
247
|
return_address: string;
|
|
265
248
|
is_self_service: boolean;
|
|
266
|
-
parent?: string | null | undefined;
|
|
267
|
-
parentfield?: string | null | undefined;
|
|
268
|
-
parenttype?: string | null | undefined;
|
|
269
249
|
dhl_ekp_number?: string | null | undefined;
|
|
270
250
|
api_user?: string | null | undefined;
|
|
271
251
|
api_password?: string | null | undefined;
|
|
@@ -280,9 +260,8 @@ export declare const ShippingProviderFromList: z.ZodObject<Omit<{
|
|
|
280
260
|
creation: string;
|
|
281
261
|
modified: string;
|
|
282
262
|
modified_by: string;
|
|
283
|
-
idx: number;
|
|
284
|
-
docstatus: number;
|
|
285
263
|
title: string;
|
|
264
|
+
is_active: number;
|
|
286
265
|
is_transport_by_freight_forwarding: number;
|
|
287
266
|
is_print_label: number;
|
|
288
267
|
label_service: "DHL" | "Deutsche Post" | "GLS Germany" | "GLS ADE-plus" | "DHL-2-Mann" | "Billbee" | "Billbee Amazon MCF";
|
|
@@ -293,9 +272,6 @@ export declare const ShippingProviderFromList: z.ZodObject<Omit<{
|
|
|
293
272
|
is_return_shipping_provider: number;
|
|
294
273
|
return_address: string;
|
|
295
274
|
is_self_service: number;
|
|
296
|
-
parent?: string | null | undefined;
|
|
297
|
-
parentfield?: string | null | undefined;
|
|
298
|
-
parenttype?: string | null | undefined;
|
|
299
275
|
dhl_ekp_number?: string | null | undefined;
|
|
300
276
|
api_user?: string | null | undefined;
|
|
301
277
|
api_password?: string | null | undefined;
|
|
@@ -311,11 +287,7 @@ export declare const ShippingProviderList: z.ZodEffects<z.ZodArray<z.ZodObject<O
|
|
|
311
287
|
modified: z.ZodString;
|
|
312
288
|
modified_by: z.ZodString;
|
|
313
289
|
owner: z.ZodString;
|
|
314
|
-
|
|
315
|
-
parent: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
316
|
-
parentfield: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
317
|
-
parenttype: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
318
|
-
idx: z.ZodNumber;
|
|
290
|
+
is_active: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
319
291
|
is_transport_by_freight_forwarding: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
320
292
|
is_print_label: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
321
293
|
label_service: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"GLS Germany">, z.ZodLiteral<"GLS ADE-plus">]>, z.ZodLiteral<"DHL">]>, z.ZodLiteral<"DHL-2-Mann">]>, z.ZodLiteral<"Deutsche Post">]>, z.ZodLiteral<"Billbee">]>, z.ZodLiteral<"Billbee Amazon MCF">]>;
|
|
@@ -342,9 +314,8 @@ export declare const ShippingProviderList: z.ZodEffects<z.ZodArray<z.ZodObject<O
|
|
|
342
314
|
creation: string;
|
|
343
315
|
modified: string;
|
|
344
316
|
modified_by: string;
|
|
345
|
-
idx: number;
|
|
346
|
-
docstatus: number;
|
|
347
317
|
title: string;
|
|
318
|
+
is_active: boolean;
|
|
348
319
|
is_transport_by_freight_forwarding: boolean;
|
|
349
320
|
is_print_label: boolean;
|
|
350
321
|
label_service: "DHL" | "Deutsche Post" | "GLS Germany" | "GLS ADE-plus" | "DHL-2-Mann" | "Billbee" | "Billbee Amazon MCF";
|
|
@@ -355,9 +326,6 @@ export declare const ShippingProviderList: z.ZodEffects<z.ZodArray<z.ZodObject<O
|
|
|
355
326
|
is_return_shipping_provider: boolean;
|
|
356
327
|
return_address: string;
|
|
357
328
|
is_self_service: boolean;
|
|
358
|
-
parent?: string | null | undefined;
|
|
359
|
-
parentfield?: string | null | undefined;
|
|
360
|
-
parenttype?: string | null | undefined;
|
|
361
329
|
dhl_ekp_number?: string | null | undefined;
|
|
362
330
|
api_user?: string | null | undefined;
|
|
363
331
|
api_password?: string | null | undefined;
|
|
@@ -372,9 +340,8 @@ export declare const ShippingProviderList: z.ZodEffects<z.ZodArray<z.ZodObject<O
|
|
|
372
340
|
creation: string;
|
|
373
341
|
modified: string;
|
|
374
342
|
modified_by: string;
|
|
375
|
-
idx: number;
|
|
376
|
-
docstatus: number;
|
|
377
343
|
title: string;
|
|
344
|
+
is_active: number;
|
|
378
345
|
is_transport_by_freight_forwarding: number;
|
|
379
346
|
is_print_label: number;
|
|
380
347
|
label_service: "DHL" | "Deutsche Post" | "GLS Germany" | "GLS ADE-plus" | "DHL-2-Mann" | "Billbee" | "Billbee Amazon MCF";
|
|
@@ -385,9 +352,6 @@ export declare const ShippingProviderList: z.ZodEffects<z.ZodArray<z.ZodObject<O
|
|
|
385
352
|
is_return_shipping_provider: number;
|
|
386
353
|
return_address: string;
|
|
387
354
|
is_self_service: number;
|
|
388
|
-
parent?: string | null | undefined;
|
|
389
|
-
parentfield?: string | null | undefined;
|
|
390
|
-
parenttype?: string | null | undefined;
|
|
391
355
|
dhl_ekp_number?: string | null | undefined;
|
|
392
356
|
api_user?: string | null | undefined;
|
|
393
357
|
api_password?: string | null | undefined;
|
|
@@ -402,9 +366,8 @@ export declare const ShippingProviderList: z.ZodEffects<z.ZodArray<z.ZodObject<O
|
|
|
402
366
|
creation: string;
|
|
403
367
|
modified: string;
|
|
404
368
|
modified_by: string;
|
|
405
|
-
idx: number;
|
|
406
|
-
docstatus: number;
|
|
407
369
|
title: string;
|
|
370
|
+
is_active: boolean;
|
|
408
371
|
is_transport_by_freight_forwarding: boolean;
|
|
409
372
|
is_print_label: boolean;
|
|
410
373
|
label_service: "DHL" | "Deutsche Post" | "GLS Germany" | "GLS ADE-plus" | "DHL-2-Mann" | "Billbee" | "Billbee Amazon MCF";
|
|
@@ -415,9 +378,6 @@ export declare const ShippingProviderList: z.ZodEffects<z.ZodArray<z.ZodObject<O
|
|
|
415
378
|
is_return_shipping_provider: boolean;
|
|
416
379
|
return_address: string;
|
|
417
380
|
is_self_service: boolean;
|
|
418
|
-
parent?: string | null | undefined;
|
|
419
|
-
parentfield?: string | null | undefined;
|
|
420
|
-
parenttype?: string | null | undefined;
|
|
421
381
|
dhl_ekp_number?: string | null | undefined;
|
|
422
382
|
api_user?: string | null | undefined;
|
|
423
383
|
api_password?: string | null | undefined;
|
|
@@ -138,11 +138,7 @@ exports.ShippingProvider = zod_1.z
|
|
|
138
138
|
modified: zod_1.z.string(),
|
|
139
139
|
modified_by: zod_1.z.string(),
|
|
140
140
|
owner: zod_1.z.string(),
|
|
141
|
-
|
|
142
|
-
parent: zod_1.z.string().optional().nullable(),
|
|
143
|
-
parentfield: zod_1.z.string().optional().nullable(),
|
|
144
|
-
parenttype: zod_1.z.string().optional().nullable(),
|
|
145
|
-
idx: zod_1.z.number(),
|
|
141
|
+
is_active: zod_1.z.number().transform(Boolean),
|
|
146
142
|
is_transport_by_freight_forwarding: zod_1.z.number().transform(Boolean),
|
|
147
143
|
is_print_label: zod_1.z.number().transform(Boolean),
|
|
148
144
|
label_service: exports.LabelService,
|