erpnext-queue-client 1.5.4 → 1.7.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.
Files changed (34) hide show
  1. package/dist/client.js +1 -1
  2. package/dist/erpnext/doctypeResourceRequest.d.ts +1 -1
  3. package/dist/erpnext/doctypes/address.d.ts +14 -14
  4. package/dist/erpnext/doctypes/contact.d.ts +26 -26
  5. package/dist/erpnext/doctypes/deliveryNote.d.ts +16 -16
  6. package/dist/erpnext/doctypes/item.d.ts +26 -26
  7. package/dist/erpnext/doctypes/purchaseInvoice.d.ts +34 -34
  8. package/dist/erpnext/doctypes/purchaseReceipt.d.ts +20 -20
  9. package/dist/erpnext/doctypes/shipment.d.ts +31 -31
  10. package/dist/erpnext/model/Account.d.ts +2 -2
  11. package/dist/erpnext/model/Address.d.ts +8 -8
  12. package/dist/erpnext/model/Contact.d.ts +20 -20
  13. package/dist/erpnext/model/Country.d.ts +2 -2
  14. package/dist/erpnext/model/Customer.d.ts +2 -2
  15. package/dist/erpnext/model/DeliveryNote.d.ts +12 -12
  16. package/dist/erpnext/model/DispatchRun.d.ts +25 -25
  17. package/dist/erpnext/model/DispatcherPreset.d.ts +8 -8
  18. package/dist/erpnext/model/File.d.ts +4 -4
  19. package/dist/erpnext/model/Fulfiller.d.ts +2 -2
  20. package/dist/erpnext/model/Item.d.ts +44 -44
  21. package/dist/erpnext/model/PaymentEntry.d.ts +2 -2
  22. package/dist/erpnext/model/ProductBundle.d.ts +6 -6
  23. package/dist/erpnext/model/PurchaseInvoice.d.ts +26 -26
  24. package/dist/erpnext/model/PurchaseOrder.d.ts +10 -10
  25. package/dist/erpnext/model/Receipt.d.ts +6 -6
  26. package/dist/erpnext/model/ReceiptDraft.d.ts +4 -4
  27. package/dist/erpnext/model/Shipment.d.ts +32 -32
  28. package/dist/erpnext/model/ShippingProvider.d.ts +2 -2
  29. package/dist/erpnext/model/StockEntry.d.ts +2 -2
  30. package/dist/erpnext/model/StockReconciliation.d.ts +2 -2
  31. package/dist/erpnext/model/Supplier.d.ts +6 -6
  32. package/dist/erpnext/resourceRequest.d.ts +1 -1
  33. package/dist/erpnext/resourceRequest.js +38 -14
  34. package/package.json +1 -1
