Skip to content

Commit f6741e0

Browse files
committed
some adjusts
1 parent 9394a7f commit f6741e0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

components/allocadence/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.allocadence.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.allocadence.com/#tag/purchase_order/paths/~1purchase-orders/post) for further information.",
8383
optional: true,
8484
},
8585
},

components/allocadence/allocadence.app.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ export default {
3737
...opts,
3838
});
3939
},
40-
listCustomerOrder(opts = {}) {
40+
listCustomerOrders(opts = {}) {
4141
return this._makeRequest({
4242
path: "/customer-orders",
4343
...opts,
4444
});
4545
},
46-
listPurchaseOrder(opts = {}) {
46+
listPurchaseOrders(opts = {}) {
4747
return this._makeRequest({
4848
path: "/purchase-orders",
4949
...opts,

0 commit comments

Comments
 (0)