@pipedream/shopify_developer_app 0.10.3 → 0.10.4
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.
|
@@ -5,7 +5,7 @@ export default {
|
|
|
5
5
|
key: "shopify_developer_app-search-orders",
|
|
6
6
|
name: "Search for Orders",
|
|
7
7
|
description: "Search for an order or a list of orders. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/queries/orders)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.6",
|
|
9
9
|
annotations: {
|
|
10
10
|
destructiveHint: false,
|
|
11
11
|
openWorldHint: true,
|
|
@@ -27,6 +27,12 @@ export default {
|
|
|
27
27
|
optional: true,
|
|
28
28
|
options: constants.ORDER_SORT_KEY,
|
|
29
29
|
},
|
|
30
|
+
reverse: {
|
|
31
|
+
type: "boolean",
|
|
32
|
+
label: "Sort Descending",
|
|
33
|
+
description: "Sort the results in descending order. Defaults to ascending",
|
|
34
|
+
optional: true,
|
|
35
|
+
},
|
|
30
36
|
max: {
|
|
31
37
|
type: "integer",
|
|
32
38
|
label: "Max Records",
|
|
@@ -43,6 +49,7 @@ export default {
|
|
|
43
49
|
variables: {
|
|
44
50
|
query: this.query,
|
|
45
51
|
sortKey: this.sortKey,
|
|
52
|
+
reverse: this.reverse,
|
|
46
53
|
},
|
|
47
54
|
max: this.max,
|
|
48
55
|
});
|