erpnext-queue-client 1.5.4 → 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.
Files changed (32) hide show
  1. package/dist/client.js +1 -1
  2. package/dist/erpnext/doctypes/address.d.ts +13 -13
  3. package/dist/erpnext/doctypes/contact.d.ts +25 -25
  4. package/dist/erpnext/doctypes/deliveryNote.d.ts +15 -15
  5. package/dist/erpnext/doctypes/item.d.ts +25 -25
  6. package/dist/erpnext/doctypes/purchaseInvoice.d.ts +33 -33
  7. package/dist/erpnext/doctypes/purchaseReceipt.d.ts +19 -19
  8. package/dist/erpnext/doctypes/shipment.d.ts +30 -30
  9. package/dist/erpnext/model/Account.d.ts +2 -2
  10. package/dist/erpnext/model/Address.d.ts +8 -8
  11. package/dist/erpnext/model/Contact.d.ts +20 -20
  12. package/dist/erpnext/model/Country.d.ts +2 -2
  13. package/dist/erpnext/model/Customer.d.ts +2 -2
  14. package/dist/erpnext/model/DeliveryNote.d.ts +12 -12
  15. package/dist/erpnext/model/DispatchRun.d.ts +25 -25
  16. package/dist/erpnext/model/DispatcherPreset.d.ts +8 -8
  17. package/dist/erpnext/model/File.d.ts +4 -4
  18. package/dist/erpnext/model/Fulfiller.d.ts +2 -2
  19. package/dist/erpnext/model/Item.d.ts +44 -44
  20. package/dist/erpnext/model/PaymentEntry.d.ts +2 -2
  21. package/dist/erpnext/model/ProductBundle.d.ts +6 -6
  22. package/dist/erpnext/model/PurchaseInvoice.d.ts +26 -26
  23. package/dist/erpnext/model/PurchaseOrder.d.ts +10 -10
  24. package/dist/erpnext/model/Receipt.d.ts +6 -6
  25. package/dist/erpnext/model/ReceiptDraft.d.ts +4 -4
  26. package/dist/erpnext/model/Shipment.d.ts +32 -32
  27. package/dist/erpnext/model/ShippingProvider.d.ts +2 -2
  28. package/dist/erpnext/model/StockEntry.d.ts +2 -2
  29. package/dist/erpnext/model/StockReconciliation.d.ts +2 -2
  30. package/dist/erpnext/model/Supplier.d.ts +6 -6
  31. package/dist/erpnext/resourceRequest.js +9 -5
  32. package/package.json +1 -1
