erpnext-queue-client 2.6.0 → 2.6.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.
@@ -74,6 +74,7 @@ export declare class ERPNextConsolidatedCustomsInvoice extends ERPNextDoctypeSub
74
74
  dn_detail?: string | null | undefined;
75
75
  customs_tariff_number?: string | null | undefined;
76
76
  country_of_origin?: string | null | undefined;
77
+ region_of_origin?: string | null | undefined;
77
78
  }[];
78
79
  amended_from?: string | null | undefined;
79
80
  _user_tags?: string | null | undefined;
@@ -31,6 +31,7 @@ export declare const ConsolidatedCustomsInvoiceItem: z.ZodObject<{
31
31
  dn_detail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32
32
  customs_tariff_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33
33
  country_of_origin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
34
+ region_of_origin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
34
35
  }, "strip", z.ZodTypeAny, {
35
36
  item_code: string;
36
37
  qty: number;
@@ -61,6 +62,7 @@ export declare const ConsolidatedCustomsInvoiceItem: z.ZodObject<{
61
62
  dn_detail?: string | null | undefined;
62
63
  customs_tariff_number?: string | null | undefined;
63
64
  country_of_origin?: string | null | undefined;
65
+ region_of_origin?: string | null | undefined;
64
66
  }, {
65
67
  item_code: string;
66
68
  qty: number;
@@ -91,6 +93,7 @@ export declare const ConsolidatedCustomsInvoiceItem: z.ZodObject<{
91
93
  dn_detail?: string | null | undefined;
92
94
  customs_tariff_number?: string | null | undefined;
93
95
  country_of_origin?: string | null | undefined;
96
+ region_of_origin?: string | null | undefined;
94
97
  }>;
95
98
  export type ConsolidatedCustomsInvoiceItemType = z.infer<typeof ConsolidatedCustomsInvoiceItem>;
96
99
  export declare const ConsolidatedCustomsInvoiceExportApprovalStatus: z.ZodEnum<["", "Waiting for Approval", "Approved", "Declined"]>;
@@ -172,6 +175,7 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
172
175
  dn_detail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
173
176
  customs_tariff_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
174
177
  country_of_origin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
178
+ region_of_origin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
175
179
  }, "strip", z.ZodTypeAny, {
176
180
  item_code: string;
177
181
  qty: number;
@@ -202,6 +206,7 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
202
206
  dn_detail?: string | null | undefined;
203
207
  customs_tariff_number?: string | null | undefined;
204
208
  country_of_origin?: string | null | undefined;
209
+ region_of_origin?: string | null | undefined;
205
210
  }, {
206
211
  item_code: string;
207
212
  qty: number;
@@ -232,6 +237,7 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
232
237
  dn_detail?: string | null | undefined;
233
238
  customs_tariff_number?: string | null | undefined;
234
239
  country_of_origin?: string | null | undefined;
240
+ region_of_origin?: string | null | undefined;
235
241
  }>, "many">;
236
242
  }, "strip", z.ZodTypeAny, {
237
243
  posting_date: string;
@@ -280,6 +286,7 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
280
286
  dn_detail?: string | null | undefined;
281
287
  customs_tariff_number?: string | null | undefined;
282
288
  country_of_origin?: string | null | undefined;
289
+ region_of_origin?: string | null | undefined;
283
290
  }[];
284
291
  amended_from?: string | null | undefined;
285
292
  company?: string | null | undefined;
@@ -342,6 +349,7 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
342
349
  dn_detail?: string | null | undefined;
343
350
  customs_tariff_number?: string | null | undefined;
344
351
  country_of_origin?: string | null | undefined;
352
+ region_of_origin?: string | null | undefined;
345
353
  }[];
346
354
  amended_from?: string | null | undefined;
347
355
  company?: string | null | undefined;
@@ -445,6 +453,7 @@ export declare const ConsolidatedCustomsInvoiceCreateMethodResponseSchema: z.Zod
445
453
  dn_detail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
446
454
  customs_tariff_number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
