@forge/cli-shared 8.9.1-next.8 → 8.10.0-next.11
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 +23 -0
- package/out/graphql/graphql-types.d.ts +1916 -118
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +130 -49
- package/out/ui/text.d.ts +5 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +10 -5
- package/package.json +2 -2
package/out/ui/text.js
CHANGED
|
@@ -115,7 +115,8 @@ exports.Text = {
|
|
|
115
115
|
uikit: (modules) => {
|
|
116
116
|
return `${chalk_1.default.bold('Warning')}: Your app is currently using deprecated UI Kit 1 modules: ${modules.join(', ')}. ${chalk_1.default.bold('UI Kit 1')} has been deprecated on February 28, 2025. Please refer to the ${(0, terminal_link_1.default)('documentation', 'https://developer.atlassian.com/platform/forge/ui-kit/upgrade-to-ui-kit-latest/#upgrade-from-ui-kit-1-to-ui-kit-latest-version')} to upgrade your modules.`;
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
},
|
|
119
|
+
oldCreateCommandDeprecation: `${chalk_1.default.bold('Warning')}: This command is deprecated and will be removed in newer versions of the CLI after May 2026. Use '${forge('webtrigger create')}' instead.`
|
|
119
120
|
},
|
|
120
121
|
maxSizeOfUsersWithAccess: 10,
|
|
121
122
|
installationContext: {
|
|
@@ -321,7 +322,7 @@ What do you like or don't like about Forge? Share your feedback below or press C
|
|
|
321
322
|
agreement: 'Please review the following agreement before continuing:\n',
|
|
322
323
|
checkbox: '[ ] By continuing, I agree to the Atlassian Developer Terms and the Privacy Policy. If any Forge app added to this Developer Space exceeds the free usage allowance, I agree to be billed for any excess usage based on the then-current price.',
|
|
323
324
|
links: {
|
|
324
|
-
devTerms: ' - Developer Terms: https://developer.atlassian.com/platform/terms/',
|
|
325
|
+
devTerms: ' - Developer Terms: https://developer.atlassian.com/platform/marketplace/atlassian-developer-terms/',
|
|
325
326
|
privacy: ' - Privacy Policy: https://www.atlassian.com/legal/privacy-policy',
|
|
326
327
|
pricing: ' - Pricing: https://developer.atlassian.com/platform/forge/forge-platform-pricing/'
|
|
327
328
|
},
|
|
@@ -1043,8 +1044,8 @@ ${buildTerminalLink(link)}\n`,
|
|
|
1043
1044
|
invalidDebugStartingPortNumber: (port) => `${chalk_1.default.bold('--debugStartingPort')} ${port} must be a valid port number.`,
|
|
1044
1045
|
unableToAuthenticateDocker: (errCode) => `Docker authentication process exited with code: ${errCode}.`,
|
|
1045
1046
|
unableToPullProxySidecarImage: (errMessage) => `Unable to pull the proxy sidecar image. Make sure to run 'forge containers docker-login' first. Full error: ${errMessage}`,
|
|
1046
|
-
unableToStartDockerComposeStack: (errMessage) => `Cannot start
|
|
1047
|
-
unableToStopDockerComposeStack: (serviceKey, errMessage) => `Failed to stop
|
|
1047
|
+
unableToStartDockerComposeStack: (errMessage) => `Cannot start Docker Compose stack. This usually happens when Docker isn't running, or a Docker image doesn't exist. To fix this: Start a Docker engine, make sure all configured images exist, then retry the command. Full error: ${errMessage}`,
|
|
1048
|
+
unableToStopDockerComposeStack: (serviceKey, errMessage) => `Failed to stop Docker Compose stack for ${serviceKey}. Full error: ${errMessage}`,
|
|
1048
1049
|
invoke: (requestId, handler) => `invocation: ${requestId} ${handler}`,
|
|
1049
1050
|
invocationTimeout: (timeout) => `Function result will not be returned to the Forge platform, as the function did not complete within ${timeout} seconds. In invocations outside tunnel, functions that exceed the time limit are terminated.`,
|
|
1050
1051
|
customUI: {
|
|
@@ -1120,13 +1121,17 @@ ${buildTerminalLink(link)}\n`,
|
|
|
1120
1121
|
missingUninstallTask: `Cannot uninstall the app: something went wrong with starting the uninstall task.`
|
|
1121
1122
|
},
|
|
1122
1123
|
webtrigger: {
|
|
1123
|
-
cmd: '
|
|
1124
|
+
cmd: 'manage webtriggers',
|
|
1124
1125
|
copy: (url) => `\nCopy your web trigger URL below to start using it:\n\n${buildTerminalLink(url)}`,
|
|
1125
1126
|
optionFuncKey: 'web trigger key from the manifest.yml file',
|
|
1126
1127
|
overviewFuncKey: `\nGetting the web trigger URL for the provided context.\n\nPress Ctrl+C to cancel.\n`,
|
|
1127
1128
|
promptFuncKey: 'Select a web trigger:',
|
|
1128
1129
|
overViewInstallationTable: `\nGetting the web trigger URL by an app installation.\n\nPress Ctrl+C to cancel.\n`,
|
|
1129
1130
|
promptInstallationTable: 'Select an installation:',
|
|
1131
|
+
create: {
|
|
1132
|
+
cmd: 'get a web trigger URL',
|
|
1133
|
+
optionFunctionKey: 'web trigger key from the manifest.yml file'
|
|
1134
|
+
},
|
|
1130
1135
|
error: {
|
|
1131
1136
|
funcKey: "The given web trigger key doesn't exist in the manifest.yml file.",
|
|
1132
1137
|
noWebtriggers: "The manifest.yml file doesn't contain any web triggers. Add a web trigger before rerunning this command.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/cli-shared",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.10.0-next.11",
|
|
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": "11.1.0-next.
|
|
15
|
+
"@forge/manifest": "11.1.0-next.6",
|
|
16
16
|
"@forge/util": "2.0.1",
|
|
17
17
|
"@forge/i18n": "0.0.7",
|
|
18
18
|
"@sentry/node": "7.106.0",
|