|
5855 | 5855 | "category": "store", |
5856 | 5856 | "related": [] |
5857 | 5857 | }, |
| 5858 | + { |
| 5859 | + "name": "store create", |
| 5860 | + "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.", |
| 5861 | + "overviewPreviewDescription": "Create a new Shopify store.", |
| 5862 | + "type": "command", |
| 5863 | + "isVisualComponent": false, |
| 5864 | + "defaultExample": { |
| 5865 | + "codeblock": { |
| 5866 | + "tabs": [ |
| 5867 | + { |
| 5868 | + "title": "store create", |
| 5869 | + "code": "shopify store create [flags]", |
| 5870 | + "language": "bash" |
| 5871 | + } |
| 5872 | + ], |
| 5873 | + "title": "store create" |
| 5874 | + } |
| 5875 | + }, |
| 5876 | + "definitions": [ |
| 5877 | + { |
| 5878 | + "title": "Flags", |
| 5879 | + "description": "The following flags are available for the `store create` command:", |
| 5880 | + "type": "storecreate", |
| 5881 | + "typeDefinitions": { |
| 5882 | + "storecreate": { |
| 5883 | + "filePath": "docs-shopify.dev/commands/interfaces/store-create.interface.ts", |
| 5884 | + "name": "storecreate", |
| 5885 | + "description": "", |
| 5886 | + "members": [ |
| 5887 | + { |
| 5888 | + "filePath": "docs-shopify.dev/commands/interfaces/store-create.interface.ts", |
| 5889 | + "syntaxKind": "PropertySignature", |
| 5890 | + "name": "--dev", |
| 5891 | + "value": "\"\"", |
| 5892 | + "description": "Create a development store instead of a trial store.", |
| 5893 | + "isOptional": true, |
| 5894 | + "environmentValue": "SHOPIFY_FLAG_STORE_DEV" |
| 5895 | + }, |
| 5896 | + { |
| 5897 | + "filePath": "docs-shopify.dev/commands/interfaces/store-create.interface.ts", |
| 5898 | + "syntaxKind": "PropertySignature", |
| 5899 | + "name": "--no-color", |
| 5900 | + "value": "\"\"", |
| 5901 | + "description": "Disable color output.", |
| 5902 | + "isOptional": true, |
| 5903 | + "environmentValue": "SHOPIFY_FLAG_NO_COLOR" |
| 5904 | + }, |
| 5905 | + { |
| 5906 | + "filePath": "docs-shopify.dev/commands/interfaces/store-create.interface.ts", |
| 5907 | + "syntaxKind": "PropertySignature", |
| 5908 | + "name": "--subdomain <value>", |
| 5909 | + "value": "string", |
| 5910 | + "description": "The custom myshopify.com subdomain for the store.", |
| 5911 | + "isOptional": true, |
| 5912 | + "environmentValue": "SHOPIFY_FLAG_STORE_SUBDOMAIN" |
| 5913 | + }, |
| 5914 | + { |
| 5915 | + "filePath": "docs-shopify.dev/commands/interfaces/store-create.interface.ts", |
| 5916 | + "syntaxKind": "PropertySignature", |
| 5917 | + "name": "--verbose", |
| 5918 | + "value": "\"\"", |
| 5919 | + "description": "Increase the verbosity of the output.", |
| 5920 | + "isOptional": true, |
| 5921 | + "environmentValue": "SHOPIFY_FLAG_VERBOSE" |
| 5922 | + }, |
| 5923 | + { |
| 5924 | + "filePath": "docs-shopify.dev/commands/interfaces/store-create.interface.ts", |
| 5925 | + "syntaxKind": "PropertySignature", |
| 5926 | + "name": "-c, --country <value>", |
| 5927 | + "value": "string", |
| 5928 | + "description": "The country code for the store (e.g., US, CA, GB).", |
| 5929 | + "isOptional": true, |
| 5930 | + "environmentValue": "SHOPIFY_FLAG_STORE_COUNTRY" |
| 5931 | + }, |
| 5932 | + { |
| 5933 | + "filePath": "docs-shopify.dev/commands/interfaces/store-create.interface.ts", |
| 5934 | + "syntaxKind": "PropertySignature", |
| 5935 | + "name": "-j, --json", |
| 5936 | + "value": "\"\"", |
| 5937 | + "description": "Output the result as JSON. Automatically disables color output.", |
| 5938 | + "isOptional": true, |
| 5939 | + "environmentValue": "SHOPIFY_FLAG_JSON" |
| 5940 | + }, |
| 5941 | + { |
| 5942 | + "filePath": "docs-shopify.dev/commands/interfaces/store-create.interface.ts", |
| 5943 | + "syntaxKind": "PropertySignature", |
| 5944 | + "name": "-n, --name <value>", |
| 5945 | + "value": "string", |
| 5946 | + "description": "The name of the store.", |
| 5947 | + "isOptional": true, |
| 5948 | + "environmentValue": "SHOPIFY_FLAG_STORE_NAME" |
| 5949 | + } |
| 5950 | + ], |
| 5951 | + "value": "export interface storecreate {\n /**\n * The country code for the store (e.g., US, CA, GB).\n * @environment SHOPIFY_FLAG_STORE_COUNTRY\n */\n '-c, --country <value>'?: string\n\n /**\n * Create a development store instead of a trial store.\n * @environment SHOPIFY_FLAG_STORE_DEV\n */\n '--dev'?: ''\n\n /**\n * Output the result as JSON. Automatically disables color output.\n * @environment SHOPIFY_FLAG_JSON\n */\n '-j, --json'?: ''\n\n /**\n * The name of the store.\n * @environment SHOPIFY_FLAG_STORE_NAME\n */\n '-n, --name <value>'?: string\n\n /**\n * Disable color output.\n * @environment SHOPIFY_FLAG_NO_COLOR\n */\n '--no-color'?: ''\n\n /**\n * The custom myshopify.com subdomain for the store.\n * @environment SHOPIFY_FLAG_STORE_SUBDOMAIN\n */\n '--subdomain <value>'?: string\n\n /**\n * Increase the verbosity of the output.\n * @environment SHOPIFY_FLAG_VERBOSE\n */\n '--verbose'?: ''\n}" |
| 5952 | + } |
| 5953 | + } |
| 5954 | + } |
| 5955 | + ], |
| 5956 | + "category": "store", |
| 5957 | + "related": [] |
| 5958 | + }, |
5858 | 5959 | { |
5859 | 5960 | "name": "store execute", |
5860 | 5961 | "description": "Executes an Admin API GraphQL query or mutation on the specified store using previously stored app authentication.\n\nRun `shopify store auth` first to create stored auth for the store.\n\nMutations are disabled by default. Re-run with `--allow-mutations` if you intend to modify store data.", |
|
0 commit comments