shop-cli 0.1.1
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.
- package/LICENSE +21 -0
- package/README.md +392 -0
- package/bin/shop-cli.js +17 -0
- package/bin/shop.js +16 -0
- package/dist/adminClient.d.ts +34 -0
- package/dist/adminClient.js +144 -0
- package/dist/cli/client.d.ts +10 -0
- package/dist/cli/client.js +56 -0
- package/dist/cli/command.d.ts +5 -0
- package/dist/cli/command.js +62 -0
- package/dist/cli/errors.d.ts +4 -0
- package/dist/cli/errors.js +35 -0
- package/dist/cli/gid.d.ts +3 -0
- package/dist/cli/gid.js +42 -0
- package/dist/cli/globalFlags.d.ts +15 -0
- package/dist/cli/globalFlags.js +100 -0
- package/dist/cli/headers.d.ts +2 -0
- package/dist/cli/headers.js +79 -0
- package/dist/cli/help/format.d.ts +8 -0
- package/dist/cli/help/format.js +78 -0
- package/dist/cli/help/registry.d.ts +5 -0
- package/dist/cli/help/registry.js +6443 -0
- package/dist/cli/help/render.d.ts +8 -0
- package/dist/cli/help/render.js +399 -0
- package/dist/cli/help/spec.d.ts +39 -0
- package/dist/cli/help/spec.js +17 -0
- package/dist/cli/input.d.ts +9 -0
- package/dist/cli/input.js +104 -0
- package/dist/cli/introspection/deprecations.d.ts +1 -0
- package/dist/cli/introspection/deprecations.js +83 -0
- package/dist/cli/introspection/format.d.ts +6 -0
- package/dist/cli/introspection/format.js +63 -0
- package/dist/cli/introspection/index.d.ts +14 -0
- package/dist/cli/introspection/index.js +89 -0
- package/dist/cli/introspection/resources.d.ts +1 -0
- package/dist/cli/introspection/resources.js +127 -0
- package/dist/cli/output/computedFields.d.ts +39 -0
- package/dist/cli/output/computedFields.js +104 -0
- package/dist/cli/output.d.ts +37 -0
- package/dist/cli/output.js +332 -0
- package/dist/cli/parse-command.d.ts +18 -0
- package/dist/cli/parse-command.js +109 -0
- package/dist/cli/router.d.ts +29 -0
- package/dist/cli/router.js +480 -0
- package/dist/cli/selection/buildAllSelection.d.ts +13 -0
- package/dist/cli/selection/buildAllSelection.js +108 -0
- package/dist/cli/selection/graphqlSelection.d.ts +5 -0
- package/dist/cli/selection/graphqlSelection.js +301 -0
- package/dist/cli/selection/select.d.ts +13 -0
- package/dist/cli/selection/select.js +136 -0
- package/dist/cli/selection/stripDeprecated.d.ts +2 -0
- package/dist/cli/selection/stripDeprecated.js +63 -0
- package/dist/cli/suggest.d.ts +5 -0
- package/dist/cli/suggest.js +88 -0
- package/dist/cli/userErrors.d.ts +4 -0
- package/dist/cli/userErrors.js +41 -0
- package/dist/cli/verbs/_shared.d.ts +38 -0
- package/dist/cli/verbs/_shared.js +181 -0
- package/dist/cli/verbs/abandoned-checkouts.d.ts +6 -0
- package/dist/cli/verbs/abandoned-checkouts.js +259 -0
- package/dist/cli/verbs/app-billing.d.ts +6 -0
- package/dist/cli/verbs/app-billing.js +452 -0
- package/dist/cli/verbs/apps.d.ts +6 -0
- package/dist/cli/verbs/apps.js +296 -0
- package/dist/cli/verbs/articles.d.ts +6 -0
- package/dist/cli/verbs/articles.js +251 -0
- package/dist/cli/verbs/backup.d.ts +6 -0
- package/dist/cli/verbs/backup.js +94 -0
- package/dist/cli/verbs/blogs.d.ts +6 -0
- package/dist/cli/verbs/blogs.js +273 -0
- package/dist/cli/verbs/bulk-operations.d.ts +6 -0
- package/dist/cli/verbs/bulk-operations.js +272 -0
- package/dist/cli/verbs/business-entities.d.ts +6 -0
- package/dist/cli/verbs/business-entities.js +102 -0
- package/dist/cli/verbs/carrier-services.d.ts +6 -0
- package/dist/cli/verbs/carrier-services.js +195 -0
- package/dist/cli/verbs/cart-transforms.d.ts +6 -0
- package/dist/cli/verbs/cart-transforms.js +141 -0
- package/dist/cli/verbs/cash-tracking.d.ts +6 -0
- package/dist/cli/verbs/cash-tracking.js +118 -0
- package/dist/cli/verbs/catalogs.d.ts +6 -0
- package/dist/cli/verbs/catalogs.js +267 -0
- package/dist/cli/verbs/channels.d.ts +6 -0
- package/dist/cli/verbs/channels.js +120 -0
- package/dist/cli/verbs/checkout-branding.d.ts +6 -0
- package/dist/cli/verbs/checkout-branding.js +144 -0
- package/dist/cli/verbs/checkout-profiles.d.ts +6 -0
- package/dist/cli/verbs/checkout-profiles.js +124 -0
- package/dist/cli/verbs/collections.d.ts +6 -0
- package/dist/cli/verbs/collections.js +620 -0
- package/dist/cli/verbs/comments.d.ts +6 -0
- package/dist/cli/verbs/comments.js +160 -0
- package/dist/cli/verbs/companies.d.ts +6 -0
- package/dist/cli/verbs/companies.js +313 -0
- package/dist/cli/verbs/company-contacts.d.ts +6 -0
- package/dist/cli/verbs/company-contacts.js +318 -0
- package/dist/cli/verbs/company-locations.d.ts +6 -0
- package/dist/cli/verbs/company-locations.js +467 -0
- package/dist/cli/verbs/customer-account-pages.d.ts +6 -0
- package/dist/cli/verbs/customer-account-pages.js +97 -0
- package/dist/cli/verbs/customer-payment-methods.d.ts +6 -0
- package/dist/cli/verbs/customer-payment-methods.js +358 -0
- package/dist/cli/verbs/customer-privacy.d.ts +6 -0
- package/dist/cli/verbs/customer-privacy.js +167 -0
- package/dist/cli/verbs/customer-segments.d.ts +6 -0
- package/dist/cli/verbs/customer-segments.js +193 -0
- package/dist/cli/verbs/customers.d.ts +6 -0
- package/dist/cli/verbs/customers.js +793 -0
- package/dist/cli/verbs/delegate-tokens.d.ts +6 -0
- package/dist/cli/verbs/delegate-tokens.js +95 -0
- package/dist/cli/verbs/delivery-customizations.d.ts +6 -0
- package/dist/cli/verbs/delivery-customizations.js +205 -0
- package/dist/cli/verbs/delivery-profile-locations.d.ts +6 -0
- package/dist/cli/verbs/delivery-profile-locations.js +90 -0
- package/dist/cli/verbs/delivery-profiles.d.ts +6 -0
- package/dist/cli/verbs/delivery-profiles.js +207 -0
- package/dist/cli/verbs/delivery-promises.d.ts +6 -0
- package/dist/cli/verbs/delivery-promises.js +262 -0
- package/dist/cli/verbs/delivery-settings.d.ts +6 -0
- package/dist/cli/verbs/delivery-settings.js +85 -0
- package/dist/cli/verbs/discount-nodes.d.ts +6 -0
- package/dist/cli/verbs/discount-nodes.js +169 -0
- package/dist/cli/verbs/discount-redeem-codes.d.ts +6 -0
- package/dist/cli/verbs/discount-redeem-codes.js +102 -0
- package/dist/cli/verbs/discount-saved-searches.d.ts +6 -0
- package/dist/cli/verbs/discount-saved-searches.js +113 -0
- package/dist/cli/verbs/discounts-automatic.d.ts +6 -0
- package/dist/cli/verbs/discounts-automatic.js +501 -0
- package/dist/cli/verbs/discounts-code.d.ts +6 -0
- package/dist/cli/verbs/discounts-code.js +540 -0
- package/dist/cli/verbs/disputes.d.ts +6 -0
- package/dist/cli/verbs/disputes.js +154 -0
- package/dist/cli/verbs/draft-orders.d.ts +6 -0
- package/dist/cli/verbs/draft-orders.js +475 -0
- package/dist/cli/verbs/events.d.ts +6 -0
- package/dist/cli/verbs/events.js +182 -0
- package/dist/cli/verbs/file-saved-searches.d.ts +6 -0
- package/dist/cli/verbs/file-saved-searches.js +83 -0
- package/dist/cli/verbs/files.d.ts +6 -0
- package/dist/cli/verbs/files.js +329 -0
- package/dist/cli/verbs/finance.d.ts +6 -0
- package/dist/cli/verbs/finance.js +115 -0
- package/dist/cli/verbs/flow.d.ts +6 -0
- package/dist/cli/verbs/flow.js +94 -0
- package/dist/cli/verbs/fulfillment-constraint-rules.d.ts +6 -0
- package/dist/cli/verbs/fulfillment-constraint-rules.js +139 -0
- package/dist/cli/verbs/fulfillment-orders.d.ts +6 -0
- package/dist/cli/verbs/fulfillment-orders.js +689 -0
- package/dist/cli/verbs/fulfillment-services.d.ts +6 -0
- package/dist/cli/verbs/fulfillment-services.js +212 -0
- package/dist/cli/verbs/fulfillments.d.ts +6 -0
- package/dist/cli/verbs/fulfillments.js +279 -0
- package/dist/cli/verbs/gift-cards.d.ts +6 -0
- package/dist/cli/verbs/gift-cards.js +359 -0
- package/dist/cli/verbs/graphql.d.ts +14 -0
- package/dist/cli/verbs/graphql.js +285 -0
- package/dist/cli/verbs/inventory-items.d.ts +6 -0
- package/dist/cli/verbs/inventory-items.js +164 -0
- package/dist/cli/verbs/inventory-shipments.d.ts +6 -0
- package/dist/cli/verbs/inventory-shipments.js +276 -0
- package/dist/cli/verbs/inventory-transfers.d.ts +6 -0
- package/dist/cli/verbs/inventory-transfers.js +396 -0
- package/dist/cli/verbs/inventory.d.ts +6 -0
- package/dist/cli/verbs/inventory.js +557 -0
- package/dist/cli/verbs/locales.d.ts +6 -0
- package/dist/cli/verbs/locales.js +61 -0
- package/dist/cli/verbs/locations.d.ts +6 -0
- package/dist/cli/verbs/locations.js +385 -0
- package/dist/cli/verbs/market-localizations.d.ts +6 -0
- package/dist/cli/verbs/market-localizations.js +291 -0
- package/dist/cli/verbs/market-web-presences.d.ts +6 -0
- package/dist/cli/verbs/market-web-presences.js +139 -0
- package/dist/cli/verbs/marketing-activities.d.ts +6 -0
- package/dist/cli/verbs/marketing-activities.js +353 -0
- package/dist/cli/verbs/marketing-events.d.ts +6 -0
- package/dist/cli/verbs/marketing-events.js +132 -0
- package/dist/cli/verbs/markets.d.ts +6 -0
- package/dist/cli/verbs/markets.js +357 -0
- package/dist/cli/verbs/menus.d.ts +6 -0
- package/dist/cli/verbs/menus.js +251 -0
- package/dist/cli/verbs/metafield-definition-tools.d.ts +6 -0
- package/dist/cli/verbs/metafield-definition-tools.js +289 -0
- package/dist/cli/verbs/metafield-definitions.d.ts +6 -0
- package/dist/cli/verbs/metafield-definitions.js +240 -0
- package/dist/cli/verbs/metafields.d.ts +6 -0
- package/dist/cli/verbs/metafields.js +112 -0
- package/dist/cli/verbs/metaobject-definition-tools.d.ts +6 -0
- package/dist/cli/verbs/metaobject-definition-tools.js +83 -0
- package/dist/cli/verbs/metaobject-definitions.d.ts +6 -0
- package/dist/cli/verbs/metaobject-definitions.js +176 -0
- package/dist/cli/verbs/metaobjects.d.ts +6 -0
- package/dist/cli/verbs/metaobjects.js +306 -0
- package/dist/cli/verbs/mobile-platform-applications.d.ts +6 -0
- package/dist/cli/verbs/mobile-platform-applications.js +247 -0
- package/dist/cli/verbs/order-edit.d.ts +6 -0
- package/dist/cli/verbs/order-edit.js +596 -0
- package/dist/cli/verbs/orders.d.ts +6 -0
- package/dist/cli/verbs/orders.js +853 -0
- package/dist/cli/verbs/pages.d.ts +6 -0
- package/dist/cli/verbs/pages.js +234 -0
- package/dist/cli/verbs/payment-customizations.d.ts +6 -0
- package/dist/cli/verbs/payment-customizations.js +193 -0
- package/dist/cli/verbs/payment-terms.d.ts +6 -0
- package/dist/cli/verbs/payment-terms.js +228 -0
- package/dist/cli/verbs/point-of-sale.d.ts +6 -0
- package/dist/cli/verbs/point-of-sale.js +57 -0
- package/dist/cli/verbs/price-lists.d.ts +6 -0
- package/dist/cli/verbs/price-lists.js +426 -0
- package/dist/cli/verbs/product-feeds.d.ts +6 -0
- package/dist/cli/verbs/product-feeds.js +187 -0
- package/dist/cli/verbs/product-variants.d.ts +6 -0
- package/dist/cli/verbs/product-variants.js +439 -0
- package/dist/cli/verbs/products.d.ts +6 -0
- package/dist/cli/verbs/products.js +2309 -0
- package/dist/cli/verbs/publications.d.ts +6 -0
- package/dist/cli/verbs/publications.js +256 -0
- package/dist/cli/verbs/publishables.d.ts +6 -0
- package/dist/cli/verbs/publishables.js +73 -0
- package/dist/cli/verbs/refunds.d.ts +6 -0
- package/dist/cli/verbs/refunds.js +226 -0
- package/dist/cli/verbs/resource-feedback.d.ts +6 -0
- package/dist/cli/verbs/resource-feedback.js +119 -0
- package/dist/cli/verbs/returnable-fulfillments.d.ts +6 -0
- package/dist/cli/verbs/returnable-fulfillments.js +102 -0
- package/dist/cli/verbs/returns.d.ts +6 -0
- package/dist/cli/verbs/returns.js +506 -0
- package/dist/cli/verbs/reverse-deliveries.d.ts +6 -0
- package/dist/cli/verbs/reverse-deliveries.js +203 -0
- package/dist/cli/verbs/reverse-fulfillment-orders.d.ts +6 -0
- package/dist/cli/verbs/reverse-fulfillment-orders.js +157 -0
- package/dist/cli/verbs/saved-searches.d.ts +6 -0
- package/dist/cli/verbs/saved-searches.js +150 -0
- package/dist/cli/verbs/script-tags.d.ts +6 -0
- package/dist/cli/verbs/script-tags.js +179 -0
- package/dist/cli/verbs/segments.d.ts +6 -0
- package/dist/cli/verbs/segments.js +343 -0
- package/dist/cli/verbs/selling-plan-group-products.d.ts +6 -0
- package/dist/cli/verbs/selling-plan-group-products.js +115 -0
- package/dist/cli/verbs/selling-plan-groups.d.ts +6 -0
- package/dist/cli/verbs/selling-plan-groups.js +230 -0
- package/dist/cli/verbs/server-pixels.d.ts +6 -0
- package/dist/cli/verbs/server-pixels.js +172 -0
- package/dist/cli/verbs/shipping-packages.d.ts +6 -0
- package/dist/cli/verbs/shipping-packages.js +107 -0
- package/dist/cli/verbs/shop-policies.d.ts +6 -0
- package/dist/cli/verbs/shop-policies.js +91 -0
- package/dist/cli/verbs/shop-utils.d.ts +6 -0
- package/dist/cli/verbs/shop-utils.js +147 -0
- package/dist/cli/verbs/shop.d.ts +6 -0
- package/dist/cli/verbs/shop.js +177 -0
- package/dist/cli/verbs/shopify-functions.d.ts +6 -0
- package/dist/cli/verbs/shopify-functions.js +127 -0
- package/dist/cli/verbs/shopify-payments.d.ts +6 -0
- package/dist/cli/verbs/shopify-payments.js +111 -0
- package/dist/cli/verbs/staff.d.ts +6 -0
- package/dist/cli/verbs/staff.js +127 -0
- package/dist/cli/verbs/staged-uploads.d.ts +6 -0
- package/dist/cli/verbs/staged-uploads.js +128 -0
- package/dist/cli/verbs/store-credit.d.ts +6 -0
- package/dist/cli/verbs/store-credit.js +209 -0
- package/dist/cli/verbs/storefront-access-tokens.d.ts +6 -0
- package/dist/cli/verbs/storefront-access-tokens.js +183 -0
- package/dist/cli/verbs/subscription-billing-cycles.d.ts +6 -0
- package/dist/cli/verbs/subscription-billing-cycles.js +391 -0
- package/dist/cli/verbs/subscription-billing.d.ts +6 -0
- package/dist/cli/verbs/subscription-billing.js +391 -0
- package/dist/cli/verbs/subscription-contracts.d.ts +6 -0
- package/dist/cli/verbs/subscription-contracts.js +392 -0
- package/dist/cli/verbs/subscription-drafts.d.ts +6 -0
- package/dist/cli/verbs/subscription-drafts.js +315 -0
- package/dist/cli/verbs/tags.d.ts +6 -0
- package/dist/cli/verbs/tags.js +73 -0
- package/dist/cli/verbs/tax.d.ts +6 -0
- package/dist/cli/verbs/tax.js +114 -0
- package/dist/cli/verbs/taxonomy.d.ts +6 -0
- package/dist/cli/verbs/taxonomy.js +99 -0
- package/dist/cli/verbs/tender-transactions.d.ts +6 -0
- package/dist/cli/verbs/tender-transactions.js +105 -0
- package/dist/cli/verbs/themes.d.ts +6 -0
- package/dist/cli/verbs/themes.js +315 -0
- package/dist/cli/verbs/translations.d.ts +6 -0
- package/dist/cli/verbs/translations.js +221 -0
- package/dist/cli/verbs/types.d.ts +4 -0
- package/dist/cli/verbs/types.js +224 -0
- package/dist/cli/verbs/url-redirects.d.ts +6 -0
- package/dist/cli/verbs/url-redirects.js +465 -0
- package/dist/cli/verbs/validations.d.ts +6 -0
- package/dist/cli/verbs/validations.js +181 -0
- package/dist/cli/verbs/web-pixels.d.ts +6 -0
- package/dist/cli/verbs/web-pixels.js +145 -0
- package/dist/cli/verbs/web-presences.d.ts +6 -0
- package/dist/cli/verbs/web-presences.js +186 -0
- package/dist/cli/verbs/webhooks.d.ts +6 -0
- package/dist/cli/verbs/webhooks.js +336 -0
- package/dist/cli/workflows/files/stagedUploads.d.ts +28 -0
- package/dist/cli/workflows/files/stagedUploads.js +227 -0
- package/dist/cli/workflows/files/stdinFile.d.ts +7 -0
- package/dist/cli/workflows/files/stdinFile.js +65 -0
- package/dist/cli/workflows/files/urlDownloads.d.ts +14 -0
- package/dist/cli/workflows/files/urlDownloads.js +114 -0
- package/dist/cli/workflows/files/waitForReady.d.ts +20 -0
- package/dist/cli/workflows/files/waitForReady.js +114 -0
- package/dist/cli/workflows/inventory/resolveInventoryItemId.d.ts +6 -0
- package/dist/cli/workflows/inventory/resolveInventoryItemId.js +59 -0
- package/dist/cli/workflows/productVariants/upsert.d.ts +8 -0
- package/dist/cli/workflows/productVariants/upsert.js +110 -0
- package/dist/cli/workflows/products/metafieldsUpsert.d.ts +6 -0
- package/dist/cli/workflows/products/metafieldsUpsert.js +94 -0
- package/dist/cli/workflows/products/publishablePublish.d.ts +21 -0
- package/dist/cli/workflows/products/publishablePublish.js +131 -0
- package/dist/cli/workflows/publications/resolvePublicationId.d.ts +17 -0
- package/dist/cli/workflows/publications/resolvePublicationId.js +93 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +238 -0
- package/dist/defaults.d.ts +2 -0
- package/dist/defaults.js +38 -0
- package/dist/generated/admin-2026-04/index.d.ts +25 -0
- package/dist/generated/admin-2026-04/index.js +70 -0
- package/dist/generated/admin-2026-04/runtime/batcher.d.ts +105 -0
- package/dist/generated/admin-2026-04/runtime/batcher.js +203 -0
- package/dist/generated/admin-2026-04/runtime/createClient.d.ts +17 -0
- package/dist/generated/admin-2026-04/runtime/createClient.js +59 -0
- package/dist/generated/admin-2026-04/runtime/error.d.ts +18 -0
- package/dist/generated/admin-2026-04/runtime/error.js +44 -0
- package/dist/generated/admin-2026-04/runtime/fetcher.d.ts +10 -0
- package/dist/generated/admin-2026-04/runtime/fetcher.js +104 -0
- package/dist/generated/admin-2026-04/runtime/generateGraphqlOperation.d.ts +30 -0
- package/dist/generated/admin-2026-04/runtime/generateGraphqlOperation.js +191 -0
- package/dist/generated/admin-2026-04/runtime/index.d.ts +11 -0
- package/dist/generated/admin-2026-04/runtime/index.js +46 -0
- package/dist/generated/admin-2026-04/runtime/linkTypeMap.d.ts +9 -0
- package/dist/generated/admin-2026-04/runtime/linkTypeMap.js +142 -0
- package/dist/generated/admin-2026-04/runtime/typeSelection.d.ts +28 -0
- package/dist/generated/admin-2026-04/runtime/typeSelection.js +17 -0
- package/dist/generated/admin-2026-04/runtime/types.d.ts +55 -0
- package/dist/generated/admin-2026-04/runtime/types.js +17 -0
- package/dist/generated/admin-2026-04/schema.d.ts +102240 -0
- package/dist/generated/admin-2026-04/schema.graphql +91596 -0
- package/dist/generated/admin-2026-04/schema.js +20322 -0
- package/dist/generated/admin-2026-04/types.d.ts +24224 -0
- package/dist/generated/admin-2026-04/types.js +62299 -0
- package/dist/generated/help/schema-help.d.ts +30 -0
- package/dist/generated/help/schema-help.js +61833 -0
- package/dist/graphqlValidator.d.ts +17 -0
- package/dist/graphqlValidator.js +84 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +23 -0
- package/package.json +66 -0
- package/schema/2026-04.graphql +61256 -0
- package/schema/2026-04.introspection.json +1 -0
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var market_web_presences_exports = {};
|
|
20
|
+
__export(market_web_presences_exports, {
|
|
21
|
+
runMarketWebPresences: () => runMarketWebPresences
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(market_web_presences_exports);
|
|
24
|
+
var import_errors = require("../errors");
|
|
25
|
+
var import_gid = require("../gid");
|
|
26
|
+
var import_input = require("../input");
|
|
27
|
+
var import_output = require("../output");
|
|
28
|
+
var import_router = require("../router");
|
|
29
|
+
var import_userErrors = require("../userErrors");
|
|
30
|
+
var import_shared = require("./_shared");
|
|
31
|
+
const marketSummarySelection = {
|
|
32
|
+
id: true,
|
|
33
|
+
name: true,
|
|
34
|
+
handle: true,
|
|
35
|
+
status: true,
|
|
36
|
+
type: true
|
|
37
|
+
};
|
|
38
|
+
const requireMarketId = (value) => {
|
|
39
|
+
if (typeof value !== "string" || !value) throw new import_errors.CliError("Missing --market-id", 2);
|
|
40
|
+
return (0, import_gid.coerceGid)(value, "Market");
|
|
41
|
+
};
|
|
42
|
+
const runMarketWebPresences = async ({
|
|
43
|
+
ctx,
|
|
44
|
+
verb,
|
|
45
|
+
argv
|
|
46
|
+
}) => {
|
|
47
|
+
if (argv.includes("--help") || argv.includes("-h")) {
|
|
48
|
+
console.log(
|
|
49
|
+
[
|
|
50
|
+
"Usage:",
|
|
51
|
+
" shop market-web-presences <verb> [flags]",
|
|
52
|
+
"",
|
|
53
|
+
"Verbs:",
|
|
54
|
+
" create|update|delete",
|
|
55
|
+
"",
|
|
56
|
+
"Notes:",
|
|
57
|
+
" create requires --market-id and webPresence input.",
|
|
58
|
+
" update/delete operate on a MarketWebPresence ID (--id).",
|
|
59
|
+
"",
|
|
60
|
+
"Common output flags:",
|
|
61
|
+
" --format json|jsonl|table|markdown|raw",
|
|
62
|
+
" --quiet"
|
|
63
|
+
].join("\n")
|
|
64
|
+
);
|
|
65
|
+
return;
|
|
66
|
+
}
|
|
67
|
+
if (verb === "create") {
|
|
68
|
+
const args = (0, import_router.parseStandardArgs)({ argv, extraOptions: { "market-id": { type: "string" } } });
|
|
69
|
+
const marketId = requireMarketId(args["market-id"]);
|
|
70
|
+
const built = (0, import_input.buildInput)({
|
|
71
|
+
inputArg: args.input,
|
|
72
|
+
setArgs: args.set,
|
|
73
|
+
setJsonArgs: args["set-json"]
|
|
74
|
+
});
|
|
75
|
+
if (!built.used) throw new import_errors.CliError("Missing --input or --set/--set-json", 2);
|
|
76
|
+
const webPresence = built.input ?? {};
|
|
77
|
+
if (webPresence.defaultLocale === void 0) {
|
|
78
|
+
throw new import_errors.CliError("Missing defaultLocale (use --set defaultLocale=en)", 2);
|
|
79
|
+
}
|
|
80
|
+
const result = await (0, import_router.runMutation)(ctx, {
|
|
81
|
+
marketWebPresenceCreate: {
|
|
82
|
+
__args: { marketId, webPresence },
|
|
83
|
+
market: marketSummarySelection,
|
|
84
|
+
userErrors: { field: true, message: true, code: true }
|
|
85
|
+
}
|
|
86
|
+
});
|
|
87
|
+
if (result === void 0) return;
|
|
88
|
+
(0, import_userErrors.maybeFailOnUserErrors)({ payload: result.marketWebPresenceCreate, failOnUserErrors: ctx.failOnUserErrors });
|
|
89
|
+
if (ctx.quiet) return;
|
|
90
|
+
(0, import_output.printJson)(result.marketWebPresenceCreate, ctx.format !== "raw");
|
|
91
|
+
return;
|
|
92
|
+
}
|
|
93
|
+
if (verb === "update") {
|
|
94
|
+
const args = (0, import_router.parseStandardArgs)({ argv, extraOptions: {} });
|
|
95
|
+
const webPresenceId = (0, import_shared.requireId)(args.id, "MarketWebPresence");
|
|
96
|
+
const built = (0, import_input.buildInput)({
|
|
97
|
+
inputArg: args.input,
|
|
98
|
+
setArgs: args.set,
|
|
99
|
+
setJsonArgs: args["set-json"]
|
|
100
|
+
});
|
|
101
|
+
if (!built.used) throw new import_errors.CliError("Missing --input or --set/--set-json", 2);
|
|
102
|
+
const result = await (0, import_router.runMutation)(ctx, {
|
|
103
|
+
marketWebPresenceUpdate: {
|
|
104
|
+
__args: { webPresenceId, webPresence: built.input },
|
|
105
|
+
market: marketSummarySelection,
|
|
106
|
+
userErrors: { field: true, message: true, code: true }
|
|
107
|
+
}
|
|
108
|
+
});
|
|
109
|
+
if (result === void 0) return;
|
|
110
|
+
(0, import_userErrors.maybeFailOnUserErrors)({ payload: result.marketWebPresenceUpdate, failOnUserErrors: ctx.failOnUserErrors });
|
|
111
|
+
if (ctx.quiet) return;
|
|
112
|
+
(0, import_output.printJson)(result.marketWebPresenceUpdate, ctx.format !== "raw");
|
|
113
|
+
return;
|
|
114
|
+
}
|
|
115
|
+
if (verb === "delete") {
|
|
116
|
+
const args = (0, import_router.parseStandardArgs)({ argv, extraOptions: {} });
|
|
117
|
+
const webPresenceId = (0, import_shared.requireId)(args.id, "MarketWebPresence");
|
|
118
|
+
if (!args.yes) throw new import_errors.CliError("Refusing to delete without --yes", 2);
|
|
119
|
+
const result = await (0, import_router.runMutation)(ctx, {
|
|
120
|
+
marketWebPresenceDelete: {
|
|
121
|
+
__args: { webPresenceId },
|
|
122
|
+
deletedId: true,
|
|
123
|
+
market: marketSummarySelection,
|
|
124
|
+
userErrors: { field: true, message: true, code: true }
|
|
125
|
+
}
|
|
126
|
+
});
|
|
127
|
+
if (result === void 0) return;
|
|
128
|
+
(0, import_userErrors.maybeFailOnUserErrors)({ payload: result.marketWebPresenceDelete, failOnUserErrors: ctx.failOnUserErrors });
|
|
129
|
+
if (ctx.quiet) return console.log(result.marketWebPresenceDelete?.deletedId ?? "");
|
|
130
|
+
(0, import_output.printJson)(result.marketWebPresenceDelete, ctx.format !== "raw");
|
|
131
|
+
return;
|
|
132
|
+
}
|
|
133
|
+
throw new import_errors.CliError(`Unknown verb for market-web-presences: ${verb}`, 2);
|
|
134
|
+
};
|
|
135
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
136
|
+
0 && (module.exports = {
|
|
137
|
+
runMarketWebPresences
|
|
138
|
+
});
|
|
139
|
+
//# sourceMappingURL=market-web-presences.js.map
|
|
@@ -0,0 +1,353 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var marketing_activities_exports = {};
|
|
20
|
+
__export(marketing_activities_exports, {
|
|
21
|
+
runMarketingActivities: () => runMarketingActivities
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(marketing_activities_exports);
|
|
24
|
+
var import_errors = require("../errors");
|
|
25
|
+
var import_input = require("../input");
|
|
26
|
+
var import_output = require("../output");
|
|
27
|
+
var import_router = require("../router");
|
|
28
|
+
var import_select = require("../selection/select");
|
|
29
|
+
var import_userErrors = require("../userErrors");
|
|
30
|
+
var import_shared = require("./_shared");
|
|
31
|
+
const marketingActivitySummarySelection = {
|
|
32
|
+
id: true,
|
|
33
|
+
title: true,
|
|
34
|
+
activityListUrl: true,
|
|
35
|
+
sourceAndMedium: true,
|
|
36
|
+
status: true,
|
|
37
|
+
statusBadgeType: true,
|
|
38
|
+
budget: { budgetType: true, total: { amount: true, currencyCode: true } },
|
|
39
|
+
adSpend: { amount: true, currencyCode: true },
|
|
40
|
+
createdAt: true
|
|
41
|
+
};
|
|
42
|
+
const marketingActivityFullSelection = {
|
|
43
|
+
...marketingActivitySummarySelection,
|
|
44
|
+
utmParameters: { campaign: true, medium: true, source: true },
|
|
45
|
+
urlParameterValue: true,
|
|
46
|
+
marketingChannelType: true,
|
|
47
|
+
marketingEvent: { id: true, type: true, remoteId: true }
|
|
48
|
+
};
|
|
49
|
+
const getMarketingActivitySelection = (view) => {
|
|
50
|
+
if (view === "ids") return { id: true };
|
|
51
|
+
if (view === "full") return marketingActivityFullSelection;
|
|
52
|
+
if (view === "raw") return {};
|
|
53
|
+
return marketingActivitySummarySelection;
|
|
54
|
+
};
|
|
55
|
+
const runMarketingActivities = async ({
|
|
56
|
+
ctx,
|
|
57
|
+
verb,
|
|
58
|
+
argv
|
|
59
|
+
}) => {
|
|
60
|
+
if (argv.includes("--help") || argv.includes("-h")) {
|
|
61
|
+
console.log(
|
|
62
|
+
[
|
|
63
|
+
"Usage:",
|
|
64
|
+
" shop marketing-activities <verb> [flags]",
|
|
65
|
+
"",
|
|
66
|
+
"Verbs:",
|
|
67
|
+
" create|create-external|get|list|update|update-external|upsert-external",
|
|
68
|
+
" delete-external|delete-all-external",
|
|
69
|
+
" create-engagement|delete-engagements",
|
|
70
|
+
"",
|
|
71
|
+
"Common output flags:",
|
|
72
|
+
" --view summary|ids|full|raw",
|
|
73
|
+
" --select <path> (repeatable; dot paths; adds to base view selection)",
|
|
74
|
+
" --selection <graphql> (selection override; can be @file.gql)"
|
|
75
|
+
].join("\n")
|
|
76
|
+
);
|
|
77
|
+
return;
|
|
78
|
+
}
|
|
79
|
+
if (verb === "get") {
|
|
80
|
+
const args = (0, import_router.parseStandardArgs)({ argv, extraOptions: {} });
|
|
81
|
+
const id = (0, import_shared.requireId)(args.id, "MarketingActivity");
|
|
82
|
+
const selection = (0, import_select.resolveSelection)({
|
|
83
|
+
resource: "marketing-activities",
|
|
84
|
+
view: ctx.view,
|
|
85
|
+
baseSelection: getMarketingActivitySelection(ctx.view),
|
|
86
|
+
select: args.select,
|
|
87
|
+
selection: args.selection,
|
|
88
|
+
include: args.include,
|
|
89
|
+
ensureId: ctx.quiet
|
|
90
|
+
});
|
|
91
|
+
const result = await (0, import_router.runQuery)(ctx, { marketingActivity: { __args: { id }, ...selection } });
|
|
92
|
+
if (result === void 0) return;
|
|
93
|
+
(0, import_output.printNode)({ node: result.marketingActivity, format: ctx.format, quiet: ctx.quiet });
|
|
94
|
+
return;
|
|
95
|
+
}
|
|
96
|
+
if (verb === "list") {
|
|
97
|
+
const args = (0, import_router.parseStandardArgs)({
|
|
98
|
+
argv,
|
|
99
|
+
extraOptions: {
|
|
100
|
+
"remote-ids": { type: "string", multiple: true },
|
|
101
|
+
utm: { type: "string" }
|
|
102
|
+
}
|
|
103
|
+
});
|
|
104
|
+
const first = (0, import_shared.parseFirst)(args.first);
|
|
105
|
+
const after = args.after;
|
|
106
|
+
const query = args.query;
|
|
107
|
+
const reverse = args.reverse;
|
|
108
|
+
const sortKey = args.sort;
|
|
109
|
+
const marketingActivityIds = args.ids ? (0, import_shared.parseIds)(args.ids, "MarketingActivity") : [];
|
|
110
|
+
const remoteIds = args["remote-ids"] ? (0, import_shared.parseStringList)(args["remote-ids"], "--remote-ids") : [];
|
|
111
|
+
const utm = args.utm ? (0, import_shared.parseJsonArg)(args.utm, "--utm", { allowEmpty: true }) : void 0;
|
|
112
|
+
const nodeSelection = (0, import_select.resolveSelection)({
|
|
113
|
+
resource: "marketing-activities",
|
|
114
|
+
view: ctx.view,
|
|
115
|
+
baseSelection: getMarketingActivitySelection(ctx.view),
|
|
116
|
+
select: args.select,
|
|
117
|
+
selection: args.selection,
|
|
118
|
+
include: args.include,
|
|
119
|
+
ensureId: ctx.quiet
|
|
120
|
+
});
|
|
121
|
+
const result = await (0, import_router.runQuery)(ctx, {
|
|
122
|
+
marketingActivities: {
|
|
123
|
+
__args: {
|
|
124
|
+
first,
|
|
125
|
+
after,
|
|
126
|
+
query,
|
|
127
|
+
reverse,
|
|
128
|
+
sortKey,
|
|
129
|
+
...marketingActivityIds.length > 0 ? { marketingActivityIds } : {},
|
|
130
|
+
...remoteIds.length > 0 ? { remoteIds } : {},
|
|
131
|
+
...utm ? { utm } : {}
|
|
132
|
+
},
|
|
133
|
+
pageInfo: { hasNextPage: true, endCursor: true },
|
|
134
|
+
nodes: nodeSelection
|
|
135
|
+
}
|
|
136
|
+
});
|
|
137
|
+
if (result === void 0) return;
|
|
138
|
+
(0, import_output.printConnection)({
|
|
139
|
+
connection: result.marketingActivities,
|
|
140
|
+
format: ctx.format,
|
|
141
|
+
quiet: ctx.quiet,
|
|
142
|
+
nextPageArgs: (0, import_shared.buildListNextPageArgs)("marketing-activities", { first, query, sort: sortKey, reverse })
|
|
143
|
+
});
|
|
144
|
+
return;
|
|
145
|
+
}
|
|
146
|
+
if (verb === "create" || verb === "create-external") {
|
|
147
|
+
const args = (0, import_router.parseStandardArgs)({ argv, extraOptions: {} });
|
|
148
|
+
const built = (0, import_input.buildInput)({
|
|
149
|
+
inputArg: args.input,
|
|
150
|
+
setArgs: args.set,
|
|
151
|
+
setJsonArgs: args["set-json"]
|
|
152
|
+
});
|
|
153
|
+
if (!built.used) throw new import_errors.CliError("Missing --input or --set/--set-json", 2);
|
|
154
|
+
const mutation = verb === "create" ? "marketingActivityCreate" : "marketingActivityCreateExternal";
|
|
155
|
+
const result = await (0, import_router.runMutation)(ctx, {
|
|
156
|
+
[mutation]: {
|
|
157
|
+
__args: { input: built.input },
|
|
158
|
+
marketingActivity: marketingActivitySummarySelection,
|
|
159
|
+
userErrors: { field: true, message: true }
|
|
160
|
+
}
|
|
161
|
+
});
|
|
162
|
+
if (result === void 0) return;
|
|
163
|
+
const payload = result[mutation];
|
|
164
|
+
(0, import_userErrors.maybeFailOnUserErrors)({ payload, failOnUserErrors: ctx.failOnUserErrors });
|
|
165
|
+
if (ctx.quiet) return console.log(payload?.marketingActivity?.id ?? "");
|
|
166
|
+
(0, import_output.printJson)(payload, ctx.format !== "raw");
|
|
167
|
+
return;
|
|
168
|
+
}
|
|
169
|
+
if (verb === "update") {
|
|
170
|
+
const args = (0, import_router.parseStandardArgs)({ argv, extraOptions: {} });
|
|
171
|
+
const built = (0, import_input.buildInput)({
|
|
172
|
+
inputArg: args.input,
|
|
173
|
+
setArgs: args.set,
|
|
174
|
+
setJsonArgs: args["set-json"]
|
|
175
|
+
});
|
|
176
|
+
if (!built.used) throw new import_errors.CliError("Missing --input or --set/--set-json", 2);
|
|
177
|
+
if (args.id && built.input && !built.input.id) {
|
|
178
|
+
built.input.id = (0, import_shared.requireId)(args.id, "MarketingActivity");
|
|
179
|
+
}
|
|
180
|
+
const result = await (0, import_router.runMutation)(ctx, {
|
|
181
|
+
marketingActivityUpdate: {
|
|
182
|
+
__args: { input: built.input },
|
|
183
|
+
marketingActivity: marketingActivitySummarySelection,
|
|
184
|
+
userErrors: { field: true, message: true }
|
|
185
|
+
}
|
|
186
|
+
});
|
|
187
|
+
if (result === void 0) return;
|
|
188
|
+
(0, import_userErrors.maybeFailOnUserErrors)({ payload: result.marketingActivityUpdate, failOnUserErrors: ctx.failOnUserErrors });
|
|
189
|
+
if (ctx.quiet) return console.log(result.marketingActivityUpdate?.marketingActivity?.id ?? "");
|
|
190
|
+
(0, import_output.printJson)(result.marketingActivityUpdate, ctx.format !== "raw");
|
|
191
|
+
return;
|
|
192
|
+
}
|
|
193
|
+
if (verb === "update-external") {
|
|
194
|
+
const args = (0, import_router.parseStandardArgs)({
|
|
195
|
+
argv,
|
|
196
|
+
extraOptions: { "remote-id": { type: "string" }, utm: { type: "string" } }
|
|
197
|
+
});
|
|
198
|
+
const built = (0, import_input.buildInput)({
|
|
199
|
+
inputArg: args.input,
|
|
200
|
+
setArgs: args.set,
|
|
201
|
+
setJsonArgs: args["set-json"]
|
|
202
|
+
});
|
|
203
|
+
if (!built.used) throw new import_errors.CliError("Missing --input or --set/--set-json", 2);
|
|
204
|
+
const marketingActivityId = args.id ? (0, import_shared.requireId)(args.id, "MarketingActivity") : void 0;
|
|
205
|
+
const remoteId = args["remote-id"];
|
|
206
|
+
const utm = args.utm ? (0, import_shared.parseJsonArg)(args.utm, "--utm", { allowEmpty: true }) : void 0;
|
|
207
|
+
const result = await (0, import_router.runMutation)(ctx, {
|
|
208
|
+
marketingActivityUpdateExternal: {
|
|
209
|
+
__args: {
|
|
210
|
+
input: built.input,
|
|
211
|
+
...marketingActivityId ? { marketingActivityId } : {},
|
|
212
|
+
...remoteId ? { remoteId } : {},
|
|
213
|
+
...utm ? { utm } : {}
|
|
214
|
+
},
|
|
215
|
+
marketingActivity: marketingActivitySummarySelection,
|
|
216
|
+
userErrors: { field: true, message: true }
|
|
217
|
+
}
|
|
218
|
+
});
|
|
219
|
+
if (result === void 0) return;
|
|
220
|
+
(0, import_userErrors.maybeFailOnUserErrors)({
|
|
221
|
+
payload: result.marketingActivityUpdateExternal,
|
|
222
|
+
failOnUserErrors: ctx.failOnUserErrors
|
|
223
|
+
});
|
|
224
|
+
if (ctx.quiet) return console.log(result.marketingActivityUpdateExternal?.marketingActivity?.id ?? "");
|
|
225
|
+
(0, import_output.printJson)(result.marketingActivityUpdateExternal, ctx.format !== "raw");
|
|
226
|
+
return;
|
|
227
|
+
}
|
|
228
|
+
if (verb === "upsert-external") {
|
|
229
|
+
const args = (0, import_router.parseStandardArgs)({ argv, extraOptions: {} });
|
|
230
|
+
const built = (0, import_input.buildInput)({
|
|
231
|
+
inputArg: args.input,
|
|
232
|
+
setArgs: args.set,
|
|
233
|
+
setJsonArgs: args["set-json"]
|
|
234
|
+
});
|
|
235
|
+
if (!built.used) throw new import_errors.CliError("Missing --input or --set/--set-json", 2);
|
|
236
|
+
const result = await (0, import_router.runMutation)(ctx, {
|
|
237
|
+
marketingActivityUpsertExternal: {
|
|
238
|
+
__args: { input: built.input },
|
|
239
|
+
marketingActivity: marketingActivitySummarySelection,
|
|
240
|
+
userErrors: { field: true, message: true }
|
|
241
|
+
}
|
|
242
|
+
});
|
|
243
|
+
if (result === void 0) return;
|
|
244
|
+
(0, import_userErrors.maybeFailOnUserErrors)({
|
|
245
|
+
payload: result.marketingActivityUpsertExternal,
|
|
246
|
+
failOnUserErrors: ctx.failOnUserErrors
|
|
247
|
+
});
|
|
248
|
+
if (ctx.quiet) return console.log(result.marketingActivityUpsertExternal?.marketingActivity?.id ?? "");
|
|
249
|
+
(0, import_output.printJson)(result.marketingActivityUpsertExternal, ctx.format !== "raw");
|
|
250
|
+
return;
|
|
251
|
+
}
|
|
252
|
+
if (verb === "delete-external") {
|
|
253
|
+
const args = (0, import_router.parseStandardArgs)({ argv, extraOptions: { "remote-id": { type: "string" } } });
|
|
254
|
+
const marketingActivityId = args.id ? (0, import_shared.requireId)(args.id, "MarketingActivity") : void 0;
|
|
255
|
+
const remoteId = args["remote-id"];
|
|
256
|
+
if (!marketingActivityId && !remoteId) throw new import_errors.CliError("Missing --id or --remote-id", 2);
|
|
257
|
+
const result = await (0, import_router.runMutation)(ctx, {
|
|
258
|
+
marketingActivityDeleteExternal: {
|
|
259
|
+
__args: { ...marketingActivityId ? { marketingActivityId } : {}, ...remoteId ? { remoteId } : {} },
|
|
260
|
+
deletedMarketingActivityId: true,
|
|
261
|
+
userErrors: { field: true, message: true }
|
|
262
|
+
}
|
|
263
|
+
});
|
|
264
|
+
if (result === void 0) return;
|
|
265
|
+
(0, import_userErrors.maybeFailOnUserErrors)({
|
|
266
|
+
payload: result.marketingActivityDeleteExternal,
|
|
267
|
+
failOnUserErrors: ctx.failOnUserErrors
|
|
268
|
+
});
|
|
269
|
+
if (ctx.quiet) return console.log(result.marketingActivityDeleteExternal?.deletedMarketingActivityId ?? "");
|
|
270
|
+
(0, import_output.printJson)(result.marketingActivityDeleteExternal, ctx.format !== "raw");
|
|
271
|
+
return;
|
|
272
|
+
}
|
|
273
|
+
if (verb === "delete-all-external") {
|
|
274
|
+
if (!argv.includes("--yes")) throw new import_errors.CliError("Refusing to delete without --yes", 2);
|
|
275
|
+
const result = await (0, import_router.runMutation)(ctx, {
|
|
276
|
+
marketingActivitiesDeleteAllExternal: {
|
|
277
|
+
job: { id: true, done: true },
|
|
278
|
+
userErrors: { field: true, message: true }
|
|
279
|
+
}
|
|
280
|
+
});
|
|
281
|
+
if (result === void 0) return;
|
|
282
|
+
(0, import_userErrors.maybeFailOnUserErrors)({
|
|
283
|
+
payload: result.marketingActivitiesDeleteAllExternal,
|
|
284
|
+
failOnUserErrors: ctx.failOnUserErrors
|
|
285
|
+
});
|
|
286
|
+
(0, import_output.printJson)(result.marketingActivitiesDeleteAllExternal, ctx.format !== "raw");
|
|
287
|
+
return;
|
|
288
|
+
}
|
|
289
|
+
if (verb === "create-engagement") {
|
|
290
|
+
const args = (0, import_router.parseStandardArgs)({
|
|
291
|
+
argv,
|
|
292
|
+
extraOptions: { "activity-id": { type: "string" }, "channel-handle": { type: "string" }, "remote-id": { type: "string" } }
|
|
293
|
+
});
|
|
294
|
+
const marketingActivityId = args["activity-id"] ? (0, import_shared.requireId)(args["activity-id"], "MarketingActivity", "--activity-id") : void 0;
|
|
295
|
+
const channelHandle = args["channel-handle"];
|
|
296
|
+
const remoteId = args["remote-id"];
|
|
297
|
+
const built = (0, import_input.buildInput)({
|
|
298
|
+
inputArg: args.input,
|
|
299
|
+
setArgs: args.set,
|
|
300
|
+
setJsonArgs: args["set-json"]
|
|
301
|
+
});
|
|
302
|
+
if (!built.used) throw new import_errors.CliError("Missing --input or --set/--set-json", 2);
|
|
303
|
+
const result = await (0, import_router.runMutation)(ctx, {
|
|
304
|
+
marketingEngagementCreate: {
|
|
305
|
+
__args: {
|
|
306
|
+
marketingEngagement: built.input,
|
|
307
|
+
...marketingActivityId ? { marketingActivityId } : {},
|
|
308
|
+
...channelHandle ? { channelHandle } : {},
|
|
309
|
+
...remoteId ? { remoteId } : {}
|
|
310
|
+
},
|
|
311
|
+
marketingEngagement: { occurredOn: true, marketingActivity: { id: true } },
|
|
312
|
+
userErrors: { field: true, message: true }
|
|
313
|
+
}
|
|
314
|
+
});
|
|
315
|
+
if (result === void 0) return;
|
|
316
|
+
(0, import_userErrors.maybeFailOnUserErrors)({ payload: result.marketingEngagementCreate, failOnUserErrors: ctx.failOnUserErrors });
|
|
317
|
+
if (ctx.quiet) {
|
|
318
|
+
return console.log(result.marketingEngagementCreate?.marketingEngagement?.marketingActivity?.id ?? "");
|
|
319
|
+
}
|
|
320
|
+
(0, import_output.printJson)(result.marketingEngagementCreate, ctx.format !== "raw");
|
|
321
|
+
return;
|
|
322
|
+
}
|
|
323
|
+
if (verb === "delete-engagements") {
|
|
324
|
+
const args = (0, import_router.parseStandardArgs)({
|
|
325
|
+
argv,
|
|
326
|
+
extraOptions: { "channel-handle": { type: "string" }, all: { type: "boolean" } }
|
|
327
|
+
});
|
|
328
|
+
const channelHandle = args["channel-handle"];
|
|
329
|
+
const deleteEngagementsForAllChannels = Boolean(args.all);
|
|
330
|
+
if (!channelHandle && !deleteEngagementsForAllChannels) {
|
|
331
|
+
throw new import_errors.CliError("Missing --channel-handle or --all", 2);
|
|
332
|
+
}
|
|
333
|
+
const result = await (0, import_router.runMutation)(ctx, {
|
|
334
|
+
marketingEngagementsDelete: {
|
|
335
|
+
__args: {
|
|
336
|
+
...channelHandle ? { channelHandle } : {},
|
|
337
|
+
...deleteEngagementsForAllChannels ? { deleteEngagementsForAllChannels: true } : {}
|
|
338
|
+
},
|
|
339
|
+
userErrors: { field: true, message: true }
|
|
340
|
+
}
|
|
341
|
+
});
|
|
342
|
+
if (result === void 0) return;
|
|
343
|
+
(0, import_userErrors.maybeFailOnUserErrors)({ payload: result.marketingEngagementsDelete, failOnUserErrors: ctx.failOnUserErrors });
|
|
344
|
+
(0, import_output.printJson)(result.marketingEngagementsDelete, ctx.format !== "raw");
|
|
345
|
+
return;
|
|
346
|
+
}
|
|
347
|
+
throw new import_errors.CliError(`Unknown verb for marketing-activities: ${verb}`, 2);
|
|
348
|
+
};
|
|
349
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
350
|
+
0 && (module.exports = {
|
|
351
|
+
runMarketingActivities
|
|
352
|
+
});
|
|
353
|
+
//# sourceMappingURL=marketing-activities.js.map
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var marketing_events_exports = {};
|
|
20
|
+
__export(marketing_events_exports, {
|
|
21
|
+
runMarketingEvents: () => runMarketingEvents
|
|
22
|
+
});
|
|
23
|
+
module.exports = __toCommonJS(marketing_events_exports);
|
|
24
|
+
var import_errors = require("../errors");
|
|
25
|
+
var import_output = require("../output");
|
|
26
|
+
var import_router = require("../router");
|
|
27
|
+
var import_select = require("../selection/select");
|
|
28
|
+
var import_shared = require("./_shared");
|
|
29
|
+
const marketingEventSummarySelection = {
|
|
30
|
+
id: true,
|
|
31
|
+
type: true,
|
|
32
|
+
sourceAndMedium: true,
|
|
33
|
+
description: true,
|
|
34
|
+
startedAt: true,
|
|
35
|
+
endedAt: true,
|
|
36
|
+
manageUrl: true,
|
|
37
|
+
previewUrl: true,
|
|
38
|
+
utmSource: true,
|
|
39
|
+
utmMedium: true,
|
|
40
|
+
utmCampaign: true
|
|
41
|
+
};
|
|
42
|
+
const marketingEventFullSelection = {
|
|
43
|
+
...marketingEventSummarySelection,
|
|
44
|
+
remoteId: true,
|
|
45
|
+
scheduledToEndAt: true,
|
|
46
|
+
channelHandle: true,
|
|
47
|
+
app: { id: true, title: true, handle: true }
|
|
48
|
+
};
|
|
49
|
+
const getMarketingEventSelection = (view) => {
|
|
50
|
+
if (view === "ids") return { id: true };
|
|
51
|
+
if (view === "full") return marketingEventFullSelection;
|
|
52
|
+
if (view === "raw") return {};
|
|
53
|
+
return marketingEventSummarySelection;
|
|
54
|
+
};
|
|
55
|
+
const runMarketingEvents = async ({
|
|
56
|
+
ctx,
|
|
57
|
+
verb,
|
|
58
|
+
argv
|
|
59
|
+
}) => {
|
|
60
|
+
if (argv.includes("--help") || argv.includes("-h")) {
|
|
61
|
+
console.log(
|
|
62
|
+
[
|
|
63
|
+
"Usage:",
|
|
64
|
+
" shop marketing-events <verb> [flags]",
|
|
65
|
+
"",
|
|
66
|
+
"Verbs:",
|
|
67
|
+
" get|list",
|
|
68
|
+
"",
|
|
69
|
+
"Common output flags:",
|
|
70
|
+
" --view summary|ids|full|raw|all",
|
|
71
|
+
" --select <path> (repeatable; dot paths; adds to base view selection)",
|
|
72
|
+
" --selection <graphql> (selection override; can be @file.gql)"
|
|
73
|
+
].join("\n")
|
|
74
|
+
);
|
|
75
|
+
return;
|
|
76
|
+
}
|
|
77
|
+
if (verb === "get") {
|
|
78
|
+
const args = (0, import_router.parseStandardArgs)({ argv, extraOptions: {} });
|
|
79
|
+
const id = (0, import_shared.requireId)(args.id, "MarketingEvent");
|
|
80
|
+
const selection = (0, import_select.resolveSelection)({
|
|
81
|
+
resource: "marketing-events",
|
|
82
|
+
view: ctx.view,
|
|
83
|
+
baseSelection: getMarketingEventSelection(ctx.view),
|
|
84
|
+
select: args.select,
|
|
85
|
+
selection: args.selection,
|
|
86
|
+
include: args.include,
|
|
87
|
+
ensureId: ctx.quiet
|
|
88
|
+
});
|
|
89
|
+
const result = await (0, import_router.runQuery)(ctx, { marketingEvent: { __args: { id }, ...selection } });
|
|
90
|
+
if (result === void 0) return;
|
|
91
|
+
(0, import_output.printNode)({ node: result.marketingEvent, format: ctx.format, quiet: ctx.quiet });
|
|
92
|
+
return;
|
|
93
|
+
}
|
|
94
|
+
if (verb === "list") {
|
|
95
|
+
const args = (0, import_router.parseStandardArgs)({ argv, extraOptions: {} });
|
|
96
|
+
const first = (0, import_shared.parseFirst)(args.first);
|
|
97
|
+
const after = args.after;
|
|
98
|
+
const query = args.query;
|
|
99
|
+
const reverse = args.reverse;
|
|
100
|
+
const sortKey = args.sort;
|
|
101
|
+
const nodeSelection = (0, import_select.resolveSelection)({
|
|
102
|
+
resource: "marketing-events",
|
|
103
|
+
view: ctx.view,
|
|
104
|
+
baseSelection: getMarketingEventSelection(ctx.view),
|
|
105
|
+
select: args.select,
|
|
106
|
+
selection: args.selection,
|
|
107
|
+
include: args.include,
|
|
108
|
+
ensureId: ctx.quiet
|
|
109
|
+
});
|
|
110
|
+
const result = await (0, import_router.runQuery)(ctx, {
|
|
111
|
+
marketingEvents: {
|
|
112
|
+
__args: { first, after, query, reverse, sortKey },
|
|
113
|
+
pageInfo: { hasNextPage: true, endCursor: true },
|
|
114
|
+
nodes: nodeSelection
|
|
115
|
+
}
|
|
116
|
+
});
|
|
117
|
+
if (result === void 0) return;
|
|
118
|
+
(0, import_output.printConnection)({
|
|
119
|
+
connection: result.marketingEvents,
|
|
120
|
+
format: ctx.format,
|
|
121
|
+
quiet: ctx.quiet,
|
|
122
|
+
nextPageArgs: (0, import_shared.buildListNextPageArgs)("marketing-events", { first, query, sort: sortKey, reverse })
|
|
123
|
+
});
|
|
124
|
+
return;
|
|
125
|
+
}
|
|
126
|
+
throw new import_errors.CliError(`Unknown verb for marketing-events: ${verb}`, 2);
|
|
127
|
+
};
|
|
128
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
129
|
+
0 && (module.exports = {
|
|
130
|
+
runMarketingEvents
|
|
131
|
+
});
|
|
132
|
+
//# sourceMappingURL=marketing-events.js.map
|