erpnext-queue-client 2.0.0-beta.0 → 2.0.0-beta.2

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 (68) hide show
  1. package/dist/client.js +1 -4
  2. package/dist/constants.d.ts +1 -1
  3. package/dist/constants.js +4 -4
  4. package/dist/erpnext/doctypeResourceRequest.d.ts +1 -1
  5. package/dist/erpnext/doctypeSubmittableResourceRequest.d.ts +56 -16
  6. package/dist/erpnext/doctypeSubmittableResourceRequest.js +10 -8
  7. package/dist/erpnext/doctypes/address.d.ts +18 -18
  8. package/dist/erpnext/doctypes/contact.d.ts +18 -18
  9. package/dist/erpnext/doctypes/deliveryNote.d.ts +44 -33
  10. package/dist/erpnext/doctypes/item.d.ts +49 -49
  11. package/dist/erpnext/doctypes/paymentEntry.d.ts +820 -0
  12. package/dist/erpnext/doctypes/paymentEntry.js +72 -0
  13. package/dist/erpnext/doctypes/productBundle.d.ts +16 -16
  14. package/dist/erpnext/doctypes/purchaseInvoice.d.ts +99 -99
  15. package/dist/erpnext/doctypes/purchaseReceipt.d.ts +48 -49
  16. package/dist/erpnext/doctypes/salesInvoice.d.ts +2205 -2203
  17. package/dist/erpnext/doctypes/servicecase.d.ts +56 -56
  18. package/dist/erpnext/doctypes/shipment.d.ts +76 -44
  19. package/dist/erpnext/doctypes/stock.d.ts +2 -0
  20. package/dist/erpnext/doctypes/stock.js +19 -3
  21. package/dist/erpnext/model/ConsolidatedCustomsInvoice.d.ts +321 -0
  22. package/dist/erpnext/model/ConsolidatedCustomsInvoice.js +83 -0
  23. package/dist/erpnext/model/DeliveryNote.d.ts +3 -0
  24. package/dist/erpnext/model/DeliveryNote.js +1 -0
  25. package/dist/erpnext/model/DispatchRun.d.ts +3 -3
  26. package/dist/erpnext/model/DispatchRun.js +1 -1
  27. package/dist/erpnext/model/DocTypeHelpers.d.ts +26 -7
  28. package/dist/erpnext/model/DocTypeHelpers.js +0 -8
  29. package/dist/erpnext/model/ERPNextDocTypeMeta.d.ts +28 -15
  30. package/dist/erpnext/model/ERPNextDocTypeMeta.js +12 -7
  31. package/dist/erpnext/model/FulfillmentStation.d.ts +3 -0
  32. package/dist/erpnext/model/FulfillmentStation.js +1 -0
  33. package/dist/erpnext/model/Item.d.ts +35 -25
  34. package/dist/erpnext/model/ItemTaxTemplate.d.ts +57 -0
  35. package/dist/erpnext/model/ItemTaxTemplate.js +25 -0
  36. package/dist/erpnext/model/PaymentEntry.d.ts +183 -16
  37. package/dist/erpnext/model/PaymentEntry.js +6 -1
  38. package/dist/erpnext/model/PurchaseInvoice.d.ts +49 -47
  39. package/dist/erpnext/model/PurchaseInvoice.js +0 -1
  40. package/dist/erpnext/model/PurchaseOrder.d.ts +10 -10
  41. package/dist/erpnext/model/Receipt.d.ts +2 -2
  42. package/dist/erpnext/model/ReceiptDraft.d.ts +0 -3
  43. package/dist/erpnext/model/ReceiptDraft.js +0 -1
  44. package/dist/erpnext/model/SalesInvoice.d.ts +1530 -1526
  45. package/dist/erpnext/model/SalesInvoice.js +182 -178
  46. package/dist/erpnext/model/SalesOrder.d.ts +778 -748
  47. package/dist/erpnext/model/SalesOrder.js +151 -149
  48. package/dist/erpnext/model/Servicecase.d.ts +30 -30
  49. package/dist/erpnext/model/Servicecase.js +8 -1
  50. package/dist/erpnext/model/ServiceportalProductConfiguration.d.ts +128 -3
  51. package/dist/erpnext/model/ServiceportalProductConfiguration.js +34 -2
  52. package/dist/erpnext/model/Shipment.d.ts +14 -0
  53. package/dist/erpnext/model/Shipment.js +14 -1
  54. package/dist/erpnext/model/ShippingFees.d.ts +36 -0
  55. package/dist/erpnext/model/ShippingFees.js +18 -0
  56. package/dist/erpnext/model/ShippingProvider.d.ts +2 -2
  57. package/dist/erpnext/model/Stock.d.ts +6 -6
  58. package/dist/erpnext/model/StockEntry.d.ts +2 -2
  59. package/dist/erpnext/model/TaxCategory.d.ts +20 -0
  60. package/dist/erpnext/model/TaxCategory.js +16 -0
  61. package/dist/erpnext/resourceRequest.d.ts +1 -1
  62. package/dist/erpnext/resourceRequest.js +11 -5
  63. package/dist/index.d.ts +8 -2
  64. package/dist/index.js +9 -2
  65. package/dist/index.test.js +104 -70
  66. package/dist/utils/zodContextOptionals.js +7 -4
  67. package/dist/utils/zodUtils.js +14 -2
  68. package/package.json +7 -2