447
455
  country_of_origin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
456
+ region_of_origin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
448
457
  }, "strip", z.ZodTypeAny, {
449
458
  item_code: string;
450
459
  qty: number;
@@ -475,6 +484,7 @@ export declare const ConsolidatedCustomsInvoiceCreateMethodResponseSchema: z.Zod
475
484
  dn_detail?: string | null | undefined;
476
485
  customs_tariff_number?: string | null | undefined;
477
486
  country_of_origin?: string | null | undefined;
487
+ region_of_origin?: string | null | undefined;
478
488
  }, {
479
489
  item_code: string;
480
490
  qty: number;
@@ -505,6 +515,7 @@ export declare const ConsolidatedCustomsInvoiceCreateMethodResponseSchema: z.Zod
505
515
  dn_detail?: string | null | undefined;
506
516
  customs_tariff_number?: string | null | undefined;
507
517
  country_of_origin?: string | null | undefined;
518
+ region_of_origin?: string | null | undefined;
508
519
  }>, "many">;
509
520
  }, z.UnknownKeysParam, z.ZodTypeAny, {
510
521
  posting_date: string;
@@ -553,6 +564,7 @@ export declare const ConsolidatedCustomsInvoiceCreateMethodResponseSchema: z.Zod
553
564
  dn_detail?: string | null | undefined;
554
565
  customs_tariff_number?: string | null | undefined;
555
566
  country_of_origin?: string | null | undefined;
567
+ region_of_origin?: string | null | undefined;
556
568
  }[];
557
569
  amended_from?: string | null | undefined;
558
570
  company?: string | null | undefined;
@@ -615,6 +627,7 @@ export declare const ConsolidatedCustomsInvoiceCreateMethodResponseSchema: z.Zod
615
627
  dn_detail?: string | null | undefined;
616
628
  customs_tariff_number?: string | null | undefined;
617
629
  country_of_origin?: string | null | undefined;
630
+ region_of_origin?: string | null | undefined;
618
631
  }[];
619
632
  amended_from?: string | null | undefined;
620
633
  company?: string | null | undefined;
@@ -764,6 +777,7 @@ export declare const ConsolidatedCustomsInvoiceCreateMethodResponseSchema: z.Zod
764
777
  dn_detail?: string | null | undefined;
765
778
  customs_tariff_number?: string | null | undefined;
766
779
  country_of_origin?: string | null | undefined;
780
+ region_of_origin?: string | null | undefined;
767
781
  }[];
768
782
  amended_from?: string | null | undefined;
769
783
  _user_tags?: string | null | undefined;
@@ -860,6 +874,7 @@ export declare const ConsolidatedCustomsInvoiceCreateMethodResponseSchema: z.Zod
860
874
  dn_detail?: string | null | undefined;
861
875
  customs_tariff_number?: string | null | undefined;
862
876
  country_of_origin?: string | null | undefined;
877
+ region_of_origin?: string | null | undefined;
863
878
  }[];
864
879
  docstatus?: number | undefined;
865
880
  amended_from?: string | null | undefined;
@@ -44,6 +44,7 @@ exports.ConsolidatedCustomsInvoiceItem = zod_1.z
44
44
  // Customs
45
45
  customs_tariff_number: zod_1.z.string().nullish(),
46
46
  country_of_origin: zod_1.z.string().nullish(),
47
+ region_of_origin: zod_1.z.string().nullish(),
47
48
  })
48
49
  .describe("Consolidated Customs Invoice Item");
49
50
  exports.ConsolidatedCustomsInvoiceExportApprovalStatus = zod_1.z.enum([
package/package.json CHANGED
@@ -34,7 +34,7 @@
34
34
  "winston": "^3.15.0",
35
35
  "zod": "3.25.76"
36
36
  },
37
- "version": "2.6.0",
37
+ "version": "2.6.1",
38
38
  "devDependencies": {
39
39
  "@types/crypto-js": "^4.2.2",
40
40
  "@types/lodash": "^4.17.13",