erpnext-queue-client 1.0.6 → 1.1.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/client.js +41 -16
- package/dist/erpnext/decryptFromErpNext.server.d.ts +1 -1
- package/dist/erpnext/doctypeResourceRequest.d.ts +38 -0
- package/dist/erpnext/doctypeResourceRequest.js +59 -0
- package/dist/erpnext/doctypeSubmittableResourceRequest.d.ts +8 -0
- package/dist/erpnext/doctypeSubmittableResourceRequest.js +39 -0
- package/dist/erpnext/doctypes/address.d.ts +263 -0
- package/dist/erpnext/doctypes/address.js +46 -0
- package/dist/erpnext/doctypes/contact.d.ts +383 -0
- package/dist/erpnext/doctypes/contact.js +46 -0
- package/dist/erpnext/doctypes/deliveryNote.d.ts +985 -0
- package/dist/erpnext/doctypes/deliveryNote.js +38 -0
- package/dist/erpnext/doctypes/item.d.ts +572 -0
- package/dist/erpnext/doctypes/item.js +95 -0
- package/dist/erpnext/doctypes/purchaseReceipt.d.ts +743 -0
- package/dist/erpnext/doctypes/purchaseReceipt.js +50 -0
- package/dist/erpnext/doctypes/shipment.d.ts +752 -0
- package/dist/erpnext/doctypes/shipment.js +51 -0
- package/dist/erpnext/erpnextRequestWrapper.js +15 -13
- package/dist/erpnext/fileRequests.d.ts +10 -0
- package/dist/erpnext/fileRequests.js +42 -0
- package/dist/erpnext/methodRequest.d.ts +15 -0
- package/dist/erpnext/methodRequest.js +32 -0
- package/dist/erpnext/model/Address.d.ts +200 -198
- package/dist/erpnext/model/Address.js +3 -2
- package/dist/erpnext/model/Contact.d.ts +343 -344
- package/dist/erpnext/model/Contact.js +2 -2
- package/dist/erpnext/model/Country.d.ts +83 -31
- package/dist/erpnext/model/Country.js +2 -6
- package/dist/erpnext/model/Customer.d.ts +64 -65
- package/dist/erpnext/model/Customer.js +2 -2
- package/dist/erpnext/model/DeliveryNote.d.ts +1048 -1048
- package/dist/erpnext/model/DispatchRun.d.ts +399 -399
- package/dist/erpnext/model/DispatcherPreset.d.ts +94 -94
- package/dist/erpnext/model/ERPNextRequest.d.ts +47 -30
- package/dist/erpnext/model/ERPNextResponse.d.ts +4 -4
- package/dist/erpnext/model/File.d.ts +88 -88
- package/dist/erpnext/model/Fulfiller.d.ts +97 -97
- package/dist/erpnext/model/FulfillerSettings.d.ts +66 -66
- package/dist/erpnext/model/FulfillmentStation.d.ts +2 -2
- package/dist/erpnext/model/Item.d.ts +819 -819
- package/dist/erpnext/model/Item.js +2 -2
- package/dist/erpnext/model/PaymentEntry.d.ts +197 -0
- package/dist/erpnext/model/PaymentEntry.js +63 -0
- package/dist/erpnext/model/ProjectedQuantityReport.d.ts +178 -178
- package/dist/erpnext/model/PurchaseOrder.d.ts +528 -528
- package/dist/erpnext/model/Receipt.d.ts +448 -448
- package/dist/erpnext/model/Receipt.js +2 -2
- package/dist/erpnext/model/ReceiptDraft.d.ts +392 -392
- package/dist/erpnext/model/Shipment.d.ts +709 -709
- package/dist/erpnext/model/ShippingProvider.d.ts +198 -198
- package/dist/erpnext/model/StockEntry.d.ts +248 -0
- package/dist/erpnext/model/StockEntry.js +76 -0
- package/dist/erpnext/model/StockReconciliation.d.ts +187 -0
- package/dist/erpnext/model/StockReconciliation.js +44 -0
- package/dist/erpnext/model/Supplier.d.ts +105 -0
- package/dist/erpnext/model/Supplier.js +39 -0
- package/dist/erpnext/model/Waitlist.d.ts +32 -0
- package/dist/erpnext/model/Waitlist.js +19 -0
- package/dist/erpnext/model/WarehouseCategory.d.ts +6 -6
- package/dist/erpnext/resourceRequest.d.ts +39 -10
- package/dist/erpnext/resourceRequest.js +115 -14
- package/dist/index.d.ts +39 -4
- package/dist/index.js +43 -8
- package/dist/utils/fernet.server.d.ts +11 -11
- package/dist/utils/fernet.server.js +0 -1
- package/dist/utils/request.js +2 -2
- package/dist/utils/zodUtils.d.ts +2 -1
- package/dist/utils/zodUtils.js +14 -1
- package/package.json +4 -1
- package/dist/erpnext/doctypes/country.d.ts +0 -9
- package/dist/erpnext/doctypes/country.js +0 -28
- package/dist/erpnext/erpnextRequests.d.ts +0 -1
- package/dist/erpnext/erpnextRequests.js +0 -15
- package/dist/erpnext.d.ts +0 -20
- package/dist/erpnext.js +0 -45
|
@@ -145,57 +145,57 @@ export declare const ShippingProvider: z.ZodObject<{
|
|
|
145
145
|
shopify_carrier_mapping: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNativeEnum<typeof ShopifyCarrier>, z.ZodLiteral<"">]>>>;
|
|
146
146
|
doctype: z.ZodString;
|
|
147
147
|
}, "strip", z.ZodTypeAny, {
|
|
148
|
-
name
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
shopify_carrier_mapping?: "" | ShopifyCarrier;
|
|
148
|
+
name: string;
|
|
149
|
+
owner: string;
|
|
150
|
+
creation: string;
|
|
151
|
+
modified: string;
|
|
152
|
+
modified_by: string;
|
|
153
|
+
idx: number;
|
|
154
|
+
docstatus: number;
|
|
155
|
+
doctype: string;
|
|
156
|
+
title: string;
|
|
157
|
+
is_transport_by_freight_forwarding: boolean;
|
|
158
|
+
is_print_label: boolean;
|
|
159
|
+
label_service: "DHL" | "Deutsche Post" | "GLS Germany" | "GLS ADE-plus" | "DHL-2-Mann" | "Billbee" | "Billbee Amazon MCF";
|
|
160
|
+
billbee_shipping_provider_id: string;
|
|
161
|
+
product_id_germany: string;
|
|
162
|
+
product_id_europe: string;
|
|
163
|
+
sender_address: string;
|
|
164
|
+
parent?: string | null | undefined;
|
|
165
|
+
parentfield?: string | null | undefined;
|
|
166
|
+
parenttype?: string | null | undefined;
|
|
167
|
+
dhl_ekp_number?: string | null | undefined;
|
|
168
|
+
api_user?: string | null | undefined;
|
|
169
|
+
api_password?: string | null | undefined;
|
|
170
|
+
api_base_url?: string | null | undefined;
|
|
171
|
+
gls_shipper_id?: string | null | undefined;
|
|
172
|
+
shopify_carrier_mapping?: "" | ShopifyCarrier | null | undefined;
|
|
173
173
|
}, {
|
|
174
|
-
name
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
shopify_carrier_mapping?: "" | ShopifyCarrier;
|
|
174
|
+
name: string;
|
|
175
|
+
owner: string;
|
|
176
|
+
creation: string;
|
|
177
|
+
modified: string;
|
|
178
|
+
modified_by: string;
|
|
179
|
+
idx: number;
|
|
180
|
+
docstatus: number;
|
|
181
|
+
doctype: string;
|
|
182
|
+
title: string;
|
|
183
|
+
is_transport_by_freight_forwarding: number;
|
|
184
|
+
is_print_label: number;
|
|
185
|
+
label_service: "DHL" | "Deutsche Post" | "GLS Germany" | "GLS ADE-plus" | "DHL-2-Mann" | "Billbee" | "Billbee Amazon MCF";
|
|
186
|
+
billbee_shipping_provider_id: string;
|
|
187
|
+
product_id_germany: string;
|
|
188
|
+
product_id_europe: string;
|
|
189
|
+
sender_address: string;
|
|
190
|
+
parent?: string | null | undefined;
|
|
191
|
+
parentfield?: string | null | undefined;
|
|
192
|
+
parenttype?: string | null | undefined;
|
|
193
|
+
dhl_ekp_number?: string | null | undefined;
|
|
194
|
+
api_user?: string | null | undefined;
|
|
195
|
+
api_password?: string | null | undefined;
|
|
196
|
+
api_base_url?: string | null | undefined;
|
|
197
|
+
gls_shipper_id?: string | null | undefined;
|
|
198
|
+
shopify_carrier_mapping?: "" | ShopifyCarrier | null | undefined;
|
|
199
199
|
}>;
|
|
200
200
|
export type ShippingProviderType = z.infer<typeof ShippingProvider>;
|
|
201
201
|
export declare const ShippingProviderFromList: z.ZodObject<Omit<{
|
|
@@ -225,55 +225,55 @@ export declare const ShippingProviderFromList: z.ZodObject<Omit<{
|
|
|
225
225
|
shopify_carrier_mapping: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNativeEnum<typeof ShopifyCarrier>, z.ZodLiteral<"">]>>>;
|
|
226
226
|
doctype: z.ZodString;
|
|
227
227
|
}, "doctype">, "strip", z.ZodTypeAny, {
|
|
228
|
-
name
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
shopify_carrier_mapping?: "" | ShopifyCarrier;
|
|
228
|
+
name: string;
|
|
229
|
+
owner: string;
|
|
230
|
+
creation: string;
|
|
231
|
+
modified: string;
|
|
232
|
+
modified_by: string;
|
|
233
|
+
idx: number;
|
|
234
|
+
docstatus: number;
|
|
235
|
+
title: string;
|
|
236
|
+
is_transport_by_freight_forwarding: boolean;
|
|
237
|
+
is_print_label: boolean;
|
|
238
|
+
label_service: "DHL" | "Deutsche Post" | "GLS Germany" | "GLS ADE-plus" | "DHL-2-Mann" | "Billbee" | "Billbee Amazon MCF";
|
|
239
|
+
billbee_shipping_provider_id: string;
|
|
240
|
+
product_id_germany: string;
|
|
241
|
+
product_id_europe: string;
|
|
242
|
+
sender_address: string;
|
|
243
|
+
parent?: string | null | undefined;
|
|
244
|
+
parentfield?: string | null | undefined;
|
|
245
|
+
parenttype?: string | null | undefined;
|
|
246
|
+
dhl_ekp_number?: string | null | undefined;
|
|
247
|
+
api_user?: string | null | undefined;
|
|
248
|
+
api_password?: string | null | undefined;
|
|
249
|
+
api_base_url?: string | null | undefined;
|
|
250
|
+
gls_shipper_id?: string | null | undefined;
|
|
251
|
+
shopify_carrier_mapping?: "" | ShopifyCarrier | null | undefined;
|
|
252
252
|
}, {
|
|
253
|
-
name
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
shopify_carrier_mapping?: "" | ShopifyCarrier;
|
|
253
|
+
name: string;
|
|
254
|
+
owner: string;
|
|
255
|
+
creation: string;
|
|
256
|
+
modified: string;
|
|
257
|
+
modified_by: string;
|
|
258
|
+
idx: number;
|
|
259
|
+
docstatus: number;
|
|
260
|
+
title: string;
|
|
261
|
+
is_transport_by_freight_forwarding: number;
|
|
262
|
+
is_print_label: number;
|
|
263
|
+
label_service: "DHL" | "Deutsche Post" | "GLS Germany" | "GLS ADE-plus" | "DHL-2-Mann" | "Billbee" | "Billbee Amazon MCF";
|
|
264
|
+
billbee_shipping_provider_id: string;
|
|
265
|
+
product_id_germany: string;
|
|
266
|
+
product_id_europe: string;
|
|
267
|
+
sender_address: string;
|
|
268
|
+
parent?: string | null | undefined;
|
|
269
|
+
parentfield?: string | null | undefined;
|
|
270
|
+
parenttype?: string | null | undefined;
|
|
271
|
+
dhl_ekp_number?: string | null | undefined;
|
|
272
|
+
api_user?: string | null | undefined;
|
|
273
|
+
api_password?: string | null | undefined;
|
|
274
|
+
api_base_url?: string | null | undefined;
|
|
275
|
+
gls_shipper_id?: string | null | undefined;
|
|
276
|
+
shopify_carrier_mapping?: "" | ShopifyCarrier | null | undefined;
|
|
277
277
|
}>;
|
|
278
278
|
export declare const ShippingProviderList: z.ZodEffects<z.ZodArray<z.ZodObject<Omit<{
|
|
279
279
|
name: z.ZodString;
|
|
@@ -302,80 +302,80 @@ export declare const ShippingProviderList: z.ZodEffects<z.ZodArray<z.ZodObject<O
|
|
|
302
302
|
shopify_carrier_mapping: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodNativeEnum<typeof ShopifyCarrier>, z.ZodLiteral<"">]>>>;
|
|
303
303
|
doctype: z.ZodString;
|
|
304
304
|
}, "doctype">, "strip", z.ZodTypeAny, {
|
|
305
|
-
name
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
shopify_carrier_mapping?: "" | ShopifyCarrier;
|
|
305
|
+
name: string;
|
|
306
|
+
owner: string;
|
|
307
|
+
creation: string;
|
|
308
|
+
modified: string;
|
|
309
|
+
modified_by: string;
|
|
310
|
+
idx: number;
|
|
311
|
+
docstatus: number;
|
|
312
|
+
title: string;
|
|
313
|
+
is_transport_by_freight_forwarding: boolean;
|
|
314
|
+
is_print_label: boolean;
|
|
315
|
+
label_service: "DHL" | "Deutsche Post" | "GLS Germany" | "GLS ADE-plus" | "DHL-2-Mann" | "Billbee" | "Billbee Amazon MCF";
|
|
316
|
+
billbee_shipping_provider_id: string;
|
|
317
|
+
product_id_germany: string;
|
|
318
|
+
product_id_europe: string;
|
|
319
|
+
sender_address: string;
|
|
320
|
+
parent?: string | null | undefined;
|
|
321
|
+
parentfield?: string | null | undefined;
|
|
322
|
+
parenttype?: string | null | undefined;
|
|
323
|
+
dhl_ekp_number?: string | null | undefined;
|
|
324
|
+
api_user?: string | null | undefined;
|
|
325
|
+
api_password?: string | null | undefined;
|
|
326
|
+
api_base_url?: string | null | undefined;
|
|
327
|
+
gls_shipper_id?: string | null | undefined;
|
|
328
|
+
shopify_carrier_mapping?: "" | ShopifyCarrier | null | undefined;
|
|
329
329
|
}, {
|
|
330
|
-
name
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
shopify_carrier_mapping?: "" | ShopifyCarrier;
|
|
330
|
+
name: string;
|
|
331
|
+
owner: string;
|
|
332
|
+
creation: string;
|
|
333
|
+
modified: string;
|
|
334
|
+
modified_by: string;
|
|
335
|
+
idx: number;
|
|
336
|
+
docstatus: number;
|
|
337
|
+
title: string;
|
|
338
|
+
is_transport_by_freight_forwarding: number;
|
|
339
|
+
is_print_label: number;
|
|
340
|
+
label_service: "DHL" | "Deutsche Post" | "GLS Germany" | "GLS ADE-plus" | "DHL-2-Mann" | "Billbee" | "Billbee Amazon MCF";
|
|
341
|
+
billbee_shipping_provider_id: string;
|
|
342
|
+
product_id_germany: string;
|
|
343
|
+
product_id_europe: string;
|
|
344
|
+
sender_address: string;
|
|
345
|
+
parent?: string | null | undefined;
|
|
346
|
+
parentfield?: string | null | undefined;
|
|
347
|
+
parenttype?: string | null | undefined;
|
|
348
|
+
dhl_ekp_number?: string | null | undefined;
|
|
349
|
+
api_user?: string | null | undefined;
|
|
350
|
+
api_password?: string | null | undefined;
|
|
351
|
+
api_base_url?: string | null | undefined;
|
|
352
|
+
gls_shipper_id?: string | null | undefined;
|
|
353
|
+
shopify_carrier_mapping?: "" | ShopifyCarrier | null | undefined;
|
|
354
354
|
}>, "many">, {
|
|
355
|
-
name
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
shopify_carrier_mapping?: "" | ShopifyCarrier;
|
|
355
|
+
name: string;
|
|
356
|
+
owner: string;
|
|
357
|
+
creation: string;
|
|
358
|
+
modified: string;
|
|
359
|
+
modified_by: string;
|
|
360
|
+
idx: number;
|
|
361
|
+
docstatus: number;
|
|
362
|
+
title: string;
|
|
363
|
+
is_transport_by_freight_forwarding: boolean;
|
|
364
|
+
is_print_label: boolean;
|
|
365
|
+
label_service: "DHL" | "Deutsche Post" | "GLS Germany" | "GLS ADE-plus" | "DHL-2-Mann" | "Billbee" | "Billbee Amazon MCF";
|
|
366
|
+
billbee_shipping_provider_id: string;
|
|
367
|
+
product_id_germany: string;
|
|
368
|
+
product_id_europe: string;
|
|
369
|
+
sender_address: string;
|
|
370
|
+
parent?: string | null | undefined;
|
|
371
|
+
parentfield?: string | null | undefined;
|
|
372
|
+
parenttype?: string | null | undefined;
|
|
373
|
+
dhl_ekp_number?: string | null | undefined;
|
|
374
|
+
api_user?: string | null | undefined;
|
|
375
|
+
api_password?: string | null | undefined;
|
|
376
|
+
api_base_url?: string | null | undefined;
|
|
377
|
+
gls_shipper_id?: string | null | undefined;
|
|
378
|
+
shopify_carrier_mapping?: "" | ShopifyCarrier | null | undefined;
|
|
379
379
|
}[], unknown>;
|
|
380
380
|
export type ShippingProviderListType = z.infer<typeof ShippingProviderList>;
|
|
381
381
|
export declare const ShippingProviderCredentials: z.ZodObject<{
|
|
@@ -387,21 +387,21 @@ export declare const ShippingProviderCredentials: z.ZodObject<{
|
|
|
387
387
|
product_id_germany: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
388
388
|
product_id_europe: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
389
389
|
}, "strip", z.ZodTypeAny, {
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
product_id_germany?: string;
|
|
396
|
-
product_id_europe?: string;
|
|
390
|
+
billbee_shipping_provider_id: string;
|
|
391
|
+
dhl_ekp_number?: string | null | undefined;
|
|
392
|
+
api_user?: string | null | undefined;
|
|
393
|
+
api_password?: string | null | undefined;
|
|
394
|
+
gls_shipper_id?: string | null | undefined;
|
|
395
|
+
product_id_germany?: string | null | undefined;
|
|
396
|
+
product_id_europe?: string | null | undefined;
|
|
397
397
|
}, {
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
product_id_germany?: string;
|
|
404
|
-
product_id_europe?: string;
|
|
398
|
+
billbee_shipping_provider_id: string;
|
|
399
|
+
dhl_ekp_number?: string | null | undefined;
|
|
400
|
+
api_user?: string | null | undefined;
|
|
401
|
+
api_password?: string | null | undefined;
|
|
402
|
+
gls_shipper_id?: string | null | undefined;
|
|
403
|
+
product_id_germany?: string | null | undefined;
|
|
404
|
+
product_id_europe?: string | null | undefined;
|
|
405
405
|
}>;
|
|
406
406
|
export type ShippingProviderCredentialsType = z.infer<typeof ShippingProviderCredentials>;
|
|
407
407
|
export declare const BillbeeShippingProviderCredentials: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -416,19 +416,19 @@ export declare const BillbeeShippingProviderCredentials: z.ZodObject<z.objectUti
|
|
|
416
416
|
product_id_germany: z.ZodString;
|
|
417
417
|
product_id_europe: z.ZodString;
|
|
418
418
|
}>, "strip", z.ZodTypeAny, {
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
419
|
+
billbee_shipping_provider_id: string;
|
|
420
|
+
product_id_germany: string;
|
|
421
|
+
product_id_europe: string;
|
|
422
|
+
dhl_ekp_number?: string | null | undefined;
|
|
423
|
+
api_user?: string | null | undefined;
|
|
424
|
+
api_password?: string | null | undefined;
|
|
425
|
+
gls_shipper_id?: string | null | undefined;
|
|
426
426
|
}, {
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
427
|
+
billbee_shipping_provider_id: string;
|
|
428
|
+
product_id_germany: string;
|
|
429
|
+
product_id_europe: string;
|
|
430
|
+
dhl_ekp_number?: string | null | undefined;
|
|
431
|
+
api_user?: string | null | undefined;
|
|
432
|
+
api_password?: string | null | undefined;
|
|
433
|
+
gls_shipper_id?: string | null | undefined;
|
|
434
434
|
}>;
|