erpnext-queue-client 2.3.2 → 2.4.0
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.
- package/dist/erpnext/doctypeResourceRequest.d.ts +1 -1
- package/dist/erpnext/doctypeSubmittableResourceRequest.d.ts +6 -159
- package/dist/erpnext/doctypeSubmittableResourceRequest.js +2 -2
- package/dist/erpnext/doctypes/address.d.ts +76 -3
- package/dist/erpnext/doctypes/consolidatedCustomsInvoice.d.ts +65 -55
- package/dist/erpnext/doctypes/contact.d.ts +220 -3
- package/dist/erpnext/doctypes/deliveryNote.d.ts +207 -202
- package/dist/erpnext/doctypes/item.d.ts +19 -2
- package/dist/erpnext/doctypes/paymentEntry.d.ts +116 -6
- package/dist/erpnext/doctypes/productBundle.d.ts +5 -2
- package/dist/erpnext/doctypes/purchaseInvoice.d.ts +141 -5
- package/dist/erpnext/doctypes/purchaseReceipt.d.ts +11 -5
- package/dist/erpnext/doctypes/salesInvoice.d.ts +400 -6
- package/dist/erpnext/doctypes/servicecase.d.ts +38 -2
- package/dist/erpnext/doctypes/shipment.d.ts +100 -93
- package/dist/erpnext/doctypes/shipment.js +2 -1
- package/dist/erpnext/erpnextRequestWrapper.d.ts +4 -2
- package/dist/erpnext/erpnextRequestWrapper.js +1 -1
- package/dist/erpnext/fileRequests.d.ts +2 -2
- package/dist/erpnext/fileRequests.js +2 -1
- package/dist/erpnext/model/ConsolidatedCustomsInvoice.d.ts +61 -23
- package/dist/erpnext/model/ConsolidatedCustomsInvoice.js +20 -11
- package/dist/erpnext/model/Contact.d.ts +29 -0
- package/dist/erpnext/model/Contact.js +5 -5
- package/dist/erpnext/model/DeliveryNote.d.ts +300 -100
- package/dist/erpnext/model/DeliveryNote.js +101 -100
- package/dist/erpnext/model/DispatchRun.d.ts +3 -0
- package/dist/erpnext/model/DispatchRun.js +1 -0
- package/dist/erpnext/model/DocTypeHelpers.d.ts +12 -25
- package/dist/erpnext/model/DocTypeHelpers.js +44 -23
- package/dist/erpnext/model/ERPNextDocTypeMeta.d.ts +4 -1
- package/dist/erpnext/model/ERPNextDocTypeMeta.js +3 -2
- package/dist/erpnext/model/File.d.ts +50 -0
- package/dist/erpnext/model/File.js +3 -1
- package/dist/erpnext/model/FulfillerSettings.d.ts +52 -24
- package/dist/erpnext/model/FulfillerSettings.js +19 -7
- package/dist/erpnext/model/Item.d.ts +43 -0
- package/dist/erpnext/model/Item.js +2 -1
- package/dist/erpnext/model/PaymentEntry.d.ts +3 -0
- package/dist/erpnext/model/PurchaseInvoice.d.ts +75 -1
- package/dist/erpnext/model/PurchaseOrder.d.ts +52 -63
- package/dist/erpnext/model/PurchaseOrder.js +20 -38
- package/dist/erpnext/model/SalesInvoice.d.ts +197 -4
- package/dist/erpnext/model/Servicecase.d.ts +8 -0
- package/dist/erpnext/model/Shipment.d.ts +119 -162
- package/dist/erpnext/model/Shipment.js +17 -47
- package/dist/erpnext/model/ShippingProvider.d.ts +55 -65
- package/dist/erpnext/model/ShippingProvider.js +6 -10
- package/dist/erpnext/resourceRequest.d.ts +2 -2
- package/dist/utils/zodContextOptionals.d.ts +2 -0
- package/dist/utils/zodContextOptionals.js +8 -4
- package/dist/utils/zodUtils.js +3 -2
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
6
6
|
protected temporalClient: TemporalClient;
|
|
7
7
|
protected baseRequest: ERPNextDoctypeSubmittableResourceRequest<typeof ConsolidatedCustomsInvoice>;
|
|
8
8
|
protected methodRequest: ERPNextMethodRequest;
|
|
9
|
-
getList: <TFieldOptions extends ("docstatus" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "posting_date" | "set_posting_time" | "
|
|
9
|
+
getList: <TFieldOptions extends ("docstatus" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "posting_date" | "set_posting_time" | "export_approval_status" | "currency" | "conversion_rate" | "total_qty" | "total_net_weight" | "base_total" | "base_net_total" | "total" | "net_total" | "dispatch_address_name" | "importer_address" | "importer_contact" | "exporter_address" | "exporter_contact") | ("amended_from" | "_user_tags" | "company" | "naming_series" | "posting_time" | "company_tax_id" | "mrn" | "dispatch_address" | "importer_address_display" | "importer_contact_phone" | "importer_contact_email" | "exporter_address_display" | "exporter_contact_phone" | "exporter_contact_email"), TSelectedFields extends readonly ["*"] | readonly TFieldOptions[] | undefined = undefined, TAsDict extends boolean | undefined = undefined>({ fields, filters, skip, limit, priority, asDict, params, }?: {
|
|
10
10
|
fields?: TSelectedFields;
|
|
11
11
|
filters?: (string | string[])[][];
|
|
12
12
|
skip?: number;
|
|
@@ -26,8 +26,15 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
26
26
|
idx: number;
|
|
27
27
|
posting_date: string;
|
|
28
28
|
set_posting_time: boolean;
|
|
29
|
+
export_approval_status: "" | "Waiting for Approval" | "Approved" | "Declined";
|
|
29
30
|
currency: string;
|
|
30
31
|
conversion_rate: number;
|
|
32
|
+
total_qty: number;
|
|
33
|
+
total_net_weight: number;
|
|
34
|
+
base_total: number;
|
|
35
|
+
base_net_total: number;
|
|
36
|
+
total: number;
|
|
37
|
+
net_total: number;
|
|
31
38
|
dispatch_address_name: string;
|
|
32
39
|
importer_address: string;
|
|
33
40
|
importer_contact: string;
|
|
@@ -39,14 +46,7 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
39
46
|
naming_series?: string | null | undefined;
|
|
40
47
|
posting_time?: string | null | undefined;
|
|
41
48
|
company_tax_id?: string | null | undefined;
|
|
42
|
-
export_approval_status?: "" | "Waiting for Approval" | "Approved" | "Declined" | null | undefined;
|
|
43
49
|
mrn?: string | null | undefined;
|
|
44
|
-
total_qty?: number | null | undefined;
|
|
45
|
-
total_net_weight?: number | null | undefined;
|
|
46
|
-
base_total?: number | null | undefined;
|
|
47
|
-
base_net_total?: number | null | undefined;
|
|
48
|
-
total?: number | null | undefined;
|
|
49
|
-
net_total?: number | null | undefined;
|
|
50
50
|
dispatch_address?: string | null | undefined;
|
|
51
51
|
importer_address_display?: string | null | undefined;
|
|
52
52
|
importer_contact_phone?: string | null | undefined;
|
|
@@ -54,7 +54,7 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
54
54
|
exporter_address_display?: string | null | undefined;
|
|
55
55
|
exporter_contact_phone?: string | null | undefined;
|
|
56
56
|
exporter_contact_email?: string | null | undefined;
|
|
57
|
-
}[] : TSelectedFields extends TFieldOptions[] ? { [K_1 in TSelectedFields[number] as K_1 extends `${infer _Before} as ${infer Alias}` ? Alias : K_1]: (K_1 extends `${infer _Before} as ${infer Alias}` ? Alias : K_1) extends ("docstatus" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "posting_date" | "set_posting_time" | "
|
|
57
|
+
}[] : TSelectedFields extends readonly TFieldOptions[] ? { [K_1 in TSelectedFields[number] as K_1 extends `${infer _Before} as ${infer Alias}` ? Alias : K_1]: (K_1 extends `${infer _Before} as ${infer Alias}` ? Alias : K_1) extends ("docstatus" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "posting_date" | "set_posting_time" | "export_approval_status" | "currency" | "conversion_rate" | "total_qty" | "total_net_weight" | "base_total" | "base_net_total" | "total" | "net_total" | "dispatch_address_name" | "importer_address" | "importer_contact" | "exporter_address" | "exporter_contact") | ("amended_from" | "_user_tags" | "company" | "naming_series" | "posting_time" | "company_tax_id" | "mrn" | "dispatch_address" | "importer_address_display" | "importer_contact_phone" | "importer_contact_email" | "exporter_address_display" | "exporter_contact_phone" | "exporter_contact_email") ? {
|
|
58
58
|
docstatus: number;
|
|
59
59
|
name: string;
|
|
60
60
|
owner: string;
|
|
@@ -64,8 +64,15 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
64
64
|
idx: number;
|
|
65
65
|
posting_date: string;
|
|
66
66
|
set_posting_time: boolean;
|
|
67
|
+
export_approval_status: "" | "Waiting for Approval" | "Approved" | "Declined";
|
|
67
68
|
currency: string;
|
|
68
69
|
conversion_rate: number;
|
|
70
|
+
total_qty: number;
|
|
71
|
+
total_net_weight: number;
|
|
72
|
+
base_total: number;
|
|
73
|
+
base_net_total: number;
|
|
74
|
+
total: number;
|
|
75
|
+
net_total: number;
|
|
69
76
|
dispatch_address_name: string;
|
|
70
77
|
importer_address: string;
|
|
71
78
|
importer_contact: string;
|
|
@@ -77,14 +84,7 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
77
84
|
naming_series?: string | null | undefined;
|
|
78
85
|
posting_time?: string | null | undefined;
|
|
79
86
|
company_tax_id?: string | null | undefined;
|
|
80
|
-
export_approval_status?: "" | "Waiting for Approval" | "Approved" | "Declined" | null | undefined;
|
|
81
87
|
mrn?: string | null | undefined;
|
|
82
|
-
total_qty?: number | null | undefined;
|
|
83
|
-
total_net_weight?: number | null | undefined;
|
|
84
|
-
base_total?: number | null | undefined;
|
|
85
|
-
base_net_total?: number | null | undefined;
|
|
86
|
-
total?: number | null | undefined;
|
|
87
|
-
net_total?: number | null | undefined;
|
|
88
88
|
dispatch_address?: string | null | undefined;
|
|
89
89
|
importer_address_display?: string | null | undefined;
|
|
90
90
|
importer_contact_phone?: string | null | undefined;
|
|
@@ -92,7 +92,7 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
92
92
|
exporter_address_display?: string | null | undefined;
|
|
93
93
|
exporter_contact_phone?: string | null | undefined;
|
|
94
94
|
exporter_contact_email?: string | null | undefined;
|
|
95
|
-
}[(("docstatus" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "posting_date" | "set_posting_time" | "
|
|
95
|
+
}[(("docstatus" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "posting_date" | "set_posting_time" | "export_approval_status" | "currency" | "conversion_rate" | "total_qty" | "total_net_weight" | "base_total" | "base_net_total" | "total" | "net_total" | "dispatch_address_name" | "importer_address" | "importer_contact" | "exporter_address" | "exporter_contact") | ("amended_from" | "_user_tags" | "company" | "naming_series" | "posting_time" | "company_tax_id" | "mrn" | "dispatch_address" | "importer_address_display" | "importer_contact_phone" | "importer_contact_email" | "exporter_address_display" | "exporter_contact_phone" | "exporter_contact_email")) & (K_1 extends `${infer _Before} as ${infer Alias}` ? Alias : K_1)] : never; }[] : any) extends infer T ? { [K in keyof T]: T[K]; } : never>;
|
|
96
96
|
getById: ({ resourceId, priority, }: {
|
|
97
97
|
resourceId: string;
|
|
98
98
|
priority?: number;
|
|
@@ -107,8 +107,15 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
107
107
|
doctype: string;
|
|
108
108
|
posting_date: string;
|
|
109
109
|
set_posting_time: boolean;
|
|
110
|
+
export_approval_status: "" | "Waiting for Approval" | "Approved" | "Declined";
|
|
110
111
|
currency: string;
|
|
111
112
|
conversion_rate: number;
|
|
113
|
+
total_qty: number;
|
|
114
|
+
total_net_weight: number;
|
|
115
|
+
base_total: number;
|
|
116
|
+
base_net_total: number;
|
|
117
|
+
total: number;
|
|
118
|
+
net_total: number;
|
|
112
119
|
dispatch_address_name: string;
|
|
113
120
|
importer_address: string;
|
|
114
121
|
importer_contact: string;
|
|
@@ -123,6 +130,7 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
123
130
|
modified_by: string;
|
|
124
131
|
idx: number;
|
|
125
132
|
doctype: string;
|
|
133
|
+
parent: string;
|
|
126
134
|
parenttype: string;
|
|
127
135
|
parentfield: string;
|
|
128
136
|
item_code: string;
|
|
@@ -159,14 +167,7 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
159
167
|
naming_series?: string | null | undefined;
|
|
160
168
|
posting_time?: string | null | undefined;
|
|
161
169
|
company_tax_id?: string | null | undefined;
|
|
162
|
-
export_approval_status?: "" | "Waiting for Approval" | "Approved" | "Declined" | null | undefined;
|
|
163
170
|
mrn?: string | null | undefined;
|
|
164
|
-
total_qty?: number | null | undefined;
|
|
165
|
-
total_net_weight?: number | null | undefined;
|
|
166
|
-
base_total?: number | null | undefined;
|
|
167
|
-
base_net_total?: number | null | undefined;
|
|
168
|
-
total?: number | null | undefined;
|
|
169
|
-
net_total?: number | null | undefined;
|
|
170
171
|
dispatch_address?: string | null | undefined;
|
|
171
172
|
importer_address_display?: string | null | undefined;
|
|
172
173
|
importer_contact_phone?: string | null | undefined;
|
|
@@ -213,20 +214,20 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
213
214
|
customs_tariff_number?: string | null | undefined;
|
|
214
215
|
country_of_origin?: string | null | undefined;
|
|
215
216
|
}[];
|
|
216
|
-
amended_from?: string | null | undefined;
|
|
217
217
|
docstatus?: number | undefined;
|
|
218
|
+
amended_from?: string | null | undefined;
|
|
218
219
|
company?: string | null | undefined;
|
|
219
220
|
naming_series?: string | null | undefined;
|
|
220
221
|
posting_time?: string | null | undefined;
|
|
221
222
|
company_tax_id?: string | null | undefined;
|
|
222
|
-
export_approval_status?: "" | "Waiting for Approval" | "Approved" | "Declined" |
|
|
223
|
+
export_approval_status?: "" | "Waiting for Approval" | "Approved" | "Declined" | undefined;
|
|
223
224
|
mrn?: string | null | undefined;
|
|
224
|
-
total_qty?: number |
|
|
225
|
-
total_net_weight?: number |
|
|
226
|
-
base_total?: number |
|
|
227
|
-
base_net_total?: number |
|
|
228
|
-
total?: number |
|
|
229
|
-
net_total?: number |
|
|
225
|
+
total_qty?: number | undefined;
|
|
226
|
+
total_net_weight?: number | undefined;
|
|
227
|
+
base_total?: number | undefined;
|
|
228
|
+
base_net_total?: number | undefined;
|
|
229
|
+
total?: number | undefined;
|
|
230
|
+
net_total?: number | undefined;
|
|
230
231
|
dispatch_address?: string | null | undefined;
|
|
231
232
|
importer_address_display?: string | null | undefined;
|
|
232
233
|
importer_contact_phone?: string | null | undefined;
|
|
@@ -250,8 +251,15 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
250
251
|
doctype: string;
|
|
251
252
|
posting_date: string;
|
|
252
253
|
set_posting_time: boolean;
|
|
254
|
+
export_approval_status: "" | "Waiting for Approval" | "Approved" | "Declined";
|
|
253
255
|
currency: string;
|
|
254
256
|
conversion_rate: number;
|
|
257
|
+
total_qty: number;
|
|
258
|
+
total_net_weight: number;
|
|
259
|
+
base_total: number;
|
|
260
|
+
base_net_total: number;
|
|
261
|
+
total: number;
|
|
262
|
+
net_total: number;
|
|
255
263
|
dispatch_address_name: string;
|
|
256
264
|
importer_address: string;
|
|
257
265
|
importer_contact: string;
|
|
@@ -266,6 +274,7 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
266
274
|
modified_by: string;
|
|
267
275
|
idx: number;
|
|
268
276
|
doctype: string;
|
|
277
|
+
parent: string;
|
|
269
278
|
parenttype: string;
|
|
270
279
|
parentfield: string;
|
|
271
280
|
item_code: string;
|
|
@@ -302,14 +311,7 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
302
311
|
naming_series?: string | null | undefined;
|
|
303
312
|
posting_time?: string | null | undefined;
|
|
304
313
|
company_tax_id?: string | null | undefined;
|
|
305
|
-
export_approval_status?: "" | "Waiting for Approval" | "Approved" | "Declined" | null | undefined;
|
|
306
314
|
mrn?: string | null | undefined;
|
|
307
|
-
total_qty?: number | null | undefined;
|
|
308
|
-
total_net_weight?: number | null | undefined;
|
|
309
|
-
base_total?: number | null | undefined;
|
|
310
|
-
base_net_total?: number | null | undefined;
|
|
311
|
-
total?: number | null | undefined;
|
|
312
|
-
net_total?: number | null | undefined;
|
|
313
315
|
dispatch_address?: string | null | undefined;
|
|
314
316
|
importer_address_display?: string | null | undefined;
|
|
315
317
|
importer_contact_phone?: string | null | undefined;
|
|
@@ -322,7 +324,7 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
322
324
|
resourceId: string;
|
|
323
325
|
priority?: number;
|
|
324
326
|
}) => Promise<import("zod").TypeOf<typeof import("../model/ERPNextResponse").DeleteResponseModel>>;
|
|
325
|
-
cancel: ({ resourceId }: {
|
|
327
|
+
cancel: ({ resourceId, }: {
|
|
326
328
|
resourceId: string;
|
|
327
329
|
}) => Promise<{
|
|
328
330
|
docstatus: number;
|
|
@@ -335,8 +337,15 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
335
337
|
doctype: string;
|
|
336
338
|
posting_date: string;
|
|
337
339
|
set_posting_time: boolean;
|
|
340
|
+
export_approval_status: "" | "Waiting for Approval" | "Approved" | "Declined";
|
|
338
341
|
currency: string;
|
|
339
342
|
conversion_rate: number;
|
|
343
|
+
total_qty: number;
|
|
344
|
+
total_net_weight: number;
|
|
345
|
+
base_total: number;
|
|
346
|
+
base_net_total: number;
|
|
347
|
+
total: number;
|
|
348
|
+
net_total: number;
|
|
340
349
|
dispatch_address_name: string;
|
|
341
350
|
importer_address: string;
|
|
342
351
|
importer_contact: string;
|
|
@@ -351,6 +360,7 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
351
360
|
modified_by: string;
|
|
352
361
|
idx: number;
|
|
353
362
|
doctype: string;
|
|
363
|
+
parent: string;
|
|
354
364
|
parenttype: string;
|
|
355
365
|
parentfield: string;
|
|
356
366
|
item_code: string;
|
|
@@ -387,14 +397,7 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
387
397
|
naming_series?: string | null | undefined;
|
|
388
398
|
posting_time?: string | null | undefined;
|
|
389
399
|
company_tax_id?: string | null | undefined;
|
|
390
|
-
export_approval_status?: "" | "Waiting for Approval" | "Approved" | "Declined" | null | undefined;
|
|
391
400
|
mrn?: string | null | undefined;
|
|
392
|
-
total_qty?: number | null | undefined;
|
|
393
|
-
total_net_weight?: number | null | undefined;
|
|
394
|
-
base_total?: number | null | undefined;
|
|
395
|
-
base_net_total?: number | null | undefined;
|
|
396
|
-
total?: number | null | undefined;
|
|
397
|
-
net_total?: number | null | undefined;
|
|
398
401
|
dispatch_address?: string | null | undefined;
|
|
399
402
|
importer_address_display?: string | null | undefined;
|
|
400
403
|
importer_contact_phone?: string | null | undefined;
|
|
@@ -403,7 +406,7 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
403
406
|
exporter_contact_phone?: string | null | undefined;
|
|
404
407
|
exporter_contact_email?: string | null | undefined;
|
|
405
408
|
}>;
|
|
406
|
-
submit: ({ resourceId }: {
|
|
409
|
+
submit: ({ resourceId, }: {
|
|
407
410
|
resourceId: string;
|
|
408
411
|
}) => Promise<{
|
|
409
412
|
docstatus: number;
|
|
@@ -416,8 +419,15 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
416
419
|
doctype: string;
|
|
417
420
|
posting_date: string;
|
|
418
421
|
set_posting_time: boolean;
|
|
422
|
+
export_approval_status: "" | "Waiting for Approval" | "Approved" | "Declined";
|
|
419
423
|
currency: string;
|
|
420
424
|
conversion_rate: number;
|
|
425
|
+
total_qty: number;
|
|
426
|
+
total_net_weight: number;
|
|
427
|
+
base_total: number;
|
|
428
|
+
base_net_total: number;
|
|
429
|
+
total: number;
|
|
430
|
+
net_total: number;
|
|
421
431
|
dispatch_address_name: string;
|
|
422
432
|
importer_address: string;
|
|
423
433
|
importer_contact: string;
|
|
@@ -432,6 +442,7 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
432
442
|
modified_by: string;
|
|
433
443
|
idx: number;
|
|
434
444
|
doctype: string;
|
|
445
|
+
parent: string;
|
|
435
446
|
parenttype: string;
|
|
436
447
|
parentfield: string;
|
|
437
448
|
item_code: string;
|
|
@@ -468,14 +479,7 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
468
479
|
naming_series?: string | null | undefined;
|
|
469
480
|
posting_time?: string | null | undefined;
|
|
470
481
|
company_tax_id?: string | null | undefined;
|
|
471
|
-
export_approval_status?: "" | "Waiting for Approval" | "Approved" | "Declined" | null | undefined;
|
|
472
482
|
mrn?: string | null | undefined;
|
|
473
|
-
total_qty?: number | null | undefined;
|
|
474
|
-
total_net_weight?: number | null | undefined;
|
|
475
|
-
base_total?: number | null | undefined;
|
|
476
|
-
base_net_total?: number | null | undefined;
|
|
477
|
-
total?: number | null | undefined;
|
|
478
|
-
net_total?: number | null | undefined;
|
|
479
483
|
dispatch_address?: string | null | undefined;
|
|
480
484
|
importer_address_display?: string | null | undefined;
|
|
481
485
|
importer_contact_phone?: string | null | undefined;
|
|
@@ -488,8 +492,14 @@ export declare class ERPNextConsolidatedCustomsInvoice {
|
|
|
488
492
|
create({ shipments, }: ConsolidatedCustomsInvoiceCreateMethodInputType): Promise<{
|
|
489
493
|
name: string;
|
|
490
494
|
importer_info: {
|
|
495
|
+
address_line1: string;
|
|
496
|
+
pincode: string;
|
|
497
|
+
city: string;
|
|
498
|
+
country: string;
|
|
491
499
|
tax_id: string;
|
|
492
500
|
address_title?: string | null | undefined;
|
|
501
|
+
address_line2?: string | null | undefined;
|
|
502
|
+
state?: string | null | undefined;
|
|
493
503
|
phone?: string | null | undefined;
|
|
494
504
|
email_id?: string | null | undefined;
|
|
495
505
|
};
|