auth0-deploy-cli 8.7.0 → 8.8.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 +36 -1
- package/README.md +1 -1
- package/lib/context/directory/handlers/index.js +2 -0
- package/lib/context/directory/handlers/index.js.map +1 -1
- package/lib/context/directory/handlers/networkACLs.d.ts +6 -0
- package/lib/context/directory/handlers/networkACLs.js +67 -0
- package/lib/context/directory/handlers/networkACLs.js.map +1 -0
- package/lib/context/yaml/handlers/index.js +2 -0
- package/lib/context/yaml/handlers/index.js.map +1 -1
- package/lib/context/yaml/handlers/networkACLs.d.ts +6 -0
- package/lib/context/yaml/handlers/networkACLs.js +54 -0
- package/lib/context/yaml/handlers/networkACLs.js.map +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/tools/auth0/handlers/branding.js +2 -1
- package/lib/tools/auth0/handlers/branding.js.map +1 -1
- package/lib/tools/auth0/handlers/customDomains.js.map +1 -1
- package/lib/tools/auth0/handlers/index.js +2 -0
- package/lib/tools/auth0/handlers/index.js.map +1 -1
- package/lib/tools/auth0/handlers/networkACLs.d.ts +257 -0
- package/lib/tools/auth0/handlers/networkACLs.js +350 -0
- package/lib/tools/auth0/handlers/networkACLs.js.map +1 -0
- package/lib/tools/auth0/handlers/prompts.d.ts +6 -6
- package/lib/tools/auth0/handlers/prompts.js +8 -0
- package/lib/tools/auth0/handlers/prompts.js.map +1 -1
- package/lib/tools/constants.d.ts +1 -0
- package/lib/tools/constants.js +12 -0
- package/lib/tools/constants.js.map +1 -1
- package/lib/tools/index.d.ts +1 -0
- package/lib/types.d.ts +6 -4
- package/lib/types.js.map +1 -1
- package/lib/utils.d.ts +2 -1
- package/package.json +16 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "auth0-deploy-cli",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.8.0",
|
|
4
4
|
"description": "A command line tool for deploying updates to your Auth0 tenant",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"homepage": "https://github.com/auth0/auth0-deploy-cli#readme",
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"ajv": "^6.12.6",
|
|
36
|
-
"auth0": "^4.
|
|
37
|
-
"dot-prop": "^5.
|
|
36
|
+
"auth0": "^4.21.0",
|
|
37
|
+
"dot-prop": "^5.3.0",
|
|
38
38
|
"fs-extra": "^10.1.0",
|
|
39
39
|
"js-yaml": "^4.1.0",
|
|
40
40
|
"lodash": "^4.17.21",
|
|
@@ -42,30 +42,30 @@
|
|
|
42
42
|
"nconf": "^0.12.1",
|
|
43
43
|
"promise-pool-executor": "^1.1.1",
|
|
44
44
|
"sanitize-filename": "^1.6.3",
|
|
45
|
-
"undici": "^7.
|
|
45
|
+
"undici": "^7.7.0",
|
|
46
46
|
"winston": "^3.17.0",
|
|
47
|
-
"yargs": "^15.
|
|
47
|
+
"yargs": "^15.4.1"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@types/fs-extra": "^9.0.13",
|
|
51
|
-
"@types/lodash": "^4.17.
|
|
52
|
-
"@types/mocha": "^10.0.
|
|
51
|
+
"@types/lodash": "^4.17.16",
|
|
52
|
+
"@types/mocha": "^10.0.10",
|
|
53
53
|
"@types/nconf": "^0.10.7",
|
|
54
|
-
"@typescript-eslint/parser": "^5.
|
|
55
|
-
"chai": "^4.
|
|
56
|
-
"chai-as-promised": "^7.1.
|
|
57
|
-
"eslint": "^7.
|
|
54
|
+
"@typescript-eslint/parser": "^5.62.0",
|
|
55
|
+
"chai": "^4.5.0",
|
|
56
|
+
"chai-as-promised": "^7.1.2",
|
|
57
|
+
"eslint": "^7.32.0",
|
|
58
58
|
"eslint-config-airbnb-base": "^14.2.1",
|
|
59
|
-
"eslint-config-prettier": "^8.
|
|
59
|
+
"eslint-config-prettier": "^8.10.0",
|
|
60
60
|
"eslint-plugin-import": "^2.31.0",
|
|
61
61
|
"husky": "^7.0.4",
|
|
62
62
|
"kacl": "^1.1.1",
|
|
63
63
|
"mocha": "^10.8.2",
|
|
64
64
|
"nock": "^13.5.6",
|
|
65
65
|
"node-fetch": "^2.7.0",
|
|
66
|
-
"nyc": "^15.0
|
|
67
|
-
"prettier": "^2.
|
|
68
|
-
"pretty-quick": "^3.1
|
|
66
|
+
"nyc": "^15.1.0",
|
|
67
|
+
"prettier": "^2.8.8",
|
|
68
|
+
"pretty-quick": "^3.3.1",
|
|
69
69
|
"rimraf": "^3.0.2",
|
|
70
70
|
"rmdir-sync": "^1.0.1",
|
|
71
71
|
"sinon": "^13.0.2",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"zlib": "^1.0.5"
|
|
76
76
|
},
|
|
77
77
|
"engines": {
|
|
78
|
-
"node": ">=
|
|
78
|
+
"node": ">=20.18.1"
|
|
79
79
|
},
|
|
80
80
|
"keywords": [
|
|
81
81
|
"auth0",
|