You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add --for-client flag for client transfer store creation
Adds support for creating client transfer stores via the Organizations
API `createClientDevelopmentShop` mutation. These are stores built by
partners for their clients, on the affiliate plan.
Usage: shopify store create --for-client --org <org-id> --name "Store"
The --org flag is required with --for-client and provides the Partner
organization ID. Uses Business Platform token auth via the Organizations
API (different from the Signups API path used by trial/dev stores).
Also adds flag validation:
- --for-client and --dev are mutually exclusive
- --subdomain is not supported with --for-client
- --org is required with --for-client
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
description: `Creates a new Shopify store associated with your account.
7
7
8
-
By default, creates a trial store. Use \`--dev\` to create a development store instead.`,
8
+
By default, creates a trial store. Use \`--dev\` to create a development store, or \`--for-client\` to create a client transfer store under a Partner organization.`,
9
9
overviewPreviewDescription: `Create a new Shopify store.`,
Copy file name to clipboardExpand all lines: packages/cli/oclif.manifest.json
+18-2Lines changed: 18 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5807,13 +5807,14 @@
5807
5807
],
5808
5808
"args": {
5809
5809
},
5810
-
"description": "Creates a new Shopify store associated with your account.\n\nBy default, creates a trial store. Use `--dev` to create a development store instead.",
5811
-
"descriptionWithMarkdown": "Creates a new Shopify store associated with your account.\n\nBy default, creates a trial store. Use `--dev` to create a development store instead.",
5810
+
"description": "Creates a new Shopify store associated with your account.\n\nBy default, creates a trial store. Use `--dev` to create a development store, or `--for-client` to create a client transfer store under a Partner organization.",
5811
+
"descriptionWithMarkdown": "Creates a new Shopify store associated with your account.\n\nBy default, creates a trial store. Use `--dev` to create a development store, or `--for-client` to create a client transfer store under a Partner organization.",
staticdescriptionWithMarkdown=`Creates a new Shopify store associated with your account.
12
12
13
-
By default, creates a trial store. Use \`--dev\` to create a development store instead.`
13
+
By default, creates a trial store. Use \`--dev\` to create a development store, or \`--for-client\` to create a client transfer store under a Partner organization.`
0 commit comments