erpnext-queue-client 1.5.3 → 1.6.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 +3 -2
- package/dist/erpnext/doctypes/address.d.ts +13 -13
- package/dist/erpnext/doctypes/contact.d.ts +25 -25
- package/dist/erpnext/doctypes/deliveryNote.d.ts +15 -15
- package/dist/erpnext/doctypes/item.d.ts +25 -31
- package/dist/erpnext/doctypes/purchaseInvoice.d.ts +33 -33
- package/dist/erpnext/doctypes/purchaseReceipt.d.ts +19 -19
- package/dist/erpnext/doctypes/shipment.d.ts +30 -30
- package/dist/erpnext/model/Account.d.ts +2 -2
- package/dist/erpnext/model/Address.d.ts +8 -8
- package/dist/erpnext/model/Contact.d.ts +20 -20
- package/dist/erpnext/model/Country.d.ts +2 -2
- package/dist/erpnext/model/Customer.d.ts +2 -2
- package/dist/erpnext/model/DeliveryNote.d.ts +12 -12
- package/dist/erpnext/model/DispatchRun.d.ts +25 -25
- package/dist/erpnext/model/DispatcherPreset.d.ts +8 -8
- package/dist/erpnext/model/File.d.ts +4 -4
- package/dist/erpnext/model/Fulfiller.d.ts +2 -2
- package/dist/erpnext/model/Item.d.ts +44 -52
- package/dist/erpnext/model/Item.js +0 -1
- package/dist/erpnext/model/PaymentEntry.d.ts +2 -2
- package/dist/erpnext/model/ProductBundle.d.ts +6 -6
- package/dist/erpnext/model/PurchaseInvoice.d.ts +26 -26
- package/dist/erpnext/model/PurchaseOrder.d.ts +10 -10
- package/dist/erpnext/model/Receipt.d.ts +6 -6
- package/dist/erpnext/model/ReceiptDraft.d.ts +4 -4
- package/dist/erpnext/model/Shipment.d.ts +32 -32
- package/dist/erpnext/model/ShippingProvider.d.ts +2 -2
- package/dist/erpnext/model/StockEntry.d.ts +2 -2
- package/dist/erpnext/model/StockReconciliation.d.ts +2 -2
- package/dist/erpnext/model/Supplier.d.ts +6 -6
- package/dist/erpnext/resourceRequest.js +9 -5
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ export declare class ERPNextShipment {
|
|
|
6
6
|
protected temporalClient: TemporalClient;
|
|
7
7
|
protected baseRequest: ERPNextDoctypeSubmittableResourceRequest<typeof Shipment>;
|
|
8
8
|
protected methodRequest: ERPNextMethodRequest;
|
|
9
|
-
getList: <TField extends ("status" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "docstatus" | "
|
|
9
|
+
getList: <TField extends ("status" | "name" | "doctype" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "docstatus" | "delivery_address_name" | "delivery_address" | "delivery_customer" | "delivery_to_type" | "incoterm" | "pallets" | "pickup_address_name" | "pickup_address" | "pickup_company" | "pickup_contact_email" | "pickup_contact_person" | "pickup_contact" | "pickup_from_type" | "pickup_from" | "pickup_to" | "pickup_type" | "shipment_amount" | "shipment_delivery_note" | "shipment_parcel" | "shipment_type" | "tracking_status" | "value_of_goods" | "description_of_content" | "pickup_date" | "shipment_id") | ("parent" | "parentfield" | "parenttype" | "__onload" | "amended_from" | "delivery_contact" | "awb_number" | "carrier_service" | "carrier" | "delivery_company" | "delivery_contact_email" | "delivery_contact_name" | "delivery_supplier" | "delivery_to" | "parcel_template" | "pickup_contact_name" | "pickup_customer" | "pickup_supplier" | "pickup" | "service_provider" | "shipping_label" | "shipping_provider" | "custom_return_label" | "custom_return_shipping_provider" | "tracking_status_info" | "tracking_url"), TAsDict extends boolean | undefined = undefined>({ fields, filters, skip, limit, priority, asDict, params, }?: {
|
|
10
10
|
fields?: TField[] | undefined;
|
|
11
11
|
filters?: string[][];
|
|
12
12
|
skip?: number;
|
|
@@ -17,13 +17,13 @@ export declare class ERPNextShipment {
|
|
|
17
17
|
}) => Promise<TAsDict extends false ? string[][] : Pick<{
|
|
18
18
|
status: string;
|
|
19
19
|
name: string;
|
|
20
|
+
doctype: string;
|
|
20
21
|
owner: string;
|
|
21
22
|
creation: string;
|
|
22
23
|
modified: string;
|
|
23
24
|
modified_by: string;
|
|
24
25
|
idx: number;
|
|
25
26
|
docstatus: number;
|
|
26
|
-
doctype: string;
|
|
27
27
|
delivery_address_name: string;
|
|
28
28
|
delivery_address: string;
|
|
29
29
|
delivery_customer: string;
|
|
@@ -43,6 +43,7 @@ export declare class ERPNextShipment {
|
|
|
43
43
|
shipment_amount: number;
|
|
44
44
|
shipment_delivery_note: {
|
|
45
45
|
name: string;
|
|
46
|
+
doctype: string;
|
|
46
47
|
owner: string;
|
|
47
48
|
creation: string;
|
|
48
49
|
modified: string;
|
|
@@ -52,7 +53,6 @@ export declare class ERPNextShipment {
|
|
|
52
53
|
parenttype: string;
|
|
53
54
|
idx: number;
|
|
54
55
|
docstatus: number;
|
|
55
|
-
doctype: string;
|
|
56
56
|
grand_total: number;
|
|
57
57
|
delivery_note: string;
|
|
58
58
|
__unsaved?: number | null | undefined;
|
|
@@ -60,6 +60,7 @@ export declare class ERPNextShipment {
|
|
|
60
60
|
shipment_parcel: {
|
|
61
61
|
length: number;
|
|
62
62
|
name: string;
|
|
63
|
+
doctype: string;
|
|
63
64
|
owner: string;
|
|
64
65
|
creation: string;
|
|
65
66
|
modified: string;
|
|
@@ -69,7 +70,6 @@ export declare class ERPNextShipment {
|
|
|
69
70
|
parenttype: string;
|
|
70
71
|
idx: number;
|
|
71
72
|
docstatus: number;
|
|
72
|
-
doctype: string;
|
|
73
73
|
width: number;
|
|
74
74
|
height: number;
|
|
75
75
|
weight: number;
|
|
@@ -116,13 +116,13 @@ export declare class ERPNextShipment {
|
|
|
116
116
|
}) => Promise<{
|
|
117
117
|
status: string;
|
|
118
118
|
name: string;
|
|
119
|
+
doctype: string;
|
|
119
120
|
owner: string;
|
|
120
121
|
creation: string;
|
|
121
122
|
modified: string;
|
|
122
123
|
modified_by: string;
|
|
123
124
|
idx: number;
|
|
124
125
|
docstatus: number;
|
|
125
|
-
doctype: string;
|
|
126
126
|
delivery_address_name: string;
|
|
127
127
|
delivery_address: string;
|
|
128
128
|
delivery_customer: string;
|
|
@@ -142,6 +142,7 @@ export declare class ERPNextShipment {
|
|
|
142
142
|
shipment_amount: number;
|
|
143
143
|
shipment_delivery_note: {
|
|
144
144
|
name: string;
|
|
145
|
+
doctype: string;
|
|
145
146
|
owner: string;
|
|
146
147
|
creation: string;
|
|
147
148
|
modified: string;
|
|
@@ -151,7 +152,6 @@ export declare class ERPNextShipment {
|
|
|
151
152
|
parenttype: string;
|
|
152
153
|
idx: number;
|
|
153
154
|
docstatus: number;
|
|
154
|
-
doctype: string;
|
|
155
155
|
grand_total: number;
|
|
156
156
|
delivery_note: string;
|
|
157
157
|
__unsaved?: number | null | undefined;
|
|
@@ -159,6 +159,7 @@ export declare class ERPNextShipment {
|
|
|
159
159
|
shipment_parcel: {
|
|
160
160
|
length: number;
|
|
161
161
|
name: string;
|
|
162
|
+
doctype: string;
|
|
162
163
|
owner: string;
|
|
163
164
|
creation: string;
|
|
164
165
|
modified: string;
|
|
@@ -168,7 +169,6 @@ export declare class ERPNextShipment {
|
|
|
168
169
|
parenttype: string;
|
|
169
170
|
idx: number;
|
|
170
171
|
docstatus: number;
|
|
171
|
-
doctype: string;
|
|
172
172
|
width: number;
|
|
173
173
|
height: number;
|
|
174
174
|
weight: number;
|
|
@@ -212,13 +212,13 @@ export declare class ERPNextShipment {
|
|
|
212
212
|
updateById: <TInput extends TInputModel extends undefined ? Partial<{
|
|
213
213
|
status: string;
|
|
214
214
|
name: string;
|
|
215
|
+
doctype: string;
|
|
215
216
|
owner: string;
|
|
216
217
|
creation: string;
|
|
217
218
|
modified: string;
|
|
218
219
|
modified_by: string;
|
|
219
220
|
idx: number;
|
|
220
221
|
docstatus: number;
|
|
221
|
-
doctype: string;
|
|
222
222
|
delivery_address_name: string;
|
|
223
223
|
delivery_address: string;
|
|
224
224
|
delivery_customer: string;
|
|
@@ -238,6 +238,7 @@ export declare class ERPNextShipment {
|
|
|
238
238
|
shipment_amount: number;
|
|
239
239
|
shipment_delivery_note: {
|
|
240
240
|
name: string;
|
|
241
|
+
doctype: string;
|
|
241
242
|
owner: string;
|
|
242
243
|
creation: string;
|
|
243
244
|
modified: string;
|
|
@@ -247,7 +248,6 @@ export declare class ERPNextShipment {
|
|
|
247
248
|
parenttype: string;
|
|
248
249
|
idx: number;
|
|
249
250
|
docstatus: number;
|
|
250
|
-
doctype: string;
|
|
251
251
|
grand_total: number;
|
|
252
252
|
delivery_note: string;
|
|
253
253
|
__unsaved?: number | null | undefined;
|
|
@@ -255,6 +255,7 @@ export declare class ERPNextShipment {
|
|
|
255
255
|
shipment_parcel: {
|
|
256
256
|
length: number;
|
|
257
257
|
name: string;
|
|
258
|
+
doctype: string;
|
|
258
259
|
owner: string;
|
|
259
260
|
creation: string;
|
|
260
261
|
modified: string;
|
|
@@ -264,7 +265,6 @@ export declare class ERPNextShipment {
|
|
|
264
265
|
parenttype: string;
|
|
265
266
|
idx: number;
|
|
266
267
|
docstatus: number;
|
|
267
|
-
doctype: string;
|
|
268
268
|
width: number;
|
|
269
269
|
height: number;
|
|
270
270
|
weight: number;
|
|
@@ -312,13 +312,13 @@ export declare class ERPNextShipment {
|
|
|
312
312
|
}) => Promise<{
|
|
313
313
|
status: string;
|
|
314
314
|
name: string;
|
|
315
|
+
doctype: string;
|
|
315
316
|
owner: string;
|
|
316
317
|
creation: string;
|
|
317
318
|
modified: string;
|
|
318
319
|
modified_by: string;
|
|
319
320
|
idx: number;
|
|
320
321
|
docstatus: number;
|
|
321
|
-
doctype: string;
|
|
322
322
|
delivery_address_name: string;
|
|
323
323
|
delivery_address: string;
|
|
324
324
|
delivery_customer: string;
|
|
@@ -338,6 +338,7 @@ export declare class ERPNextShipment {
|
|
|
338
338
|
shipment_amount: number;
|
|
339
339
|
shipment_delivery_note: {
|
|
340
340
|
name: string;
|
|
341
|
+
doctype: string;
|
|
341
342
|
owner: string;
|
|
342
343
|
creation: string;
|
|
343
344
|
modified: string;
|
|
@@ -347,7 +348,6 @@ export declare class ERPNextShipment {
|
|
|
347
348
|
parenttype: string;
|
|
348
349
|
idx: number;
|
|
349
350
|
docstatus: number;
|
|
350
|
-
doctype: string;
|
|
351
351
|
grand_total: number;
|
|
352
352
|
delivery_note: string;
|
|
353
353
|
__unsaved?: number | null | undefined;
|
|
@@ -355,6 +355,7 @@ export declare class ERPNextShipment {
|
|
|
355
355
|
shipment_parcel: {
|
|
356
356
|
length: number;
|
|
357
357
|
name: string;
|
|
358
|
+
doctype: string;
|
|
358
359
|
owner: string;
|
|
359
360
|
creation: string;
|
|
360
361
|
modified: string;
|
|
@@ -364,7 +365,6 @@ export declare class ERPNextShipment {
|
|
|
364
365
|
parenttype: string;
|
|
365
366
|
idx: number;
|
|
366
367
|
docstatus: number;
|
|
367
|
-
doctype: string;
|
|
368
368
|
width: number;
|
|
369
369
|
height: number;
|
|
370
370
|
weight: number;
|
|
@@ -412,13 +412,13 @@ export declare class ERPNextShipment {
|
|
|
412
412
|
create: <TInput extends TInputModel extends undefined ? Partial<{
|
|
413
413
|
status: string;
|
|
414
414
|
name: string;
|
|
415
|
+
doctype: string;
|
|
415
416
|
owner: string;
|
|
416
417
|
creation: string;
|
|
417
418
|
modified: string;
|
|
418
419
|
modified_by: string;
|
|
419
420
|
idx: number;
|
|
420
421
|
docstatus: number;
|
|
421
|
-
doctype: string;
|
|
422
422
|
delivery_address_name: string;
|
|
423
423
|
delivery_address: string;
|
|
424
424
|
delivery_customer: string;
|
|
@@ -438,6 +438,7 @@ export declare class ERPNextShipment {
|
|
|
438
438
|
shipment_amount: number;
|
|
439
439
|
shipment_delivery_note: {
|
|
440
440
|
name: string;
|
|
441
|
+
doctype: string;
|
|
441
442
|
owner: string;
|
|
442
443
|
creation: string;
|
|
443
444
|
modified: string;
|
|
@@ -447,7 +448,6 @@ export declare class ERPNextShipment {
|
|
|
447
448
|
parenttype: string;
|
|
448
449
|
idx: number;
|
|
449
450
|
docstatus: number;
|
|
450
|
-
doctype: string;
|
|
451
451
|
grand_total: number;
|
|
452
452
|
delivery_note: string;
|
|
453
453
|
__unsaved?: number | null | undefined;
|
|
@@ -455,6 +455,7 @@ export declare class ERPNextShipment {
|
|
|
455
455
|
shipment_parcel: {
|
|
456
456
|
length: number;
|
|
457
457
|
name: string;
|
|
458
|
+
doctype: string;
|
|
458
459
|
owner: string;
|
|
459
460
|
creation: string;
|
|
460
461
|
modified: string;
|
|
@@ -464,7 +465,6 @@ export declare class ERPNextShipment {
|
|
|
464
465
|
parenttype: string;
|
|
465
466
|
idx: number;
|
|
466
467
|
docstatus: number;
|
|
467
|
-
doctype: string;
|
|
468
468
|
width: number;
|
|
469
469
|
height: number;
|
|
470
470
|
weight: number;
|
|
@@ -511,13 +511,13 @@ export declare class ERPNextShipment {
|
|
|
511
511
|
}) => Promise<{
|
|
512
512
|
status: string;
|
|
513
513
|
name: string;
|
|
514
|
+
doctype: string;
|
|
514
515
|
owner: string;
|
|
515
516
|
creation: string;
|
|
516
517
|
modified: string;
|
|
517
518
|
modified_by: string;
|
|
518
519
|
idx: number;
|
|
519
520
|
docstatus: number;
|
|
520
|
-
doctype: string;
|
|
521
521
|
delivery_address_name: string;
|
|
522
522
|
delivery_address: string;
|
|
523
523
|
delivery_customer: string;
|
|
@@ -537,6 +537,7 @@ export declare class ERPNextShipment {
|
|
|
537
537
|
shipment_amount: number;
|
|
538
538
|
shipment_delivery_note: {
|
|
539
539
|
name: string;
|
|
540
|
+
doctype: string;
|
|
540
541
|
owner: string;
|
|
541
542
|
creation: string;
|
|
542
543
|
modified: string;
|
|
@@ -546,7 +547,6 @@ export declare class ERPNextShipment {
|
|
|
546
547
|
parenttype: string;
|
|
547
548
|
idx: number;
|
|
548
549
|
docstatus: number;
|
|
549
|
-
doctype: string;
|
|
550
550
|
grand_total: number;
|
|
551
551
|
delivery_note: string;
|
|
552
552
|
__unsaved?: number | null | undefined;
|
|
@@ -554,6 +554,7 @@ export declare class ERPNextShipment {
|
|
|
554
554
|
shipment_parcel: {
|
|
555
555
|
length: number;
|
|
556
556
|
name: string;
|
|
557
|
+
doctype: string;
|
|
557
558
|
owner: string;
|
|
558
559
|
creation: string;
|
|
559
560
|
modified: string;
|
|
@@ -563,7 +564,6 @@ export declare class ERPNextShipment {
|
|
|
563
564
|
parenttype: string;
|
|
564
565
|
idx: number;
|
|
565
566
|
docstatus: number;
|
|
566
|
-
doctype: string;
|
|
567
567
|
width: number;
|
|
568
568
|
height: number;
|
|
569
569
|
weight: number;
|
|
@@ -609,13 +609,13 @@ export declare class ERPNextShipment {
|
|
|
609
609
|
}) => Promise<{
|
|
610
610
|
status: string;
|
|
611
611
|
name: string;
|
|
612
|
+
doctype: string;
|
|
612
613
|
owner: string;
|
|
613
614
|
creation: string;
|
|
614
615
|
modified: string;
|
|
615
616
|
modified_by: string;
|
|
616
617
|
idx: number;
|
|
617
618
|
docstatus: number;
|
|
618
|
-
doctype: string;
|
|
619
619
|
delivery_address_name: string;
|
|
620
620
|
delivery_address: string;
|
|
621
621
|
delivery_customer: string;
|
|
@@ -635,6 +635,7 @@ export declare class ERPNextShipment {
|
|
|
635
635
|
shipment_amount: number;
|
|
636
636
|
shipment_delivery_note: {
|
|
637
637
|
name: string;
|
|
638
|
+
doctype: string;
|
|
638
639
|
owner: string;
|
|
639
640
|
creation: string;
|
|
640
641
|
modified: string;
|
|
@@ -644,7 +645,6 @@ export declare class ERPNextShipment {
|
|
|
644
645
|
parenttype: string;
|
|
645
646
|
idx: number;
|
|
646
647
|
docstatus: number;
|
|
647
|
-
doctype: string;
|
|
648
648
|
grand_total: number;
|
|
649
649
|
delivery_note: string;
|
|
650
650
|
__unsaved?: number | null | undefined;
|
|
@@ -652,6 +652,7 @@ export declare class ERPNextShipment {
|
|
|
652
652
|
shipment_parcel: {
|
|
653
653
|
length: number;
|
|
654
654
|
name: string;
|
|
655
|
+
doctype: string;
|
|
655
656
|
owner: string;
|
|
656
657
|
creation: string;
|
|
657
658
|
modified: string;
|
|
@@ -661,7 +662,6 @@ export declare class ERPNextShipment {
|
|
|
661
662
|
parenttype: string;
|
|
662
663
|
idx: number;
|
|
663
664
|
docstatus: number;
|
|
664
|
-
doctype: string;
|
|
665
665
|
width: number;
|
|
666
666
|
height: number;
|
|
667
667
|
weight: number;
|
|
@@ -707,13 +707,13 @@ export declare class ERPNextShipment {
|
|
|
707
707
|
}) => Promise<{
|
|
708
708
|
status: string;
|
|
709
709
|
name: string;
|
|
710
|
+
doctype: string;
|
|
710
711
|
owner: string;
|
|
711
712
|
creation: string;
|
|
712
713
|
modified: string;
|
|
713
714
|
modified_by: string;
|
|
714
715
|
idx: number;
|
|
715
716
|
docstatus: number;
|
|
716
|
-
doctype: string;
|
|
717
717
|
delivery_address_name: string;
|
|
718
718
|
delivery_address: string;
|
|
719
719
|
delivery_customer: string;
|
|
@@ -733,6 +733,7 @@ export declare class ERPNextShipment {
|
|
|
733
733
|
shipment_amount: number;
|
|
734
734
|
shipment_delivery_note: {
|
|
735
735
|
name: string;
|
|
736
|
+
doctype: string;
|
|
736
737
|
owner: string;
|
|
737
738
|
creation: string;
|
|
738
739
|
modified: string;
|
|
@@ -742,7 +743,6 @@ export declare class ERPNextShipment {
|
|
|
742
743
|
parenttype: string;
|
|
743
744
|
idx: number;
|
|
744
745
|
docstatus: number;
|
|
745
|
-
doctype: string;
|
|
746
746
|
grand_total: number;
|
|
747
747
|
delivery_note: string;
|
|
748
748
|
__unsaved?: number | null | undefined;
|
|
@@ -750,6 +750,7 @@ export declare class ERPNextShipment {
|
|
|
750
750
|
shipment_parcel: {
|
|
751
751
|
length: number;
|
|
752
752
|
name: string;
|
|
753
|
+
doctype: string;
|
|
753
754
|
owner: string;
|
|
754
755
|
creation: string;
|
|
755
756
|
modified: string;
|
|
@@ -759,7 +760,6 @@ export declare class ERPNextShipment {
|
|
|
759
760
|
parenttype: string;
|
|
760
761
|
idx: number;
|
|
761
762
|
docstatus: number;
|
|
762
|
-
doctype: string;
|
|
763
763
|
width: number;
|
|
764
764
|
height: number;
|
|
765
765
|
weight: number;
|
|
@@ -803,10 +803,10 @@ export declare class ERPNextShipment {
|
|
|
803
803
|
constructor(temporalClient: TemporalClient);
|
|
804
804
|
createShipmentDraft(deliveryNoteName: string): Promise<{
|
|
805
805
|
status: string;
|
|
806
|
+
doctype: string;
|
|
806
807
|
owner: string;
|
|
807
808
|
idx: number;
|
|
808
809
|
docstatus: number;
|
|
809
|
-
doctype: string;
|
|
810
810
|
delivery_address_name: string;
|
|
811
811
|
delivery_address: string;
|
|
812
812
|
delivery_customer: string;
|
|
@@ -824,12 +824,12 @@ export declare class ERPNextShipment {
|
|
|
824
824
|
pickup_type: string;
|
|
825
825
|
shipment_amount: number;
|
|
826
826
|
shipment_delivery_note: ({
|
|
827
|
+
doctype: string;
|
|
827
828
|
owner: string;
|
|
828
829
|
parentfield: string;
|
|
829
830
|
parenttype: string;
|
|
830
831
|
idx: number;
|
|
831
832
|
docstatus: number;
|
|
832
|
-
doctype: string;
|
|
833
833
|
grand_total: number;
|
|
834
834
|
delivery_note: string;
|
|
835
835
|
__unsaved?: number | null | undefined;
|
|
@@ -850,13 +850,13 @@ export declare class ERPNextShipment {
|
|
|
850
850
|
addShippingLabelAndSubmit(shipmentErpNextName: string, body: ShipmentAddShippingLabelAndSubmitBodyType): Promise<{
|
|
851
851
|
status: string;
|
|
852
852
|
name: string;
|
|
853
|
+
doctype: string;
|
|
853
854
|
owner: string;
|
|
854
855
|
creation: string;
|
|
855
856
|
modified: string;
|
|
856
857
|
modified_by: string;
|
|
857
858
|
idx: number;
|
|
858
859
|
docstatus: number;
|
|
859
|
-
doctype: string;
|
|
860
860
|
delivery_address_name: string;
|
|
861
861
|
delivery_address: string;
|
|
862
862
|
delivery_customer: string;
|
|
@@ -876,6 +876,7 @@ export declare class ERPNextShipment {
|
|
|
876
876
|
shipment_amount: number;
|
|
877
877
|
shipment_delivery_note: {
|
|
878
878
|
name: string;
|
|
879
|
+
doctype: string;
|
|
879
880
|
owner: string;
|
|
880
881
|
creation: string;
|
|
881
882
|
modified: string;
|
|
@@ -885,7 +886,6 @@ export declare class ERPNextShipment {
|
|
|
885
886
|
parenttype: string;
|
|
886
887
|
idx: number;
|
|
887
888
|
docstatus: number;
|
|
888
|
-
doctype: string;
|
|
889
889
|
grand_total: number;
|
|
890
890
|
delivery_note: string;
|
|
891
891
|
__unsaved?: number | null | undefined;
|
|
@@ -893,6 +893,7 @@ export declare class ERPNextShipment {
|
|
|
893
893
|
shipment_parcel: {
|
|
894
894
|
length: number;
|
|
895
895
|
name: string;
|
|
896
|
+
doctype: string;
|
|
896
897
|
owner: string;
|
|
897
898
|
creation: string;
|
|
898
899
|
modified: string;
|
|
@@ -902,7 +903,6 @@ export declare class ERPNextShipment {
|
|
|
902
903
|
parenttype: string;
|
|
903
904
|
idx: number;
|
|
904
905
|
docstatus: number;
|
|
905
|
-
doctype: string;
|
|
906
906
|
width: number;
|
|
907
907
|
height: number;
|
|
908
908
|
weight: number;
|
|
@@ -15,6 +15,7 @@ export declare const Account: z.ZodObject<{
|
|
|
15
15
|
doctype: z.ZodString;
|
|
16
16
|
}, "strip", z.ZodTypeAny, {
|
|
17
17
|
name: string;
|
|
18
|
+
doctype: string;
|
|
18
19
|
owner: string;
|
|
19
20
|
creation: string;
|
|
20
21
|
modified: string;
|
|
@@ -24,11 +25,11 @@ export declare const Account: z.ZodObject<{
|
|
|
24
25
|
parenttype: string;
|
|
25
26
|
idx: number;
|
|
26
27
|
docstatus: number;
|
|
27
|
-
doctype: string;
|
|
28
28
|
company: string;
|
|
29
29
|
account: string;
|
|
30
30
|
}, {
|
|
31
31
|
name: string;
|
|
32
|
+
doctype: string;
|
|
32
33
|
owner: string;
|
|
33
34
|
creation: string;
|
|
34
35
|
modified: string;
|
|
@@ -38,7 +39,6 @@ export declare const Account: z.ZodObject<{
|
|
|
38
39
|
parenttype: string;
|
|
39
40
|
idx: number;
|
|
40
41
|
docstatus: number;
|
|
41
|
-
doctype: string;
|
|
42
42
|
company: string;
|
|
43
43
|
account: string;
|
|
44
44
|
}>;
|
|
@@ -106,6 +106,7 @@ export declare const Address: z.ZodObject<{
|
|
|
106
106
|
doctype: z.ZodString;
|
|
107
107
|
}, "strip", z.ZodTypeAny, {
|
|
108
108
|
name: string;
|
|
109
|
+
doctype: string;
|
|
109
110
|
link_doctype: string;
|
|
110
111
|
link_name: string;
|
|
111
112
|
owner: string;
|
|
@@ -118,9 +119,9 @@ export declare const Address: z.ZodObject<{
|
|
|
118
119
|
idx: number;
|
|
119
120
|
docstatus: number;
|
|
120
121
|
link_title: string;
|
|
121
|
-
doctype: string;
|
|
122
122
|
}, {
|
|
123
123
|
name: string;
|
|
124
|
+
doctype: string;
|
|
124
125
|
link_doctype: string;
|
|
125
126
|
link_name: string;
|
|
126
127
|
owner: string;
|
|
@@ -133,10 +134,10 @@ export declare const Address: z.ZodObject<{
|
|
|
133
134
|
idx: number;
|
|
134
135
|
docstatus: number;
|
|
135
136
|
link_title: string;
|
|
136
|
-
doctype: string;
|
|
137
137
|
}>, "many">;
|
|
138
138
|
}, "strip", z.ZodTypeAny, {
|
|
139
139
|
name: string;
|
|
140
|
+
doctype: string;
|
|
140
141
|
address_title: string;
|
|
141
142
|
address_line1: string;
|
|
142
143
|
address_type: string;
|
|
@@ -146,6 +147,7 @@ export declare const Address: z.ZodObject<{
|
|
|
146
147
|
is_shipping_address: boolean;
|
|
147
148
|
links: {
|
|
148
149
|
name: string;
|
|
150
|
+
doctype: string;
|
|
149
151
|
link_doctype: string;
|
|
150
152
|
link_name: string;
|
|
151
153
|
owner: string;
|
|
@@ -158,7 +160,6 @@ export declare const Address: z.ZodObject<{
|
|
|
158
160
|
idx: number;
|
|
159
161
|
docstatus: number;
|
|
160
162
|
link_title: string;
|
|
161
|
-
doctype: string;
|
|
162
163
|
}[];
|
|
163
164
|
owner: string;
|
|
164
165
|
creation: string;
|
|
@@ -166,7 +167,6 @@ export declare const Address: z.ZodObject<{
|
|
|
166
167
|
modified_by: string;
|
|
167
168
|
idx: number;
|
|
168
169
|
docstatus: number;
|
|
169
|
-
doctype: string;
|
|
170
170
|
is_primary_address: boolean;
|
|
171
171
|
is_your_company_address: boolean;
|
|
172
172
|
disabled: boolean;
|
|
@@ -183,6 +183,7 @@ export declare const Address: z.ZodObject<{
|
|
|
183
183
|
county?: string | null | undefined;
|
|
184
184
|
}, {
|
|
185
185
|
name: string;
|
|
186
|
+
doctype: string;
|
|
186
187
|
address_title: string;
|
|
187
188
|
address_line1: string;
|
|
188
189
|
address_type: string;
|
|
@@ -191,6 +192,7 @@ export declare const Address: z.ZodObject<{
|
|
|
191
192
|
is_shipping_address: number;
|
|
192
193
|
links: {
|
|
193
194
|
name: string;
|
|
195
|
+
doctype: string;
|
|
194
196
|
link_doctype: string;
|
|
195
197
|
link_name: string;
|
|
196
198
|
owner: string;
|
|
@@ -203,7 +205,6 @@ export declare const Address: z.ZodObject<{
|
|
|
203
205
|
idx: number;
|
|
204
206
|
docstatus: number;
|
|
205
207
|
link_title: string;
|
|
206
|
-
doctype: string;
|
|
207
208
|
}[];
|
|
208
209
|
owner: string;
|
|
209
210
|
creation: string;
|
|
@@ -211,7 +212,6 @@ export declare const Address: z.ZodObject<{
|
|
|
211
212
|
modified_by: string;
|
|
212
213
|
idx: number;
|
|
213
214
|
docstatus: number;
|
|
214
|
-
doctype: string;
|
|
215
215
|
is_primary_address: number;
|
|
216
216
|
is_your_company_address: number;
|
|
217
217
|
disabled: number;
|
|
@@ -275,6 +275,7 @@ export declare const AddressListName: z.ZodArray<z.ZodObject<Pick<{
|
|
|
275
275
|
doctype: z.ZodString;
|
|
276
276
|
}, "strip", z.ZodTypeAny, {
|
|
277
277
|
name: string;
|
|
278
|
+
doctype: string;
|
|
278
279
|
link_doctype: string;
|
|
279
280
|
link_name: string;
|
|
280
281
|
owner: string;
|
|
@@ -287,9 +288,9 @@ export declare const AddressListName: z.ZodArray<z.ZodObject<Pick<{
|
|
|
287
288
|
idx: number;
|
|
288
289
|
docstatus: number;
|
|
289
290
|
link_title: string;
|
|
290
|
-
doctype: string;
|
|
291
291
|
}, {
|
|
292
292
|
name: string;
|
|
293
|
+
doctype: string;
|
|
293
294
|
link_doctype: string;
|
|
294
295
|
link_name: string;
|
|
295
296
|
owner: string;
|
|
@@ -302,7 +303,6 @@ export declare const AddressListName: z.ZodArray<z.ZodObject<Pick<{
|
|
|
302
303
|
idx: number;
|
|
303
304
|
docstatus: number;
|
|
304
305
|
link_title: string;
|
|
305
|
-
doctype: string;
|
|
306
306
|
}>, "many">;
|
|
307
307
|
}, "name">, "strip", z.ZodTypeAny, {
|
|
308
308
|
name: string;
|