@heroku/skynet 2.2.0 → 2.5.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/README.md +47 -0
- package/dist/commands/allowlist/add.d.ts +2 -2
- package/dist/commands/allowlist/remove.d.ts +1 -1
- package/dist/commands/categories/add.d.ts +2 -2
- package/dist/commands/categories/remove.d.ts +1 -1
- package/dist/commands/deprovision.d.ts +6 -6
- package/dist/commands/deprovision.js +1 -1
- package/dist/commands/legal-hold/add.d.ts +11 -0
- package/dist/commands/legal-hold/add.js +28 -0
- package/dist/commands/legal-hold/remove.d.ts +11 -0
- package/dist/commands/legal-hold/remove.js +28 -0
- package/dist/commands/suspend/app-owner.d.ts +7 -7
- package/dist/commands/suspend/app-owner.js +2 -2
- package/dist/commands/suspend/apps.d.ts +5 -5
- package/dist/commands/suspend/user/direct.d.ts +24 -0
- package/dist/commands/suspend/user/direct.js +286 -0
- package/dist/commands/suspend/user.d.ts +10 -9
- package/dist/commands/suspend/user.js +17 -3
- package/dist/commands/suspensions/upload.d.ts +9 -0
- package/dist/commands/suspensions/upload.js +111 -0
- package/dist/commands/suspensions.d.ts +1 -1
- package/dist/commands/suspensions.js +2 -2
- package/dist/commands/unsuspend/apps.d.ts +3 -3
- package/dist/commands/unsuspend/user.d.ts +3 -3
- package/dist/commands/userpass/add.d.ts +2 -2
- package/dist/commands/userpass/remove.d.ts +2 -2
- package/dist/lib/local-storage.d.ts +31 -0
- package/dist/lib/local-storage.js +88 -0
- package/dist/lib/skynet.d.ts +16 -2
- package/dist/lib/skynet.js +24 -2
- package/dist/lib/utils.d.ts +3 -0
- package/dist/lib/utils.js +64 -7
- package/oclif.manifest.json +560 -176
- package/package.json +17 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heroku/skynet",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"description": "use Skynet from Heroku CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": "heroku/heroku-skynet-cli",
|
|
@@ -18,32 +18,32 @@
|
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@heroku-cli/color": "^2.0.4",
|
|
21
|
-
"@heroku-cli/command": "^
|
|
22
|
-
"@heroku/heroku-cli-util": "^10.
|
|
23
|
-
"@oclif/core": "^
|
|
24
|
-
"@oclif/plugin-help": "^6.2.
|
|
25
|
-
"form-data": "^4.0.
|
|
26
|
-
"got": "^14.6.
|
|
21
|
+
"@heroku-cli/command": "^12.3.1",
|
|
22
|
+
"@heroku/heroku-cli-util": "^10.4.0",
|
|
23
|
+
"@oclif/core": "^4.10.4",
|
|
24
|
+
"@oclif/plugin-help": "^6.2.37",
|
|
25
|
+
"form-data": "^4.0.5",
|
|
26
|
+
"got": "^14.6.6",
|
|
27
27
|
"split": "^1.0.1"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/form-data": "^2.5.2",
|
|
31
31
|
"@types/mocha": "^10.0.10",
|
|
32
|
-
"@types/node": "^
|
|
32
|
+
"@types/node": "^25.3.3",
|
|
33
33
|
"@types/split": "^1.0.5",
|
|
34
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
35
|
-
"@typescript-eslint/parser": "^8.
|
|
36
|
-
"c8": "^
|
|
34
|
+
"@typescript-eslint/eslint-plugin": "^8.58.0",
|
|
35
|
+
"@typescript-eslint/parser": "^8.58.0",
|
|
36
|
+
"c8": "^11.0.0",
|
|
37
37
|
"eslint": "^8.57.1",
|
|
38
38
|
"eslint-plugin-import": "^2.32.0",
|
|
39
39
|
"eslint-plugin-mocha": "^10.4.3",
|
|
40
|
-
"mocha": "^11.7.
|
|
41
|
-
"nock": "^14.0.
|
|
42
|
-
"np": "^
|
|
43
|
-
"oclif": "^4.22.
|
|
40
|
+
"mocha": "^11.7.5",
|
|
41
|
+
"nock": "^14.0.11",
|
|
42
|
+
"np": "^11.0.2",
|
|
43
|
+
"oclif": "^4.22.97",
|
|
44
44
|
"ts-node": "^10.9.2",
|
|
45
|
-
"tsx": "^4.
|
|
46
|
-
"typescript": "^
|
|
45
|
+
"tsx": "^4.21.0",
|
|
46
|
+
"typescript": "^6.0.2",
|
|
47
47
|
"unexpected": "^13.2.1"
|
|
48
48
|
},
|
|
49
49
|
"oclif": {
|