@forge/cli-shared 8.15.3-next.2 → 8.15.3-next.3-experimental-bf21d1e
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/CHANGELOG.md +16 -0
- package/out/graphql/graphql-types.d.ts +285 -28
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +178 -27
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +2 -1
- package/out/ui/text.d.ts +1 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -1
- package/package.json +2 -2
package/out/ui/text.js
CHANGED
|
@@ -159,7 +159,7 @@ exports.Text = {
|
|
|
159
159
|
outdatedClientVersion: `Your version of Forge CLI is no longer supported.` +
|
|
160
160
|
`\nRun ${command('npm', 'uninstall', '-g', cli_details_1.FORGE_CLI_PACKAGE)} followed by ${command('npm', 'install', '-g', cli_details_1.FORGE_CLI_PACKAGE)} to update to the latest version.` +
|
|
161
161
|
`\n`,
|
|
162
|
-
insufficientScopes: `You need a token with the right authorisation scopes to access this field.
|
|
162
|
+
insufficientScopes: (instructionsUrl) => `You need a token with the right authorisation scopes to access this field. To create a new token with the required scopes, visit: ${buildTerminalLink(instructionsUrl)}`
|
|
163
163
|
},
|
|
164
164
|
hostedResources: {
|
|
165
165
|
error: (errorMessage) => `Failed to deploy hosted resources. ${errorMessage}`,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/cli-shared",
|
|
3
|
-
"version": "8.15.3-next.
|
|
3
|
+
"version": "8.15.3-next.3-experimental-bf21d1e",
|
|
4
4
|
"description": "Common functionality for Forge CLI",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"generate-graphql-types": "graphql-codegen --config src/graphql/codegen.yml"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@forge/manifest": "12.1.2-next.1",
|
|
15
|
+
"@forge/manifest": "12.1.2-next.1-experimental-bf21d1e",
|
|
16
16
|
"@forge/util": "2.0.1",
|
|
17
17
|
"@forge/i18n": "0.0.7",
|
|
18
18
|
"@sentry/node": "7.106.0",
|