erpnext-queue-client 2.5.15 → 2.5.16
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.
|
@@ -101,6 +101,7 @@ export declare class ERPNextShipment extends ERPNextDoctypeSubmittableResourceRe
|
|
|
101
101
|
parenttype: string;
|
|
102
102
|
parentfield: string;
|
|
103
103
|
delivery_note: string;
|
|
104
|
+
custom_order_number: string;
|
|
104
105
|
grand_total: number;
|
|
105
106
|
_user_tags?: string | null | undefined;
|
|
106
107
|
__unsaved?: number | null | undefined;
|
|
@@ -189,16 +189,21 @@ export declare const Shipment: z.ZodObject<{
|
|
|
189
189
|
shipment_amount: z.ZodNumber;
|
|
190
190
|
shipment_delivery_note: z.ZodArray<z.ZodObject<{
|
|
191
191
|
delivery_note: z.ZodString;
|
|
192
|
+
custom_order_number: z.ZodString & {
|
|
193
|
+
__optionalForInput: true;
|
|
194
|
+
};
|
|
192
195
|
grand_total: z.ZodNumber & {
|
|
193
196
|
__optionalForInput: true;
|
|
194
197
|
};
|
|
195
198
|
__unsaved: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
196
199
|
}, "strip", z.ZodTypeAny, {
|
|
197
200
|
delivery_note: string;
|
|
201
|
+
custom_order_number: string;
|
|
198
202
|
grand_total: number;
|
|
199
203
|
__unsaved?: number | null | undefined;
|
|
200
204
|
}, {
|
|
201
205
|
delivery_note: string;
|
|
206
|
+
custom_order_number: string;
|
|
202
207
|
grand_total: number;
|
|
203
208
|
__unsaved?: number | null | undefined;
|
|
204
209
|
}>, "many">;
|
|
@@ -256,6 +261,7 @@ export declare const Shipment: z.ZodObject<{
|
|
|
256
261
|
shipment_amount: number;
|
|
257
262
|
shipment_delivery_note: {
|
|
258
263
|
delivery_note: string;
|
|
264
|
+
custom_order_number: string;
|
|
259
265
|
grand_total: number;
|
|
260
266
|
__unsaved?: number | null | undefined;
|
|
261
267
|
}[];
|
|
@@ -317,6 +323,7 @@ export declare const Shipment: z.ZodObject<{
|
|
|
317
323
|
shipment_amount: number;
|
|
318
324
|
shipment_delivery_note: {
|
|
319
325
|
delivery_note: string;
|
|
326
|
+
custom_order_number: string;
|
|
320
327
|
grand_total: number;
|
|
321
328
|
__unsaved?: number | null | undefined;
|
|
322
329
|
}[];
|
|
@@ -396,6 +403,9 @@ export declare const ShipmentAddShippingLabelAndSubmitBody: z.ZodObject<Pick<{
|
|
|
396
403
|
shipment_amount: z.ZodNumber;
|
|
397
404
|
shipment_delivery_note: z.ZodArray<z.ZodObject<{
|
|
398
405
|
delivery_note: z.ZodString;
|
|
406
|
+
custom_order_number: z.ZodString & {
|
|
407
|
+
__optionalForInput: true;
|
|
408
|
+
};
|
|
399
409
|
grand_total: z.ZodNumber & {
|
|
400
410
|
__optionalForInput: true;
|
|
401
411
|
};
|
|
@@ -429,6 +439,7 @@ export declare const ShipmentAddShippingLabelAndSubmitBody: z.ZodObject<Pick<{
|
|
|
429
439
|
parenttype: string;
|
|
430
440
|
parentfield: string;
|
|
431
441
|
delivery_note: string;
|
|
442
|
+
custom_order_number: string;
|
|
432
443
|
grand_total: number;
|
|
433
444
|
_user_tags?: string | null | undefined;
|
|
434
445
|
__unsaved?: number | null | undefined;
|
|
@@ -444,6 +455,7 @@ export declare const ShipmentAddShippingLabelAndSubmitBody: z.ZodObject<Pick<{
|
|
|
444
455
|
parenttype: string;
|
|
445
456
|
parentfield: string;
|
|
446
457
|
delivery_note: string;
|
|
458
|
+
custom_order_number: string;
|
|
447
459
|
grand_total: number;
|
|
448
460
|
docstatus?: number | undefined;
|
|
449
461
|
_user_tags?: string | null | undefined;
|
|
@@ -66,6 +66,7 @@ exports.ShipmentExportStatus = zod_1.z
|
|
|
66
66
|
const ShipmentDeliveryNote = zod_1.z
|
|
67
67
|
.object({
|
|
68
68
|
delivery_note: zod_1.z.string(),
|
|
69
|
+
custom_order_number: (0, zodContextOptionals_1.optionalForInput)(zod_1.z.string()),
|
|
69
70
|
grand_total: (0, zodContextOptionals_1.optionalForInput)(zod_1.z.number()),
|
|
70
71
|
__unsaved: zod_1.z.number().optional().nullable(),
|
|
71
72
|
})
|