erpnext-queue-client 1.33.4 → 1.33.5
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.
|
@@ -245,11 +245,13 @@ export declare const ReturnItemInput: z.ZodObject<{
|
|
|
245
245
|
attachments: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
246
246
|
return_label: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
247
247
|
} & {
|
|
248
|
+
name: z.ZodOptional<z.ZodString>;
|
|
248
249
|
is_complaint: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
249
250
|
}, "strip", z.ZodTypeAny, {
|
|
250
251
|
item: string;
|
|
251
252
|
return_quantity: number;
|
|
252
253
|
is_complaint: number;
|
|
254
|
+
name?: string | undefined;
|
|
253
255
|
attachments?: string | null | undefined;
|
|
254
256
|
internal_reasons?: string | null | undefined;
|
|
255
257
|
line_item_id?: string | null | undefined;
|
|
@@ -265,6 +267,7 @@ export declare const ReturnItemInput: z.ZodObject<{
|
|
|
265
267
|
}, {
|
|
266
268
|
item: string;
|
|
267
269
|
return_quantity: number;
|
|
270
|
+
name?: string | undefined;
|
|
268
271
|
attachments?: string | null | undefined;
|
|
269
272
|
internal_reasons?: string | null | undefined;
|
|
270
273
|
line_item_id?: string | null | undefined;
|
|
@@ -798,11 +801,13 @@ export declare const ServicecaseInput: z.ZodObject<{
|
|
|
798
801
|
attachments: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
799
802
|
return_label: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
800
803
|
} & {
|
|
804
|
+
name: z.ZodOptional<z.ZodString>;
|
|
801
805
|
is_complaint: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
802
806
|
}, "strip", z.ZodTypeAny, {
|
|
803
807
|
item: string;
|
|
804
808
|
return_quantity: number;
|
|
805
809
|
is_complaint: number;
|
|
810
|
+
name?: string | undefined;
|
|
806
811
|
attachments?: string | null | undefined;
|
|
807
812
|
internal_reasons?: string | null | undefined;
|
|
808
813
|
line_item_id?: string | null | undefined;
|
|
@@ -818,6 +823,7 @@ export declare const ServicecaseInput: z.ZodObject<{
|
|
|
818
823
|
}, {
|
|
819
824
|
item: string;
|
|
820
825
|
return_quantity: number;
|
|
826
|
+
name?: string | undefined;
|
|
821
827
|
attachments?: string | null | undefined;
|
|
822
828
|
internal_reasons?: string | null | undefined;
|
|
823
829
|
line_item_id?: string | null | undefined;
|
|
@@ -863,6 +869,7 @@ export declare const ServicecaseInput: z.ZodObject<{
|
|
|
863
869
|
item: string;
|
|
864
870
|
return_quantity: number;
|
|
865
871
|
is_complaint: number;
|
|
872
|
+
name?: string | undefined;
|
|
866
873
|
attachments?: string | null | undefined;
|
|
867
874
|
internal_reasons?: string | null | undefined;
|
|
868
875
|
line_item_id?: string | null | undefined;
|
|
@@ -895,6 +902,7 @@ export declare const ServicecaseInput: z.ZodObject<{
|
|
|
895
902
|
return_items: {
|
|
896
903
|
item: string;
|
|
897
904
|
return_quantity: number;
|
|
905
|
+
name?: string | undefined;
|
|
898
906
|
attachments?: string | null | undefined;
|
|
899
907
|
internal_reasons?: string | null | undefined;
|
|
900
908
|
line_item_id?: string | null | undefined;
|
|
@@ -94,6 +94,7 @@ exports.ReturnItemBase = zod_1.z
|
|
|
94
94
|
})
|
|
95
95
|
.describe("ReturnItemBase");
|
|
96
96
|
exports.ReturnItemInput = exports.ReturnItemBase.extend({
|
|
97
|
+
name: zod_1.z.string().optional(),
|
|
97
98
|
is_complaint: zod_1.z.preprocess((i) => Number(i), zod_1.z.number()),
|
|
98
99
|
}).describe("ReturnItemInput");
|
|
99
100
|
exports.ReturnItem = exports.ReturnItemBase.extend({
|