@forge/cli-shared 6.6.0-next.6 → 6.6.0-next.6-experimental-62518dd
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 +21 -0
- package/LICENSE.txt +7 -0
- package/out/graphql/graphql-types.d.ts +642 -7
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +1 -1
- package/package.json +5 -5
|
@@ -2785,6 +2785,7 @@ var EcosystemInstallationRecoveryMode;
|
|
|
2785
2785
|
})(EcosystemInstallationRecoveryMode = exports.EcosystemInstallationRecoveryMode || (exports.EcosystemInstallationRecoveryMode = {}));
|
|
2786
2786
|
var EcosystemLicenseMode;
|
|
2787
2787
|
(function (EcosystemLicenseMode) {
|
|
2788
|
+
EcosystemLicenseMode["Agent"] = "AGENT";
|
|
2788
2789
|
EcosystemLicenseMode["UserAccess"] = "USER_ACCESS";
|
|
2789
2790
|
})(EcosystemLicenseMode = exports.EcosystemLicenseMode || (exports.EcosystemLicenseMode = {}));
|
|
2790
2791
|
var EcosystemPrimaryProduct;
|
|
@@ -5438,7 +5439,6 @@ var JiraJqlSyntaxError;
|
|
|
5438
5439
|
})(JiraJqlSyntaxError = exports.JiraJqlSyntaxError || (exports.JiraJqlSyntaxError = {}));
|
|
5439
5440
|
var JiraJqlViewContext;
|
|
5440
5441
|
(function (JiraJqlViewContext) {
|
|
5441
|
-
JiraJqlViewContext["FilterRefinement"] = "FILTER_REFINEMENT";
|
|
5442
5442
|
JiraJqlViewContext["JpdRoadmaps"] = "JPD_ROADMAPS";
|
|
5443
5443
|
JiraJqlViewContext["JswPlans"] = "JSW_PLANS";
|
|
5444
5444
|
JiraJqlViewContext["Jwm"] = "JWM";
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/cli-shared",
|
|
3
|
-
"version": "6.6.0-next.6",
|
|
3
|
+
"version": "6.6.0-next.6-experimental-62518dd",
|
|
4
4
|
"description": "Common functionality for Forge CLI",
|
|
5
5
|
"author": "Atlassian",
|
|
6
|
-
"license": "
|
|
6
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
7
7
|
"main": "out/index.js",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"build": "yarn run clean && yarn run compile",
|
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
"generate-graphql-types": "graphql-codegen --config src/graphql/codegen.yml"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@forge/manifest": "8.6.1-next.1",
|
|
16
|
-
"@forge/util": "1.4.7-next.1",
|
|
17
|
-
"@forge/i18n": "0.0.3-next.1",
|
|
15
|
+
"@forge/manifest": "8.6.1-next.1-experimental-62518dd",
|
|
16
|
+
"@forge/util": "1.4.7-next.1-experimental-62518dd",
|
|
17
|
+
"@forge/i18n": "0.0.3-next.1-experimental-62518dd",
|
|
18
18
|
"@sentry/node": "7.106.0",
|
|
19
19
|
"adm-zip": "^0.5.10",
|
|
20
20
|
"array.prototype.flatmap": "^1.3.2",
|