auth0-deploy-cli 8.1.0 → 8.3.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/.nyc_output/ecad2d34-1d34-48d9-9a0d-bb4c26508a9c.json +1 -0
- package/.nyc_output/processinfo/03941aa4-af45-42de-9432-07c6d9373eb4.json +1 -0
- package/.nyc_output/processinfo/2150f3c4-9262-4d47-b5b2-eb3f4d0f8111.json +1 -0
- package/.nyc_output/processinfo/ecad2d34-1d34-48d9-9a0d-bb4c26508a9c.json +1 -0
- package/.nyc_output/processinfo/index.json +1 -1
- package/CHANGELOG.md +29 -1
- package/coverage/lcov-report/index.html +58 -58
- package/coverage/lcov.info +2717 -1600
- package/docs/configuring-the-deploy-cli.md +8 -0
- package/lib/context/directory/handlers/flowVaultConnections.d.ts +6 -0
- package/lib/context/directory/handlers/flowVaultConnections.js +81 -0
- package/lib/context/directory/handlers/flowVaultConnections.js.map +1 -0
- package/lib/context/directory/handlers/flows.d.ts +6 -0
- package/lib/context/directory/handlers/flows.js +80 -0
- package/lib/context/directory/handlers/flows.js.map +1 -0
- package/lib/context/directory/handlers/forms.d.ts +6 -0
- package/lib/context/directory/handlers/forms.js +80 -0
- package/lib/context/directory/handlers/forms.js.map +1 -0
- package/lib/context/directory/handlers/index.js +8 -0
- package/lib/context/directory/handlers/index.js.map +1 -1
- package/lib/context/directory/handlers/selfServiceProfiles.d.ts +6 -0
- package/lib/context/directory/handlers/selfServiceProfiles.js +61 -0
- package/lib/context/directory/handlers/selfServiceProfiles.js.map +1 -0
- package/lib/context/directory/index.js +17 -7
- package/lib/context/directory/index.js.map +1 -1
- package/lib/context/yaml/handlers/flowVaultConnections.d.ts +6 -0
- package/lib/context/yaml/handlers/flowVaultConnections.js +66 -0
- package/lib/context/yaml/handlers/flowVaultConnections.js.map +1 -0
- package/lib/context/yaml/handlers/flows.d.ts +6 -0
- package/lib/context/yaml/handlers/flows.js +92 -0
- package/lib/context/yaml/handlers/flows.js.map +1 -0
- package/lib/context/yaml/handlers/forms.d.ts +6 -0
- package/lib/context/yaml/handlers/forms.js +92 -0
- package/lib/context/yaml/handlers/forms.js.map +1 -0
- package/lib/context/yaml/handlers/index.js +8 -0
- package/lib/context/yaml/handlers/index.js.map +1 -1
- package/lib/context/yaml/handlers/selfServiceProfiles.d.ts +6 -0
- package/lib/context/yaml/handlers/selfServiceProfiles.js +46 -0
- package/lib/context/yaml/handlers/selfServiceProfiles.js.map +1 -0
- package/lib/index.d.ts +5 -0
- package/lib/tools/auth0/client.d.ts +2 -2
- package/lib/tools/auth0/client.js +7 -6
- package/lib/tools/auth0/client.js.map +1 -1
- package/lib/tools/auth0/handlers/actions.js +17 -7
- package/lib/tools/auth0/handlers/actions.js.map +1 -1
- package/lib/tools/auth0/handlers/branding.js +17 -7
- package/lib/tools/auth0/handlers/branding.js.map +1 -1
- package/lib/tools/auth0/handlers/clientGrants.js +17 -7
- package/lib/tools/auth0/handlers/clientGrants.js.map +1 -1
- package/lib/tools/auth0/handlers/connections.js +17 -7
- package/lib/tools/auth0/handlers/connections.js.map +1 -1
- package/lib/tools/auth0/handlers/customDomains.js +17 -7
- package/lib/tools/auth0/handlers/customDomains.js.map +1 -1
- package/lib/tools/auth0/handlers/databases.js +17 -7
- package/lib/tools/auth0/handlers/databases.js.map +1 -1
- package/lib/tools/auth0/handlers/emailTemplates.js +17 -7
- package/lib/tools/auth0/handlers/emailTemplates.js.map +1 -1
- package/lib/tools/auth0/handlers/flowVaultConnections.d.ts +53 -0
- package/lib/tools/auth0/handlers/flowVaultConnections.js +188 -0
- package/lib/tools/auth0/handlers/flowVaultConnections.js.map +1 -0
- package/lib/tools/auth0/handlers/flows.d.ts +32 -0
- package/lib/tools/auth0/handlers/flows.js +156 -0
- package/lib/tools/auth0/handlers/flows.js.map +1 -0
- package/lib/tools/auth0/handlers/forms.d.ts +32 -0
- package/lib/tools/auth0/handlers/forms.js +137 -0
- package/lib/tools/auth0/handlers/forms.js.map +1 -0
- package/lib/tools/auth0/handlers/index.js +25 -7
- package/lib/tools/auth0/handlers/index.js.map +1 -1
- package/lib/tools/auth0/handlers/organizations.js +18 -8
- package/lib/tools/auth0/handlers/organizations.js.map +1 -1
- package/lib/tools/auth0/handlers/roles.js +17 -7
- package/lib/tools/auth0/handlers/roles.js.map +1 -1
- package/lib/tools/auth0/handlers/selfServiceProfiles.d.ts +90 -0
- package/lib/tools/auth0/handlers/selfServiceProfiles.js +274 -0
- package/lib/tools/auth0/handlers/selfServiceProfiles.js.map +1 -0
- package/lib/tools/auth0/handlers/tenant.js +17 -7
- package/lib/tools/auth0/handlers/tenant.js.map +1 -1
- package/lib/tools/auth0/handlers/themes.js +17 -7
- package/lib/tools/auth0/handlers/themes.js.map +1 -1
- package/lib/tools/auth0/handlers/triggers.js +28 -11
- package/lib/tools/auth0/handlers/triggers.js.map +1 -1
- package/lib/tools/constants.d.ts +5 -0
- package/lib/tools/constants.js +27 -0
- package/lib/tools/constants.js.map +1 -1
- package/lib/tools/index.d.ts +5 -0
- package/lib/tools/utils.js +17 -7
- package/lib/tools/utils.js.map +1 -1
- package/lib/types.d.ts +11 -3
- package/lib/types.js.map +1 -1
- package/lib/utils.d.ts +8 -0
- package/lib/utils.js +25 -0
- package/lib/utils.js.map +1 -1
- package/package.json +7 -7
- package/.nyc_output/eddfc559-04e8-4f99-adef-dd9503950c80.json +0 -1
- package/.nyc_output/processinfo/20b0af71-c58f-402b-ac9c-4c5b7a505a79.json +0 -1
- package/.nyc_output/processinfo/9b0c8b3d-76ba-4549-b82e-b44e387f2419.json +0 -1
- package/.nyc_output/processinfo/eddfc559-04e8-4f99-adef-dd9503950c80.json +0 -1
- /package/.nyc_output/{20b0af71-c58f-402b-ac9c-4c5b7a505a79.json → 03941aa4-af45-42de-9432-07c6d9373eb4.json} +0 -0
- /package/.nyc_output/{9b0c8b3d-76ba-4549-b82e-b44e387f2419.json → 2150f3c4-9262-4d47-b5b2-eb3f4d0f8111.json} +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"parent":"9b0c8b3d-76ba-4549-b82e-b44e387f2419","pid":181,"argv":["/usr/local/bin/node","/home/circleci/repo/node_modules/.bin/ts-mocha","-p","tsconfig.json","--recursive","test/**/*.test*","--exclude","test/e2e/*","--timeout","7500"],"execArgv":[],"cwd":"/home/circleci/repo","time":1731061190420,"ppid":180,"coverageFilename":"/home/circleci/repo/.nyc_output/20b0af71-c58f-402b-ac9c-4c5b7a505a79.json","externalId":"","uuid":"20b0af71-c58f-402b-ac9c-4c5b7a505a79","files":[]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"parent":null,"pid":169,"argv":["/usr/local/bin/node","/usr/local/bin/npm","run","test"],"execArgv":[],"cwd":"/home/circleci/repo","time":1731061190229,"ppid":158,"coverageFilename":"/home/circleci/repo/.nyc_output/9b0c8b3d-76ba-4549-b82e-b44e387f2419.json","externalId":"","uuid":"9b0c8b3d-76ba-4549-b82e-b44e387f2419","files":[]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"parent":"20b0af71-c58f-402b-ac9c-4c5b7a505a79","pid":188,"argv":["/usr/local/bin/node","/home/circleci/repo/node_modules/mocha/bin/mocha.js","-r","/home/circleci/repo/node_modules/ts-mocha/src/index.js","--recursive","test/**/*.test*","--exclude","test/e2e/*","--timeout","7500"],"execArgv":[],"cwd":"/home/circleci/repo","time":1731061190526,"ppid":181,"coverageFilename":"/home/circleci/repo/.nyc_output/eddfc559-04e8-4f99-adef-dd9503950c80.json","externalId":"","uuid":"eddfc559-04e8-4f99-adef-dd9503950c80","files":["/home/circleci/repo/src/logger.ts","/home/circleci/repo/src/context/index.ts","/home/circleci/repo/src/context/yaml/index.ts","/home/circleci/repo/src/tools/index.ts","/home/circleci/repo/src/tools/constants.ts","/home/circleci/repo/src/tools/deploy.ts","/home/circleci/repo/src/tools/auth0/index.ts","/home/circleci/repo/src/tools/auth0/client.ts","/home/circleci/repo/src/tools/utils.ts","/home/circleci/repo/src/tools/auth0/schema.ts","/home/circleci/repo/src/tools/auth0/handlers/index.ts","/home/circleci/repo/src/tools/auth0/handlers/rules.ts","/home/circleci/repo/src/tools/validationError.ts","/home/circleci/repo/src/tools/auth0/handlers/default.ts","/home/circleci/repo/src/tools/calculateChanges.ts","/home/circleci/repo/src/tools/auth0/handlers/rulesConfigs.ts","/home/circleci/repo/src/tools/auth0/handlers/hooks.ts","/home/circleci/repo/src/tools/auth0/handlers/pages.ts","/home/circleci/repo/src/tools/auth0/handlers/resourceServers.ts","/home/circleci/repo/src/tools/auth0/handlers/databases.ts","/home/circleci/repo/src/tools/auth0/handlers/connections.ts","/home/circleci/repo/src/tools/auth0/handlers/scimHandler.ts","/home/circleci/repo/src/tools/auth0/handlers/clients.ts","/home/circleci/repo/src/tools/auth0/handlers/tenant.ts","/home/circleci/repo/src/tools/auth0/handlers/emailProvider.ts","/home/circleci/repo/src/tools/auth0/handlers/emailTemplates.ts","/home/circleci/repo/src/tools/auth0/handlers/clientGrants.ts","/home/circleci/repo/src/tools/auth0/handlers/guardianFactors.ts","/home/circleci/repo/src/tools/auth0/handlers/guardianFactorProviders.ts","/home/circleci/repo/src/tools/auth0/handlers/guardianFactorTemplates.ts","/home/circleci/repo/src/tools/auth0/handlers/guardianPolicies.ts","/home/circleci/repo/src/tools/auth0/handlers/guardianPhoneFactorSelectedProvider.ts","/home/circleci/repo/src/tools/auth0/handlers/guardianPhoneFactorMessageTypes.ts","/home/circleci/repo/src/tools/auth0/handlers/roles.ts","/home/circleci/repo/src/tools/auth0/handlers/branding.ts","/home/circleci/repo/src/tools/auth0/handlers/prompts.ts","/home/circleci/repo/src/types.ts","/home/circleci/repo/src/tools/auth0/handlers/actions.ts","/home/circleci/repo/src/tools/auth0/handlers/triggers.ts","/home/circleci/repo/src/tools/auth0/handlers/organizations.ts","/home/circleci/repo/src/utils.ts","/home/circleci/repo/src/tools/auth0/handlers/attackProtection.ts","/home/circleci/repo/src/tools/auth0/handlers/logStreams.ts","/home/circleci/repo/src/tools/auth0/handlers/customDomains.ts","/home/circleci/repo/src/tools/auth0/handlers/themes.ts","/home/circleci/repo/src/context/yaml/handlers/index.ts","/home/circleci/repo/src/context/yaml/handlers/pages.ts","/home/circleci/repo/src/context/yaml/handlers/clients.ts","/home/circleci/repo/src/context/yaml/handlers/tenant.ts","/home/circleci/repo/src/sessionDurationsToMinutes.ts","/home/circleci/repo/src/context/yaml/handlers/emailProvider.ts","/home/circleci/repo/src/context/defaults.ts","/home/circleci/repo/src/context/yaml/handlers/connections.ts","/home/circleci/repo/src/context/yaml/handlers/databases.ts","/home/circleci/repo/src/context/yaml/handlers/emailTemplates.ts","/home/circleci/repo/src/context/yaml/handlers/clientGrants.ts","/home/circleci/repo/src/context/yaml/handlers/resourceServers.ts","/home/circleci/repo/src/context/yaml/handlers/guardianFactors.ts","/home/circleci/repo/src/context/yaml/handlers/guardianFactorProviders.ts","/home/circleci/repo/src/context/yaml/handlers/guardianFactorTemplates.ts","/home/circleci/repo/src/context/yaml/handlers/guardianPhoneFactorMessageTypes.ts","/home/circleci/repo/src/context/yaml/handlers/guardianPhoneFactorSelectedProvider.ts","/home/circleci/repo/src/context/yaml/handlers/guardianPolicies.ts","/home/circleci/repo/src/context/yaml/handlers/roles.ts","/home/circleci/repo/src/context/yaml/handlers/organizations.ts","/home/circleci/repo/src/context/yaml/handlers/actions.ts","/home/circleci/repo/src/context/yaml/handlers/triggers.ts","/home/circleci/repo/src/context/yaml/handlers/attackProtection.ts","/home/circleci/repo/src/context/yaml/handlers/branding.ts","/home/circleci/repo/src/context/yaml/handlers/logStreams.ts","/home/circleci/repo/src/context/yaml/handlers/prompts.ts","/home/circleci/repo/src/context/yaml/handlers/customDomains.ts","/home/circleci/repo/src/context/yaml/handlers/themes.ts","/home/circleci/repo/src/context/yaml/handlers/rules.ts","/home/circleci/repo/src/context/yaml/handlers/rulesConfigs.ts","/home/circleci/repo/src/context/yaml/handlers/hooks.ts","/home/circleci/repo/src/readonly.ts","/home/circleci/repo/src/keywordPreservation.ts","/home/circleci/repo/src/context/directory/index.ts","/home/circleci/repo/src/context/directory/handlers/index.ts","/home/circleci/repo/src/context/directory/handlers/pages.ts","/home/circleci/repo/src/context/directory/handlers/clients.ts","/home/circleci/repo/src/context/directory/handlers/tenant.ts","/home/circleci/repo/src/context/directory/handlers/emailProvider.ts","/home/circleci/repo/src/context/directory/handlers/connections.ts","/home/circleci/repo/src/context/directory/handlers/databases.ts","/home/circleci/repo/src/context/directory/handlers/emailTemplates.ts","/home/circleci/repo/src/context/directory/handlers/clientGrants.ts","/home/circleci/repo/src/context/directory/handlers/resourceServers.ts","/home/circleci/repo/src/context/directory/handlers/guardianFactors.ts","/home/circleci/repo/src/context/directory/handlers/guardianFactorProviders.ts","/home/circleci/repo/src/context/directory/handlers/guardianFactorTemplates.ts","/home/circleci/repo/src/context/directory/handlers/guardianPhoneFactorMessageTypes.ts","/home/circleci/repo/src/context/directory/handlers/guardianPhoneFactorSelectedProvider.ts","/home/circleci/repo/src/context/directory/handlers/guardianPolicies.ts","/home/circleci/repo/src/context/directory/handlers/roles.ts","/home/circleci/repo/src/context/directory/handlers/actions.ts","/home/circleci/repo/src/context/directory/handlers/organizations.ts","/home/circleci/repo/src/context/directory/handlers/triggers.ts","/home/circleci/repo/src/context/directory/handlers/attackProtection.ts","/home/circleci/repo/src/context/directory/handlers/branding.ts","/home/circleci/repo/src/context/directory/handlers/logStreams.ts","/home/circleci/repo/src/context/directory/handlers/prompts.ts","/home/circleci/repo/src/context/directory/handlers/customDomains.ts","/home/circleci/repo/src/context/directory/handlers/themes.ts","/home/circleci/repo/src/context/directory/handlers/rules.ts","/home/circleci/repo/src/context/directory/handlers/hooks.ts","/home/circleci/repo/src/context/directory/handlers/rulesConfigs.ts","/home/circleci/repo/src/index.ts","/home/circleci/repo/src/args.ts","/home/circleci/repo/src/commands/import.ts","/home/circleci/repo/src/configFactory.ts","/home/circleci/repo/src/commands/export.ts"]}
|
|
File without changes
|
|
File without changes
|