erpnext-queue-client 2.5.23 → 2.5.24
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.
|
@@ -13,6 +13,8 @@ export declare const ConsolidatedCustomsInvoiceItem: z.ZodObject<{
|
|
|
13
13
|
net_amount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
14
14
|
base_net_rate: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
15
15
|
base_net_amount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
16
|
+
shipping_cost: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
17
|
+
base_shipping_cost: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
16
18
|
delivered_by_supplier: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>, 0 | 1, unknown>> & {
|
|
17
19
|
__optionalForInput: true;
|
|
18
20
|
};
|
|
@@ -47,6 +49,8 @@ export declare const ConsolidatedCustomsInvoiceItem: z.ZodObject<{
|
|
|
47
49
|
net_amount?: number | null | undefined;
|
|
48
50
|
base_net_rate?: number | null | undefined;
|
|
49
51
|
base_net_amount?: number | null | undefined;
|
|
52
|
+
shipping_cost?: number | null | undefined;
|
|
53
|
+
base_shipping_cost?: number | null | undefined;
|
|
50
54
|
sales_order?: string | null | undefined;
|
|
51
55
|
so_detail?: string | null | undefined;
|
|
52
56
|
sales_invoice?: string | null | undefined;
|
|
@@ -74,6 +78,8 @@ export declare const ConsolidatedCustomsInvoiceItem: z.ZodObject<{
|
|
|
74
78
|
net_amount?: number | null | undefined;
|
|
75
79
|
base_net_rate?: number | null | undefined;
|
|
76
80
|
base_net_amount?: number | null | undefined;
|
|
81
|
+
shipping_cost?: number | null | undefined;
|
|
82
|
+
base_shipping_cost?: number | null | undefined;
|
|
77
83
|
delivered_by_supplier?: unknown;
|
|
78
84
|
sales_order?: string | null | undefined;
|
|
79
85
|
so_detail?: string | null | undefined;
|
|
@@ -101,6 +107,7 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
|
|
|
101
107
|
__optionalForInput: true;
|
|
102
108
|
};
|
|
103
109
|
mrn: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
110
|
+
abd: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
104
111
|
currency: z.ZodString;
|
|
105
112
|
conversion_rate: z.ZodNumber;
|
|
106
113
|
total_qty: z.ZodNumber & {
|
|
@@ -147,6 +154,8 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
|
|
|
147
154
|
net_amount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
148
155
|
base_net_rate: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
149
156
|
base_net_amount: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
157
|
+
shipping_cost: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
158
|
+
base_shipping_cost: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
150
159
|
delivered_by_supplier: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<1>]>, 0 | 1, unknown>> & {
|
|
151
160
|
__optionalForInput: true;
|
|
152
161
|
};
|
|
@@ -181,6 +190,8 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
|
|
|
181
190
|
net_amount?: number | null | undefined;
|
|
182
191
|
base_net_rate?: number | null | undefined;
|
|
183
192
|
base_net_amount?: number | null | undefined;
|
|
193
|
+
shipping_cost?: number | null | undefined;
|
|
194
|
+
base_shipping_cost?: number | null | undefined;
|
|
184
195
|
sales_order?: string | null | undefined;
|
|
185
196
|
so_detail?: string | null | undefined;
|
|
186
197
|
sales_invoice?: string | null | undefined;
|
|
@@ -208,6 +219,8 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
|
|
|
208
219
|
net_amount?: number | null | undefined;
|
|
209
220
|
base_net_rate?: number | null | undefined;
|
|
210
221
|
base_net_amount?: number | null | undefined;
|
|
222
|
+
shipping_cost?: number | null | undefined;
|
|
223
|
+
base_shipping_cost?: number | null | undefined;
|
|
211
224
|
delivered_by_supplier?: unknown;
|
|
212
225
|
sales_order?: string | null | undefined;
|
|
213
226
|
so_detail?: string | null | undefined;
|
|
@@ -255,6 +268,8 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
|
|
|
255
268
|
net_amount?: number | null | undefined;
|
|
256
269
|
base_net_rate?: number | null | undefined;
|
|
257
270
|
base_net_amount?: number | null | undefined;
|
|
271
|
+
shipping_cost?: number | null | undefined;
|
|
272
|
+
base_shipping_cost?: number | null | undefined;
|
|
258
273
|
sales_order?: string | null | undefined;
|
|
259
274
|
so_detail?: string | null | undefined;
|
|
260
275
|
sales_invoice?: string | null | undefined;
|
|
@@ -272,6 +287,7 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
|
|
|
272
287
|
posting_time?: string | null | undefined;
|
|
273
288
|
company_tax_id?: string | null | undefined;
|
|
274
289
|
mrn?: string | null | undefined;
|
|
290
|
+
abd?: string | null | undefined;
|
|
275
291
|
dispatch_address?: string | null | undefined;
|
|
276
292
|
importer_address_display?: string | null | undefined;
|
|
277
293
|
importer_contact_phone?: string | null | undefined;
|
|
@@ -313,6 +329,8 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
|
|
|
313
329
|
net_amount?: number | null | undefined;
|
|
314
330
|
base_net_rate?: number | null | undefined;
|
|
315
331
|
base_net_amount?: number | null | undefined;
|
|
332
|
+
shipping_cost?: number | null | undefined;
|
|
333
|
+
base_shipping_cost?: number | null | undefined;
|
|
316
334
|
delivered_by_supplier?: unknown;
|
|
317
335
|
sales_order?: string | null | undefined;
|
|
318
336
|
so_detail?: string | null | undefined;
|
|
@@ -331,6 +349,7 @@ export declare const ConsolidatedCustomsInvoice: z.ZodObject<{
|
|
|
331
349
|
posting_time?: string | null | undefined;
|
|
332
350
|
company_tax_id?: string | null | undefined;
|
|
333
351
|
mrn?: string | null | undefined;
|
|
352
|
+
abd?: string | null | undefined;
|
|
334
353
|
dispatch_address?: string | null | undefined;
|
|
335
354
|
importer_address_display?: string | null | undefined;
|
|
336
355
|
importer_contact_phone?: string | null | undefined;
|
|
@@ -23,6 +23,8 @@ exports.ConsolidatedCustomsInvoiceItem = zod_1.z
|
|
|
23
23
|
net_amount: zod_1.z.number().optional().nullable(),
|
|
24
24
|
base_net_rate: zod_1.z.number().optional().nullable(),
|
|
25
25
|
base_net_amount: zod_1.z.number().optional().nullable(),
|
|
26
|
+
shipping_cost: zod_1.z.number().optional().nullable(),
|
|
27
|
+
base_shipping_cost: zod_1.z.number().optional().nullable(),
|
|
26
28
|
// Drop ship
|
|
27
29
|
delivered_by_supplier: Boolean_1.ERPNextBoolean,
|
|
28
30
|
// Weight details
|
|
@@ -60,6 +62,7 @@ exports.ConsolidatedCustomsInvoice = zod_1.z
|
|
|
60
62
|
amended_from: zod_1.z.string().optional().nullable(),
|
|
61
63
|
export_approval_status: (0, zodContextOptionals_1.optionalForInput)(exports.ConsolidatedCustomsInvoiceExportApprovalStatus),
|
|
62
64
|
mrn: zod_1.z.string().optional().nullable(),
|
|
65
|
+
abd: zod_1.z.string().optional().nullable(),
|
|
63
66
|
currency: zod_1.z.string(),
|
|
64
67
|
conversion_rate: zod_1.z.number(),
|
|
65
68
|
total_qty: (0, zodContextOptionals_1.optionalForInput)(zod_1.z.number()),
|