erpnext-queue-client 1.35.1 → 1.35.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.
@@ -195,19 +195,19 @@ export declare const DispatchRunPostFilteredResponse: z.ZodObject<{
195
195
  export declare const DispatchRunMatchesByOrderNumber: z.ZodArray<z.ZodObject<{
196
196
  name: z.ZodString;
197
197
  picking_strategy: z.ZodString;
198
- order_number: z.ZodString;
198
+ custom_order_number: z.ZodString;
199
199
  customer_name: z.ZodString;
200
200
  status: z.ZodEnum<["Processing", "Completed", "Failed"]>;
201
201
  }, "strip", z.ZodTypeAny, {
202
202
  status: "Processing" | "Failed" | "Completed";
203
203
  name: string;
204
- order_number: string;
204
+ custom_order_number: string;
205
205
  customer_name: string;
206
206
  picking_strategy: string;
207
207
  }, {
208
208
  status: "Processing" | "Failed" | "Completed";
209
209
  name: string;
210
- order_number: string;
210
+ custom_order_number: string;
211
211
  customer_name: string;
212
212
  picking_strategy: string;
213
213
  }>, "many">;
@@ -82,7 +82,7 @@ exports.DispatchRunMatchesByOrderNumber = zod_1.z
82
82
  .array(zod_1.z.object({
83
83
  name: zod_1.z.string(),
84
84
  picking_strategy: zod_1.z.string(),
85
- order_number: zod_1.z.string(),
85
+ custom_order_number: zod_1.z.string(),
86
86
  customer_name: zod_1.z.string(),
87
87
  status: zod_1.z.enum(["Processing", "Completed", "Failed"]),
88
88
  }))
package/package.json CHANGED
@@ -25,7 +25,7 @@
25
25
  "winston": "^3.15.0",
26
26
  "zod": "3.25.76"
27
27
  },
28
- "version": "1.35.1",
28
+ "version": "1.35.2",
29
29
  "devDependencies": {
30
30
  "@types/crypto-js": "^4.2.2",
31
31
  "@types/lodash": "^4.17.13",