erpnext-queue-client 1.9.1 → 1.9.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.
@@ -15,7 +15,7 @@ export declare const Supplier: z.ZodObject<{
15
15
  country: z.ZodString;
16
16
  is_transporter: z.ZodNumber;
17
17
  is_internal_supplier: z.ZodNumber;
18
- supplier_group: z.ZodString;
18
+ supplier_group: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19
19
  allow_purchase_invoice_creation_without_purchase_order: z.ZodNumber;
20
20
  allow_purchase_invoice_creation_without_purchase_receipt: z.ZodNumber;
21
21
  disabled: z.ZodNumber;
@@ -91,7 +91,6 @@ export declare const Supplier: z.ZodObject<{
91
91
  supplier_name: string;
92
92
  is_transporter: number;
93
93
  is_internal_supplier: number;
94
- supplier_group: string;
95
94
  allow_purchase_invoice_creation_without_purchase_order: number;
96
95
  allow_purchase_invoice_creation_without_purchase_receipt: number;
97
96
  warn_rfqs: number;
@@ -120,6 +119,7 @@ export declare const Supplier: z.ZodObject<{
120
119
  }[];
121
120
  import_reference?: string | null | undefined;
122
121
  supplier_contact?: string | null | undefined;
122
+ supplier_group?: string | null | undefined;
123
123
  default_currency?: string | null | undefined;
124
124
  default_price_list?: string | null | undefined;
125
125
  supplier_number_code?: string | undefined;
@@ -139,7 +139,6 @@ export declare const Supplier: z.ZodObject<{
139
139
  supplier_name: string;
140
140
  is_transporter: number;
141
141
  is_internal_supplier: number;
142
- supplier_group: string;
143
142
  allow_purchase_invoice_creation_without_purchase_order: number;
144
143
  allow_purchase_invoice_creation_without_purchase_receipt: number;
145
144
  warn_rfqs: number;
@@ -168,6 +167,7 @@ export declare const Supplier: z.ZodObject<{
168
167
  }[];
169
168
  import_reference?: string | null | undefined;
170
169
  supplier_contact?: string | null | undefined;
170
+ supplier_group?: string | null | undefined;
171
171
  default_currency?: string | null | undefined;
172
172
  default_price_list?: string | null | undefined;
173
173
  supplier_number_code?: string | undefined;
@@ -20,7 +20,7 @@ exports.Supplier = zod_1.z
20
20
  country: zod_1.z.string(),
21
21
  is_transporter: zod_1.z.number(),
22
22
  is_internal_supplier: zod_1.z.number(),
23
- supplier_group: zod_1.z.string(),
23
+ supplier_group: zod_1.z.string().optional().nullable(),
24
24
  allow_purchase_invoice_creation_without_purchase_order: zod_1.z.number(),
25
25
  allow_purchase_invoice_creation_without_purchase_receipt: zod_1.z.number(),
26
26
  disabled: zod_1.z.number(),
package/package.json CHANGED
@@ -25,7 +25,7 @@
25
25
  "winston": "^3.15.0",
26
26
  "zod": "3.24.1"
27
27
  },
28
- "version": "1.9.1",
28
+ "version": "1.9.2",
29
29
  "devDependencies": {
30
30
  "@types/crypto-js": "^4.2.2",
31
31
  "@types/lodash": "^4.17.13",