auth0-deploy-cli 8.16.0 → 8.18.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/.github/workflows/claude-code-review.yml +16 -0
- package/AGENTS.md +338 -0
- package/CHANGELOG.md +28 -2
- package/lib/context/directory/handlers/index.js +2 -0
- package/lib/context/directory/handlers/index.js.map +1 -1
- package/lib/context/directory/handlers/selfServiceProfiles.js +10 -1
- package/lib/context/directory/handlers/selfServiceProfiles.js.map +1 -1
- package/lib/context/directory/handlers/userAttributeProfiles.d.ts +6 -0
- package/lib/context/directory/handlers/userAttributeProfiles.js +54 -0
- package/lib/context/directory/handlers/userAttributeProfiles.js.map +1 -0
- package/lib/context/directory/index.js +2 -0
- package/lib/context/directory/index.js.map +1 -1
- package/lib/context/yaml/handlers/index.js +2 -0
- package/lib/context/yaml/handlers/index.js.map +1 -1
- package/lib/context/yaml/handlers/selfServiceProfiles.js +10 -0
- package/lib/context/yaml/handlers/selfServiceProfiles.js.map +1 -1
- package/lib/context/yaml/handlers/userAttributeProfiles.d.ts +6 -0
- package/lib/context/yaml/handlers/userAttributeProfiles.js +27 -0
- package/lib/context/yaml/handlers/userAttributeProfiles.js.map +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/tools/auth0/client.js +2 -1
- package/lib/tools/auth0/client.js.map +1 -1
- package/lib/tools/auth0/handlers/connections.d.ts +20 -0
- package/lib/tools/auth0/handlers/connections.js +16 -0
- package/lib/tools/auth0/handlers/connections.js.map +1 -1
- package/lib/tools/auth0/handlers/default.js +5 -1
- package/lib/tools/auth0/handlers/default.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/logStreams.js +43 -4
- package/lib/tools/auth0/handlers/logStreams.js.map +1 -1
- package/lib/tools/auth0/handlers/selfServiceProfiles.d.ts +6 -1
- package/lib/tools/auth0/handlers/selfServiceProfiles.js +91 -2
- package/lib/tools/auth0/handlers/selfServiceProfiles.js.map +1 -1
- package/lib/tools/auth0/handlers/userAttributeProfiles.d.ts +121 -0
- package/lib/tools/auth0/handlers/userAttributeProfiles.js +275 -0
- package/lib/tools/auth0/handlers/userAttributeProfiles.js.map +1 -0
- package/lib/tools/auth0/index.js +15 -4
- package/lib/tools/auth0/index.js.map +1 -1
- package/lib/tools/constants.d.ts +1 -0
- package/lib/tools/constants.js +1 -0
- package/lib/tools/constants.js.map +1 -1
- package/lib/tools/index.d.ts +1 -0
- package/lib/tools/utils.js +4 -2
- package/lib/tools/utils.js.map +1 -1
- package/lib/types.d.ts +5 -3
- package/lib/types.js +32 -0
- package/lib/types.js.map +1 -1
- package/lib/utils.d.ts +2 -0
- package/package.json +4 -4
package/lib/types.js
CHANGED
|
@@ -2,39 +2,62 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.languages = void 0;
|
|
4
4
|
exports.languages = [
|
|
5
|
+
'am',
|
|
5
6
|
'ar',
|
|
7
|
+
'ar-EG',
|
|
8
|
+
'ar-SA',
|
|
9
|
+
'az',
|
|
6
10
|
'bg',
|
|
11
|
+
'bn',
|
|
7
12
|
'bs',
|
|
8
13
|
'ca-ES',
|
|
14
|
+
'cnr',
|
|
9
15
|
'cs',
|
|
10
16
|
'cy',
|
|
11
17
|
'da',
|
|
12
18
|
'de',
|
|
13
19
|
'el',
|
|
14
20
|
'en',
|
|
21
|
+
'en-CA',
|
|
15
22
|
'es',
|
|
23
|
+
'es-419',
|
|
24
|
+
'es-AR',
|
|
25
|
+
'es-MX',
|
|
16
26
|
'et',
|
|
17
27
|
'eu-ES',
|
|
28
|
+
'fa',
|
|
18
29
|
'fi',
|
|
19
30
|
'fr',
|
|
20
31
|
'fr-CA',
|
|
21
32
|
'fr-FR',
|
|
22
33
|
'gl-ES',
|
|
34
|
+
'gu',
|
|
23
35
|
'he',
|
|
24
36
|
'hi',
|
|
25
37
|
'hr',
|
|
26
38
|
'hu',
|
|
39
|
+
'hy',
|
|
27
40
|
'id',
|
|
28
41
|
'is',
|
|
29
42
|
'it',
|
|
30
43
|
'ja',
|
|
44
|
+
'ka',
|
|
45
|
+
'kk',
|
|
46
|
+
'kn',
|
|
31
47
|
'ko',
|
|
32
48
|
'lt',
|
|
33
49
|
'lv',
|
|
50
|
+
'mk',
|
|
51
|
+
'ml',
|
|
52
|
+
'mn',
|
|
53
|
+
'mr',
|
|
54
|
+
'ms',
|
|
55
|
+
'my',
|
|
34
56
|
'nb',
|
|
35
57
|
'nl',
|
|
36
58
|
'nn',
|
|
37
59
|
'no',
|
|
60
|
+
'pa',
|
|
38
61
|
'pl',
|
|
39
62
|
'pt',
|
|
40
63
|
'pt-BR',
|
|
@@ -43,13 +66,22 @@ exports.languages = [
|
|
|
43
66
|
'ru',
|
|
44
67
|
'sk',
|
|
45
68
|
'sl',
|
|
69
|
+
'so',
|
|
70
|
+
'sq',
|
|
46
71
|
'sr',
|
|
47
72
|
'sv',
|
|
73
|
+
'sw',
|
|
74
|
+
'ta',
|
|
75
|
+
'te',
|
|
48
76
|
'th',
|
|
77
|
+
'tl',
|
|
49
78
|
'tr',
|
|
50
79
|
'uk',
|
|
80
|
+
'ur',
|
|
51
81
|
'vi',
|
|
82
|
+
'zgh',
|
|
52
83
|
'zh-CN',
|
|
84
|
+
'zh-HK',
|
|
53
85
|
'zh-TW',
|
|
54
86
|
];
|
|
55
87
|
//# sourceMappingURL=types.js.map
|
package/lib/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":";;;AAmMa,QAAA,SAAS,GAAG;IACvB,IAAI;IACJ,IAAI;IACJ,OAAO;IACP,OAAO;IACP,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,OAAO;IACP,KAAK;IACL,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,OAAO;IACP,IAAI;IACJ,QAAQ;IACR,OAAO;IACP,OAAO;IACP,IAAI;IACJ,OAAO;IACP,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,OAAO;IACP,OAAO;IACP,OAAO;IACP,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,OAAO;IACP,OAAO;IACP,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,KAAK;IACL,OAAO;IACP,OAAO;IACP,OAAO;CACC,CAAC"}
|
package/lib/utils.d.ts
CHANGED
|
@@ -64,6 +64,8 @@ export declare function stripIdentifiers(auth0: Auth0, assets: Assets): {
|
|
|
64
64
|
flowVaultConnections?: import("./tools/auth0/handlers/flowVaultConnections").FlowVaultConnection[] | null | undefined;
|
|
65
65
|
selfServiceProfiles?: import("./tools/auth0/handlers/selfServiceProfiles").SsProfileWithCustomText[] | null | undefined;
|
|
66
66
|
networkACLs?: import("auth0").GetNetworkAclsById200Response[] | null | undefined;
|
|
67
|
+
userAttributeProfiles?: import("auth0").UserAttributeProfile[] | null | undefined;
|
|
68
|
+
userAttributeProfilesWithId?: import("auth0").UserAttributeProfile[] | null | undefined;
|
|
67
69
|
};
|
|
68
70
|
export declare function sanitize(str: string): string;
|
|
69
71
|
type ImportantFields = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "auth0-deploy-cli",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.18.0",
|
|
4
4
|
"description": "A command line tool for deploying updates to your Auth0 tenant",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"lint:fix": "eslint --fix --ignore-path .eslintignore --ignore-pattern webpack . && kacl lint",
|
|
11
11
|
"lint": "eslint --ignore-path .eslintignore --ignore-pattern webpack . && kacl lint",
|
|
12
12
|
"format": "npx prettier --write .",
|
|
13
|
-
"test": "ts-mocha -p tsconfig.json --recursive 'test/**/*.test*' --exclude 'test/e2e/*' --timeout
|
|
13
|
+
"test": "ts-mocha -p tsconfig.json --recursive 'test/**/*.test*' --exclude 'test/e2e/*' --timeout 20000",
|
|
14
14
|
"test:e2e:node-module": "ts-mocha -p tsconfig.json --recursive 'test/e2e/*.test*' --timeout 120000",
|
|
15
15
|
"test:e2e:cli": "sh ./test/e2e/e2e-cli.sh",
|
|
16
16
|
"test:coverage": "nyc npm run test && nyc report --reporter=lcov",
|
|
@@ -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.32.0",
|
|
37
37
|
"dot-prop": "^5.3.0",
|
|
38
38
|
"fs-extra": "^10.1.0",
|
|
39
39
|
"js-yaml": "^4.1.0",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"promise-pool-executor": "^1.1.1",
|
|
44
44
|
"sanitize-filename": "^1.6.3",
|
|
45
45
|
"undici": "^7.16.0",
|
|
46
|
-
"winston": "^3.
|
|
46
|
+
"winston": "^3.18.3",
|
|
47
47
|
"yargs": "^15.4.1"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|