@forge/cli-shared 3.16.0-next.9 → 3.16.1-next.0
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 +252 -0
- package/out/apps/app-config.d.ts +2 -2
- package/out/apps/app-config.d.ts.map +1 -1
- package/out/apps/create-an-app.d.ts +1 -1
- package/out/apps/create-an-app.d.ts.map +1 -1
- package/out/apps/register-app.d.ts +1 -1
- package/out/apps/register-app.d.ts.map +1 -1
- package/out/ari/ari.d.ts.map +1 -1
- package/out/ari/ari.js +3 -6
- package/out/auth/authenticator.d.ts +1 -1
- package/out/auth/authenticator.d.ts.map +1 -1
- package/out/auth/personal/credential-store.d.ts +2 -2
- package/out/auth/personal/credential-store.d.ts.map +1 -1
- package/out/config/config-codec-types.d.ts +4 -4
- package/out/config/config-codec-types.d.ts.map +1 -1
- package/out/config/config-file.d.ts +2 -2
- package/out/config/config-file.d.ts.map +1 -1
- package/out/file-system/file-system-reader.d.ts +1 -1
- package/out/file-system/file-system-reader.d.ts.map +1 -1
- package/out/graphql/gateway.d.ts +1 -1
- package/out/graphql/gateway.d.ts.map +1 -1
- package/out/graphql/graphql-client.d.ts +3 -3
- package/out/graphql/graphql-client.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +5004 -4213
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +121 -8
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +24 -24
- package/out/service/feature-flag-service.d.ts +6 -4
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +4 -0
- package/out/shared/environment.d.ts +1 -1
- package/out/shared/environment.d.ts.map +1 -1
- package/out/shared/pause.d.ts +1 -1
- package/out/shared/pause.d.ts.map +1 -1
- package/out/shared/product.d.ts +5 -2
- package/out/shared/product.d.ts.map +1 -1
- package/out/shared/product.js +28 -8
- package/out/ui/command-line-ui.d.ts +1 -0
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/table-prompt.d.ts +3 -3
- package/out/ui/table-prompt.d.ts.map +1 -1
- package/out/ui/ui.d.ts +2 -2
- package/out/ui/ui.d.ts.map +1 -1
- package/package.json +15 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/cli-shared",
|
|
3
|
-
"version": "3.16.
|
|
3
|
+
"version": "3.16.1-next.0",
|
|
4
4
|
"description": "Common functionality for Forge CLI",
|
|
5
5
|
"author": "Atlassian",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"generate-graphql-types": "graphql-codegen --config src/graphql/codegen.yml"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@forge/manifest": "4.
|
|
16
|
-
"@forge/util": "1.
|
|
15
|
+
"@forge/manifest": "4.17.1-next.0",
|
|
16
|
+
"@forge/util": "1.3.0",
|
|
17
17
|
"@sentry/node": "^7.57.0",
|
|
18
18
|
"adm-zip": "^0.5.10",
|
|
19
19
|
"array.prototype.flatmap": "^1.3.1",
|
|
@@ -21,28 +21,28 @@
|
|
|
21
21
|
"chalk": "^2.4.2",
|
|
22
22
|
"cheerio": "^0.22.0",
|
|
23
23
|
"cli-table3": "^0.6.3",
|
|
24
|
-
"conf": "^
|
|
24
|
+
"conf": "^10.2.0",
|
|
25
25
|
"cross-spawn": "^7.0.3",
|
|
26
26
|
"env-paths": "^2.2.1",
|
|
27
27
|
"figures": "^3.2.0",
|
|
28
|
-
"fp-ts": "^2.0
|
|
28
|
+
"fp-ts": "^2.16.0",
|
|
29
29
|
"fs-extra": "^8.1.0",
|
|
30
30
|
"get-folder-size": "^2.0.1",
|
|
31
31
|
"glob": "^7.2.3",
|
|
32
32
|
"graphql": "^15.8.0",
|
|
33
|
-
"graphql-request": "3.
|
|
33
|
+
"graphql-request": "3.7.0",
|
|
34
34
|
"ignore-walk": "^3.0.4",
|
|
35
35
|
"inquirer": "^8.2.5",
|
|
36
|
-
"io-ts": "^2.
|
|
36
|
+
"io-ts": "^2.2.20",
|
|
37
37
|
"keytar": "^7.9.0",
|
|
38
|
-
"launchdarkly-node-client-sdk": "^2.
|
|
38
|
+
"launchdarkly-node-client-sdk": "^2.2.2",
|
|
39
39
|
"node-fetch": "2.6.12",
|
|
40
|
-
"ora": "^4.
|
|
40
|
+
"ora": "^4.1.1",
|
|
41
41
|
"recursive-readdir": "^2.2.3",
|
|
42
|
-
"semver": "^
|
|
42
|
+
"semver": "^7.5.4",
|
|
43
43
|
"terminal-link": "^2.1.1",
|
|
44
|
-
"tmp": "^0.1
|
|
45
|
-
"typescript": "^4.
|
|
44
|
+
"tmp": "^0.2.1",
|
|
45
|
+
"typescript": "^4.9.5",
|
|
46
46
|
"yaml": "^1.10.2"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
@@ -60,11 +60,11 @@
|
|
|
60
60
|
"@types/glob": "7.2.0",
|
|
61
61
|
"@types/ignore-walk": "^3.0.2",
|
|
62
62
|
"@types/inquirer": "^8.2.6",
|
|
63
|
-
"@types/jest": "^29.
|
|
64
|
-
"@types/js-yaml": "^3.12.
|
|
63
|
+
"@types/jest": "^29.5.3",
|
|
64
|
+
"@types/js-yaml": "^3.12.7",
|
|
65
65
|
"@types/node-fetch": "^2.6.4",
|
|
66
66
|
"@types/recursive-readdir": "^2.2.1",
|
|
67
|
-
"@types/tmp": "^0.
|
|
67
|
+
"@types/tmp": "^0.2.3",
|
|
68
68
|
"graphql-tools": "^6.2.4",
|
|
69
69
|
"jest-fixtures": "^0.6.0",
|
|
70
70
|
"jest-matcher-specific-error": "^1.0.0"
|