Skip to content

Commit c1b9aa7

Browse files
committed
Fix copies still referencing the Partners Dashboard
1 parent 7a0d206 commit c1b9aa7

File tree

14 files changed

+31
-31
lines changed

14 files changed

+31
-31
lines changed

docs-shopify.dev/commands/app-config-link.doc.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import {ReferenceEntityTemplateSchema} from '@shopify/generate-docs'
33

44
const data: ReferenceEntityTemplateSchema = {
55
name: 'app config link',
6-
description: `Pulls app configuration from the Partner Dashboard and creates or overwrites a configuration file. You can create a new app with this command to start with a default configuration file.
6+
description: `Pulls app configuration from the Developer Dashboard and creates or overwrites a configuration file. You can create a new app with this command to start with a default configuration file.
77
88
For more information on the format of the created TOML configuration file, refer to the [App configuration](/docs/apps/tools/cli/configuration) page.
99
`,
10-
overviewPreviewDescription: `Fetch your app configuration from the Partner Dashboard.`,
10+
overviewPreviewDescription: `Fetch your app configuration from the Developer Dashboard.`,
1111
type: 'command',
1212
isVisualComponent: false,
1313
defaultExample: {

docs-shopify.dev/commands/app-deploy.doc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const data: ReferenceEntityTemplateSchema = {
55
name: 'app deploy',
66
description: `[Builds the app](/docs/api/shopify-cli/app/app-build), then deploys your app configuration and extensions.
77
8-
This command creates an app version, which is a snapshot of your app configuration and all extensions, including the app extensions that you manage in the Partner Dashboard. This version is then released to users.
8+
This command creates an app version, which is a snapshot of your app configuration and all extensions. This version is then released to users.
99
1010
This command doesn't deploy your [web app](/docs/apps/tools/cli/structure#web-components). You need to [deploy your web app](/docs/apps/deployment/web) to your own hosting solution.
1111
`,

docs-shopify.dev/commands/interfaces/app-dev.interface.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export interface appdev {
3131
'--no-color'?: ''
3232

3333
/**
34-
* Skips the Partners Dashboard URL update step.
34+
* Uses the app URL from the toml file instead an autogenerated URL for dev.
3535
* @environment SHOPIFY_FLAG_NO_UPDATE
3636
*/
3737
'--no-update'?: ''

docs-shopify.dev/generated/generated_docs_data.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@
102102
},
103103
{
104104
"name": "app config link",
105-
"description": "Pulls app configuration from the Partner Dashboard and creates or overwrites a configuration file. You can create a new app with this command to start with a default configuration file.\n\n For more information on the format of the created TOML configuration file, refer to the [App configuration](/docs/apps/tools/cli/configuration) page.\n ",
106-
"overviewPreviewDescription": "Fetch your app configuration from the Partner Dashboard.",
105+
"description": "Pulls app configuration from the Developer Dashboard and creates or overwrites a configuration file. You can create a new app with this command to start with a default configuration file.\n\n For more information on the format of the created TOML configuration file, refer to the [App configuration](/docs/apps/tools/cli/configuration) page.\n ",
106+
"overviewPreviewDescription": "Fetch your app configuration from the Developer Dashboard.",
107107
"type": "command",
108108
"isVisualComponent": false,
109109
"defaultExample": {
@@ -277,7 +277,7 @@
277277
},
278278
{
279279
"name": "app deploy",
280-
"description": "[Builds the app](/docs/api/shopify-cli/app/app-build), then deploys your app configuration and extensions.\n\n This command creates an app version, which is a snapshot of your app configuration and all extensions, including the app extensions that you manage in the Partner Dashboard. This version is then released to users.\n\n This command doesn't deploy your [web app](/docs/apps/tools/cli/structure#web-components). You need to [deploy your web app](/docs/apps/deployment/web) to your own hosting solution.\n ",
280+
"description": "[Builds the app](/docs/api/shopify-cli/app/app-build), then deploys your app configuration and extensions.\n\n This command creates an app version, which is a snapshot of your app configuration and all extensions. This version is then released to users.\n\n This command doesn't deploy your [web app](/docs/apps/tools/cli/structure#web-components). You need to [deploy your web app](/docs/apps/deployment/web) to your own hosting solution.\n ",
281281
"overviewPreviewDescription": "Deploy your Shopify app.",
282282
"type": "command",
283283
"isVisualComponent": false,
@@ -592,7 +592,7 @@
592592
"syntaxKind": "PropertySignature",
593593
"name": "--no-update",
594594
"value": "\"\"",
595-
"description": "Skips the Partners Dashboard URL update step.",
595+
"description": "Uses the app URL from the toml file instead an autogenerated URL for dev.",
596596
"isOptional": true,
597597
"environmentValue": "SHOPIFY_FLAG_NO_UPDATE"
598598
},
@@ -705,7 +705,7 @@
705705
"environmentValue": "SHOPIFY_FLAG_THEME"
706706
}
707707
],
708-
"value": "export interface appdev {\n /**\n * Resource URL for checkout UI extension. Format: \"/cart/{productVariantID}:{productQuantity}\"\n * @environment SHOPIFY_FLAG_CHECKOUT_CART_URL\n */\n '--checkout-cart-url <value>'?: string\n\n /**\n * The Client ID of your app.\n * @environment SHOPIFY_FLAG_CLIENT_ID\n */\n '--client-id <value>'?: string\n\n /**\n * The name of the app configuration.\n * @environment SHOPIFY_FLAG_APP_CONFIG\n */\n '-c, --config <value>'?: string\n\n /**\n * Port to use for localhost.\n * @environment SHOPIFY_FLAG_LOCALHOST_PORT\n */\n '--localhost-port <value>'?: string\n\n /**\n * Disable color output.\n * @environment SHOPIFY_FLAG_NO_COLOR\n */\n '--no-color'?: ''\n\n /**\n * Skips the Partners Dashboard URL update step.\n * @environment SHOPIFY_FLAG_NO_UPDATE\n */\n '--no-update'?: ''\n\n /**\n * The file path or URL. The file path is to a file that you want updated on idle. The URL path is where you want a webhook posted to report on file changes.\n * @environment SHOPIFY_FLAG_NOTIFY\n */\n '--notify <value>'?: string\n\n /**\n * The path to your app directory.\n * @environment SHOPIFY_FLAG_PATH\n */\n '--path <value>'?: string\n\n /**\n * Reset all your settings.\n * @environment SHOPIFY_FLAG_RESET\n */\n '--reset'?: ''\n\n /**\n * Skips the installation of dependencies. Deprecated, use workspaces instead.\n * @environment SHOPIFY_FLAG_SKIP_DEPENDENCIES_INSTALLATION\n */\n '--skip-dependencies-installation'?: ''\n\n /**\n * Store URL. Must be an existing development or Shopify Plus sandbox store.\n * @environment SHOPIFY_FLAG_STORE\n */\n '-s, --store <value>'?: string\n\n /**\n * Resource URL for subscription UI extension. Format: \"/products/{productId}\"\n * @environment SHOPIFY_FLAG_SUBSCRIPTION_PRODUCT_URL\n */\n '--subscription-product-url <value>'?: string\n\n /**\n * Theme ID or name of the theme app extension host theme.\n * @environment SHOPIFY_FLAG_THEME\n */\n '-t, --theme <value>'?: string\n\n /**\n * Local port of the theme app extension development server.\n * @environment SHOPIFY_FLAG_THEME_APP_EXTENSION_PORT\n */\n '--theme-app-extension-port <value>'?: string\n\n /**\n * Use a custom tunnel, it must be running before executing dev. Format: \"https://my-tunnel-url:port\".\n * @environment SHOPIFY_FLAG_TUNNEL_URL\n */\n '--tunnel-url <value>'?: string\n\n /**\n * Service entry point will listen to localhost. A tunnel won't be used. Will work for testing many app features, but not those that directly invoke your app (E.g: Webhooks)\n * @environment SHOPIFY_FLAG_USE_LOCALHOST\n */\n '--use-localhost'?: ''\n\n /**\n * Increase the verbosity of the output.\n * @environment SHOPIFY_FLAG_VERBOSE\n */\n '--verbose'?: ''\n}"
708+
"value": "export interface appdev {\n /**\n * Resource URL for checkout UI extension. Format: \"/cart/{productVariantID}:{productQuantity}\"\n * @environment SHOPIFY_FLAG_CHECKOUT_CART_URL\n */\n '--checkout-cart-url <value>'?: string\n\n /**\n * The Client ID of your app.\n * @environment SHOPIFY_FLAG_CLIENT_ID\n */\n '--client-id <value>'?: string\n\n /**\n * The name of the app configuration.\n * @environment SHOPIFY_FLAG_APP_CONFIG\n */\n '-c, --config <value>'?: string\n\n /**\n * Port to use for localhost.\n * @environment SHOPIFY_FLAG_LOCALHOST_PORT\n */\n '--localhost-port <value>'?: string\n\n /**\n * Disable color output.\n * @environment SHOPIFY_FLAG_NO_COLOR\n */\n '--no-color'?: ''\n\n /**\n * Uses the app URL from the toml file instead an autogenerated URL for dev.\n * @environment SHOPIFY_FLAG_NO_UPDATE\n */\n '--no-update'?: ''\n\n /**\n * The file path or URL. The file path is to a file that you want updated on idle. The URL path is where you want a webhook posted to report on file changes.\n * @environment SHOPIFY_FLAG_NOTIFY\n */\n '--notify <value>'?: string\n\n /**\n * The path to your app directory.\n * @environment SHOPIFY_FLAG_PATH\n */\n '--path <value>'?: string\n\n /**\n * Reset all your settings.\n * @environment SHOPIFY_FLAG_RESET\n */\n '--reset'?: ''\n\n /**\n * Skips the installation of dependencies. Deprecated, use workspaces instead.\n * @environment SHOPIFY_FLAG_SKIP_DEPENDENCIES_INSTALLATION\n */\n '--skip-dependencies-installation'?: ''\n\n /**\n * Store URL. Must be an existing development or Shopify Plus sandbox store.\n * @environment SHOPIFY_FLAG_STORE\n */\n '-s, --store <value>'?: string\n\n /**\n * Resource URL for subscription UI extension. Format: \"/products/{productId}\"\n * @environment SHOPIFY_FLAG_SUBSCRIPTION_PRODUCT_URL\n */\n '--subscription-product-url <value>'?: string\n\n /**\n * Theme ID or name of the theme app extension host theme.\n * @environment SHOPIFY_FLAG_THEME\n */\n '-t, --theme <value>'?: string\n\n /**\n * Local port of the theme app extension development server.\n * @environment SHOPIFY_FLAG_THEME_APP_EXTENSION_PORT\n */\n '--theme-app-extension-port <value>'?: string\n\n /**\n * Use a custom tunnel, it must be running before executing dev. Format: \"https://my-tunnel-url:port\".\n * @environment SHOPIFY_FLAG_TUNNEL_URL\n */\n '--tunnel-url <value>'?: string\n\n /**\n * Service entry point will listen to localhost. A tunnel won't be used. Will work for testing many app features, but not those that directly invoke your app (E.g: Webhooks)\n * @environment SHOPIFY_FLAG_USE_LOCALHOST\n */\n '--use-localhost'?: ''\n\n /**\n * Increase the verbosity of the output.\n * @environment SHOPIFY_FLAG_VERBOSE\n */\n '--verbose'?: ''\n}"
709709
}
710710
}
711711
}

packages/app/src/cli/commands/app/config/link.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import AppLinkedCommand, {AppLinkedCommandOutput} from '../../../utilities/app-l
55
import {globalFlags} from '@shopify/cli-kit/node/cli'
66

77
export default class ConfigLink extends AppLinkedCommand {
8-
static summary = 'Fetch your app configuration from the Partner Dashboard.'
8+
static summary = 'Fetch your app configuration from the Developer Dashboard.'
99

10-
static descriptionWithMarkdown = `Pulls app configuration from the Partner Dashboard and creates or overwrites a configuration file. You can create a new app with this command to start with a default configuration file.
10+
static descriptionWithMarkdown = `Pulls app configuration from the Developer Dashboard and creates or overwrites a configuration file. You can create a new app with this command to start with a default configuration file.
1111
1212
For more information on the format of the created TOML configuration file, refer to the [App configuration](https://shopify.dev/docs/apps/tools/cli/configuration) page.
1313
`

packages/app/src/cli/commands/app/deploy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default class Deploy extends AppLinkedCommand {
1616

1717
static descriptionWithMarkdown = `[Builds the app](https://shopify.dev/docs/api/shopify-cli/app/app-build), then deploys your app configuration and extensions.
1818
19-
This command creates an app version, which is a snapshot of your app configuration and all extensions, including the app extensions that you manage in the Partner Dashboard. This version is then released to users.
19+
This command creates an app version, which is a snapshot of your app configuration and all extensions. This version is then released to users.
2020
2121
This command doesn't deploy your [web app](https://shopify.dev/docs/apps/tools/cli/structure#web-components). You need to [deploy your web app](https://shopify.dev/docs/apps/deployment/web) to your own hosting solution.
2222
`

packages/app/src/cli/commands/app/dev.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default class Dev extends AppLinkedCommand {
3939
default: false,
4040
}),
4141
'no-update': Flags.boolean({
42-
description: 'Skips the Partners Dashboard URL update step.',
42+
description: 'Uses the app URL from the toml file instead an autogenerated URL for dev.',
4343
env: 'SHOPIFY_FLAG_NO_UPDATE',
4444
default: false,
4545
}),

packages/app/src/cli/models/app/app.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ describe('preDeployValidation', () => {
260260
'App-specific webhook subscriptions are not supported when use_legacy_install_flow is enabled.',
261261
`To use app-specific webhooks, you need to:
262262
1. Remove 'use_legacy_install_flow = true' from your configuration
263-
2. Run 'shopify app deploy' to sync your scopes with the Partner Dashboard
263+
2. Run 'shopify app deploy' to sync your scopes with the Developer Dashboard
264264
265265
Alternatively, continue using shop-specific webhooks with the legacy install flow.
266266
@@ -414,7 +414,7 @@ Learn more: https://shopify.dev/docs/apps/build/authentication-authorization/app
414414
'App-specific webhook subscriptions are not supported when use_legacy_install_flow is enabled.',
415415
`To use app-specific webhooks, you need to:
416416
1. Remove 'use_legacy_install_flow = true' from your configuration
417-
2. Run 'shopify app deploy' to sync your scopes with the Partner Dashboard
417+
2. Run 'shopify app deploy' to sync your scopes with the Developer Dashboard
418418
419419
Alternatively, continue using shop-specific webhooks with the legacy install flow.
420420

packages/app/src/cli/models/app/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ export class App<
596596
'App-specific webhook subscriptions are not supported when use_legacy_install_flow is enabled.',
597597
`To use app-specific webhooks, you need to:
598598
1. Remove 'use_legacy_install_flow = true' from your configuration
599-
2. Run 'shopify app deploy' to sync your scopes with the Partner Dashboard
599+
2. Run 'shopify app deploy' to sync your scopes with the Developer Dashboard
600600
601601
Alternatively, continue using shop-specific webhooks with the legacy install flow.
602602

packages/app/src/cli/services/context.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import {basename, sniffForJson} from '@shopify/cli-kit/node/path'
3535
export const InvalidApiKeyErrorMessage = (apiKey: string) => {
3636
return {
3737
message: outputContent`Invalid Client ID: ${apiKey}`,
38-
tryMessage: outputContent`You can find the Client ID in the app settings in the Partners Dashboard.`,
38+
tryMessage: outputContent`You can find the Client ID in the app settings in the Developer Dashboard.`,
3939
}
4040
}
4141

0 commit comments

Comments
 (0)