@@ -130,8 +130,10 @@ export declare class ERPNextDeliveryNote {
130
130
  taxes: string[];
131
131
  sales_team: string[];
132
132
  amended_from?: string | null | undefined;
133
+ docstatus?: number | undefined;
133
134
  cost_center?: string | null | undefined;
134
135
  project?: string | null | undefined;
136
+ custom_order_number?: string | null | undefined;
135
137
  return_against?: string | null | undefined;
136
138
  po_date?: string | null | undefined;
137
139
  pick_list?: string | null | undefined;
@@ -184,13 +186,13 @@ export declare class ERPNextDeliveryNote {
184
186
  priority?: number;
185
187
  }) => Promise<{
186
188
  status: string;
189
+ docstatus: number;
187
190
  name: string;
188
191
  owner: string;
189
192
  creation: string;
190
193
  modified: string;
191
194
  modified_by: string;
192
195
  idx: number;
193
- docstatus: number;
194
196
  doctype: string;
195
197
  tax_category: string;
196
198
  company: string;
@@ -248,17 +250,17 @@ export declare class ERPNextDeliveryNote {
248
250
  commission_rate: number;
249
251
  total_commission: number;
250
252
  items: {
253
+ description: string;
254
+ docstatus: number;
251
255
  name: string;
252
256
  owner: string;
253
257
  creation: string;
254
258
  modified: string;
255
259
  modified_by: string;
256
260
  idx: number;
257
- docstatus: number;
258
261
  doctype: string;
259
262
  parenttype: string;
260
263
  parentfield: string;
261
- description: string;
262
264
  image: string;
263
265
  item_code: string;
264
266
  item_name: string;
@@ -302,8 +304,8 @@ export declare class ERPNextDeliveryNote {
302
304
  allow_zero_valuation_rate: number;
303
305
  cost_center: string;
304
306
  page_break: number;
305
- _user_tags?: string | undefined;
306
307
  brand?: string | null | undefined;
308
+ _user_tags?: string | null | undefined;
307
309
  barcode?: string | null | undefined;
308
310
  customer_item_code?: string | null | undefined;
309
311
  pricing_rules?: string | null | undefined;
@@ -326,9 +328,10 @@ export declare class ERPNextDeliveryNote {
326
328
  taxes: string[];
327
329
  sales_team: string[];
328
330
  amended_from?: string | null | undefined;
329
- _user_tags?: string | undefined;
331
+ _user_tags?: string | null | undefined;
330
332
  cost_center?: string | null | undefined;
331
333
  project?: string | null | undefined;
334
+ custom_order_number?: string | null | undefined;
332
335
  return_against?: string | null | undefined;
333
336
  po_date?: string | null | undefined;
334
337
  pick_list?: string | null | undefined;
@@ -374,7 +377,7 @@ export declare class ERPNextDeliveryNote {
374
377
  sales_partner?: string | null | undefined;
375
378
  dispatch_run?: string | null | undefined;
376
379
  }>;
377
- getList: <TFieldOptions extends ("status" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "docstatus" | "tax_category" | "company" | "naming_series" | "language" | "discount_amount" | "title" | "order_number" | "customer" | "customer_name" | "posting_date" | "posting_time" | "set_posting_time" | "is_return" | "issue_credit_note" | "po_no" | "currency" | "conversion_rate" | "selling_price_list" | "price_list_currency" | "plc_conversion_rate" | "ignore_pricing_rule" | "total_qty" | "base_total" | "base_net_total" | "total_net_weight" | "total" | "net_total" | "custom_tax_included_in_shipping_cost" | "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" | "is_internal_customer" | "per_billed" | "customer_group" | "territory" | "print_without_amount" | "group_same_items" | "per_installed" | "installation_status" | "per_returned" | "amount_eligible_for_commission" | "commission_rate" | "total_commission") | ("amended_from" | "_user_tags" | "cost_center" | "project" | "return_against" | "po_date" | "pick_list" | "shipping_address_name" | "shipping_address" | "dispatch_address_name" | "dispatch_address" | "contact_person" | "contact_display" | "contact_mobile" | "contact_email" | "customer_address" | "tax_id" | "address_display" | "company_address" | "company_address_display" | "set_warehouse" | "set_target_warehouse" | "scan_barcode" | "shipping_rule" | "incoterm" | "custom_shipping_cost" | "taxes_and_charges" | "other_charges_calculation" | "tc_name" | "terms" | "transporter" | "driver" | "lr_no" | "vehicle_no" | "transporter_name" | "driver_name" | "lr_date" | "campaign" | "source" | "represents_company" | "inter_company_reference" | "letter_head" | "select_print_heading" | "excise_page" | "instructions" | "auto_repeat" | "sales_partner" | "dispatch_run"), TSelectedFields extends readonly ["*"] | TFieldOptions[] | undefined = undefined, TAsDict extends boolean | undefined = undefined>({ fields, filters, skip, limit, priority, asDict, params, }?: {
380
+ getList: <TFieldOptions extends ("status" | "docstatus" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "tax_category" | "company" | "naming_series" | "language" | "discount_amount" | "title" | "order_number" | "customer" | "customer_name" | "posting_date" | "posting_time" | "set_posting_time" | "is_return" | "issue_credit_note" | "po_no" | "currency" | "conversion_rate" | "selling_price_list" | "price_list_currency" | "plc_conversion_rate" | "ignore_pricing_rule" | "total_qty" | "base_total" | "base_net_total" | "total_net_weight" | "total" | "net_total" | "custom_tax_included_in_shipping_cost" | "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" | "is_internal_customer" | "per_billed" | "customer_group" | "territory" | "print_without_amount" | "group_same_items" | "per_installed" | "installation_status" | "per_returned" | "amount_eligible_for_commission" | "commission_rate" | "total_commission") | ("amended_from" | "_user_tags" | "cost_center" | "project" | "custom_order_number" | "return_against" | "po_date" | "pick_list" | "shipping_address_name" | "shipping_address" | "dispatch_address_name" | "dispatch_address" | "contact_person" | "contact_display" | "contact_mobile" | "contact_email" | "customer_address" | "tax_id" | "address_display" | "company_address" | "company_address_display" | "set_warehouse" | "set_target_warehouse" | "scan_barcode" | "shipping_rule" | "incoterm" | "custom_shipping_cost" | "taxes_and_charges" | "other_charges_calculation" | "tc_name" | "terms" | "transporter" | "driver" | "lr_no" | "vehicle_no" | "transporter_name" | "driver_name" | "lr_date" | "campaign" | "source" | "represents_company" | "inter_company_reference" | "letter_head" | "select_print_heading" | "excise_page" | "instructions" | "auto_repeat" | "sales_partner" | "dispatch_run"), TSelectedFields extends readonly ["*"] | TFieldOptions[] | undefined = undefined, TAsDict extends boolean | undefined = undefined>({ fields, filters, skip, limit, priority, asDict, params, }?: {
378
381
  fields?: TSelectedFields;
379
382
  filters?: (string | string[])[][];
380
383
  skip?: number;
@@ -386,13 +389,13 @@ export declare class ERPNextDeliveryNote {
386
389
  name: string;
387
390
  }[] : TSelectedFields extends readonly ["*"] ? {
388
391
  status: string;
392
+ docstatus: number;
389
393
  name: string;
390
394
  owner: string;
391
395
  creation: string;
392
396
  modified: string;
393
397
  modified_by: string;
394
398
  idx: number;
395
- docstatus: number;
396
399
  tax_category: string;
397
400
  company: string;
398
401
  naming_series: string;
@@ -448,9 +451,10 @@ export declare class ERPNextDeliveryNote {
448
451
  commission_rate: number;
449
452
  total_commission: number;
450
453
  amended_from?: string | null | undefined;
451
- _user_tags?: string | undefined;
454
+ _user_tags?: string | null | undefined;
452
455
  cost_center?: string | null | undefined;
453
456
  project?: string | null | undefined;
457
+ custom_order_number?: string | null | undefined;
454
458
  return_against?: string | null | undefined;
455
459
  po_date?: string | null | undefined;
456
460
  pick_list?: string | null | undefined;
@@ -495,15 +499,15 @@ export declare class ERPNextDeliveryNote {
495
499
  auto_repeat?: string | null | undefined;
496
500
  sales_partner?: string | null | undefined;
497
501
  dispatch_run?: string | null | undefined;
498
- }[] : TSelectedFields extends TFieldOptions[] ? Pick<{
502
+ }[] : 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 ("status" | "docstatus" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "tax_category" | "company" | "naming_series" | "language" | "discount_amount" | "title" | "order_number" | "customer" | "customer_name" | "posting_date" | "posting_time" | "set_posting_time" | "is_return" | "issue_credit_note" | "po_no" | "currency" | "conversion_rate" | "selling_price_list" | "price_list_currency" | "plc_conversion_rate" | "ignore_pricing_rule" | "total_qty" | "base_total" | "base_net_total" | "total_net_weight" | "total" | "net_total" | "custom_tax_included_in_shipping_cost" | "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" | "is_internal_customer" | "per_billed" | "customer_group" | "territory" | "print_without_amount" | "group_same_items" | "per_installed" | "installation_status" | "per_returned" | "amount_eligible_for_commission" | "commission_rate" | "total_commission") | ("amended_from" | "_user_tags" | "cost_center" | "project" | "custom_order_number" | "return_against" | "po_date" | "pick_list" | "shipping_address_name" | "shipping_address" | "dispatch_address_name" | "dispatch_address" | "contact_person" | "contact_display" | "contact_mobile" | "contact_email" | "customer_address" | "tax_id" | "address_display" | "company_address" | "company_address_display" | "set_warehouse" | "set_target_warehouse" | "scan_barcode" | "shipping_rule" | "incoterm" | "custom_shipping_cost" | "taxes_and_charges" | "other_charges_calculation" | "tc_name" | "terms" | "transporter" | "driver" | "lr_no" | "vehicle_no" | "transporter_name" | "driver_name" | "lr_date" | "campaign" | "source" | "represents_company" | "inter_company_reference" | "letter_head" | "select_print_heading" | "excise_page" | "instructions" | "auto_repeat" | "sales_partner" | "dispatch_run") ? {
499
503
  status: string;
504
+ docstatus: number;
500
505
  name: string;
501
506
  owner: string;
502
507
  creation: string;
503
508
  modified: string;
504
509
  modified_by: string;
505
510
  idx: number;
506
- docstatus: number;
507
511
  tax_category: string;
508
512
  company: string;
509
513
  naming_series: string;
@@ -559,9 +563,10 @@ export declare class ERPNextDeliveryNote {
559
563
  commission_rate: number;
560
564
  total_commission: number;
561
565
  amended_from?: string | null | undefined;
562
- _user_tags?: string | undefined;
566
+ _user_tags?: string | null | undefined;
563
567
  cost_center?: string | null | undefined;
564
568
  project?: string | null | undefined;
569
+ custom_order_number?: string | null | undefined;
565
570
  return_against?: string | null | undefined;
566
571
  po_date?: string | null | undefined;
567
572
  pick_list?: string | null | undefined;
@@ -606,19 +611,19 @@ export declare class ERPNextDeliveryNote {
606
611
  auto_repeat?: string | null | undefined;
607
612
  sales_partner?: string | null | undefined;
608
613
  dispatch_run?: string | null | undefined;
609
- }, TSelectedFields[number]>[] : any) extends infer T ? { [K in keyof T]: T[K]; } : never>;
614
+ }[(("status" | "docstatus" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "tax_category" | "company" | "naming_series" | "language" | "discount_amount" | "title" | "order_number" | "customer" | "customer_name" | "posting_date" | "posting_time" | "set_posting_time" | "is_return" | "issue_credit_note" | "po_no" | "currency" | "conversion_rate" | "selling_price_list" | "price_list_currency" | "plc_conversion_rate" | "ignore_pricing_rule" | "total_qty" | "base_total" | "base_net_total" | "total_net_weight" | "total" | "net_total" | "custom_tax_included_in_shipping_cost" | "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" | "is_internal_customer" | "per_billed" | "customer_group" | "territory" | "print_without_amount" | "group_same_items" | "per_installed" | "installation_status" | "per_returned" | "amount_eligible_for_commission" | "commission_rate" | "total_commission") | ("amended_from" | "_user_tags" | "cost_center" | "project" | "custom_order_number" | "return_against" | "po_date" | "pick_list" | "shipping_address_name" | "shipping_address" | "dispatch_address_name" | "dispatch_address" | "contact_person" | "contact_display" | "contact_mobile" | "contact_email" | "customer_address" | "tax_id" | "address_display" | "company_address" | "company_address_display" | "set_warehouse" | "set_target_warehouse" | "scan_barcode" | "shipping_rule" | "incoterm" | "custom_shipping_cost" | "taxes_and_charges" | "other_charges_calculation" | "tc_name" | "terms" | "transporter" | "driver" | "lr_no" | "vehicle_no" | "transporter_name" | "driver_name" | "lr_date" | "campaign" | "source" | "represents_company" | "inter_company_reference" | "letter_head" | "select_print_heading" | "excise_page" | "instructions" | "auto_repeat" | "sales_partner" | "dispatch_run")) & (K_1 extends `${infer _Before} as ${infer Alias}` ? Alias : K_1)] : never; }[] : any) extends infer T ? { [K in keyof T]: T[K]; } : never>;
610
615
  getById: ({ resourceId, priority, }: {
611
616
  resourceId: string;
612
617
  priority?: number;
613
618
  }) => Promise<{
614
619
  status: string;
620
+ docstatus: number;
615
621
  name: string;
616
622
  owner: string;
617
623
  creation: string;
618
624
  modified: string;
619
625
  modified_by: string;
620
626
  idx: number;
621
- docstatus: number;
622
627
  doctype: string;
623
628
  tax_category: string;
624
629
  company: string;
@@ -676,17 +681,17 @@ export declare class ERPNextDeliveryNote {
676
681
  commission_rate: number;
677
682
  total_commission: number;
678
683
  items: {
684
+ description: string;
685
+ docstatus: number;
679
686
  name: string;
680
687
  owner: string;
681
688
  creation: string;
682
689
  modified: string;
683
690
  modified_by: string;
684
691
  idx: number;
685
- docstatus: number;
686
692
  doctype: string;
687
693
  parenttype: string;
688
694
  parentfield: string;
689
- description: string;
690
695
  image: string;
691
696
  item_code: string;
692
697
  item_name: string;
@@ -730,8 +735,8 @@ export declare class ERPNextDeliveryNote {
730
735
  allow_zero_valuation_rate: number;
731
736
  cost_center: string;
732
737
  page_break: number;
733
- _user_tags?: string | undefined;
734
738
  brand?: string | null | undefined;
739
+ _user_tags?: string | null | undefined;
735
740
  barcode?: string | null | undefined;
736
741
  customer_item_code?: string | null | undefined;
737
742
  pricing_rules?: string | null | undefined;
@@ -754,9 +759,10 @@ export declare class ERPNextDeliveryNote {
754
759
  taxes: string[];
755
760
  sales_team: string[];
756
761
  amended_from?: string | null | undefined;
757
- _user_tags?: string | undefined;
762
+ _user_tags?: string | null | undefined;
758
763
  cost_center?: string | null | undefined;
759
764
  project?: string | null | undefined;
765
+ custom_order_number?: string | null | undefined;
760
766
  return_against?: string | null | undefined;
761
767
  po_date?: string | null | undefined;
762
768
  pick_list?: string | null | undefined;
@@ -801,7 +807,7 @@ export declare class ERPNextDeliveryNote {
801
807
  auto_repeat?: string | null | undefined;
802
808
  sales_partner?: string | null | undefined;
803
809
  dispatch_run?: string | null | undefined;
804
- }>;
810
+ } | undefined>;
805
811
  updateById: <TInput extends TInputModel extends undefined ? Partial<{
806
812
  status: string;
807
813
  tax_category: string;
@@ -926,8 +932,10 @@ export declare class ERPNextDeliveryNote {
926
932
  taxes: string[];
927
933
  sales_team: string[];
928
934
  amended_from?: string | null | undefined;
935
+ docstatus?: number | undefined;
929
936
  cost_center?: string | null | undefined;
930
937
  project?: string | null | undefined;
938
+ custom_order_number?: string | null | undefined;
931
939
  return_against?: string | null | undefined;
932
940
  po_date?: string | null | undefined;
933
941
  pick_list?: string | null | undefined;
@@ -980,13 +988,13 @@ export declare class ERPNextDeliveryNote {
980
988
  body: TInput;
981
989
  }) => Promise<{
982
990
  status: string;
991
+ docstatus: number;
983
992
  name: string;
984
993
  owner: string;
985
994
  creation: string;
986
995
  modified: string;
987
996
  modified_by: string;
988
997
  idx: number;
989
- docstatus: number;
990
998
  doctype: string;
991
999
  tax_category: string;
992
1000
  company: string;
@@ -1044,17 +1052,17 @@ export declare class ERPNextDeliveryNote {
1044
1052
  commission_rate: number;
1045
1053
  total_commission: number;
1046
1054
  items: {
1055
+ description: string;
1056
+ docstatus: number;
1047
1057
  name: string;
1048
1058
  owner: string;
1049
1059
  creation: string;
1050
1060
  modified: string;
1051
1061
  modified_by: string;
1052
1062
  idx: number;
1053
- docstatus: number;
1054
1063
  doctype: string;
1055
1064
  parenttype: string;
1056
1065
  parentfield: string;
1057
- description: string;
1058
1066
  image: string;
1059
1067
  item_code: string;
1060
1068
  item_name: string;
@@ -1098,8 +1106,8 @@ export declare class ERPNextDeliveryNote {
1098
1106
  allow_zero_valuation_rate: number;
1099
1107
  cost_center: string;
1100
1108
  page_break: number;
1101
- _user_tags?: string | undefined;
1102
1109
  brand?: string | null | undefined;
1110
+ _user_tags?: string | null | undefined;
1103
1111
  barcode?: string | null | undefined;
1104
1112
  customer_item_code?: string | null | undefined;
1105
1113
  pricing_rules?: string | null | undefined;
@@ -1122,9 +1130,10 @@ export declare class ERPNextDeliveryNote {
1122
1130
  taxes: string[];
1123
1131
  sales_team: string[];
1124
1132
  amended_from?: string | null | undefined;
1125
- _user_tags?: string | undefined;
1133
+ _user_tags?: string | null | undefined;
1126
1134
  cost_center?: string | null | undefined;
1127
1135
  project?: string | null | undefined;
1136
+ custom_order_number?: string | null | undefined;
1128
1137
  return_against?: string | null | undefined;
1129
1138
  po_date?: string | null | undefined;
1130
1139
  pick_list?: string | null | undefined;
@@ -1178,13 +1187,13 @@ export declare class ERPNextDeliveryNote {
1178
1187
  resourceId: string;
1179
1188
  }) => Promise<{
1180
1189
  status: string;
1190
+ docstatus: number;
1181
1191
  name: string;
1182
1192
  owner: string;
1183
1193
  creation: string;
1184
1194
  modified: string;
1185
1195
  modified_by: string;
1186
1196
  idx: number;
1187
- docstatus: number;
1188
1197
  doctype: string;
1189
1198
  tax_category: string;
1190
1199
  company: string;
@@ -1242,17 +1251,17 @@ export declare class ERPNextDeliveryNote {
1242
1251
  commission_rate: number;
1243
1252
  total_commission: number;
1244
1253
  items: {
1254
+ description: string;
1255
+ docstatus: number;
1245
1256
  name: string;
1246
1257
  owner: string;
1247
1258
  creation: string;
1248
1259
  modified: string;
1249
1260
  modified_by: string;
1250
1261
  idx: number;
1251
- docstatus: number;
1252
1262
  doctype: string;
1253
1263
  parenttype: string;
1254
1264
  parentfield: string;
1255
- description: string;
1256
1265
  image: string;
1257
1266
  item_code: string;
1258
1267
  item_name: string;
@@ -1296,8 +1305,8 @@ export declare class ERPNextDeliveryNote {
1296
1305
  allow_zero_valuation_rate: number;
1297
1306
  cost_center: string;
1298
1307
  page_break: number;
1299
- _user_tags?: string | undefined;
1300
1308
  brand?: string | null | undefined;
1309
+ _user_tags?: string | null | undefined;
1301
1310
  barcode?: string | null | undefined;
1302
1311
  customer_item_code?: string | null | undefined;
1303
1312
  pricing_rules?: string | null | undefined;
@@ -1320,9 +1329,10 @@ export declare class ERPNextDeliveryNote {
1320
1329
  taxes: string[];
1321
1330
  sales_team: string[];
1322
1331
  amended_from?: string | null | undefined;
1323
- _user_tags?: string | undefined;
1332
+ _user_tags?: string | null | undefined;
1324
1333
  cost_center?: string | null | undefined;
1325
1334
  project?: string | null | undefined;
1335
+ custom_order_number?: string | null | undefined;
1326
1336
  return_against?: string | null | undefined;
1327
1337
  po_date?: string | null | undefined;
1328
1338
  pick_list?: string | null | undefined;
@@ -1372,13 +1382,13 @@ export declare class ERPNextDeliveryNote {
1372
1382
  resourceId: string;
1373
1383
  }) => Promise<{
1374
1384
  status: string;
1385
+ docstatus: number;
1375
1386
  name: string;
1376
1387
  owner: string;
1377
1388
  creation: string;
1378
1389
  modified: string;
1379
1390
  modified_by: string;
1380
1391
  idx: number;
1381
- docstatus: number;
1382
1392
  doctype: string;
1383
1393
  tax_category: string;
1384
1394
  company: string;
@@ -1436,17 +1446,17 @@ export declare class ERPNextDeliveryNote {
1436
1446
  commission_rate: number;
1437
1447
  total_commission: number;
1438
1448
  items: {
1449
+ description: string;
1450
+ docstatus: number;
1439
1451
  name: string;
1440
1452
  owner: string;
1441
1453
  creation: string;
1442
1454
  modified: string;
1443
1455
  modified_by: string;
1444
1456
  idx: number;
1445
- docstatus: number;
1446
1457
  doctype: string;
1447
1458
  parenttype: string;
1448
1459
  parentfield: string;
1449
- description: string;
1450
1460
  image: string;
1451
1461
  item_code: string;
1452
1462
  item_name: string;
@@ -1490,8 +1500,8 @@ export declare class ERPNextDeliveryNote {
1490
1500
  allow_zero_valuation_rate: number;
1491
1501
  cost_center: string;
1492
1502
  page_break: number;
1493
- _user_tags?: string | undefined;
1494
1503
  brand?: string | null | undefined;
1504
+ _user_tags?: string | null | undefined;
1495
1505
  barcode?: string | null | undefined;
1496
1506
  customer_item_code?: string | null | undefined;
1497
1507
  pricing_rules?: string | null | undefined;
@@ -1514,9 +1524,10 @@ export declare class ERPNextDeliveryNote {
1514
1524
  taxes: string[];
1515
1525
  sales_team: string[];
1516
1526
  amended_from?: string | null | undefined;
1517
- _user_tags?: string | undefined;
1527
+ _user_tags?: string | null | undefined;
1518
1528
  cost_center?: string | null | undefined;
1519
1529
  project?: string | null | undefined;
1530
+ custom_order_number?: string | null | undefined;
1520
1531
  return_against?: string | null | undefined;
1521
1532
  po_date?: string | null | undefined;
1522
1533
  pick_list?: string | null | undefined;