erpnext-queue-client 2.0.0-beta.1 → 2.0.0-beta.2

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.
@@ -3,6 +3,9 @@ export declare const SalesOrderItem: z.ZodObject<{
3
3
  custom_order_item_id: z.ZodString;
4
4
  custom_external_order_item_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5
5
  item_code: z.ZodString;
6
+ custom_is_digital: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>, 0 | 1, unknown>> & {
7
+ __optionalForInput: true;
8
+ };
6
9
  customer_item_code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7
10
  ensure_delivery_based_on_produced_serial_no: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>, 0 | 1, unknown>> & {
8
11
  __optionalForInput: true;
@@ -96,6 +99,7 @@ export declare const SalesOrderItem: z.ZodObject<{
96
99
  grant_commission: 0 | 1;
97
100
  page_break: 0 | 1;
98
101
  is_stock_item: 0 | 1;
102
+ custom_is_digital: 0 | 1;
99
103
  delivered_by_supplier: 0 | 1;
100
104
  against_blanket_order: 0 | 1;
101
105
  custom_order_item_id: string;
@@ -208,6 +212,7 @@ export declare const SalesOrderItem: z.ZodObject<{
208
212
  page_break?: unknown;
209
213
  supplier?: string | null | undefined;
210
214
  is_stock_item?: unknown;
215
+ custom_is_digital?: unknown;
211
216
  valuation_rate?: number | null | undefined;
212
217
  delivered_by_supplier?: unknown;
213
218
  planned_qty?: number | null | undefined;
@@ -285,6 +290,9 @@ export declare const SalesOrder: z.ZodObject<{
285
290
  custom_order_item_id: z.ZodString;
286
291
  custom_external_order_item_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
287
292
  item_code: z.ZodString;
293
+ custom_is_digital: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>, 0 | 1, unknown>> & {
294
+ __optionalForInput: true;
295
+ };
288
296
  customer_item_code: z.ZodNullable<z.ZodOptional<z.ZodString>>;
289
297
  ensure_delivery_based_on_produced_serial_no: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>, 0 | 1, unknown>> & {
290
298
  __optionalForInput: true;
@@ -378,6 +386,7 @@ export declare const SalesOrder: z.ZodObject<{
378
386
  grant_commission: 0 | 1;
379
387
  page_break: 0 | 1;
380
388
  is_stock_item: 0 | 1;
389
+ custom_is_digital: 0 | 1;
381
390
  delivered_by_supplier: 0 | 1;
382
391
  against_blanket_order: 0 | 1;
383
392
  custom_order_item_id: string;
@@ -490,6 +499,7 @@ export declare const SalesOrder: z.ZodObject<{
490
499
  page_break?: unknown;
491
500
  supplier?: string | null | undefined;
492
501
  is_stock_item?: unknown;
502
+ custom_is_digital?: unknown;
493
503
  valuation_rate?: number | null | undefined;
494
504
  delivered_by_supplier?: unknown;
495
505
  planned_qty?: number | null | undefined;
@@ -683,6 +693,7 @@ export declare const SalesOrder: z.ZodObject<{
683
693
  grant_commission: 0 | 1;
684
694
  page_break: 0 | 1;
685
695
  is_stock_item: 0 | 1;
696
+ custom_is_digital: 0 | 1;
686
697
  delivered_by_supplier: 0 | 1;
687
698
  against_blanket_order: 0 | 1;
688
699
  custom_order_item_id: string;
@@ -910,6 +921,7 @@ export declare const SalesOrder: z.ZodObject<{
910
921
  page_break?: unknown;
911
922
  supplier?: string | null | undefined;
912
923
  is_stock_item?: unknown;
924
+ custom_is_digital?: unknown;
913
925
  valuation_rate?: number | null | undefined;
914
926
  delivered_by_supplier?: unknown;
915
927
  planned_qty?: number | null | undefined;
@@ -12,6 +12,7 @@ exports.SalesOrderItem = zod_1.z
12
12
  custom_order_item_id: zod_1.z.string(),
13
13
  custom_external_order_item_id: zod_1.z.string().optional().nullable(),
14
14
  item_code: zod_1.z.string().min(1, "Item Code is required"),
15
+ custom_is_digital: Boolean_1.ERPNextBoolean,
15
16
  customer_item_code: zod_1.z.string().optional().nullable(),
16
17
  ensure_delivery_based_on_produced_serial_no: Boolean_1.ERPNextBoolean,
17
18
  item_name: zod_1.z.string().min(1, "Item Name is required"),
package/package.json CHANGED
@@ -30,7 +30,7 @@
30
30
  "winston": "^3.15.0",
31
31
  "zod": "3.25.76"
32
32
  },
33
- "version": "2.0.0-beta.1",
33
+ "version": "2.0.0-beta.2",
34
34
  "devDependencies": {
35
35
  "@types/crypto-js": "^4.2.2",
36
36
  "@types/lodash": "^4.17.13",