erpnext-queue-client 1.34.10 → 1.34.11

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.
@@ -1,5 +1,5 @@
1
1
  import { z } from "zod";
2
- declare const ConsolidatedCustomsInvoiceItem: z.ZodObject<{
2
+ export declare const ConsolidatedCustomsInvoiceItem: z.ZodObject<{
3
3
  name: z.ZodString;
4
4
  owner: z.ZodString;
5
5
  creation: z.ZodString;
@@ -431,4 +431,3 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
431
431
  exporter_contact_email?: string | null | undefined;
432
432
  }>;
433
433
  export type ConsolidatedCustomsInvoiceType = z.infer<typeof ConsolidatedCustomsInvoice>;
434
- export {};
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ConsolidatedCustomsInvoice = exports.ConsolidatedCustomsInvoiceExportApprovalStatus = void 0;
3
+ exports.ConsolidatedCustomsInvoice = exports.ConsolidatedCustomsInvoiceExportApprovalStatus = exports.ConsolidatedCustomsInvoiceItem = void 0;
4
4
  const zod_1 = require("zod");
5
5
  // Child table: Consolidated Customs Invoice Item
6
- const ConsolidatedCustomsInvoiceItem = zod_1.z
6
+ exports.ConsolidatedCustomsInvoiceItem = zod_1.z
7
7
  .object({
8
8
  name: zod_1.z.string(),
9
9
  owner: zod_1.z.string(),
@@ -97,6 +97,6 @@ exports.ConsolidatedCustomsInvoice = zod_1.z
97
97
  exporter_contact_phone: zod_1.z.string().optional().nullable(),
98
98
  exporter_contact_email: zod_1.z.string().optional().nullable(),
99
99
  doctype: zod_1.z.string(),
100
- items: zod_1.z.array(ConsolidatedCustomsInvoiceItem),
100
+ items: zod_1.z.array(exports.ConsolidatedCustomsInvoiceItem),
101
101
  })
102
102
  .describe("Consolidated Customs Invoice");
package/package.json CHANGED
@@ -25,7 +25,7 @@
25
25
  "winston": "^3.15.0",
26
26
  "zod": "3.25.76"
27
27
  },
28
- "version": "1.34.10",
28
+ "version": "1.34.11",
29
29
  "devDependencies": {
30
30
  "@types/crypto-js": "^4.2.2",
31
31
  "@types/lodash": "^4.17.13",