auth0-deploy-cli 7.23.1 → 7.24.1
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/CODEOWNERS +1 -1
- package/.nyc_output/6c53f809-38ff-4a01-b8fe-d1cee5fa39b5.json +1 -0
- package/.nyc_output/processinfo/4b16af10-96e4-470c-b27b-91b8ffcba783.json +1 -0
- package/.nyc_output/processinfo/{747e9b9b-46b5-4186-9626-5f44b7913b36.json → 6c53f809-38ff-4a01-b8fe-d1cee5fa39b5.json} +1 -1
- package/.nyc_output/processinfo/f6377d1c-b532-4fc1-9358-31ab6db619b4.json +1 -0
- package/.nyc_output/processinfo/index.json +1 -1
- package/CHANGELOG.md +24 -1
- package/coverage/lcov-report/index.html +33 -33
- package/coverage/lcov.info +1196 -1079
- package/lib/context/directory/handlers/prompts.js +51 -11
- package/lib/context/directory/handlers/prompts.js.map +1 -1
- package/lib/context/yaml/handlers/branding.js +6 -2
- package/lib/context/yaml/handlers/branding.js.map +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/tools/auth0/handlers/connections.js +1 -5
- package/lib/tools/auth0/handlers/connections.js.map +1 -1
- package/lib/tools/auth0/handlers/databases.js +15 -0
- package/lib/tools/auth0/handlers/databases.js.map +1 -1
- package/lib/tools/auth0/handlers/prompts.d.ts +48 -3
- package/lib/tools/auth0/handlers/prompts.js +175 -21
- package/lib/tools/auth0/handlers/prompts.js.map +1 -1
- package/lib/tools/auth0/handlers/scimHandler.d.ts +20 -33
- package/lib/tools/auth0/handlers/scimHandler.js +88 -153
- package/lib/tools/auth0/handlers/scimHandler.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/types.d.ts +6 -1
- package/lib/types.js.map +1 -1
- package/lib/utils.d.ts +12 -0
- package/package.json +1 -1
- package/.nyc_output/747e9b9b-46b5-4186-9626-5f44b7913b36.json +0 -1
- package/.nyc_output/processinfo/049a2787-df3f-4b58-bae0-3cf3b50d1cc3.json +0 -1
- package/.nyc_output/processinfo/91928ebf-9b67-4586-9ed6-5290c652cdcf.json +0 -1
- /package/.nyc_output/{049a2787-df3f-4b58-bae0-3cf3b50d1cc3.json → 4b16af10-96e4-470c-b27b-91b8ffcba783.json} +0 -0
- /package/.nyc_output/{91928ebf-9b67-4586-9ed6-5290c652cdcf.json → f6377d1c-b532-4fc1-9358-31ab6db619b4.json} +0 -0
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":";;;AAoUa,QAAA,SAAS,GAAG;IACvB,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,OAAO;IACP,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,OAAO;IACP,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,OAAO;IACP,OAAO;IACP,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,OAAO;IACP,OAAO;CACC,CAAC"}
|
package/lib/utils.d.ts
CHANGED
|
@@ -95,6 +95,18 @@ export declare function stripIdentifiers(auth0: Auth0, assets: Assets): {
|
|
|
95
95
|
"zh-CN": Partial<import("./tools/auth0/handlers/prompts").PromptsCustomText>;
|
|
96
96
|
"zh-TW": Partial<import("./tools/auth0/handlers/prompts").PromptsCustomText>;
|
|
97
97
|
}>;
|
|
98
|
+
partials: Partial<{
|
|
99
|
+
[x: string]: Partial<{
|
|
100
|
+
[x: string]: Partial<{
|
|
101
|
+
"form-content-start": string;
|
|
102
|
+
"form-content-end": string;
|
|
103
|
+
"form-footer-start": string;
|
|
104
|
+
"form-footer-end": string;
|
|
105
|
+
"secondary-actions-start": string;
|
|
106
|
+
"secondary-actions-end": string;
|
|
107
|
+
}>;
|
|
108
|
+
}>;
|
|
109
|
+
}>;
|
|
98
110
|
}> | null | undefined;
|
|
99
111
|
resourceServers?: import("./tools/auth0/handlers/resourceServers").ResourceServer[] | null | undefined;
|
|
100
112
|
roles?: Asset[] | null | undefined;
|