erpnext-queue-client 2.2.0 → 2.2.2

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,13 +102,6 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
102
102
  base_net_total: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
103
103
  total: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
104
104
  net_total: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
105
- customer_address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
106
- address_display: z.ZodNullable<z.ZodOptional<z.ZodString>>;
107
- contact_person: z.ZodNullable<z.ZodOptional<z.ZodString>>;
108
- contact_phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
109
- contact_email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
110
- shipping_address_name: z.ZodString;
111
- shipping_address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
112
105
  dispatch_address_name: z.ZodString;
113
106
  dispatch_address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
114
107
  importer_address: z.ZodString;
@@ -206,7 +199,6 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
206
199
  }, "strip", z.ZodTypeAny, {
207
200
  posting_date: string;
208
201
  set_posting_time: boolean;
209
- shipping_address_name: string;
210
202
  dispatch_address_name: string;
211
203
  currency: string;
212
204
  conversion_rate: number;
@@ -246,12 +238,7 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
246
238
  company?: string | null | undefined;
247
239
  naming_series?: string | null | undefined;
248
240
  posting_time?: string | null | undefined;
249
- shipping_address?: string | null | undefined;
250
241
  dispatch_address?: string | null | undefined;
251
- contact_person?: string | null | undefined;
252
- contact_email?: string | null | undefined;
253
- customer_address?: string | null | undefined;
254
- address_display?: string | null | undefined;
255
242
  total_qty?: number | null | undefined;
256
243
  base_total?: number | null | undefined;
257
244
  base_net_total?: number | null | undefined;
@@ -261,7 +248,6 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
261
248
  company_tax_id?: string | null | undefined;
262
249
  export_approval_status?: "" | "Waiting for Approval" | "Approved" | "Declined" | null | undefined;
263
250
  mrn?: string | null | undefined;
264
- contact_phone?: string | null | undefined;
265
251
  importer_address_display?: string | null | undefined;
266
252
  importer_contact_phone?: string | null | undefined;
267
253
  importer_contact_email?: string | null | undefined;
@@ -271,7 +257,6 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
271
257
  }, {
272
258
  posting_date: string;
273
259
  set_posting_time: number;
274
- shipping_address_name: string;
275
260
  dispatch_address_name: string;
276
261
  currency: string;
277
262
  conversion_rate: number;
@@ -311,12 +296,7 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
311
296
  company?: string | null | undefined;
312
297
  naming_series?: string | null | undefined;
313
298
  posting_time?: string | null | undefined;
314
- shipping_address?: string | null | undefined;
315
299
  dispatch_address?: string | null | undefined;
316
- contact_person?: string | null | undefined;
317
- contact_email?: string | null | undefined;
318
- customer_address?: string | null | undefined;
319
- address_display?: string | null | undefined;
320
300
  total_qty?: number | null | undefined;
321
301
  base_total?: number | null | undefined;
322
302
  base_net_total?: number | null | undefined;
@@ -326,7 +306,6 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
326
306
  company_tax_id?: string | null | undefined;
327
307
  export_approval_status?: "" | "Waiting for Approval" | "Approved" | "Declined" | null | undefined;
328
308
  mrn?: string | null | undefined;
329
- contact_phone?: string | null | undefined;
330
309
  importer_address_display?: string | null | undefined;
331
310
  importer_contact_phone?: string | null | undefined;
332
311
  importer_contact_email?: string | null | undefined;
@@ -34,9 +34,9 @@ exports.ConsolidatedCustomsInvoiceItem = zod_1.z
34
34
  shipment: zod_1.z.string(),
35
35
  delivery_note: zod_1.z.string(),
36
36
  dn_detail: zod_1.z.string().optional().nullable(),
37
- // Customs
37
+ // Customs
38
38
  customs_tariff_number: zod_1.z.string().optional().nullable(),
39
- country_of_origin: zod_1.z.string().optional().nullable()
39
+ country_of_origin: zod_1.z.string().optional().nullable(),
40
40
  })
41
41
  .describe("Consolidated Customs Invoice Item");
42
42
  exports.ConsolidatedCustomsInvoiceExportApprovalStatus = zod_1.z
@@ -62,13 +62,6 @@ exports.ConsolidatedCustomsInvoice = zod_1.z
62
62
  base_net_total: zod_1.z.number().optional().nullable(),
63
63
  total: zod_1.z.number().optional().nullable(),
64
64
  net_total: zod_1.z.number().optional().nullable(),
65
- customer_address: zod_1.z.string().optional().nullable(),
66
- address_display: zod_1.z.string().optional().nullable(),
67
- contact_person: zod_1.z.string().optional().nullable(),
68
- contact_phone: zod_1.z.string().optional().nullable(),
69
- contact_email: zod_1.z.string().optional().nullable(),
70
- shipping_address_name: zod_1.z.string(),
71
- shipping_address: zod_1.z.string().optional().nullable(),
72
65
  dispatch_address_name: zod_1.z.string(),
73
66
  dispatch_address: zod_1.z.string().optional().nullable(),
74
67
  importer_address: zod_1.z.string(),
@@ -861,13 +861,13 @@ export declare const SalesOrder: z.ZodObject<{
861
861
  loyalty_amount?: number | null | undefined;
862
862
  from_date?: string | null | undefined;
863
863
  to_date?: string | null | undefined;
864
- contact_phone?: string | null | undefined;
865
864
  advance_paid?: number | null | undefined;
866
865
  inter_company_order_reference?: string | null | undefined;
867
866
  delivery_date?: string | null | undefined;
868
867
  custom_comments?: string | null | undefined;
869
868
  custom_external_id?: string | null | undefined;
870
869
  custom_billbee_order_id?: string | null | undefined;
870
+ contact_phone?: string | null | undefined;
871
871
  custom_imported_history?: string | null | undefined;
872
872
  custom_imported_shipping_information?: string | null | undefined;
873
873
  delivery_status?: "Closed" | "Not Delivered" | "Fully Delivered" | "Partly Delivered" | "Not Applicable" | undefined;
@@ -1057,7 +1057,6 @@ export declare const SalesOrder: z.ZodObject<{
1057
1057
  loyalty_amount?: number | null | undefined;
1058
1058
  from_date?: string | null | undefined;
1059
1059
  to_date?: string | null | undefined;
1060
- contact_phone?: string | null | undefined;
1061
1060
  advance_paid?: number | null | undefined;
1062
1061
  inter_company_order_reference?: string | null | undefined;
1063
1062
  delivery_date?: string | null | undefined;
@@ -1067,6 +1066,7 @@ export declare const SalesOrder: z.ZodObject<{
1067
1066
  custom_external_id?: string | null | undefined;
1068
1067
  custom_billbee_order_id?: string | null | undefined;
1069
1068
  skip_delivery_note?: unknown;
1069
+ contact_phone?: string | null | undefined;
1070
1070
  custom_imported_history?: string | null | undefined;
1071
1071
  custom_imported_shipping_information?: string | null | undefined;
1072
1072
  delivery_status?: "Closed" | "Not Delivered" | "Fully Delivered" | "Partly Delivered" | "Not Applicable" | undefined;
package/package.json CHANGED
@@ -30,7 +30,7 @@
30
30
  "winston": "^3.15.0",
31
31
  "zod": "3.25.76"
32
32
  },
33
- "version": "2.2.0",
33
+ "version": "2.2.2",
34
34
  "devDependencies": {
35
35
  "@types/crypto-js": "^4.2.2",
36
36
  "@types/lodash": "^4.17.13",