@@ -92,6 +92,7 @@ export declare const Item: z.ZodObject<{
92
92
  doctype: z.ZodString;
93
93
  }, "strip", z.ZodTypeAny, {
94
94
  name: string;
95
+ doctype: string;
95
96
  owner: string;
96
97
  creation: string;
97
98
  modified: string;
@@ -101,11 +102,11 @@ export declare const Item: z.ZodObject<{
101
102
  parenttype: string;
102
103
  idx: number;
103
104
  docstatus: number;
104
- doctype: string;
105
105
  barcode: string;
106
106
  barcode_type: string;
107
107
  }, {
108
108
  name: string;
109
+ doctype: string;
109
110
  owner: string;
110
111
  creation: string;
111
112
  modified: string;
@@ -115,7 +116,6 @@ export declare const Item: z.ZodObject<{
115
116
  parenttype: string;
116
117
  idx: number;
117
118
  docstatus: number;
118
- doctype: string;
119
119
  barcode: string;
120
120
  barcode_type: string;
121
121
  }>, "many">;
@@ -136,6 +136,7 @@ export declare const Item: z.ZodObject<{
136
136
  doctype: z.ZodString;
137
137
  }, "strip", z.ZodTypeAny, {
138
138
  name: string;
139
+ doctype: string;
139
140
  owner: string;
140
141
  creation: string;
141
142
  modified: string;
@@ -145,11 +146,11 @@ export declare const Item: z.ZodObject<{
145
146
  parenttype: string;
146
147
  idx: number;
147
148
  docstatus: number;
148
- doctype: string;
149
149
  uom: string;
150
150
  conversion_factor: number;
151
151
  }, {
152
152
  name: string;
153
+ doctype: string;
153
154
  owner: string;
154
155
  creation: string;
155
156
  modified: string;
@@ -159,7 +160,6 @@ export declare const Item: z.ZodObject<{
159
160
  parenttype: string;
160
161
  idx: number;
161
162
  docstatus: number;
162
- doctype: string;
163
163
  uom: string;
164
164
  conversion_factor: number;
165
165
  }>, "many">;
@@ -180,6 +180,7 @@ export declare const Item: z.ZodObject<{
180
180
  doctype: z.ZodString;
181
181
  }, "strip", z.ZodTypeAny, {
182
182
  name: string;
183
+ doctype: string;
183
184
  owner: string;
184
185
  creation: string;
185
186
  modified: string;
@@ -189,11 +190,11 @@ export declare const Item: z.ZodObject<{
189
190
  parenttype: string;
190
191
  idx: number;
191
192
  docstatus: number;
192
- doctype: string;
193
193
  company: string;
194
194
  default_warehouse: string;
195
195
  }, {
196
196
  name: string;
197
+ doctype: string;
197
198
  owner: string;
198
199
  creation: string;
199
200
  modified: string;
@@ -203,7 +204,6 @@ export declare const Item: z.ZodObject<{
203
204
  parenttype: string;
204
205
  idx: number;
205
206
  docstatus: number;
206
- doctype: string;
207
207
  company: string;
208
208
  default_warehouse: string;
209
209
  }>, "many">;
@@ -216,13 +216,13 @@ export declare const Item: z.ZodObject<{
216
216
  }, "strip", z.ZodTypeAny, {
217
217
  description: string;
218
218
  name: string;
219
+ doctype: string;
219
220
  owner: string;
220
221
  creation: string;
221
222
  modified: string;
222
223
  modified_by: string;
223
224
  idx: number;
224
225
  docstatus: number;
225
- doctype: string;
226
226
  disabled: number;
227
227
  naming_series: string;
228
228
  item_code: string;
@@ -284,6 +284,7 @@ export declare const Item: z.ZodObject<{
284
284
  total_projected_qty: number;
285
285
  barcodes: {
286
286
  name: string;
287
+ doctype: string;
287
288
  owner: string;
288
289
  creation: string;
289
290
  modified: string;
@@ -293,13 +294,13 @@ export declare const Item: z.ZodObject<{
293
294
  parenttype: string;
294
295
  idx: number;
295
296
  docstatus: number;
296
- doctype: string;
297
297
  barcode: string;
298
298
  barcode_type: string;
299
299
  }[];
300
300
  reorder_levels: any[];
301
301
  uoms: {
302
302
  name: string;
303
+ doctype: string;
303
304
  owner: string;
304
305
  creation: string;
305
306
  modified: string;
@@ -309,13 +310,13 @@ export declare const Item: z.ZodObject<{
309
310
  parenttype: string;
310
311
  idx: number;
311
312
  docstatus: number;
312
- doctype: string;
313
313
  uom: string;
314
314
  conversion_factor: number;
315
315
  }[];
316
316
  attributes: any[];
317
317
  item_defaults: {
318
318
  name: string;
319
+ doctype: string;
319
320
  owner: string;
320
321
  creation: string;
321
322
  modified: string;
@@ -325,7 +326,6 @@ export declare const Item: z.ZodObject<{
325
326
  parenttype: string;
326
327
  idx: number;
327
328
  docstatus: number;
328
- doctype: string;
329
329
  company: string;
330
330
  default_warehouse: string;
331
331
  }[];
@@ -346,13 +346,13 @@ export declare const Item: z.ZodObject<{
346
346
  }, {
347
347
  description: string;
348
348
  name: string;
349
+ doctype: string;
349
350
  owner: string;
350
351
  creation: string;
351
352
  modified: string;
352
353
  modified_by: string;
353
354
  idx: number;
354
355
  docstatus: number;
355
- doctype: string;
356
356
  disabled: number;
357
357
  naming_series: string;
358
358
  item_code: string;
@@ -414,6 +414,7 @@ export declare const Item: z.ZodObject<{
414
414
  total_projected_qty: number;
415
415
  barcodes: {
416
416
  name: string;
417
+ doctype: string;
417
418
  owner: string;
418
419
  creation: string;
419
420
  modified: string;
@@ -423,13 +424,13 @@ export declare const Item: z.ZodObject<{
423
424
  parenttype: string;
424
425
  idx: number;
425
426
  docstatus: number;
426
- doctype: string;
427
427
  barcode: string;
428
428
  barcode_type: string;
429
429
  }[];
430
430
  reorder_levels: any[];
431
431
  uoms: {
432
432
  name: string;
433
+ doctype: string;
433
434
  owner: string;
434
435
  creation: string;
435
436
  modified: string;
@@ -439,13 +440,13 @@ export declare const Item: z.ZodObject<{
439
440
  parenttype: string;
440
441
  idx: number;
441
442
  docstatus: number;
442
- doctype: string;
443
443
  uom: string;
444
444
  conversion_factor: number;
445
445
  }[];
446
446
  attributes: any[];
447
447
  item_defaults: {
448
448
  name: string;
449
+ doctype: string;
449
450
  owner: string;
450
451
  creation: string;
451
452
  modified: string;
@@ -455,7 +456,6 @@ export declare const Item: z.ZodObject<{
455
456
  parenttype: string;
456
457
  idx: number;
457
458
  docstatus: number;
458
- doctype: string;
459
459
  company: string;
460
460
  default_warehouse: string;
461
461
  }[];
@@ -568,6 +568,7 @@ export declare const ItemListWithShippingTemplate: z.ZodArray<z.ZodObject<Pick<O
568
568
  doctype: z.ZodString;
569
569
  }, "strip", z.ZodTypeAny, {
570
570
  name: string;
571
+ doctype: string;
571
572
  owner: string;
572
573
  creation: string;
573
574
  modified: string;
@@ -577,11 +578,11 @@ export declare const ItemListWithShippingTemplate: z.ZodArray<z.ZodObject<Pick<O
577
578
  parenttype: string;
578
579
  idx: number;
579
580
  docstatus: number;
580
- doctype: string;
581
581
  barcode: string;
582
582
  barcode_type: string;
583
583
  }, {
584
584
  name: string;
585
+ doctype: string;
585
586
  owner: string;
586
587
  creation: string;
587
588
  modified: string;
@@ -591,7 +592,6 @@ export declare const ItemListWithShippingTemplate: z.ZodArray<z.ZodObject<Pick<O
591
592
  parenttype: string;
592
593
  idx: number;
593
594
  docstatus: number;
594
- doctype: string;
595
595
  barcode: string;
596
596
  barcode_type: string;
597
597
  }>, "many">;
@@ -612,6 +612,7 @@ export declare const ItemListWithShippingTemplate: z.ZodArray<z.ZodObject<Pick<O
612
612
  doctype: z.ZodString;
613
613
  }, "strip", z.ZodTypeAny, {
614
614
  name: string;
615
+ doctype: string;
615
616
  owner: string;
616
617
  creation: string;
617
618
  modified: string;
@@ -621,11 +622,11 @@ export declare const ItemListWithShippingTemplate: z.ZodArray<z.ZodObject<Pick<O
621
622
  parenttype: string;
622
623
  idx: number;
623
624
  docstatus: number;
624
- doctype: string;
625
625
  uom: string;
626
626
  conversion_factor: number;
627
627
  }, {
628
628
  name: string;
629
+ doctype: string;
629
630
  owner: string;
630
631
  creation: string;
631
632
  modified: string;
@@ -635,7 +636,6 @@ export declare const ItemListWithShippingTemplate: z.ZodArray<z.ZodObject<Pick<O
635
636
  parenttype: string;
636
637
  idx: number;
637
638
  docstatus: number;
638
- doctype: string;
639
639
  uom: string;
640
640
  conversion_factor: number;
641
641
  }>, "many">;
@@ -656,6 +656,7 @@ export declare const ItemListWithShippingTemplate: z.ZodArray<z.ZodObject<Pick<O
656
656
  doctype: z.ZodString;
657
657
  }, "strip", z.ZodTypeAny, {
658
658
  name: string;
659
+ doctype: string;
659
660
  owner: string;
660
661
  creation: string;
661
662
  modified: string;
@@ -665,11 +666,11 @@ export declare const ItemListWithShippingTemplate: z.ZodArray<z.ZodObject<Pick<O
665
666
  parenttype: string;
666
667
  idx: number;
667
668
  docstatus: number;
668
- doctype: string;
669
669
  company: string;
670
670
  default_warehouse: string;
671
671
  }, {
672
672
  name: string;
673
+ doctype: string;
673
674
  owner: string;
674
675
  creation: string;
675
676
  modified: string;
@@ -679,7 +680,6 @@ export declare const ItemListWithShippingTemplate: z.ZodArray<z.ZodObject<Pick<O
679
680
  parenttype: string;
680
681
  idx: number;
681
682
  docstatus: number;
682
- doctype: string;
683
683
  company: string;
684
684
  default_warehouse: string;
685
685
  }>, "many">;
@@ -812,6 +812,7 @@ export declare const ItemListWithShippingTemplateSku: z.ZodArray<z.ZodObject<z.o
812
812
  doctype: z.ZodString;
813
813
  }, "strip", z.ZodTypeAny, {
814
814
  name: string;
815
+ doctype: string;
815
816
  owner: string;
816
817
  creation: string;
817
818
  modified: string;
@@ -821,11 +822,11 @@ export declare const ItemListWithShippingTemplateSku: z.ZodArray<z.ZodObject<z.o
821
822
  parenttype: string;
822
823
  idx: number;
823
824
  docstatus: number;
824
- doctype: string;
825
825
  barcode: string;
826
826
  barcode_type: string;
827
827
  }, {
828
828
  name: string;
829
+ doctype: string;
829
830
  owner: string;
830
831
  creation: string;
831
832
  modified: string;
@@ -835,7 +836,6 @@ export declare const ItemListWithShippingTemplateSku: z.ZodArray<z.ZodObject<z.o
835
836
  parenttype: string;
836
837
  idx: number;
837
838
  docstatus: number;
838
- doctype: string;
839
839
  barcode: string;
840
840
  barcode_type: string;
841
841
  }>, "many">;
@@ -856,6 +856,7 @@ export declare const ItemListWithShippingTemplateSku: z.ZodArray<z.ZodObject<z.o
856
856
  doctype: z.ZodString;
857
857
  }, "strip", z.ZodTypeAny, {
858
858
  name: string;
859
+ doctype: string;
859
860
  owner: string;
860
861
  creation: string;
861
862
  modified: string;
@@ -865,11 +866,11 @@ export declare const ItemListWithShippingTemplateSku: z.ZodArray<z.ZodObject<z.o
865
866
  parenttype: string;
866
867
  idx: number;
867
868
  docstatus: number;
868
- doctype: string;
869
869
  uom: string;
870
870
  conversion_factor: number;
871
871
  }, {
872
872
  name: string;
873
+ doctype: string;
873
874
  owner: string;
874
875
  creation: string;
875
876
  modified: string;
@@ -879,7 +880,6 @@ export declare const ItemListWithShippingTemplateSku: z.ZodArray<z.ZodObject<z.o
879
880
  parenttype: string;
880
881
  idx: number;
881
882
  docstatus: number;
882
- doctype: string;
883
883
  uom: string;
884
884
  conversion_factor: number;
885
885
  }>, "many">;
@@ -900,6 +900,7 @@ export declare const ItemListWithShippingTemplateSku: z.ZodArray<z.ZodObject<z.o
900
900
  doctype: z.ZodString;
901
901
  }, "strip", z.ZodTypeAny, {
902
902
  name: string;
903
+ doctype: string;
903
904
  owner: string;
904
905
  creation: string;
905
906
  modified: string;
@@ -909,11 +910,11 @@ export declare const ItemListWithShippingTemplateSku: z.ZodArray<z.ZodObject<z.o
909
910
  parenttype: string;
910
911
  idx: number;
911
912
  docstatus: number;
912
- doctype: string;
913
913
  company: string;
914
914
  default_warehouse: string;
915
915
  }, {
916
916
  name: string;
917
+ doctype: string;
917
918
  owner: string;
918
919
  creation: string;
919
920
  modified: string;
@@ -923,7 +924,6 @@ export declare const ItemListWithShippingTemplateSku: z.ZodArray<z.ZodObject<z.o
923
924
  parenttype: string;
924
925
  idx: number;
925
926
  docstatus: number;
926
- doctype: string;
927
927
  company: string;
928
928
  default_warehouse: string;
929
929
  }>, "many">;
@@ -1059,6 +1059,7 @@ declare const ItemDimensionsInfo: z.ZodObject<Pick<Omit<{
1059
1059
  doctype: z.ZodString;
1060
1060
  }, "strip", z.ZodTypeAny, {
1061
1061
  name: string;
1062
+ doctype: string;
1062
1063
  owner: string;
1063
1064
  creation: string;
1064
1065
  modified: string;
@@ -1068,11 +1069,11 @@ declare const ItemDimensionsInfo: z.ZodObject<Pick<Omit<{
1068
1069
  parenttype: string;
1069
1070
  idx: number;
1070
1071
  docstatus: number;
1071
- doctype: string;
1072
1072
  barcode: string;
1073
1073
  barcode_type: string;
1074
1074
  }, {
1075
1075
  name: string;
1076
+ doctype: string;
1076
1077
  owner: string;
1077
1078
  creation: string;
1078
1079
  modified: string;
@@ -1082,7 +1083,6 @@ declare const ItemDimensionsInfo: z.ZodObject<Pick<Omit<{
1082
1083
  parenttype: string;
1083
1084
  idx: number;
1084
1085
  docstatus: number;
1085
- doctype: string;
1086
1086
  barcode: string;
1087
1087
  barcode_type: string;
1088
1088
  }>, "many">;
@@ -1103,6 +1103,7 @@ declare const ItemDimensionsInfo: z.ZodObject<Pick<Omit<{
1103
1103
  doctype: z.ZodString;
1104
1104
  }, "strip", z.ZodTypeAny, {
1105
1105
  name: string;
1106
+ doctype: string;
1106
1107
  owner: string;
1107
1108
  creation: string;
1108
1109
  modified: string;
@@ -1112,11 +1113,11 @@ declare const ItemDimensionsInfo: z.ZodObject<Pick<Omit<{
1112
1113
  parenttype: string;
1113
1114
  idx: number;
1114
1115
  docstatus: number;
1115
- doctype: string;
1116
1116
  uom: string;
1117
1117
  conversion_factor: number;
1118
1118
  }, {
1119
1119
  name: string;
1120
+ doctype: string;
1120
1121
  owner: string;
1121
1122
  creation: string;
1122
1123
  modified: string;
@@ -1126,7 +1127,6 @@ declare const ItemDimensionsInfo: z.ZodObject<Pick<Omit<{
1126
1127
  parenttype: string;
1127
1128
  idx: number;
1128
1129
  docstatus: number;
1129
- doctype: string;
1130
1130
  uom: string;
1131
1131
  conversion_factor: number;
1132
1132
  }>, "many">;
@@ -1147,6 +1147,7 @@ declare const ItemDimensionsInfo: z.ZodObject<Pick<Omit<{
1147
1147
  doctype: z.ZodString;
1148
1148
  }, "strip", z.ZodTypeAny, {
1149
1149
  name: string;
1150
+ doctype: string;
1150
1151
  owner: string;
1151
1152
  creation: string;
1152
1153
  modified: string;
@@ -1156,11 +1157,11 @@ declare const ItemDimensionsInfo: z.ZodObject<Pick<Omit<{
1156
1157
  parenttype: string;
1157
1158
  idx: number;
1158
1159
  docstatus: number;
1159
- doctype: string;
1160
1160
  company: string;
1161
1161
  default_warehouse: string;
1162
1162
  }, {
1163
1163
  name: string;
1164
+ doctype: string;
1164
1165
  owner: string;
1165
1166
  creation: string;
1166
1167
  modified: string;
@@ -1170,7 +1171,6 @@ declare const ItemDimensionsInfo: z.ZodObject<Pick<Omit<{
1170
1171
  parenttype: string;
1171
1172
  idx: number;
1172
1173
  docstatus: number;
1173
- doctype: string;
1174
1174
  company: string;
1175
1175
  default_warehouse: string;
1176
1176
  }>, "many">;
@@ -1285,6 +1285,7 @@ export declare const ItemListName: z.ZodArray<z.ZodObject<Pick<Omit<{
1285
1285
  doctype: z.ZodString;
1286
1286
  }, "strip", z.ZodTypeAny, {
1287
1287
  name: string;
1288
+ doctype: string;
1288
1289
  owner: string;
1289
1290
  creation: string;
1290
1291
  modified: string;
@@ -1294,11 +1295,11 @@ export declare const ItemListName: z.ZodArray<z.ZodObject<Pick<Omit<{
1294
1295
  parenttype: string;
1295
1296
  idx: number;
1296
1297
  docstatus: number;
1297
- doctype: string;
1298
1298
  barcode: string;
1299
1299
  barcode_type: string;
1300
1300
  }, {
1301
1301
  name: string;
1302
+ doctype: string;
1302
1303
  owner: string;
1303
1304
  creation: string;
1304
1305
  modified: string;
@@ -1308,7 +1309,6 @@ export declare const ItemListName: z.ZodArray<z.ZodObject<Pick<Omit<{
1308
1309
  parenttype: string;
1309
1310
  idx: number;
1310
1311
  docstatus: number;
1311
- doctype: string;
1312
1312
  barcode: string;
1313
1313
  barcode_type: string;
1314
1314
  }>, "many">;
@@ -1329,6 +1329,7 @@ export declare const ItemListName: z.ZodArray<z.ZodObject<Pick<Omit<{
1329
1329
  doctype: z.ZodString;
1330
1330
  }, "strip", z.ZodTypeAny, {
1331
1331
  name: string;
1332
+ doctype: string;
1332
1333
  owner: string;
1333
1334
  creation: string;
1334
1335
  modified: string;
@@ -1338,11 +1339,11 @@ export declare const ItemListName: z.ZodArray<z.ZodObject<Pick<Omit<{
1338
1339
  parenttype: string;
1339
1340
  idx: number;
1340
1341
  docstatus: number;
1341
- doctype: string;
1342
1342
  uom: string;
1343
1343
  conversion_factor: number;
1344
1344
  }, {
1345
1345
  name: string;
1346
+ doctype: string;
1346
1347
  owner: string;
1347
1348
  creation: string;
1348
1349
  modified: string;
@@ -1352,7 +1353,6 @@ export declare const ItemListName: z.ZodArray<z.ZodObject<Pick<Omit<{
1352
1353
  parenttype: string;
1353
1354
  idx: number;
1354
1355
  docstatus: number;
1355
- doctype: string;
1356
1356
  uom: string;
1357
1357
  conversion_factor: number;
1358
1358
  }>, "many">;
@@ -1373,6 +1373,7 @@ export declare const ItemListName: z.ZodArray<z.ZodObject<Pick<Omit<{
1373
1373
  doctype: z.ZodString;
1374
1374
  }, "strip", z.ZodTypeAny, {
1375
1375
  name: string;
1376
+ doctype: string;
1376
1377
  owner: string;
1377
1378
  creation: string;
1378
1379
  modified: string;
@@ -1382,11 +1383,11 @@ export declare const ItemListName: z.ZodArray<z.ZodObject<Pick<Omit<{
1382
1383
  parenttype: string;
1383
1384
  idx: number;
1384
1385
  docstatus: number;
1385
- doctype: string;
1386
1386
  company: string;
1387
1387
  default_warehouse: string;
1388
1388
  }, {
1389
1389
  name: string;
1390
+ doctype: string;
1390
1391
  owner: string;
1391
1392
  creation: string;
1392
1393
  modified: string;
@@ -1396,7 +1397,6 @@ export declare const ItemListName: z.ZodArray<z.ZodObject<Pick<Omit<{
1396
1397
  parenttype: string;
1397
1398
  idx: number;
1398
1399
  docstatus: number;
1399
- doctype: string;
1400
1400
  company: string;
1401
1401
  default_warehouse: string;
1402
1402
  }>, "many">;
@@ -1505,6 +1505,7 @@ export declare const ItemList: z.ZodArray<z.ZodObject<Pick<Omit<{
1505
1505
  doctype: z.ZodString;
1506
1506
  }, "strip", z.ZodTypeAny, {
1507
1507
  name: string;
1508
+ doctype: string;
1508
1509
  owner: string;
1509
1510
  creation: string;
1510
1511
  modified: string;
@@ -1514,11 +1515,11 @@ export declare const ItemList: z.ZodArray<z.ZodObject<Pick<Omit<{
1514
1515
  parenttype: string;
1515
1516
  idx: number;
1516
1517
  docstatus: number;
1517
- doctype: string;
1518
1518
  barcode: string;
1519
1519
  barcode_type: string;
1520
1520
  }, {
1521
1521
  name: string;
1522
+ doctype: string;
1522
1523
  owner: string;
1523
1524
  creation: string;
1524
1525
  modified: string;
@@ -1528,7 +1529,6 @@ export declare const ItemList: z.ZodArray<z.ZodObject<Pick<Omit<{
1528
1529
  parenttype: string;
1529
1530
  idx: number;
1530
1531
  docstatus: number;
1531
- doctype: string;
1532
1532
  barcode: string;
1533
1533
  barcode_type: string;
1534
1534
  }>, "many">;
@@ -1549,6 +1549,7 @@ export declare const ItemList: z.ZodArray<z.ZodObject<Pick<Omit<{
1549
1549
  doctype: z.ZodString;
1550
1550
  }, "strip", z.ZodTypeAny, {
1551
1551
  name: string;
1552
+ doctype: string;
1552
1553
  owner: string;
1553
1554
  creation: string;
1554
1555
  modified: string;
@@ -1558,11 +1559,11 @@ export declare const ItemList: z.ZodArray<z.ZodObject<Pick<Omit<{
1558
1559
  parenttype: string;
1559
1560
  idx: number;
1560
1561
  docstatus: number;
1561
- doctype: string;
1562
1562
  uom: string;
1563
1563
  conversion_factor: number;
1564
1564
  }, {
1565
1565
  name: string;
1566
+ doctype: string;
1566
1567
  owner: string;
1567
1568
  creation: string;
1568
1569
  modified: string;
@@ -1572,7 +1573,6 @@ export declare const ItemList: z.ZodArray<z.ZodObject<Pick<Omit<{
1572
1573
  parenttype: string;
1573
1574
  idx: number;
1574
1575
  docstatus: number;
1575
- doctype: string;
1576
1576
  uom: string;
1577
1577
  conversion_factor: number;
1578
1578
  }>, "many">;
@@ -1593,6 +1593,7 @@ export declare const ItemList: z.ZodArray<z.ZodObject<Pick<Omit<{
1593
1593
  doctype: z.ZodString;
1594
1594
  }, "strip", z.ZodTypeAny, {
1595
1595
  name: string;
1596
+ doctype: string;
1596
1597
  owner: string;
1597
1598
  creation: string;
1598
1599
  modified: string;
@@ -1602,11 +1603,11 @@ export declare const ItemList: z.ZodArray<z.ZodObject<Pick<Omit<{
1602
1603
  parenttype: string;
1603
1604
  idx: number;
1604
1605
  docstatus: number;
1605
- doctype: string;
1606
1606
  company: string;
1607
1607
  default_warehouse: string;
1608
1608
  }, {
1609
1609
  name: string;
1610
+ doctype: string;
1610
1611
  owner: string;
1611
1612
  creation: string;
1612
1613
  modified: string;
@@ -1616,7 +1617,6 @@ export declare const ItemList: z.ZodArray<z.ZodObject<Pick<Omit<{
1616
1617
  parenttype: string;
1617
1618
  idx: number;
1618
1619
  docstatus: number;
1619
- doctype: string;
1620
1620
  company: string;
1621
1621
  default_warehouse: string;
1622
1622
  }>, "many">;
@@ -81,13 +81,13 @@ export declare const PaymentEntry: z.ZodObject<{
81
81
  }, "strip", z.ZodTypeAny, {
82
82
  status: string;
83
83
  name: string;
84
+ doctype: string;
84
85
  owner: string;
85
86
  creation: string;
86
87
  modified: string;
87
88
  modified_by: string;
88
89
  idx: number;
89
90
  docstatus: number;
90
- doctype: string;
91
91
  company: string;
92
92
  naming_series: string;
93
93
  title: string;
@@ -138,13 +138,13 @@ export declare const PaymentEntry: z.ZodObject<{
138
138
  }, {
139
139
  status: string;
140
140
  name: string;
141
+ doctype: string;
141
142
  owner: string;
142
143
  creation: string;
143
144
  modified: string;
144
145
  modified_by: string;
145
146
  idx: number;
146
147
  docstatus: number;
147
- doctype: string;
148
148
  company: string;
149
149
  naming_series: string;
150
150
  title: string;