@pipedream/shopify_developer_app 0.10.1 → 0.10.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.
Files changed (64) hide show
  1. package/actions/add-product-to-custom-collection/add-product-to-custom-collection.mjs +1 -1
  2. package/actions/add-tags/add-tags.mjs +1 -1
  3. package/actions/common/constants.mjs +18 -0
  4. package/actions/create-article/create-article.mjs +1 -1
  5. package/actions/create-blog/create-blog.mjs +1 -1
  6. package/actions/create-custom-collection/create-custom-collection.mjs +1 -1
  7. package/actions/create-customer/create-customer.mjs +1 -1
  8. package/actions/create-fulfillment/create-fulfillment.mjs +1 -1
  9. package/actions/create-metafield/create-metafield.mjs +1 -1
  10. package/actions/create-metaobject/create-metaobject.mjs +1 -1
  11. package/actions/create-order/create-order.mjs +1 -1
  12. package/actions/create-page/create-page.mjs +1 -1
  13. package/actions/create-product/create-product.mjs +1 -1
  14. package/actions/create-product-variant/create-product-variant.mjs +1 -1
  15. package/actions/create-smart-collection/create-smart-collection.mjs +1 -1
  16. package/actions/delete-article/delete-article.mjs +1 -1
  17. package/actions/delete-blog/delete-blog.mjs +1 -1
  18. package/actions/delete-metafield/delete-metafield.mjs +1 -1
  19. package/actions/delete-page/delete-page.mjs +1 -1
  20. package/actions/get-articles/get-articles.mjs +1 -1
  21. package/actions/get-metafields/get-metafields.mjs +1 -1
  22. package/actions/get-metaobjects/get-metaobjects.mjs +1 -1
  23. package/actions/get-order/get-order.mjs +1 -1
  24. package/actions/get-pages/get-pages.mjs +1 -1
  25. package/actions/refund-order/refund-order.mjs +1 -1
  26. package/actions/search-custom-collection-by-name/search-custom-collection-by-name.mjs +1 -1
  27. package/actions/search-customers/search-customers.mjs +1 -1
  28. package/actions/search-fulfillment-orders/search-fulfillment-orders.mjs +1 -1
  29. package/actions/search-orders/search-orders.mjs +10 -1
  30. package/actions/search-product-variant/search-product-variant.mjs +1 -1
  31. package/actions/search-products/search-products.mjs +1 -1
  32. package/actions/update-article/update-article.mjs +1 -1
  33. package/actions/update-customer/update-customer.mjs +1 -1
  34. package/actions/update-fulfillment-tracking-info/update-fulfillment-tracking-info.mjs +1 -1
  35. package/actions/update-inventory-level/update-inventory-level.mjs +1 -1
  36. package/actions/update-metafield/update-metafield.mjs +1 -1
  37. package/actions/update-metaobject/update-metaobject.mjs +1 -1
  38. package/actions/update-page/update-page.mjs +1 -1
  39. package/actions/update-product/update-product.mjs +1 -1
  40. package/actions/update-product-variant/update-product-variant.mjs +1 -1
  41. package/common/queries.mjs +2 -2
  42. package/package.json +1 -1
  43. package/sources/cart-updated/cart-updated.mjs +1 -1
  44. package/sources/draft-order-updated/draft-order-updated.mjs +4 -3
  45. package/sources/inventory-level-updated/inventory-level-updated.mjs +1 -1
  46. package/sources/new-abandoned-cart/new-abandoned-cart.mjs +1 -1
  47. package/sources/new-article/new-article.mjs +1 -1
  48. package/sources/new-cancelled-order/new-cancelled-order.mjs +1 -1
  49. package/sources/new-cart-created/new-cart-created.mjs +1 -1
  50. package/sources/new-customer-created/new-customer-created.mjs +1 -1
  51. package/sources/new-draft-order/new-draft-order.mjs +1 -1
  52. package/sources/new-event-emitted/new-event-emitted.mjs +1 -1
  53. package/sources/new-fulfillment-event/new-fulfillment-event.mjs +1 -1
  54. package/sources/new-order-created/new-order-created.mjs +1 -1
  55. package/sources/new-order-fulfilled/new-order-fulfilled.mjs +1 -1
  56. package/sources/new-page/new-page.mjs +1 -1
  57. package/sources/new-paid-order/new-paid-order.mjs +1 -1
  58. package/sources/new-product-created/new-product-created.mjs +1 -1
  59. package/sources/new-product-updated/new-product-updated.mjs +1 -1
  60. package/sources/new-refund-created/new-refund-created.mjs +1 -1
  61. package/sources/new-updated-customer/new-updated-customer.mjs +1 -1
  62. package/sources/new-updated-order/new-updated-order.mjs +1 -1
  63. package/sources/product-added-to-custom-collection/product-added-to-custom-collection.mjs +1 -1
  64. package/sources/shop-update/shop-update.mjs +1 -1
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-add-product-to-custom-collection",
14
- version: "0.0.10",
14
+ version: "0.0.11",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-add-tags",
14
- version: "0.0.10",
14
+ version: "0.0.11",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -80,7 +80,25 @@ const METAFIELD_TYPES = {
80
80
  "list.weight": "string[]",
81
81
  };
