Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/shopify_developer_app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/shopify_developer_app",
"version": "0.4.1",
"version": "0.4.2",
"description": "Pipedream Shopify (Developer App) Components",
"main": "shopify_developer_app.app.mjs",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default {
status: 200,
});

if (this.isRelevant(resource) && this.checkMetaFields(resource)) {
if (this.isRelevant(resource)) {
this.$emit(resource, this.generateMeta(resource));
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
name: "New Cancelled Order (Instant)",
type: "source",
description: "Emit new event each time a new order is cancelled.",
version: "0.0.4",
version: "0.0.5",
dedupe: "unique",
methods: {
...common.methods,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
name: "New Customer Created (Instant)",
type: "source",
description: "Emit new event for each new customer added to a store.",
version: "0.0.4",
version: "0.0.5",
dedupe: "unique",
methods: {
...common.methods,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
name: "New Draft Order (Instant)",
type: "source",
description: "Emit new event for each new draft order submitted to a store.",
version: "0.0.4",
version: "0.0.5",
dedupe: "unique",
methods: {
...common.methods,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
name: "New Event Emitted (Instant)",
type: "source",
description: "Emit new event for each new Shopify event.",
version: "0.0.4",
version: "0.0.5",
dedupe: "unique",
props: {
...common.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
name: "New Order Created (Instant)",
type: "source",
description: "Emit new event for each new order submitted to a store.",
version: "0.0.4",
version: "0.0.5",
dedupe: "unique",
methods: {
...common.methods,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
name: "New Paid Order (Instant)",
type: "source",
description: "Emit new event each time a new order is paid.",
version: "0.0.4",
version: "0.0.5",
dedupe: "unique",
methods: {
...common.methods,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
name: "New Product Created (Instant)",
type: "source",
description: "Emit new event for each product added to a store.",
version: "0.0.4",
version: "0.0.5",
dedupe: "unique",
methods: {
...common.methods,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "shopify_developer_app-new-product-updated",
name: "New Product Updated (Instant)",
description: "Emit new event for each product updated in a store.",
version: "0.0.2",
version: "0.0.3",
type: "source",
dedupe: "unique",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "shopify_developer_app-new-refund-created",
name: "New Refund Created (Instant)",
description: "Emit new event when a new refund is created.",
version: "0.0.1",
version: "0.0.2",
type: "source",
dedupe: "unique",
methods: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
name: "New Shipment (Instant)",
type: "source",
description: "Emit new event for each new fulfillment event for a store.",
version: "0.0.4",
version: "0.0.5",
dedupe: "unique",
methods: {
...common.methods,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
name: "New Updated Customer (Instant)",
type: "source",
description: "Emit new event each time a customer's information is updated.",
version: "0.0.4",
version: "0.0.5",
dedupe: "unique",
methods: {
...common.methods,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
name: "New Updated Order (Instant)",
type: "source",
description: "Emit new event each time an order is updated.",
version: "0.0.4",
version: "0.0.5",
dedupe: "unique",
methods: {
...common.methods,
Expand Down
Loading