erpnext-queue-client 1.19.3 → 1.19.5

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.
@@ -102,12 +102,12 @@ export declare const LabelInfo: z.ZodObject<{
102
102
  trackingUrl: z.ZodOptional<z.ZodString>;
103
103
  qrLabel: z.ZodOptional<z.ZodString>;
104
104
  qrLink: z.ZodOptional<z.ZodString>;
105
- shippingProvider: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"GLS Germany">, z.ZodLiteral<"GLS ADE-plus">]>, z.ZodLiteral<"DHL">]>, z.ZodLiteral<"DHL-2-Mann">]>, z.ZodLiteral<"Deutsche Post">]>, z.ZodLiteral<"Billbee">]>, z.ZodLiteral<"Billbee Amazon MCF">]>;
105
+ shippingProvider: z.ZodString;
106
106
  shouldNotifyCustomer: z.ZodOptional<z.ZodBoolean>;
107
107
  }, "strip", z.ZodTypeAny, {
108
108
  labelData: string;
109
109
  labelId: string;
110
- shippingProvider: "DHL" | "Deutsche Post" | "GLS Germany" | "GLS ADE-plus" | "DHL-2-Mann" | "Billbee" | "Billbee Amazon MCF";
110
+ shippingProvider: string;
111
111
  trackingId?: string | undefined;
112
112
  trackingUrl?: string | undefined;
113
113
  qrLabel?: string | undefined;
@@ -116,7 +116,7 @@ export declare const LabelInfo: z.ZodObject<{
116
116
  }, {
117
117
  labelData: string;
118
118
  labelId: string;
119
- shippingProvider: "DHL" | "Deutsche Post" | "GLS Germany" | "GLS ADE-plus" | "DHL-2-Mann" | "Billbee" | "Billbee Amazon MCF";
119
+ shippingProvider: string;
120
120
  trackingId?: string | undefined;
121
121
  trackingUrl?: string | undefined;
122
122
  qrLabel?: string | undefined;
@@ -130,13 +130,13 @@ export declare const UploadedLabelInfo: z.ZodObject<{
130
130
  labelId: z.ZodString;
131
131
  trackingId: z.ZodOptional<z.ZodString>;
132
132
  trackingUrl: z.ZodOptional<z.ZodString>;
133
- shippingProvider: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodLiteral<"GLS Germany">, z.ZodLiteral<"GLS ADE-plus">]>, z.ZodLiteral<"DHL">]>, z.ZodLiteral<"DHL-2-Mann">]>, z.ZodLiteral<"Deutsche Post">]>, z.ZodLiteral<"Billbee">]>, z.ZodLiteral<"Billbee Amazon MCF">]>;
133
+ shippingProvider: z.ZodString;
134
134
  erpNextFileName: z.ZodString;
135
135
  s3FileKey: z.ZodNullable<z.ZodOptional<z.ZodString>>;
136
136
  shouldNotifyCustomer: z.ZodOptional<z.ZodBoolean>;
137
137
  }, "strip", z.ZodTypeAny, {
138
138
  labelId: string;
139
- shippingProvider: "DHL" | "Deutsche Post" | "GLS Germany" | "GLS ADE-plus" | "DHL-2-Mann" | "Billbee" | "Billbee Amazon MCF";
139
+ shippingProvider: string;
140
140
  fileName: string;
141
141
  fileUrl: string;
142
142
  erpNextFileName: string;
@@ -146,7 +146,7 @@ export declare const UploadedLabelInfo: z.ZodObject<{
146
146
  s3FileKey?: string | null | undefined;
147
147
  }, {
148
148
  labelId: string;
149
- shippingProvider: "DHL" | "Deutsche Post" | "GLS Germany" | "GLS ADE-plus" | "DHL-2-Mann" | "Billbee" | "Billbee Amazon MCF";
149
+ shippingProvider: string;
150
150
  fileName: string;
151
151
  fileUrl: string;
152
152
  erpNextFileName: string;
@@ -2,7 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.UploadedLabelInfo = exports.LabelInfo = exports.ShippingLabelPostBody = exports.ShippingLabel = void 0;
4
4
  const zod_1 = require("zod");
5
- const ShippingProvider_1 = require("./ShippingProvider");
6
5
  exports.ShippingLabel = zod_1.z
7
6
  .object({
8
7
  name: zod_1.z.string(),
@@ -47,7 +46,7 @@ exports.LabelInfo = zod_1.z
47
46
  trackingUrl: zod_1.z.string().url().optional(),
48
47
  qrLabel: zod_1.z.string().optional(),
49
48
  qrLink: zod_1.z.string().optional(),
50
- shippingProvider: ShippingProvider_1.LabelService,
49
+ shippingProvider: zod_1.z.string(),
51
50
  shouldNotifyCustomer: zod_1.z.boolean().optional(),
52
51
  })
53
52
  .describe("Label Info");
@@ -58,7 +57,7 @@ exports.UploadedLabelInfo = zod_1.z
58
57
  labelId: zod_1.z.string(),
59
58
  trackingId: zod_1.z.string().optional(),
60
59
  trackingUrl: zod_1.z.string().url().optional(),
61
- shippingProvider: ShippingProvider_1.LabelService,
60
+ shippingProvider: zod_1.z.string(),
62
61
  erpNextFileName: zod_1.z.string(),
63
62
  s3FileKey: zod_1.z.string().optional().nullable(),
64
63
  shouldNotifyCustomer: zod_1.z.boolean().optional(),
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.19.3",
28
+ "version": "1.19.5",
29
29
  "devDependencies": {
30
30
  "@types/crypto-js": "^4.2.2",
31
31
  "@types/lodash": "^4.17.13",