erpnext-queue-client 1.19.0 → 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(),
|