Skip to content

Commit 7f9b6a4

Browse files
authored
Shopify - New Event Emitted (Instant) not emitting events (#14893)
* remove filtering by metafields * versions * pnpm-lock.yaml * version
1 parent a68048d commit 7f9b6a4

File tree

16 files changed

+16
-16
lines changed

16 files changed

+16
-16
lines changed

components/domo/domo.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ export default {
88
console.log(Object.keys(this.$auth));
99
},
1010
},
11-
};
11+
};

components/shopify_developer_app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/shopify_developer_app",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "Pipedream Shopify (Developer App) Components",
55
"main": "shopify_developer_app.app.mjs",
66
"keywords": [

components/shopify_developer_app/sources/common/webhook.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export default {
110110
status: 200,
111111
});
112112

113-
if (this.isRelevant(resource) && this.checkMetaFields(resource)) {
113+
if (this.isRelevant(resource)) {
114114
this.$emit(resource, this.generateMeta(resource));
115115
}
116116
},

components/shopify_developer_app/sources/new-cancelled-order/new-cancelled-order.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "New Cancelled Order (Instant)",
88
type: "source",
99
description: "Emit new event each time a new order is cancelled.",
10-
version: "0.0.4",
10+
version: "0.0.5",
1111
dedupe: "unique",
1212
methods: {
1313
...common.methods,

components/shopify_developer_app/sources/new-customer-created/new-customer-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "New Customer Created (Instant)",
88
type: "source",
99
description: "Emit new event for each new customer added to a store.",
10-
version: "0.0.4",
10+
version: "0.0.5",
1111
dedupe: "unique",
1212
methods: {
1313
...common.methods,

components/shopify_developer_app/sources/new-draft-order/new-draft-order.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "New Draft Order (Instant)",
88
type: "source",
99
description: "Emit new event for each new draft order submitted to a store.",
10-
version: "0.0.4",
10+
version: "0.0.5",
1111
dedupe: "unique",
1212
methods: {
1313
...common.methods,

components/shopify_developer_app/sources/new-event-emitted/new-event-emitted.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "New Event Emitted (Instant)",
88
type: "source",
99
description: "Emit new event for each new Shopify event.",
10-
version: "0.0.4",
10+
version: "0.0.5",
1111
dedupe: "unique",
1212
props: {
1313
...common.props,

components/shopify_developer_app/sources/new-fulfillment-event/new-fulfillment-event.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "New Fulfillment Event (Instant)",
88
type: "source",
99
description: "Emit new event for each new fulfillment event for a store.",
10-
version: "0.0.1",
10+
version: "0.0.2",
1111
dedupe: "unique",
1212
methods: {
1313
...common.methods,

components/shopify_developer_app/sources/new-order-created/new-order-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "New Order Created (Instant)",
88
type: "source",
99
description: "Emit new event for each new order submitted to a store.",
10-
version: "0.0.4",
10+
version: "0.0.5",
1111
dedupe: "unique",
1212
methods: {
1313
...common.methods,

components/shopify_developer_app/sources/new-order-fulfilled/new-order-fulfilled.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "New Order Fulfilled (Instant)",
88
type: "source",
99
description: "Emit new event whenever an order is fulfilled.",
10-
version: "0.0.1",
10+
version: "0.0.2",
1111
dedupe: "unique",
1212
methods: {
1313
...common.methods,

0 commit comments

Comments
 (0)