@@ -8,7 +8,7 @@ export declare class ERPNextPurchaseInvoice {
8
8
  protected methodRequest: ERPNextMethodRequest;
9
9
  getList: <TField extends ("name" | "owner" | "idx" | "docstatus" | "taxes" | "payment_schedule") | ("status" | "doctype" | "tax_category" | "__onload" | "company" | "naming_series" | "supplier_name" | "is_internal_supplier" | "on_hold" | "language" | "items" | "discount_amount" | "pricing_rules" | "__unsaved" | "posting_date" | "posting_time" | "set_posting_time" | "is_return" | "shipping_address" | "currency" | "conversion_rate" | "price_list_currency" | "plc_conversion_rate" | "ignore_pricing_rule" | "total_qty" | "base_total" | "base_net_total" | "total_net_weight" | "total" | "net_total" | "other_charges_calculation" | "base_total_taxes_and_charges" | "total_taxes_and_charges" | "apply_discount_on" | "base_discount_amount" | "additional_discount_percentage" | "base_grand_total" | "base_rounding_adjustment" | "base_rounded_total" | "base_in_words" | "grand_total" | "rounding_adjustment" | "rounded_total" | "in_words" | "disable_rounded_total" | "group_same_items" | "supplier" | "due_date" | "paid_amount" | "__islocal" | "bill_id" | "is_paid" | "apply_tds" | "bill_no" | "shipping_address_display" | "billing_address" | "billing_address_display" | "buying_price_list" | "is_subcontracted" | "update_stock" | "base_taxes_and_charges_added" | "base_taxes_and_charges_deducted" | "taxes_and_charges_added" | "taxes_and_charges_deducted" | "total_advance" | "outstanding_amount" | "base_paid_amount" | "write_off_amount" | "base_write_off_amount" | "allocate_advances_automatically" | "payment_terms_template" | "ignore_default_payment_terms_template" | "credit_to" | "party_account_currency" | "is_opening" | "per_received" | "supplied_items" | "advances" | "advance_tax" | "remarks"), TAsDict extends boolean | undefined = undefined>({ fields, filters, skip, limit, priority, asDict, params, }?: {
10
10
  fields?: TField[] | undefined;
11
- filters?: string[][];
11
+ filters?: (string | string[])[][];
12
12
  skip?: number;
13
13
  limit?: number;
14
14
  priority?: number;
@@ -24,9 +24,9 @@ export declare class ERPNextPurchaseInvoice {
24
24
  idx: number;
25
25
  docstatus: number;
26
26
  description?: string | null | undefined;
27
+ doctype?: string | null | undefined;
27
28
  parentfield?: string | null | undefined;
28
29
  parenttype?: string | null | undefined;
29
- doctype?: string | null | undefined;
30
30
  rate?: number | null | undefined;
31
31
  cost_center?: string | null | undefined;
32
32
  __unsaved?: number | null | undefined;
@@ -47,11 +47,11 @@ export declare class ERPNextPurchaseInvoice {
47
47
  item_wise_tax_detail?: string | null | undefined;
48
48
  }[];
49
49
  payment_schedule: {
50
+ doctype?: string | null | undefined;
50
51
  parentfield?: string | null | undefined;
51
52
  parenttype?: string | null | undefined;
52
53
  idx?: number | null | undefined;
53
54
  docstatus?: number | null | undefined;
54
- doctype?: string | null | undefined;
55
55
  due_date?: string | null | undefined;
56
56
  invoice_portion?: number | null | undefined;
57
57
  discount?: number | null | undefined;
@@ -86,11 +86,11 @@ export declare class ERPNextPurchaseInvoice {
86
86
  allow_zero_valuation_rate: number;
87
87
  include_exploded_items: number;
88
88
  description?: string | null | undefined;
89
+ doctype?: string | null | undefined;
89
90
  owner?: string | null | undefined;
90
91
  parentfield?: string | null | undefined;
91
92
  parenttype?: string | null | undefined;
92
93
  docstatus?: number | null | undefined;
93
- doctype?: string | null | undefined;
94
94
  image?: string | null | undefined;
95
95
  item_name?: string | null | undefined;
96
96
  item_group?: string | null | undefined;
@@ -221,9 +221,9 @@ export declare class ERPNextPurchaseInvoice {
221
221
  idx: number;
222
222
  docstatus: number;
223
223
  description?: string | null | undefined;
224
+ doctype?: string | null | undefined;
224
225
  parentfield?: string | null | undefined;
225
226
  parenttype?: string | null | undefined;
226
- doctype?: string | null | undefined;
227
227
  rate?: number | null | undefined;
228
228
  cost_center?: string | null | undefined;
229
229
  __unsaved?: number | null | undefined;
@@ -244,11 +244,11 @@ export declare class ERPNextPurchaseInvoice {
244
244
  item_wise_tax_detail?: string | null | undefined;
245
245
  }[];
246
246
  payment_schedule: {
247
+ doctype?: string | null | undefined;
247
248
  parentfield?: string | null | undefined;
248
249
  parenttype?: string | null | undefined;
249
250
  idx?: number | null | undefined;
250
251
  docstatus?: number | null | undefined;
251
- doctype?: string | null | undefined;
252
252
  due_date?: string | null | undefined;
253
253
  invoice_portion?: number | null | undefined;
254
254
  discount?: number | null | undefined;
@@ -283,11 +283,11 @@ export declare class ERPNextPurchaseInvoice {
283
283
  allow_zero_valuation_rate: number;
284
284
  include_exploded_items: number;
285
285
  description?: string | null | undefined;
286
+ doctype?: string | null | undefined;
286
287
  owner?: string | null | undefined;
287
288
  parentfield?: string | null | undefined;
288
289
  parenttype?: string | null | undefined;
289
290
  docstatus?: number | null | undefined;
290
- doctype?: string | null | undefined;
291
291
  image?: string | null | undefined;
292
292
  item_name?: string | null | undefined;
293
293
  item_group?: string | null | undefined;
@@ -415,9 +415,9 @@ export declare class ERPNextPurchaseInvoice {
415
415
  idx: number;
416
416
  docstatus: number;
417
417
  description?: string | null | undefined;
418
+ doctype?: string | null | undefined;
418
419
  parentfield?: string | null | undefined;
419
420
  parenttype?: string | null | undefined;
420
- doctype?: string | null | undefined;
421
421
  rate?: number | null | undefined;
422
422
  cost_center?: string | null | undefined;
423
423
  __unsaved?: number | null | undefined;
@@ -438,11 +438,11 @@ export declare class ERPNextPurchaseInvoice {
438
438
  item_wise_tax_detail?: string | null | undefined;
439
439
  }[];
440
440
  payment_schedule: {
441
+ doctype?: string | null | undefined;
441
442
  parentfield?: string | null | undefined;
442
443
  parenttype?: string | null | undefined;
443
444
  idx?: number | null | undefined;
444
445
  docstatus?: number | null | undefined;
445
- doctype?: string | null | undefined;
446
446
  due_date?: string | null | undefined;
447
447
  invoice_portion?: number | null | undefined;
448
448
  discount?: number | null | undefined;
@@ -477,11 +477,11 @@ export declare class ERPNextPurchaseInvoice {
477
477
  allow_zero_valuation_rate: number;
478
478
  include_exploded_items: number;
479
479
  description?: string | null | undefined;
480
+ doctype?: string | null | undefined;
480
481
  owner?: string | null | undefined;
481
482
  parentfield?: string | null | undefined;
482
483
  parenttype?: string | null | undefined;
483
484
  docstatus?: number | null | undefined;
484
- doctype?: string | null | undefined;
485
485
  image?: string | null | undefined;
486
486
  item_name?: string | null | undefined;
487
487
  item_group?: string | null | undefined;
@@ -613,9 +613,9 @@ export declare class ERPNextPurchaseInvoice {
613
613
  idx: number;
614
614
  docstatus: number;
615
615
  description?: string | null | undefined;
616
+ doctype?: string | null | undefined;
616
617
  parentfield?: string | null | undefined;
617
618
  parenttype?: string | null | undefined;
618
- doctype?: string | null | undefined;
619
619
  rate?: number | null | undefined;
620
620
  cost_center?: string | null | undefined;
621
621
  __unsaved?: number | null | undefined;
@@ -636,11 +636,11 @@ export declare class ERPNextPurchaseInvoice {
636
636
  item_wise_tax_detail?: string | null | undefined;
637
637
  }[];
638
638
  payment_schedule: {
639
+ doctype?: string | null | undefined;
639
640
  parentfield?: string | null | undefined;
640
641
  parenttype?: string | null | undefined;
641
642
  idx?: number | null | undefined;
642
643
  docstatus?: number | null | undefined;
643
- doctype?: string | null | undefined;
644
644
  due_date?: string | null | undefined;
645
645
  invoice_portion?: number | null | undefined;
646
646
  discount?: number | null | undefined;
@@ -675,11 +675,11 @@ export declare class ERPNextPurchaseInvoice {
675
675
  allow_zero_valuation_rate: number;
676
676
  include_exploded_items: number;
677
677
  description?: string | null | undefined;
678
+ doctype?: string | null | undefined;
678
679
  owner?: string | null | undefined;
679
680
  parentfield?: string | null | undefined;
680
681
  parenttype?: string | null | undefined;
681
682
  docstatus?: number | null | undefined;
682
- doctype?: string | null | undefined;
683
683
  image?: string | null | undefined;
684
684
  item_name?: string | null | undefined;
685
685
  item_group?: string | null | undefined;
@@ -813,9 +813,9 @@ export declare class ERPNextPurchaseInvoice {
813
813
  idx: number;
814
814
  docstatus: number;
815
815
  description?: string | null | undefined;
816
+ doctype?: string | null | undefined;
816
817
  parentfield?: string | null | undefined;
817
818
  parenttype?: string | null | undefined;
818
- doctype?: string | null | undefined;
819
819
  rate?: number | null | undefined;
820
820
  cost_center?: string | null | undefined;
821
821
  __unsaved?: number | null | undefined;
@@ -836,11 +836,11 @@ export declare class ERPNextPurchaseInvoice {
836
836
  item_wise_tax_detail?: string | null | undefined;
837
837
  }[];
838
838
  payment_schedule: {
839
+ doctype?: string | null | undefined;
839
840
  parentfield?: string | null | undefined;
840
841
  parenttype?: string | null | undefined;
841
842
  idx?: number | null | undefined;
842
843
  docstatus?: number | null | undefined;
843
- doctype?: string | null | undefined;
844
844
  due_date?: string | null | undefined;
845
845
  invoice_portion?: number | null | undefined;
846
846
  discount?: number | null | undefined;
@@ -875,11 +875,11 @@ export declare class ERPNextPurchaseInvoice {
875
875
  allow_zero_valuation_rate: number;
876
876
  include_exploded_items: number;
877
877
  description?: string | null | undefined;
878
+ doctype?: string | null | undefined;
878
879
  owner?: string | null | undefined;
879
880
  parentfield?: string | null | undefined;
880
881
  parenttype?: string | null | undefined;
881
882
  docstatus?: number | null | undefined;
882
- doctype?: string | null | undefined;
883
883
  image?: string | null | undefined;
884
884
  item_name?: string | null | undefined;
885
885
  item_group?: string | null | undefined;
@@ -1009,9 +1009,9 @@ export declare class ERPNextPurchaseInvoice {
1009
1009
  idx: number;
1010
1010
  docstatus: number;
1011
1011
  description?: string | null | undefined;
1012
+ doctype?: string | null | undefined;
1012
1013
  parentfield?: string | null | undefined;
1013
1014
  parenttype?: string | null | undefined;
1014
- doctype?: string | null | undefined;
1015
1015
  rate?: number | null | undefined;
1016
1016
  cost_center?: string | null | undefined;
1017
1017
  __unsaved?: number | null | undefined;
@@ -1032,11 +1032,11 @@ export declare class ERPNextPurchaseInvoice {
1032
1032
  item_wise_tax_detail?: string | null | undefined;
1033
1033
  }[];
1034
1034
  payment_schedule: {
1035
+ doctype?: string | null | undefined;
1035
1036
  parentfield?: string | null | undefined;
1036
1037
  parenttype?: string | null | undefined;
1037
1038
  idx?: number | null | undefined;
1038
1039
  docstatus?: number | null | undefined;
1039
- doctype?: string | null | undefined;
1040
1040
  due_date?: string | null | undefined;
1041
1041
  invoice_portion?: number | null | undefined;
1042
1042
  discount?: number | null | undefined;
@@ -1071,11 +1071,11 @@ export declare class ERPNextPurchaseInvoice {
1071
1071
  allow_zero_valuation_rate: number;
1072
1072
  include_exploded_items: number;
1073
1073
  description?: string | null | undefined;
1074
+ doctype?: string | null | undefined;
1074
1075
  owner?: string | null | undefined;
1075
1076
  parentfield?: string | null | undefined;
1076
1077
  parenttype?: string | null | undefined;
1077
1078
  docstatus?: number | null | undefined;
1078
- doctype?: string | null | undefined;
1079
1079
  image?: string | null | undefined;
1080
1080
  item_name?: string | null | undefined;
1081
1081
  item_group?: string | null | undefined;
@@ -1204,9 +1204,9 @@ export declare class ERPNextPurchaseInvoice {
1204
1204
  idx: number;
1205
1205
  docstatus: number;
1206
1206
  description?: string | null | undefined;
1207
+ doctype?: string | null | undefined;
1207
1208
  parentfield?: string | null | undefined;
1208
1209
  parenttype?: string | null | undefined;
1209
- doctype?: string | null | undefined;
1210
1210
  rate?: number | null | undefined;
1211
1211
  cost_center?: string | null | undefined;
1212
1212
  __unsaved?: number | null | undefined;
@@ -1227,11 +1227,11 @@ export declare class ERPNextPurchaseInvoice {
1227
1227
  item_wise_tax_detail?: string | null | undefined;
1228
1228
  }[];
1229
1229
  payment_schedule: {
1230
+ doctype?: string | null | undefined;
1230
1231
  parentfield?: string | null | undefined;
1231
1232
  parenttype?: string | null | undefined;
1232
1233
  idx?: number | null | undefined;
1233
1234
  docstatus?: number | null | undefined;
1234
- doctype?: string | null | undefined;
1235
1235
  due_date?: string | null | undefined;
1236
1236
  invoice_portion?: number | null | undefined;
1237
1237
  discount?: number | null | undefined;
@@ -1266,11 +1266,11 @@ export declare class ERPNextPurchaseInvoice {
1266
1266
  allow_zero_valuation_rate: number;
1267
1267
  include_exploded_items: number;
1268
1268
  description?: string | null | undefined;
1269
+ doctype?: string | null | undefined;
1269
1270
  owner?: string | null | undefined;
1270
1271
  parentfield?: string | null | undefined;
1271
1272
  parenttype?: string | null | undefined;
1272
1273
  docstatus?: number | null | undefined;
1273
- doctype?: string | null | undefined;
1274
1274
  image?: string | null | undefined;
1275
1275
  item_name?: string | null | undefined;
1276
1276
  item_group?: string | null | undefined;
@@ -1397,9 +1397,9 @@ export declare class ERPNextPurchaseInvoice {
1397
1397
  idx: number;
1398
1398
  docstatus: number;
1399
1399
  description?: string | null | undefined;
1400
+ doctype?: string | null | undefined;
1400
1401
  parentfield?: string | null | undefined;
1401
1402
  parenttype?: string | null | undefined;
1402
- doctype?: string | null | undefined;
1403
1403
  rate?: number | null | undefined;
1404
1404
  cost_center?: string | null | undefined;
1405
1405
  __unsaved?: number | null | undefined;
@@ -1420,11 +1420,11 @@ export declare class ERPNextPurchaseInvoice {
1420
1420
  item_wise_tax_detail?: string | null | undefined;
1421
1421
  }[];
1422
1422
  payment_schedule: {
1423
+ doctype?: string | null | undefined;
1423
1424
  parentfield?: string | null | undefined;
1424
1425
  parenttype?: string | null | undefined;
1425
1426
  idx?: number | null | undefined;
1426
1427
  docstatus?: number | null | undefined;
1427
- doctype?: string | null | undefined;
1428
1428
  due_date?: string | null | undefined;
1429
1429
  invoice_portion?: number | null | undefined;
1430
1430
  discount?: number | null | undefined;
@@ -1459,11 +1459,11 @@ export declare class ERPNextPurchaseInvoice {
1459
1459
  allow_zero_valuation_rate: number;
1460
1460
  include_exploded_items: number;
1461
1461
  description?: string | null | undefined;
1462
+ doctype?: string | null | undefined;
1462
1463
  owner?: string | null | undefined;
1463
1464
  parentfield?: string | null | undefined;
1464
1465
  parenttype?: string | null | undefined;
1465
1466
  docstatus?: number | null | undefined;
1466
- doctype?: string | null | undefined;
1467
1467
  image?: string | null | undefined;
1468
1468
  item_name?: string | null | undefined;
1469
1469
  item_group?: string | null | undefined;
@@ -1591,9 +1591,9 @@ export declare class ERPNextPurchaseInvoice {
1591
1591
  idx: number;
1592
1592
  docstatus: number;
1593
1593
  description?: string | null | undefined;
1594
+ doctype?: string | null | undefined;
1594
1595
  parentfield?: string | null | undefined;
1595
1596
  parenttype?: string | null | undefined;
1596
- doctype?: string | null | undefined;
1597
1597
  rate?: number | null | undefined;
1598
1598
  cost_center?: string | null | undefined;
1599
1599
  __unsaved?: number | null | undefined;
@@ -1614,11 +1614,11 @@ export declare class ERPNextPurchaseInvoice {
1614
1614
  item_wise_tax_detail?: string | null | undefined;
1615
1615
  }[];
1616
1616
  payment_schedule: {
1617
+ doctype?: string | null | undefined;
1617
1618
  parentfield?: string | null | undefined;
1618
1619
  parenttype?: string | null | undefined;
1619
1620
  idx?: number | null | undefined;
1620
1621
  docstatus?: number | null | undefined;
1621
- doctype?: string | null | undefined;
1622
1622
  due_date?: string | null | undefined;
1623
1623
  invoice_portion?: number | null | undefined;
1624
1624
  discount?: number | null | undefined;
@@ -1653,11 +1653,11 @@ export declare class ERPNextPurchaseInvoice {
1653
1653
  allow_zero_valuation_rate: number;
1654
1654
  include_exploded_items: number;
1655
1655
  description?: string | null | undefined;
1656
+ doctype?: string | null | undefined;
1656
1657
  owner?: string | null | undefined;
1657
1658
  parentfield?: string | null | undefined;
1658
1659
  parenttype?: string | null | undefined;
1659
1660
  docstatus?: number | null | undefined;
1660
- doctype?: string | null | undefined;
1661
1661
  image?: string | null | undefined;
1662
1662
  item_name?: string | null | undefined;
1663
1663
  item_group?: string | null | undefined;
@@ -1784,9 +1784,9 @@ export declare class ERPNextPurchaseInvoice {
1784
1784
  idx: number;
1785
1785
  docstatus: number;
1786
1786
  description?: string | null | undefined;
1787
+ doctype?: string | null | undefined;
1787
1788
  parentfield?: string | null | undefined;
1788
1789
  parenttype?: string | null | undefined;
1789
- doctype?: string | null | undefined;
1790
1790
  rate?: number | null | undefined;
1791
1791
  cost_center?: string | null | undefined;
1792
1792
  __unsaved?: number | null | undefined;
@@ -1807,11 +1807,11 @@ export declare class ERPNextPurchaseInvoice {
1807
1807
  item_wise_tax_detail?: string | null | undefined;
1808
1808
  }[];
1809
1809
  payment_schedule: {
1810
+ doctype?: string | null | undefined;
1810
1811
  parentfield?: string | null | undefined;
1811
1812
  parenttype?: string | null | undefined;
1812
1813
  idx?: number | null | undefined;
1813
1814
  docstatus?: number | null | undefined;
1814
- doctype?: string | null | undefined;
1815
1815
  due_date?: string | null | undefined;
1816
1816
  invoice_portion?: number | null | undefined;
1817
1817
  discount?: number | null | undefined;
@@ -1846,11 +1846,11 @@ export declare class ERPNextPurchaseInvoice {
1846
1846
  allow_zero_valuation_rate: number;
1847
1847
  include_exploded_items: number;
1848
1848
  description?: string | null | undefined;
1849
+ doctype?: string | null | undefined;
1849
1850
  owner?: string | null | undefined;
1850
1851
  parentfield?: string | null | undefined;
1851
1852
  parenttype?: string | null | undefined;
1852
1853
  docstatus?: number | null | undefined;
1853
- doctype?: string | null | undefined;
1854
1854
  image?: string | null | undefined;
1855
1855
  item_name?: string | null | undefined;
1856
1856
  item_group?: string | null | undefined;
@@ -1978,9 +1978,9 @@ export declare class ERPNextPurchaseInvoice {
1978
1978
  idx: number;
1979
1979
  docstatus: number;
1980
1980
  description?: string | null | undefined;
1981
+ doctype?: string | null | undefined;
1981
1982
  parentfield?: string | null | undefined;
1982
1983
  parenttype?: string | null | undefined;
1983
- doctype?: string | null | undefined;
1984
1984
  rate?: number | null | undefined;
1985
1985
  cost_center?: string | null | undefined;
1986
1986
  __unsaved?: number | null | undefined;
@@ -2001,11 +2001,11 @@ export declare class ERPNextPurchaseInvoice {
2001
2001
  item_wise_tax_detail?: string | null | undefined;
2002
2002
  }[];
2003
2003
  payment_schedule: {
2004
+ doctype?: string | null | undefined;
2004
2005
  parentfield?: string | null | undefined;
2005
2006
  parenttype?: string | null | undefined;
2006
2007
  idx?: number | null | undefined;
2007
2008
  docstatus?: number | null | undefined;
2008
- doctype?: string | null | undefined;
2009
2009
  due_date?: string | null | undefined;
2010
2010
  invoice_portion?: number | null | undefined;
2011
2011
  discount?: number | null | undefined;
@@ -2040,11 +2040,11 @@ export declare class ERPNextPurchaseInvoice {
2040
2040
  allow_zero_valuation_rate: number;
2041
2041
  include_exploded_items: number;
2042
2042
  description?: string | null | undefined;
2043
+ doctype?: string | null | undefined;
2043
2044
  owner?: string | null | undefined;
2044
2045
  parentfield?: string | null | undefined;
2045
2046
  parenttype?: string | null | undefined;
2046
2047
  docstatus?: number | null | undefined;
2047
- doctype?: string | null | undefined;
2048
2048
  image?: string | null | undefined;
2049
2049
  item_name?: string | null | undefined;
2050
2050
  item_group?: string | null | undefined;
@@ -6,9 +6,9 @@ export declare class ERPNextPurchaseReceipt {
6
6
  protected temporalClient: TemporalClient;
7
7
  protected baseRequest: ERPNextDoctypeSubmittableResourceRequest<typeof PurchaseReceipt>;
8
8
  protected methodRequest: ERPNextMethodRequest;
9
- getList: <TField extends ("status" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "docstatus" | "doctype" | "company" | "naming_series" | "items" | "pricing_rules" | "posting_date" | "posting_time" | "set_posting_time" | "currency" | "conversion_rate" | "base_net_total" | "taxes" | "supplier" | "is_subcontracted" | "supplied_items") | ("parent" | "parentfield" | "parenttype" | "tax_category" | "__onload" | "supplier_name" | "is_internal_supplier" | "language" | "discount_amount" | "cost_center" | "project" | "title" | "amended_from" | "is_return" | "return_against" | "shipping_address" | "contact_person" | "contact_display" | "contact_mobile" | "contact_email" | "address_display" | "price_list_currency" | "plc_conversion_rate" | "ignore_pricing_rule" | "set_warehouse" | "scan_barcode" | "total_qty" | "base_total" | "total_net_weight" | "total" | "net_total" | "shipping_rule" | "taxes_and_charges" | "other_charges_calculation" | "base_total_taxes_and_charges" | "total_taxes_and_charges" | "apply_discount_on" | "base_discount_amount" | "additional_discount_percentage" | "base_grand_total" | "base_rounding_adjustment" | "base_rounded_total" | "base_in_words" | "grand_total" | "rounding_adjustment" | "rounded_total" | "in_words" | "disable_rounded_total" | "tc_name" | "terms" | "lr_no" | "transporter_name" | "lr_date" | "represents_company" | "inter_company_reference" | "per_billed" | "letter_head" | "select_print_heading" | "group_same_items" | "per_returned" | "instructions" | "auto_repeat" | "shipping_address_display" | "billing_address" | "billing_address_display" | "buying_price_list" | "base_taxes_and_charges_added" | "base_taxes_and_charges_deducted" | "taxes_and_charges_added" | "taxes_and_charges_deducted" | "remarks" | "rejected_warehouse" | "purchase_receipt_number" | "supplier_delivery_note" | "notes" | "apply_putaway_rule" | "supplier_address" | "set_from_warehouse" | "supplier_warehouse" | "range"), TAsDict extends boolean | undefined = undefined>({ fields, filters, skip, limit, priority, asDict, params, }?: {
9
+ getList: <TField extends ("status" | "name" | "doctype" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "docstatus" | "company" | "naming_series" | "items" | "pricing_rules" | "posting_date" | "posting_time" | "set_posting_time" | "currency" | "conversion_rate" | "base_net_total" | "taxes" | "supplier" | "is_subcontracted" | "supplied_items") | ("parent" | "parentfield" | "parenttype" | "tax_category" | "__onload" | "supplier_name" | "is_internal_supplier" | "language" | "discount_amount" | "cost_center" | "project" | "title" | "amended_from" | "is_return" | "return_against" | "shipping_address" | "contact_person" | "contact_display" | "contact_mobile" | "contact_email" | "address_display" | "price_list_currency" | "plc_conversion_rate" | "ignore_pricing_rule" | "set_warehouse" | "scan_barcode" | "total_qty" | "base_total" | "total_net_weight" | "total" | "net_total" | "shipping_rule" | "taxes_and_charges" | "other_charges_calculation" | "base_total_taxes_and_charges" | "total_taxes_and_charges" | "apply_discount_on" | "base_discount_amount" | "additional_discount_percentage" | "base_grand_total" | "base_rounding_adjustment" | "base_rounded_total" | "base_in_words" | "grand_total" | "rounding_adjustment" | "rounded_total" | "in_words" | "disable_rounded_total" | "tc_name" | "terms" | "lr_no" | "transporter_name" | "lr_date" | "represents_company" | "inter_company_reference" | "per_billed" | "letter_head" | "select_print_heading" | "group_same_items" | "per_returned" | "instructions" | "auto_repeat" | "shipping_address_display" | "billing_address" | "billing_address_display" | "buying_price_list" | "base_taxes_and_charges_added" | "base_taxes_and_charges_deducted" | "taxes_and_charges_added" | "taxes_and_charges_deducted" | "remarks" | "rejected_warehouse" | "purchase_receipt_number" | "supplier_delivery_note" | "notes" | "apply_putaway_rule" | "supplier_address" | "set_from_warehouse" | "supplier_warehouse" | "range"), TAsDict extends boolean | undefined = undefined>({ fields, filters, skip, limit, priority, asDict, params, }?: {
10
10
  fields?: TField[] | undefined;
11
- filters?: string[][];
11
+ filters?: (string | string[])[][];
12
12
  skip?: number;
13
13
  limit?: number;
14
14
  priority?: number;
@@ -17,18 +17,19 @@ export declare class ERPNextPurchaseReceipt {
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
  company: string;
28
28
  naming_series: string;
29
29
  items: {
30
30
  description: string;
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 class ERPNextPurchaseReceipt {
38
39
  parenttype: string;
39
40
  idx: number;
40
41
  docstatus: number;
41
- doctype: string;
42
42
  item_code: string;
43
43
  item_name: string;
44
44
  stock_uom: string;
@@ -220,18 +220,19 @@ export declare class ERPNextPurchaseReceipt {
220
220
  }) => Promise<{
221
221
  status: string;
222
222
  name: string;
223
+ doctype: string;
223
224
  owner: string;
224
225
  creation: string;
225
226
  modified: string;
226
227
  modified_by: string;
227
228
  idx: number;
228
229
  docstatus: number;
229
- doctype: string;
230
230
  company: string;
231
231
  naming_series: string;
232
232
  items: {
233
233
  description: string;
234
234
  name: string;
235
+ doctype: string;
235
236
  owner: string;
236
237
  creation: string;
237
238
  modified: string;
@@ -241,7 +242,6 @@ export declare class ERPNextPurchaseReceipt {
241
242
  parenttype: string;
242
243
  idx: number;
243
244
  docstatus: number;
244
- doctype: string;
245
245
  item_code: string;
246
246
  item_name: string;
247
247
  stock_uom: string;
@@ -420,18 +420,19 @@ export declare class ERPNextPurchaseReceipt {
420
420
  updateById: <TInput extends TInputModel extends undefined ? Partial<{
421
421
  status: string;
422
422
  name: string;
423
+ doctype: string;
423
424
  owner: string;
424
425
  creation: string;
425
426
  modified: string;
426
427
  modified_by: string;
427
428
  idx: number;
428
429
  docstatus: number;
429
- doctype: string;
430
430
  company: string;
431
431
  naming_series: string;
432
432
  items: {
433
433
  description: string;
434
434
  name: string;
435
+ doctype: string;
435
436
  owner: string;
436
437
  creation: string;
437
438
  modified: string;
@@ -441,7 +442,6 @@ export declare class ERPNextPurchaseReceipt {
441
442
  parenttype: string;
442
443
  idx: number;
443
444
  docstatus: number;
444
- doctype: string;
445
445
  item_code: string;
446
446
  item_name: string;
447
447
  stock_uom: string;
@@ -624,18 +624,19 @@ export declare class ERPNextPurchaseReceipt {
624
624
  }) => Promise<{
625
625
  status: string;
626
626
  name: string;
627
+ doctype: string;
627
628
  owner: string;
628
629
  creation: string;
629
630
  modified: string;
630
631
  modified_by: string;
631
632
  idx: number;
632
633
  docstatus: number;
633
- doctype: string;
634
634
  company: string;
635
635
  naming_series: string;
636
636
  items: {
637
637
  description: string;
638
638
  name: string;
639
+ doctype: string;
639
640
  owner: string;
640
641
  creation: string;
641
642
  modified: string;
@@ -645,7 +646,6 @@ export declare class ERPNextPurchaseReceipt {
645
646
  parenttype: string;
646
647
  idx: number;
647
648
  docstatus: number;
648
- doctype: string;
649
649
  item_code: string;
650
650
  item_name: string;
651
651
  stock_uom: string;
@@ -830,18 +830,19 @@ export declare class ERPNextPurchaseReceipt {
830
830
  }) => Promise<{
831
831
  status: string;
832
832
  name: string;
833
+ doctype: string;
833
834
  owner: string;
834
835
  creation: string;
835
836
  modified: string;
836
837
  modified_by: string;
837
838
  idx: number;
838
839
  docstatus: number;
839
- doctype: string;
840
840
  company: string;
841
841
  naming_series: string;
842
842
  items: {
843
843
  description: string;
844
844
  name: string;
845
+ doctype: string;
845
846
  owner: string;
846
847
  creation: string;
847
848
  modified: string;
@@ -851,7 +852,6 @@ export declare class ERPNextPurchaseReceipt {
851
852
  parenttype: string;
852
853
  idx: number;
853
854
  docstatus: number;
854
- doctype: string;
855
855
  item_code: string;
856
856
  item_name: string;
857
857
  stock_uom: string;
@@ -1032,18 +1032,19 @@ export declare class ERPNextPurchaseReceipt {
1032
1032
  }) => Promise<{
1033
1033
  status: string;
1034
1034
  name: string;
1035
+ doctype: string;
1035
1036
  owner: string;
1036
1037
  creation: string;
1037
1038
  modified: string;
1038
1039
  modified_by: string;
1039
1040
  idx: number;
1040
1041
  docstatus: number;
1041
- doctype: string;
1042
1042
  company: string;
1043
1043
  naming_series: string;
1044
1044
  items: {
1045
1045
  description: string;
1046
1046
  name: string;
1047
+ doctype: string;
1047
1048
  owner: string;
1048
1049
  creation: string;
1049
1050
  modified: string;
@@ -1053,7 +1054,6 @@ export declare class ERPNextPurchaseReceipt {
1053
1054
  parenttype: string;
1054
1055
  idx: number;
1055
1056
  docstatus: number;
1056
- doctype: string;
1057
1057
  item_code: string;
1058
1058
  item_name: string;
1059
1059
  stock_uom: string;
@@ -1239,12 +1239,12 @@ export declare class ERPNextPurchaseReceipt {
1239
1239
  naming_series: string;
1240
1240
  items: {
1241
1241
  description: string;
1242
+ doctype: string;
1242
1243
  owner: string;
1243
1244
  parentfield: string;
1244
1245
  parenttype: string;
1245
1246
  idx: number;
1246
1247
  docstatus: number;
1247
- doctype: string;
1248
1248
  item_code: string;
1249
1249
  item_name: string;
1250
1250
  stock_uom: string;
@@ -1370,18 +1370,19 @@ export declare class ERPNextPurchaseReceipt {
1370
1370
  createFromPurchaseOrder(purchaseOrderName: string, submit?: boolean): Promise<{
1371
1371
  status: string;
1372
1372
  name: string;
1373
+ doctype: string;
1373
1374
  owner: string;
1374
1375
  creation: string;
1375
1376
  modified: string;
1376
1377
  modified_by: string;
1377
1378
  idx: number;
1378
1379
  docstatus: number;
1379
- doctype: string;
1380
1380
  company: string;
1381
1381
  naming_series: string;
1382
1382
  items: {
1383
1383
  description: string;
1384
1384
  name: string;
1385
+ doctype: string;
1385
1386
  owner: string;
1386
1387
  creation: string;
1387
1388
  modified: string;
@@ -1391,7 +1392,6 @@ export declare class ERPNextPurchaseReceipt {
1391
1392
  parenttype: string;
1392
1393
  idx: number;
1393
1394
  docstatus: number;
1394
- doctype: string;
1395
1395
  item_code: string;
1396
1396
  item_name: string;
1397
1397
  stock_uom: string;
@@ -1576,12 +1576,12 @@ export declare class ERPNextPurchaseReceipt {
1576
1576
  naming_series: string;
1577
1577
  items: {
1578
1578
  description: string;
1579
+ doctype: string;
1579
1580
  owner: string;
1580
1581
  parentfield: string;
1581
1582
  parenttype: string;
1582
1583
  idx: number;
1583
1584
  docstatus: number;
1584
- doctype: string;
1585
1585
  item_code: string;
1586
1586
  item_name: string;
1587
1587
  stock_uom: string;
@@ -1707,18 +1707,19 @@ export declare class ERPNextPurchaseReceipt {
1707
1707
  createFromPurchaseInvoice(purchaseInvoiceName: string, submit?: boolean): Promise<{
1708
1708
  status: string;
1709
1709
  name: string;
1710
+ doctype: string;
1710
1711
  owner: string;
1711
1712
  creation: string;
1712
1713
  modified: string;
1713
1714
  modified_by: string;
1714
1715
  idx: number;
1715
1716
  docstatus: number;
1716
- doctype: string;
1717
1717
  company: string;
1718
1718
  naming_series: string;
1719
1719
  items: {
1720
1720
  description: string;
1721
1721
  name: string;
1722
+ doctype: string;
1722
1723
  owner: string;
1723
1724
  creation: string;
1724
1725
  modified: string;
@@ -1728,7 +1729,6 @@ export declare class ERPNextPurchaseReceipt {
1728
1729
  parenttype: string;
1729
1730
  idx: number;
1730
1731
  docstatus: number;
1731
- doctype: string;
1732
1732
  item_code: string;
1733
1733
  item_name: string;
1734
1734
  stock_uom: string;