erpnext-queue-client 1.19.4 → 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.
@@ -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(),
@@ -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.4",
28
+ "version": "1.19.5",
29
29
  "devDependencies": {
30
30
  "@types/crypto-js": "^4.2.2",
31
31
  "@types/lodash": "^4.17.13",