auth0-deploy-cli 8.6.1 → 8.7.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 +34 -1
- package/README.md +1 -1
- package/lib/commands/export.js +0 -11
- package/lib/commands/export.js.map +1 -1
- package/lib/commands/import.js +0 -11
- package/lib/commands/import.js.map +1 -1
- package/lib/context/defaults.d.ts +1 -0
- package/lib/context/defaults.js +19 -0
- package/lib/context/defaults.js.map +1 -1
- package/lib/context/directory/handlers/clientGrants.js +21 -11
- package/lib/context/directory/handlers/clientGrants.js.map +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/phoneProvider.d.ts +6 -0
- package/lib/context/directory/handlers/phoneProvider.js +56 -0
- package/lib/context/directory/handlers/phoneProvider.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/phoneProvider.d.ts +6 -0
- package/lib/context/yaml/handlers/phoneProvider.js +42 -0
- package/lib/context/yaml/handlers/phoneProvider.js.map +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js.map +1 -1
- package/lib/keywordPreservation.js +10 -0
- package/lib/keywordPreservation.js.map +1 -1
- package/lib/tools/auth0/handlers/branding.js +3 -1
- package/lib/tools/auth0/handlers/branding.js.map +1 -1
- package/lib/tools/auth0/handlers/connections.js +2 -2
- package/lib/tools/auth0/handlers/connections.js.map +1 -1
- package/lib/tools/auth0/handlers/databases.js +2 -2
- package/lib/tools/auth0/handlers/databases.js.map +1 -1
- package/lib/tools/auth0/handlers/emailProvider.js +0 -8
- package/lib/tools/auth0/handlers/emailProvider.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/organizations.js +1 -1
- package/lib/tools/auth0/handlers/organizations.js.map +1 -1
- package/lib/tools/auth0/handlers/phoneProvider.d.ts +68 -0
- package/lib/tools/auth0/handlers/phoneProvider.js +239 -0
- package/lib/tools/auth0/handlers/phoneProvider.js.map +1 -0
- package/lib/tools/auth0/schema.d.ts +1 -1
- package/lib/tools/calculateChanges.d.ts +1 -1
- package/lib/tools/constants.d.ts +1 -0
- package/lib/tools/constants.js +22 -1
- package/lib/tools/constants.js.map +1 -1
- package/lib/tools/index.d.ts +1 -0
- package/lib/types.d.ts +3 -1
- package/lib/types.js.map +1 -1
- package/lib/utils.d.ts +1 -0
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "auth0-deploy-cli",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.7.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,7 +33,7 @@
|
|
|
33
33
|
"homepage": "https://github.com/auth0/auth0-deploy-cli#readme",
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"ajv": "^6.12.6",
|
|
36
|
-
"auth0": "^4.
|
|
36
|
+
"auth0": "^4.19.0",
|
|
37
37
|
"dot-prop": "^5.2.0",
|
|
38
38
|
"fs-extra": "^10.1.0",
|
|
39
39
|
"js-yaml": "^4.1.0",
|
|
@@ -42,7 +42,7 @@
|
|
|
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.4.0",
|
|
46
46
|
"winston": "^3.17.0",
|
|
47
47
|
"yargs": "^15.3.1"
|
|
48
48
|
},
|
|
@@ -70,12 +70,12 @@
|
|
|
70
70
|
"rmdir-sync": "^1.0.1",
|
|
71
71
|
"sinon": "^13.0.2",
|
|
72
72
|
"sinon-chai": "^3.7.0",
|
|
73
|
-
"ts-mocha": "^10.
|
|
74
|
-
"typescript": "^5.
|
|
73
|
+
"ts-mocha": "^10.1.0",
|
|
74
|
+
"typescript": "^5.8.2",
|
|
75
75
|
"zlib": "^1.0.5"
|
|
76
76
|
},
|
|
77
77
|
"engines": {
|
|
78
|
-
"node": ">= 18"
|
|
78
|
+
"node": ">= 20.18.3"
|
|
79
79
|
},
|
|
80
80
|
"keywords": [
|
|
81
81
|
"auth0",
|