82
82
 
83
+ const ORDER_SORT_KEY = [
84
+ "CREATED_AT",
85
+ "CURRENT_TOTAL_PRICE",
86
+ "CUSTOMER_NAME",
87
+ "DESTINATION",
88
+ "FINANCIAL_STATUS",
89
+ "FULFILLMENT_STATUS",
90
+ "ID",
91
+ "ORDER_NUMBER",
92
+ "PO_NUMBER",
93
+ "PROCESSED_AT",
94
+ "RELEVANCE",
95
+ "TOTAL_ITEMS_QUANTITY",
96
+ "TOTAL_PRICE",
97
+ "UPDATED_AT",
98
+ ];
99
+
83
100
  export default {
84
101
  RESOURCE_TYPES,
85
102
  METAFIELD_TYPES,
103
+ ORDER_SORT_KEY,
86
104
  };
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-create-article",
14
- version: "0.0.12",
14
+ version: "0.0.13",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-create-blog",
14
- version: "0.0.12",
14
+ version: "0.0.13",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-create-custom-collection",
14
- version: "0.0.10",
14
+ version: "0.0.11",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "shopify_developer_app-create-customer",
5
5
  name: "Create Customer",
6
6
  description: "Create a new customer. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/mutations/customercreate)",
7
- version: "0.0.10",
7
+ version: "0.0.11",
8
8
  annotations: {
9
9
  destructiveHint: false,
10
10
  openWorldHint: true,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "shopify_developer_app-create-fulfillment",
5
5
  name: "Create Fulfillment",
6
6
  description: "Create a fulfillment. [See the documentation](https://shopify.dev/docs/api/admin-graphql/unstable/mutations/fulfillmentcreate)",
7
- version: "0.0.2",
7
+ version: "0.0.3",
8
8
  annotations: {
9
9
  destructiveHint: false,
10
10
  openWorldHint: true,
@@ -10,7 +10,7 @@ const {
10
10
  export default {
11
11
  ...others,
12
12
  key: "shopify_developer_app-create-metafield",
13
- version: "0.0.11",
13
+ version: "0.0.12",
14
14
  name,
15
15
  description,
16
16
  type,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-create-metaobject",
14
- version: "0.0.12",
14
+ version: "0.0.13",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "shopify_developer_app-create-order",
6
6
  name: "Create Order",
7
7
  description: "Creates a new order. For full order object details [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/mutations/ordercreate)",
8
- version: "0.0.11",
8
+ version: "0.0.12",
9
9
  annotations: {
10
10
  destructiveHint: false,
11
11
  openWorldHint: true,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-create-page",
14
- version: "0.0.12",
14
+ version: "0.0.13",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-create-product",
14
- version: "0.0.10",
14
+ version: "0.0.11",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-create-product-variant",
14
- version: "0.0.11",
14
+ version: "0.0.12",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-create-smart-collection",
14
- version: "0.0.10",
14
+ version: "0.0.11",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-delete-article",
14
- version: "0.0.12",
14
+ version: "0.0.13",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-delete-blog",
14
- version: "0.0.12",
14
+ version: "0.0.13",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -9,7 +9,7 @@ const {
9
9
  export default {
10
10
  ...others,
11
11
  key: "shopify_developer_app-delete-metafield",
12
- version: "0.0.11",
12
+ version: "0.0.12",
13
13
  name,
14
14
  description,
15
15
  type,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-delete-page",
14
- version: "0.0.12",
14
+ version: "0.0.13",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-get-articles",
14
- version: "0.0.12",
14
+ version: "0.0.13",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -8,7 +8,7 @@ const {
8
8
 
9
9
  export default {
10
10
  key: "shopify_developer_app-get-metafields",
11
- version: "0.0.11",
11
+ version: "0.0.12",
12
12
  name,
13
13
  description,
14
14
  type,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-get-metaobjects",
14
- version: "0.0.11",
14
+ version: "0.0.12",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -6,7 +6,7 @@ export default {
6
6
  key: "shopify_developer_app-get-order",
7
7
  name: "Get Order",
8
8
  description: "Retrieve an order by specifying the order ID. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/queries/order)",
9
- version: "0.0.10",
9
+ version: "0.0.11",
10
10
  annotations: {
11
11
  destructiveHint: false,
12
12
  openWorldHint: true,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-get-pages",
14
- version: "0.0.12",
14
+ version: "0.0.13",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "shopify_developer_app-refund-order",
6
6
  name: "Refund Order",
7
7
  description: "Refund an order. [See the documentation](https://shopify.dev/docs/api/admin-graphql/unstable/mutations/refundcreate)",
8
- version: "0.0.3",
8
+ version: "0.0.4",
9
9
  annotations: {
10
10
  destructiveHint: false,
11
11
  openWorldHint: true,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-search-custom-collection-by-name",
14
- version: "0.0.10",
14
+ version: "0.0.11",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "shopify_developer_app-search-customers",
5
5
  name: "Search for Customers",
6
6
  description: "Search for a customer or a list of customers. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/queries/customers)",
7
- version: "0.0.10",
7
+ version: "0.0.11",
8
8
  annotations: {
9
9
  destructiveHint: false,
10
10
  openWorldHint: true,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "shopify_developer_app-search-fulfillment-orders",
5
5
  name: "Search for Fulfillment Orders",
6
6
  description: "Search for a fulfillment order or a list of fulfillment orders. [See the documentation](https://shopify.dev/docs/api/admin-graphql/unstable/queries/fulfillmentorders)",
7
- version: "0.0.2",
7
+ version: "0.0.3",
8
8
  annotations: {
9
9
  destructiveHint: false,
10
10
  openWorldHint: true,
@@ -1,10 +1,11 @@
1
1
  import shopify from "../../shopify_developer_app.app.mjs";
2
+ import constants from "../common/constants.mjs";
2
3
 
3
4
  export default {
4
5
  key: "shopify_developer_app-search-orders",
5
6
  name: "Search for Orders",
6
7
  description: "Search for an order or a list of orders. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/queries/orders)",
7
- version: "0.0.4",
8
+ version: "0.0.5",
8
9
  annotations: {
9
10
  destructiveHint: false,
10
11
  openWorldHint: true,
@@ -19,6 +20,13 @@ export default {
19
20
  description: "The search query",
20
21
  optional: true,
21
22
  },
23
+ sortKey: {
24
+ type: "string",
25
+ label: "Sort Key",
26
+ description: "The key to sort the results by",
27
+ optional: true,
28
+ options: constants.ORDER_SORT_KEY,
29
+ },
22
30
  max: {
23
31
  type: "integer",
24
32
  label: "Max Records",
@@ -34,6 +42,7 @@ export default {
34
42
  ],
35
43
  variables: {
36
44
  query: this.query,
45
+ sortKey: this.sortKey,
37
46
  },
38
47
  max: this.max,
39
48
  });
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-search-product-variant",
14
- version: "0.0.10",
14
+ version: "0.0.11",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-search-products",
14
- version: "0.0.10",
14
+ version: "0.0.11",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-update-article",
14
- version: "0.0.12",
14
+ version: "0.0.13",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -6,7 +6,7 @@ export default {
6
6
  key: "shopify_developer_app-update-customer",
7
7
  name: "Update Customer",
8
8
  description: "Update a existing customer. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/mutations/customerupdate)",
9
- version: "0.0.11",
9
+ version: "0.0.12",
10
10
  annotations: {
11
11
  destructiveHint: true,
12
12
  openWorldHint: true,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "shopify_developer_app-update-fulfillment-tracking-info",
5
5
  name: "Update Fulfillment Tracking Info",
6
6
  description: "Update the tracking info for a fulfillment. [See the documentation](https://shopify.dev/docs/api/admin-graphql/unstable/mutations/fulfillmenttrackinginfoupdate)",
7
- version: "0.0.2",
7
+ version: "0.0.3",
8
8
  annotations: {
9
9
  destructiveHint: true,
10
10
  openWorldHint: true,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-update-inventory-level",
14
- version: "0.0.10",
14
+ version: "0.0.11",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -9,7 +9,7 @@ const {
9
9
  export default {
10
10
  ...others,
11
11
  key: "shopify_developer_app-update-metafield",
12
- version: "0.0.11",
12
+ version: "0.0.12",
13
13
  name,
14
14
  description,
15
15
  type,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-update-metaobject",
14
- version: "0.0.13",
14
+ version: "0.0.14",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-update-page",
14
- version: "0.0.12",
14
+ version: "0.0.13",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -6,7 +6,7 @@ export default {
6
6
  key: "shopify_developer_app-update-product",
7
7
  name: "Update Product",
8
8
  description: "Update an existing product. [See the documentation](https://shopify.dev/docs/api/admin-graphql/latest/mutations/productupdate)",
9
- version: "0.0.11",
9
+ version: "0.0.12",
10
10
  annotations: {
11
11
  destructiveHint: true,
12
12
  openWorldHint: true,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-update-product-variant",
14
- version: "0.0.12",
14
+ version: "0.0.13",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -556,8 +556,8 @@ const GET_FULFILLMENT_ORDER = `
556
556
  `;
557
557
 
558
558
  const LIST_ORDERS = `
559
- query ($first: Int, $after: String, $reverse: Boolean, $query: String){
560
- orders(first: $first, after: $after, reverse: $reverse, query: $query) {
559
+ query ($first: Int, $after: String, $reverse: Boolean, $query: String, $sortKey: OrderSortKeys){
560
+ orders(first: $first, after: $after, reverse: $reverse, query: $query, sortKey: $sortKey) {
561
561
  nodes {
562
562
  id
563
563
  name
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/shopify_developer_app",
3
- "version": "0.10.1",
3
+ "version": "0.10.3",
4
4
  "description": "Pipedream Shopify (Developer App) Components",
5
5
  "main": "shopify_developer_app.app.mjs",
6
6
  "keywords": [
@@ -5,7 +5,7 @@ export default {
5
5
  key: "shopify_developer_app-cart-updated",
6
6
  name: "Cart Updated (Instant)",
7
7
  description: "Emit new event when a cart is updated.",
8
- version: "0.0.2",
8
+ version: "0.0.3",
9
9
  type: "source",
10
10
  dedupe: "unique",
11
11
  methods: {
@@ -7,7 +7,7 @@ export default {
7
7
  name: "Draft Order Updated (Instant)",
8
8
  type: "source",
9
9
  description: "Emit new event for each draft order updated in a store.",
10
- version: "0.0.1",
10
+ version: "0.0.3",
11
11
  dedupe: "unique",
12
12
  methods: {
13
13
  ...common.methods,
@@ -15,10 +15,11 @@ export default {
15
15
  return "DRAFT_ORDERS_UPDATE";
16
16
  },
17
17
  generateMeta(resource) {
18
+ const ts = Date.parse(resource.updated_at);
18
19
  return {
19
- id: resource.id,
20
+ id: ts,
20
21
  summary: `Draft order updated ${resource.id}`,
21
- ts: Date.parse(resource.created_at),
22
+ ts,
22
23
  };
23
24
  },
24
25
  },
@@ -5,7 +5,7 @@ export default {
5
5
  key: "shopify_developer_app-inventory-level-updated",
6
6
  name: "Inventory Level Updated (Instant)",
7
7
  description: "Emit new event when an inventory level is updated.",
8
- version: "0.0.2",
8
+ version: "0.0.3",
9
9
  type: "source",
10
10
  dedupe: "unique",
11
11
  methods: {
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-new-abandoned-cart",
14
- version: "0.0.11",
14
+ version: "0.0.12",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-new-article",
14
- version: "0.0.10",
14
+ version: "0.0.11",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -6,7 +6,7 @@ export default {
6
6
  name: "New Cancelled Order (Instant)",
7
7
  type: "source",
8
8
  description: "Emit new event each time a new order is cancelled.",
9
- version: "0.0.14",
9
+ version: "0.0.15",
10
10
  dedupe: "unique",
11
11
  methods: {
12
12
  ...common.methods,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "shopify_developer_app-new-cart-created",
6
6
  name: "New Cart Created (Instant)",
7
7
  description: "Emit new event when a new cart is created.",
8
- version: "0.0.2",
8
+ version: "0.0.3",
9
9
  type: "source",
10
10
  dedupe: "unique",
11
11
  methods: {
@@ -6,7 +6,7 @@ export default {
6
6
  name: "New Customer Created (Instant)",
7
7
  type: "source",
8
8
  description: "Emit new event for each new customer added to a store.",
9
- version: "0.0.14",
9
+ version: "0.0.15",
10
10
  dedupe: "unique",
11
11
  methods: {
12
12
  ...common.methods,
@@ -6,7 +6,7 @@ export default {
6
6
  name: "New Draft Order (Instant)",
7
7
  type: "source",
8
8
  description: "Emit new event for each new draft order submitted to a store.",
9
- version: "0.0.14",
9
+ version: "0.0.15",
10
10
  dedupe: "unique",
11
11
  methods: {
12
12
  ...common.methods,
@@ -7,7 +7,7 @@ export default {
7
7
  name: "New Event Emitted (Instant)",
8
8
  type: "source",
9
9
  description: "Emit new event for each new Shopify event.",
10
- version: "0.0.15",
10
+ version: "0.0.16",
11
11
  dedupe: "unique",
12
12
  props: {
13
13
  ...common.props,
@@ -6,7 +6,7 @@ export default {
6
6
  name: "New Fulfillment Event (Instant)",
7
7
  type: "source",
8
8
  description: "Emit new event for each new fulfillment event for a store.",
9
- version: "0.0.12",
9
+ version: "0.0.13",
10
10
  dedupe: "unique",
11
11
  methods: {
12
12
  ...common.methods,
@@ -6,7 +6,7 @@ export default {
6
6
  name: "New Order Created (Instant)",
7
7
  type: "source",
8
8
  description: "Emit new event for each new order submitted to a store.",
9
- version: "0.0.14",
9
+ version: "0.0.15",
10
10
  dedupe: "unique",
11
11
  methods: {
12
12
  ...common.methods,
@@ -6,7 +6,7 @@ export default {
6
6
  name: "New Order Fulfilled (Instant)",
7
7
  type: "source",
8
8
  description: "Emit new event whenever an order is fulfilled.",
9
- version: "0.0.11",
9
+ version: "0.0.12",
10
10
  dedupe: "unique",
11
11
  methods: {
12
12
  ...common.methods,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-new-page",
14
- version: "0.0.10",
14
+ version: "0.0.11",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -6,7 +6,7 @@ export default {
6
6
  name: "New Paid Order (Instant)",
7
7
  type: "source",
8
8
  description: "Emit new event each time a new order is paid.",
9
- version: "0.0.14",
9
+ version: "0.0.15",
10
10
  dedupe: "unique",
11
11
  methods: {
12
12
  ...common.methods,
@@ -6,7 +6,7 @@ export default {
6
6
  name: "New Product Created (Instant)",
7
7
  type: "source",
8
8
  description: "Emit new event for each product added to a store.",
9
- version: "0.0.14",
9
+ version: "0.0.15",
10
10
  dedupe: "unique",
11
11
  methods: {
12
12
  ...common.methods,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "shopify_developer_app-new-product-updated",
6
6
  name: "New Product Updated (Instant)",
7
7
  description: "Emit new event for each product updated in a store.",
8
- version: "0.0.12",
8
+ version: "0.0.13",
9
9
  type: "source",
10
10
  dedupe: "unique",
11
11
  props: {
@@ -5,7 +5,7 @@ export default {
5
5
  key: "shopify_developer_app-new-refund-created",
6
6
  name: "New Refund Created (Instant)",
7
7
  description: "Emit new event when a new refund is created.",
8
- version: "0.0.11",
8
+ version: "0.0.12",
9
9
  type: "source",
10
10
  dedupe: "unique",
11
11
  methods: {
@@ -6,7 +6,7 @@ export default {
6
6
  name: "New Updated Customer (Instant)",
7
7
  type: "source",
8
8
  description: "Emit new event each time a customer's information is updated.",
9
- version: "0.0.14",
9
+ version: "0.0.15",
10
10
  dedupe: "unique",
11
11
  methods: {
12
12
  ...common.methods,
@@ -6,7 +6,7 @@ export default {
6
6
  name: "New Updated Order (Instant)",
7
7
  type: "source",
8
8
  description: "Emit new event each time an order is updated.",
9
- version: "0.0.14",
9
+ version: "0.0.15",
10
10
  dedupe: "unique",
11
11
  methods: {
12
12
  ...common.methods,
@@ -11,7 +11,7 @@ const props = adjustPropDefinitions(others.props, shopify);
11
11
  export default {
12
12
  ...others,
13
13
  key: "shopify_developer_app-product-added-to-custom-collection",
14
- version: "0.0.10",
14
+ version: "0.0.11",
15
15
  name,
16
16
  description,
17
17
  type,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "shopify_developer_app-shop-update",
6
6
  name: "Shop Updated (Instant)",
7
7
  description: "Emit new event when a shop is updated.",
8
- version: "0.0.2",
8
+ version: "0.0.3",
9
9
  type: "source",
10
10
  dedupe: "unique",
11
11
  methods: {