@forge/manifest 2.6.0-next.6 → 2.6.0-next.7
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 +6 -0
- package/out/schema/manifest-schema.json +280 -280
- package/out/schema/manifest.d.ts +354 -354
- package/out/text/errors.js +1 -1
- package/package.json +1 -1
package/out/text/errors.js
CHANGED
|
@@ -23,7 +23,7 @@ exports.errors = {
|
|
|
23
23
|
permissions: {
|
|
24
24
|
invalidPermission: (element, value) => `Invalid '${element}' permission in the manifest.yml file - '${value}'. Learn more about permissions at: https://go.atlassian.com/forge-permissions.`,
|
|
25
25
|
missingPermissionFromScope: (scope, event) => `Trigger event: '${event}' requires '${scope}' scope`,
|
|
26
|
-
deprecatedPermission: (element, value) => `
|
|
26
|
+
deprecatedPermission: (element, value) => `There are deprecated scopes '${element}' in the manifest.yml file: '${value.join(', ')}'. You need to update this app to use new scopes and remove the deprecated scopes. Learn more at: https://go.atlassian.com/forge-permissions.`
|
|
27
27
|
},
|
|
28
28
|
connectModules: {
|
|
29
29
|
invalidConnectModule: (module) => `invalid value '${module}' in connectModules`,
|