erpnext-queue-client 2.5.19 → 2.5.20

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.
@@ -8,6 +8,7 @@ export declare class ERPNextConsolidatedCustomsInvoice extends ERPNextDoctypeSub
8
8
  /** Create a consolidated customs invoice from the given shipment names. */
9
9
  createFromShipments({ shipments, }: ConsolidatedCustomsInvoiceCreateMethodInputType): Promise<{
10
10
  name: string;
11
+ exchange_rate: number;
11
12
  importer_info: {
12
13
  address_line1: string;
13
14
  pincode: string;
@@ -350,6 +350,7 @@ export declare const ConsolidatedCustomsInvoiceCreateMethodInput: z.ZodObject<{
350
350
  export type ConsolidatedCustomsInvoiceCreateMethodInputType = z.infer<typeof ConsolidatedCustomsInvoiceCreateMethodInput>;
351
351
  export declare const ConsolidatedCustomsInvoiceCreateMethodResponseSchema: z.ZodObject<{
352
352
  name: z.ZodString;
353
+ exchange_rate: z.ZodNumber;
353
354
  importer_info: z.ZodObject<Pick<{
354
355
  import_reference: z.ZodNullable<z.ZodOptional<z.ZodString>>;
355
356
  address_title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -417,6 +418,7 @@ export declare const ConsolidatedCustomsInvoiceCreateMethodResponseSchema: z.Zod
417
418
  }>;
418
419
  }, "strip", z.ZodTypeAny, {
419
420
  name: string;
421
+ exchange_rate: number;
420
422
  importer_info: {
421
423
  address_line1: string;
422
424
  pincode: string;
@@ -431,6 +433,7 @@ export declare const ConsolidatedCustomsInvoiceCreateMethodResponseSchema: z.Zod
431
433
  };
432
434
  }, {
433
435
  name: string;
436
+ exchange_rate: number;
434
437
  importer_info: {
435
438
  address_line1: string;
436
439
  city: string;
@@ -91,6 +91,7 @@ exports.ConsolidatedCustomsInvoiceCreateMethodInput = zod_1.z
91
91
  exports.ConsolidatedCustomsInvoiceCreateMethodResponseSchema = zod_1.z
92
92
  .object({
93
93
  name: zod_1.z.string().min(1),
94
+ exchange_rate: zod_1.z.number(),
94
95
  importer_info: Address_1.Address.pick({
95
96
  address_title: true,
96
97
  address_line1: true,
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.5.19",
37
+ "version": "2.5.20",
38
38
  "devDependencies": {
39
39
  "@types/crypto-js": "^4.2.2",
40
40
  "@types/lodash": "^4.17.13",