erpnext-queue-client 1.28.0 → 1.29.1

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.
@@ -4,6 +4,7 @@ export declare const FulfillerShippingSettingsItem: z.ZodObject<{
4
4
  is_active: z.ZodEffects<z.ZodNumber, boolean, number>;
5
5
  parent: z.ZodString;
6
6
  fulfiller: z.ZodString;
7
+ country: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7
8
  is_ship_individually: z.ZodEffects<z.ZodNumber, boolean, number>;
8
9
  bundle_size: z.ZodNumber;
9
10
  shipping_provider: z.ZodString;
@@ -18,6 +19,7 @@ export declare const FulfillerShippingSettingsItem: z.ZodObject<{
18
19
  fulfiller: string;
19
20
  is_ship_individually: boolean;
20
21
  bundle_size: number;
22
+ country?: string | null | undefined;
21
23
  can_be_bundled_with?: string | null | undefined;
22
24
  bundle_type?: "Inside box" | "Outside box" | null | undefined;
23
25
  max_bundle_with_amount?: number | null | undefined;
@@ -29,6 +31,7 @@ export declare const FulfillerShippingSettingsItem: z.ZodObject<{
29
31
  fulfiller: string;
30
32
  is_ship_individually: number;
31
33
  bundle_size: number;
34
+ country?: string | null | undefined;
32
35
  can_be_bundled_with?: string | null | undefined;
33
36
  bundle_type?: "Inside box" | "Outside box" | null | undefined;
34
37
  max_bundle_with_amount?: number | null | undefined;
@@ -39,6 +42,7 @@ export declare const FulfillerShippingSettings: z.ZodArray<z.ZodObject<{
39
42
  is_active: z.ZodEffects<z.ZodNumber, boolean, number>;
40
43
  parent: z.ZodString;
41
44
  fulfiller: z.ZodString;
45
+ country: z.ZodNullable<z.ZodOptional<z.ZodString>>;
42
46
  is_ship_individually: z.ZodEffects<z.ZodNumber, boolean, number>;
43
47
  bundle_size: z.ZodNumber;
44
48
  shipping_provider: z.ZodString;
@@ -53,6 +57,7 @@ export declare const FulfillerShippingSettings: z.ZodArray<z.ZodObject<{
53
57
  fulfiller: string;
54
58
  is_ship_individually: boolean;
55
59
  bundle_size: number;
60
+ country?: string | null | undefined;
56
61
  can_be_bundled_with?: string | null | undefined;
57
62
  bundle_type?: "Inside box" | "Outside box" | null | undefined;
58
63
  max_bundle_with_amount?: number | null | undefined;
@@ -64,6 +69,7 @@ export declare const FulfillerShippingSettings: z.ZodArray<z.ZodObject<{
64
69
  fulfiller: string;
65
70
  is_ship_individually: number;
66
71
  bundle_size: number;
72
+ country?: string | null | undefined;
67
73
  can_be_bundled_with?: string | null | undefined;
68
74
  bundle_type?: "Inside box" | "Outside box" | null | undefined;
69
75
  max_bundle_with_amount?: number | null | undefined;
@@ -74,6 +80,7 @@ export declare const FulfillerShippingSettingsWithSkus: z.ZodArray<z.ZodObject<{
74
80
  is_active: z.ZodEffects<z.ZodNumber, boolean, number>;
75
81
  parent: z.ZodString;
76
82
  fulfiller: z.ZodString;
83
+ country: z.ZodNullable<z.ZodOptional<z.ZodString>>;
77
84
  is_ship_individually: z.ZodEffects<z.ZodNumber, boolean, number>;
78
85
  bundle_size: z.ZodNumber;
79
86
  shipping_provider: z.ZodString;
@@ -91,6 +98,7 @@ export declare const FulfillerShippingSettingsWithSkus: z.ZodArray<z.ZodObject<{
91
98
  is_ship_individually: boolean;
92
99
  bundle_size: number;
93
100
  skus: string[];
101
+ country?: string | null | undefined;
94
102
  can_be_bundled_with?: string | null | undefined;
95
103
  bundle_type?: "Inside box" | "Outside box" | null | undefined;
96
104
  max_bundle_with_amount?: number | null | undefined;
@@ -103,6 +111,7 @@ export declare const FulfillerShippingSettingsWithSkus: z.ZodArray<z.ZodObject<{
103
111
  is_ship_individually: number;
104
112
  bundle_size: number;
105
113
  skus: string[];
114
+ country?: string | null | undefined;
106
115
  can_be_bundled_with?: string | null | undefined;
107
116
  bundle_type?: "Inside box" | "Outside box" | null | undefined;
108
117
  max_bundle_with_amount?: number | null | undefined;
@@ -113,6 +122,7 @@ declare const FulfillerShippingSettingsMinimal: z.ZodArray<z.ZodObject<Pick<{
113
122
  is_active: z.ZodEffects<z.ZodNumber, boolean, number>;
114
123
  parent: z.ZodString;
115
124
  fulfiller: z.ZodString;
125
+ country: z.ZodNullable<z.ZodOptional<z.ZodString>>;
116
126
  is_ship_individually: z.ZodEffects<z.ZodNumber, boolean, number>;
117
127
  bundle_size: z.ZodNumber;
118
128
  shipping_provider: z.ZodString;
@@ -8,6 +8,7 @@ exports.FulfillerShippingSettingsItem = zod_1.z
8
8
  is_active: zod_1.z.number().transform(Boolean),
9
9
  parent: zod_1.z.string(),
10
10
  fulfiller: zod_1.z.string(),
11
+ country: zod_1.z.string().optional().nullable(),
11
12
  is_ship_individually: zod_1.z.number().transform(Boolean),
12
13
  bundle_size: zod_1.z.number().min(1),
13
14
  shipping_provider: zod_1.z.string(),
package/package.json CHANGED
@@ -23,9 +23,9 @@
23
23
  "pako": "^2.1.0",
24
24
  "randombytes": "^2.1.0",
25
25
  "winston": "^3.15.0",
26
- "zod": "^3.24.1"
26
+ "zod": "3.25.76"
27
27
  },
28
- "version": "1.28.0",
28
+ "version": "1.29.1",
29
29
  "devDependencies": {
30
30
  "@types/crypto-js": "^4.2.2",
31
31
  "@types/lodash": "^4.17.13",