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
6 changes: 3 additions & 3 deletions components/shopify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/shopify",
"version": "0.6.7",
"version": "0.6.8",
"description": "Pipedream Shopify Components",
"main": "shopify.app.mjs",
"keywords": [
Expand All @@ -10,12 +10,12 @@
"homepage": "https://pipedream.com/apps/shopify",
"author": "Pipedream <[email protected]> (https://pipedream.com/)",
"dependencies": {
"@pipedream/platform": "^1.2.0",
"@pipedream/platform": "^3.0.3",
"async-retry": "^1.3.3",
"bottleneck": "^2.19.5",
"lodash.get": "^4.4.2",
"lodash.topath": "^4.5.2",
"shopify-api-node": "^3.12.4"
"shopify-api-node": "^3.14.2"
},
"gitHead": "e12480b94cc03bed4808ebc6b13e7fdb3a1ba535",
"publishConfig": {
Expand Down
41 changes: 41 additions & 0 deletions components/shopify/sources/common/constants.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,28 @@ const HEADER = {
const EVENT_TOPIC = {
APP_SCOPES_UPDATE: "app/scopes_update",
APP_UNINSTALLED: "app/uninstalled",
APP_PURCHASES_ONE_TIME_UPDATE: "app_purchases_one_time/update",
APP_SUBSCRIPTIONS_APPROACHING_CAPPED_AMOUNT: "app_subscriptions/approaching_capped_amount",
APP_SUBSCRIPTIONS_UPDATE: "app_subscriptions/update",
BULK_OPERATIONS_FINISH: "bulk_operations/finish",
CHANNELS_DELETE: "channels/delete",
CHECKOUTS_DELETE: "checkouts/delete",
COLLECTION_LISTINGS_ADD: "collection_listings/add",
COLLECTION_LISTINGS_REMOVE: "collection_listings/remove",
COLLECTION_LISTINGS_UPDATE: "collection_listings/update",
COLLECTION_PUBLICATIONS_CREATE: "collection_publications/create",
COLLECTION_PUBLICATIONS_DELETE: "collection_publications/delete",
COLLECTION_PUBLICATIONS_UPDATE: "collection_publications/update",
COLLECTIONS_CREATE: "collections/create",
COLLECTIONS_DELETE: "collections/delete",
COLLECTIONS_UPDATE: "collections/update",
COMPANIES_DELETE: "companies/delete",
COMPANY_CONTACTS_DELETE: "company_contacts/delete",
CUSTOMER_ACCOUNT_SETTINGS_UPDATE: "customer_account_settings/update",
CUSTOMER_GROUPS_UPDATE: "customer_groups/update",
CUSTOMERS_DELETE: "customers/delete",
CUSTOMERS_MERGE: "customers/merge",
DELIVERY_PROMISE_SETTINGS_UPDATE: "delivery_promise_settings/update",
DISCOUNTS_CREATE: "discounts/create",
DISCOUNTS_DELETE: "discounts/delete",
DISCOUNTS_UPDATE: "discounts/update",
Expand All @@ -24,6 +39,8 @@ const EVENT_TOPIC = {
DOMAINS_CREATE: "domains/create",
DOMAINS_DESTROY: "domains/destroy",
DOMAINS_UPDATE: "domains/update",
DRAFT_ORDERS_DELETE: "draft_orders/delete",
FULFILLMENT_EVENTS_DELETE: "fulfillment_events/delete",
FULFILLMENT_HOLDS_ADDED: "fulfillment_holds/added",
FULFILLMENT_HOLDS_RELEASED: "fulfillment_holds/released",
FULFILLMENT_ORDERS_CANCELLATION_REQUEST_ACCEPTED: "fulfillment_orders/cancellation_request_accepted",
Expand Down Expand Up @@ -60,13 +77,31 @@ const EVENT_TOPIC = {
MARKETS_CREATE: "markets/create",
MARKETS_DELETE: "markets/delete",
MARKETS_UPDATE: "markets/update",
METAFIELD_DEFINITIONS_CREATE: "metafield_definitions/create",
METAFIELD_DEFINITIONS_DELETE: "metafield_definitions/delete",
METAFIELD_DEFINITIONS_UPDATE: "metafield_definitions/update",
METAOBJECTS_CREATE: "metaobjects/create",
METAOBJECTS_DELETE: "metaobjects/delete",
METAOBJECTS_UPDATE: "metaobjects/update",
ORDERS_DELETE: "orders/delete",
ORDERS_RISK_ASSESSMENT_CHANGED: "orders/risk_assessment_changed",
ORDERS_SHOPIFY_PROTECT_ELIGIBILITY_CHANGED: "orders/shopify_protect_eligibility_changed",
PAYMENT_SCHEDULE_DUE: "payment_schedules/due",
PAYMENT_TERMS_CREATE: "payment_terms/create",
PAYMENT_TERMS_DELETE: "payment_terms/delete",
PAYMENT_TERMS_UPDATE: "payment_terms/update",
PRODUCT_FEEDS_CREATE: "product_feeds/create",
PRODUCT_FEEDS_UPDATE: "product_feeds/update",
PRODUCT_LISTINGS_ADD: "product_listings/add",
PRODUCT_LISTINGS_REMOVE: "product_listings/remove",
PRODUCT_LISTINGS_UPDATE: "product_listings/update",
PRODUCT_PUBLICATIONS_CREATE: "product_publications/create",
PRODUCT_PUBLICATIONS_DELETE: "product_publications/delete",
PRODUCT_PUBLICATIONS_UPDATE: "product_publications/update",
PRODUCTS_CREATE: "products/create",
PRODUCTS_DELETE: "products/delete",
PRODUCTS_UPDATE: "products/update",
PROFILES_DELETE: "profiles/delete",
REFUNDS_CREATE: "refunds/create",
RETURNS_APPROVE: "returns/approve",
RETURNS_CANCEL: "returns/cancel",
Expand All @@ -76,6 +111,7 @@ const EVENT_TOPIC = {
RETURNS_REOPEN: "returns/reopen",
RETURNS_REQUEST: "returns/request",
RETURNS_UPDATE: "returns/update",
REVERSE_FULFILLMENT_ORDERS_DISPOSE: "reverse_fulfillment_orders/dispose",
SCHEDULED_PRODUCT_LISTINGS_ADD: "scheduled_product_listings/add",
SCHEDULED_PRODUCT_LISTINGS_REMOVE: "scheduled_product_listings/remove",
SCHEDULED_PRODUCT_LISTINGS_UPDATE: "scheduled_product_listings/update",
Expand All @@ -86,6 +122,11 @@ const EVENT_TOPIC = {
SELLING_PLAN_GROUPS_DELETE: "selling_plan_groups/delete",
SELLING_PLAN_GROUPS_UPDATE: "selling_plan_groups/update",
SHOP_UPDATE: "shop/update",
SUBSCRIPTION_BILLINT_CYCLE_EDITS_CREATE: "subscription_billing_cycle_edits/create",
SUBSCRIPTION_BILLING_CYCLE_EDITS_DELETE: "subscription_billing_cycle_edits/delete",
SUBSCRIPTION_BILLINT_CYCLE_EDITS_UPDATE: "subscription_billing_cycle_edits/update",
SUBSCRIPTION_BILLING_CYCLES_SKIP: "subscription_billing_cycles/skip",
SUBSCRIPTION_BILLING_CYCLES_UNSKIP: "subscription_billing_cycles/unskip",
SUBSCRIPTION_CONTRACTS_ACTIVATE: "subscription_contracts/activate",
SUBSCRIPTION_CONTRACTS_CANCEL: "subscription_contracts/cancel",
SUBSCRIPTION_CONTRACTS_EXPIRE: "subscription_contracts/expire",
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.13",
version: "0.0.14",
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 Product Created (Instant)",
type: "source",
description: "Emit new event for each product added to a store.",
version: "0.0.13",
version: "0.0.14",
dedupe: "unique",
methods: {
...common.methods,
Expand Down
23 changes: 18 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading