erpnext-queue-client 2.1.6 → 2.1.7
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.
|
@@ -10,7 +10,9 @@ export declare const SalesOrderItem: z.ZodObject<{
|
|
|
10
10
|
ensure_delivery_based_on_produced_serial_no: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>, 0 | 1, unknown>> & {
|
|
11
11
|
__optionalForInput: true;
|
|
12
12
|
};
|
|
13
|
-
item_name: z.ZodString
|
|
13
|
+
item_name: z.ZodString & {
|
|
14
|
+
__optionalForInput: true;
|
|
15
|
+
};
|
|
14
16
|
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
15
17
|
delivery_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
16
18
|
image: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -297,7 +299,9 @@ export declare const SalesOrder: z.ZodObject<{
|
|
|
297
299
|
ensure_delivery_based_on_produced_serial_no: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>, 0 | 1, unknown>> & {
|
|
298
300
|
__optionalForInput: true;
|
|
299
301
|
};
|
|
300
|
-
item_name: z.ZodString
|
|
302
|
+
item_name: z.ZodString & {
|
|
303
|
+
__optionalForInput: true;
|
|
304
|
+
};
|
|
301
305
|
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
302
306
|
delivery_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
303
307
|
image: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -15,7 +15,7 @@ exports.SalesOrderItem = zod_1.z
|
|
|
15
15
|
custom_is_digital: Boolean_1.ERPNextBoolean,
|
|
16
16
|
customer_item_code: zod_1.z.string().optional().nullable(),
|
|
17
17
|
ensure_delivery_based_on_produced_serial_no: Boolean_1.ERPNextBoolean,
|
|
18
|
-
item_name: zod_1.z.string()
|
|
18
|
+
item_name: (0, zodContextOptionals_1.optionalForInput)(zod_1.z.string()),
|
|
19
19
|
description: zod_1.z.string().optional().nullable(),
|
|
20
20
|
delivery_date: zod_1.z.string().optional().nullable(), // Date string
|
|
21
21
|
image: zod_1.z.string().optional().nullable(),
|