Skip to content

Commit df6f1dc

Browse files
committed
some adjusts
1 parent 2bcb066 commit df6f1dc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

components/zenventory/actions/create-purchase-order/create-purchase-order.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export default {
7979
items: {
8080
type: "string[]",
8181
label: "Items",
82-
description: "A list of object of ordered items. **Example: {\"itemId\": 123, \"sku\": \"SKU123\", \"description\": \"description\", \"quantity\": 1}**. [See the documentation](https://docs.zenventory.com/#tag/purchase_order/paths/~1purchase-orders/post) fro further information.",
82+
description: "A list of object of ordered items. **Example: {\"itemId\": 123, \"sku\": \"SKU123\", \"description\": \"description\", \"quantity\": 1}**. [See the documentation](https://docs.zenventory.com/#tag/purchase_order/paths/~1purchase-orders/post) for further information.",
8383
optional: true,
8484
},
8585
},

components/zenventory/zenventory.app.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ export default {
5656
...opts,
5757
});
5858
},
59-
listCustomerOrder(opts = {}) {
59+
listCustomerOrders(opts = {}) {
6060
return this._makeRequest({
6161
path: "/customer-orders",
6262
...opts,
6363
});
6464
},
65-
listPurchaseOrder(opts = {}) {
65+
listPurchaseOrders(opts = {}) {
6666
return this._makeRequest({
6767
path: "/purchase-orders",
6868
...opts,

0 commit comments

Comments
 (0)