erpnext-queue-client 1.9.2 → 1.9.3
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.
|
@@ -86,7 +86,9 @@ class ERPNextItem {
|
|
|
86
86
|
body: {
|
|
87
87
|
skus: aStockSkus,
|
|
88
88
|
},
|
|
89
|
-
responseValidationModel: zod_1.z
|
|
89
|
+
responseValidationModel: zod_1.z
|
|
90
|
+
.array(zod_1.z.string())
|
|
91
|
+
.describe("Created B-Stock Item Response"),
|
|
90
92
|
});
|
|
91
93
|
return result;
|
|
92
94
|
});
|
|
@@ -207,7 +207,7 @@ const ItemDimensionsInfo = ItemListModel.pick({
|
|
|
207
207
|
shipping_length: true,
|
|
208
208
|
shipping_height: true,
|
|
209
209
|
shipping_dimensions_unit: true,
|
|
210
|
-
});
|
|
210
|
+
}).describe("Item Dimensions Info");
|
|
211
211
|
// for getItemsByShippingTemplate
|
|
212
212
|
exports.ItemListName = zod_1.z
|
|
213
213
|
.array(ItemListModel.pick({
|
|
@@ -233,6 +233,8 @@ const ItemSupplier = zod_1.z
|
|
|
233
233
|
exports.ItemSupplierResponse = zod_1.z
|
|
234
234
|
.array(ItemSupplier)
|
|
235
235
|
.describe("ItemSupplierResponse");
|
|
236
|
-
const ItemSupplierValidated = ItemSupplier.omit({ parent: true })
|
|
236
|
+
const ItemSupplierValidated = ItemSupplier.omit({ parent: true })
|
|
237
|
+
.extend({
|
|
237
238
|
item_code: zod_1.z.string(),
|
|
238
|
-
})
|
|
239
|
+
})
|
|
240
|
+
.describe("Item Supplier Validated");
|