erpnext-queue-client 2.5.16 → 2.5.19
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.
|
@@ -6,8 +6,7 @@ export declare const DeliveryNote: z.ZodObject<{
|
|
|
6
6
|
naming_series: z.ZodString & {
|
|
7
7
|
__optionalForInput: true;
|
|
8
8
|
};
|
|
9
|
-
|
|
10
|
-
custom_order_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9
|
+
custom_order_number: z.ZodString;
|
|
11
10
|
customer: z.ZodString;
|
|
12
11
|
customer_name: z.ZodString & {
|
|
13
12
|
__optionalForInput: true;
|
|
@@ -583,7 +582,7 @@ export declare const DeliveryNote: z.ZodObject<{
|
|
|
583
582
|
discount_amount: number;
|
|
584
583
|
pricing_rules: string[];
|
|
585
584
|
title: string;
|
|
586
|
-
|
|
585
|
+
custom_order_number: string;
|
|
587
586
|
customer_name: string;
|
|
588
587
|
is_return: number;
|
|
589
588
|
issue_credit_note: number;
|
|
@@ -627,7 +626,6 @@ export declare const DeliveryNote: z.ZodObject<{
|
|
|
627
626
|
tax_id?: string | null | undefined;
|
|
628
627
|
cost_center?: string | null | undefined;
|
|
629
628
|
project?: string | null | undefined;
|
|
630
|
-
custom_order_number?: string | null | undefined;
|
|
631
629
|
return_against?: string | null | undefined;
|
|
632
630
|
po_date?: string | null | undefined;
|
|
633
631
|
pick_list?: string | null | undefined;
|
|
@@ -754,7 +752,7 @@ export declare const DeliveryNote: z.ZodObject<{
|
|
|
754
752
|
discount_amount: number;
|
|
755
753
|
pricing_rules: string[];
|
|
756
754
|
title: string;
|
|
757
|
-
|
|
755
|
+
custom_order_number: string;
|
|
758
756
|
customer_name: string;
|
|
759
757
|
is_return: number;
|
|
760
758
|
issue_credit_note: number;
|
|
@@ -797,7 +795,6 @@ export declare const DeliveryNote: z.ZodObject<{
|
|
|
797
795
|
tax_id?: string | null | undefined;
|
|
798
796
|
cost_center?: string | null | undefined;
|
|
799
797
|
project?: string | null | undefined;
|
|
800
|
-
custom_order_number?: string | null | undefined;
|
|
801
798
|
return_against?: string | null | undefined;
|
|
802
799
|
po_date?: string | null | undefined;
|
|
803
800
|
pick_list?: string | null | undefined;
|
|
@@ -74,8 +74,7 @@ exports.DeliveryNote = zod_1.z
|
|
|
74
74
|
.object({
|
|
75
75
|
title: (0, zodContextOptionals_1.optionalForInput)(zod_1.z.string()),
|
|
76
76
|
naming_series: (0, zodContextOptionals_1.optionalForInput)(zod_1.z.string()),
|
|
77
|
-
|
|
78
|
-
custom_order_number: zod_1.z.string().optional().nullable(),
|
|
77
|
+
custom_order_number: zod_1.z.string(),
|
|
79
78
|
customer: zod_1.z.string(),
|
|
80
79
|
customer_name: (0, zodContextOptionals_1.optionalForInput)(zod_1.z.string()),
|
|
81
80
|
company: (0, zodContextOptionals_1.optionalForInput)(zod_1.z.string()),
|
|
@@ -44,7 +44,7 @@ export declare const ShippingLabelPostBody: z.ZodObject<Pick<{
|
|
|
44
44
|
document_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
45
45
|
document_url: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
46
46
|
order_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
47
|
-
}, "address" | "customer" | "
|
|
47
|
+
}, "address" | "customer" | "shipping_provider" | "order_number" | "label_id" | "tracking_code" | "label_type" | "contact" | "document_name" | "document_url">, "strip", z.ZodTypeAny, {
|
|
48
48
|
shipping_provider: string;
|
|
49
49
|
label_id: string;
|
|
50
50
|
address?: string | null | undefined;
|
package/package.json
CHANGED
|
@@ -17,6 +17,10 @@
|
|
|
17
17
|
"release": "npm run build && npm publish"
|
|
18
18
|
},
|
|
19
19
|
"author": "Jonathan Laukenmann",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/formbench/erpnext-queue.git"
|
|
23
|
+
},
|
|
20
24
|
"license": "ISC",
|
|
21
25
|
"dependencies": {
|
|
22
26
|
"@temporalio/client": "^1.11.3",
|
|
@@ -30,7 +34,7 @@
|
|
|
30
34
|
"winston": "^3.15.0",
|
|
31
35
|
"zod": "3.25.76"
|
|
32
36
|
},
|
|
33
|
-
"version": "2.5.
|
|
37
|
+
"version": "2.5.19",
|
|
34
38
|
"devDependencies": {
|
|
35
39
|
"@types/crypto-js": "^4.2.2",
|
|
36
40
|
"@types/lodash": "^4.17.13",
|