auth0-deploy-cli 7.3.7 → 7.5.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.
Files changed (113) hide show
  1. package/.circleci/config.yml +15 -0
  2. package/.eslintrc +66 -17
  3. package/.github/CODEOWNERS +1 -0
  4. package/.husky/pre-commit +6 -0
  5. package/.husky/pre-push +4 -0
  6. package/CHANGELOG.md +37 -2
  7. package/lib/args.js +94 -81
  8. package/lib/commands/export.js +54 -78
  9. package/lib/commands/import.js +46 -70
  10. package/lib/commands/index.js +11 -20
  11. package/lib/configFactory.js +19 -27
  12. package/lib/context/defaults.js +18 -41
  13. package/lib/context/directory/handlers/actions.js +77 -107
  14. package/lib/context/directory/handlers/attackProtection.js +59 -0
  15. package/lib/context/directory/handlers/clientGrants.js +45 -54
  16. package/lib/context/directory/handlers/clients.js +60 -79
  17. package/lib/context/directory/handlers/connections.js +65 -89
  18. package/lib/context/directory/handlers/databases.js +91 -123
  19. package/lib/context/directory/handlers/emailProvider.js +46 -57
  20. package/lib/context/directory/handlers/emailTemplates.js +67 -80
  21. package/lib/context/directory/handlers/guardianFactorProviders.js +41 -49
  22. package/lib/context/directory/handlers/guardianFactorTemplates.js +41 -49
  23. package/lib/context/directory/handlers/guardianFactors.js +41 -49
  24. package/lib/context/directory/handlers/guardianPhoneFactorMessageTypes.js +40 -50
  25. package/lib/context/directory/handlers/guardianPhoneFactorSelectedProvider.js +40 -50
  26. package/lib/context/directory/handlers/guardianPolicies.js +40 -50
  27. package/lib/context/directory/handlers/hooks.js +55 -70
  28. package/lib/context/directory/handlers/index.js +53 -123
  29. package/lib/context/directory/handlers/migrations.js +36 -41
  30. package/lib/context/directory/handlers/organizations.js +54 -69
  31. package/lib/context/directory/handlers/pages.js +72 -86
  32. package/lib/context/directory/handlers/resourceServers.js +41 -49
  33. package/lib/context/directory/handlers/roles.js +49 -62
  34. package/lib/context/directory/handlers/rules.js +52 -68
  35. package/lib/context/directory/handlers/rulesConfigs.js +33 -32
  36. package/lib/context/directory/handlers/tenant.js +52 -47
  37. package/lib/context/directory/handlers/triggers.js +39 -54
  38. package/lib/context/directory/index.js +113 -101
  39. package/lib/context/index.js +96 -105
  40. package/lib/context/yaml/handlers/actions.js +71 -88
  41. package/lib/context/yaml/handlers/attackProtection.js +29 -0
  42. package/lib/context/yaml/handlers/clientGrants.js +36 -29
  43. package/lib/context/yaml/handlers/clients.js +61 -76
  44. package/lib/context/yaml/handlers/connections.js +76 -103
  45. package/lib/context/yaml/handlers/databases.js +64 -79
  46. package/lib/context/yaml/handlers/emailProvider.js +33 -30
  47. package/lib/context/yaml/handlers/emailTemplates.js +45 -54
  48. package/lib/context/yaml/handlers/guardianFactorProviders.js +27 -18
  49. package/lib/context/yaml/handlers/guardianFactorTemplates.js +27 -18
  50. package/lib/context/yaml/handlers/guardianFactors.js +27 -18
  51. package/lib/context/yaml/handlers/guardianPhoneFactorMessageTypes.js +27 -20
  52. package/lib/context/yaml/handlers/guardianPhoneFactorSelectedProvider.js +27 -20
  53. package/lib/context/yaml/handlers/guardianPolicies.js +27 -20
  54. package/lib/context/yaml/handlers/hooks.js +57 -67
  55. package/lib/context/yaml/handlers/index.js +53 -123
  56. package/lib/context/yaml/handlers/migrations.js +23 -24
  57. package/lib/context/yaml/handlers/organizations.js +40 -38
  58. package/lib/context/yaml/handlers/pages.js +49 -58
  59. package/lib/context/yaml/handlers/resourceServers.js +27 -18
  60. package/lib/context/yaml/handlers/roles.js +34 -24
  61. package/lib/context/yaml/handlers/rules.js +48 -58
  62. package/lib/context/yaml/handlers/rulesConfigs.js +27 -18
  63. package/lib/context/yaml/handlers/tenant.js +44 -30
  64. package/lib/context/yaml/handlers/triggers.js +32 -23
  65. package/lib/context/yaml/index.js +127 -142
  66. package/lib/index.js +73 -79
  67. package/lib/logger.js +18 -22
  68. package/lib/readonly.js +74 -66
  69. package/lib/tools/ValidationError.js +8 -13
  70. package/lib/tools/auth0/client.js +143 -133
  71. package/lib/tools/auth0/handlers/actions.js +231 -243
  72. package/lib/tools/auth0/handlers/attackProtection.js +86 -0
  73. package/lib/tools/auth0/handlers/branding.js +47 -46
  74. package/lib/tools/auth0/handlers/clientGrants.js +118 -116
  75. package/lib/tools/auth0/handlers/clients.js +72 -90
  76. package/lib/tools/auth0/handlers/connections.js +150 -118
  77. package/lib/tools/auth0/handlers/databases.js +127 -124
  78. package/lib/tools/auth0/handlers/default.js +186 -189
  79. package/lib/tools/auth0/handlers/emailProvider.js +67 -78
  80. package/lib/tools/auth0/handlers/emailTemplates.js +116 -92
  81. package/lib/tools/auth0/handlers/guardianFactorProviders.js +66 -81
  82. package/lib/tools/auth0/handlers/guardianFactorTemplates.js +60 -71
  83. package/lib/tools/auth0/handlers/guardianFactors.js +56 -63
  84. package/lib/tools/auth0/handlers/guardianPhoneFactorMessageTypes.js +80 -79
  85. package/lib/tools/auth0/handlers/guardianPhoneFactorSelectedProvider.js +77 -76
  86. package/lib/tools/auth0/handlers/guardianPolicies.js +59 -62
  87. package/lib/tools/auth0/handlers/hooks.js +201 -227
  88. package/lib/tools/auth0/handlers/index.js +53 -111
  89. package/lib/tools/auth0/handlers/migrations.js +99 -79
  90. package/lib/tools/auth0/handlers/organizations.js +225 -247
  91. package/lib/tools/auth0/handlers/pages.js +116 -154
  92. package/lib/tools/auth0/handlers/prompts.js +47 -46
  93. package/lib/tools/auth0/handlers/resourceServers.js +88 -112
  94. package/lib/tools/auth0/handlers/roles.js +203 -220
  95. package/lib/tools/auth0/handlers/rules.js +168 -189
  96. package/lib/tools/auth0/handlers/rulesConfigs.js +54 -63
  97. package/lib/tools/auth0/handlers/tenant.js +88 -64
  98. package/lib/tools/auth0/handlers/triggers.js +126 -126
  99. package/lib/tools/auth0/index.js +92 -85
  100. package/lib/tools/auth0/schema.js +39 -31
  101. package/lib/tools/constants.js +111 -21
  102. package/lib/tools/deploy.js +35 -32
  103. package/lib/tools/index.js +19 -32
  104. package/lib/tools/logger.js +11 -12
  105. package/lib/tools/utils.js +258 -254
  106. package/lib/utils.js +167 -190
  107. package/package.json +13 -17
  108. package/tsconfig.json +17 -0
  109. package/typescript-migration-progress.sh +22 -0
  110. package/.babelrc +0 -17
  111. package/.nyc_output/32e2bffd-d561-4814-9aa3-fe929a1e178a.json +0 -1
  112. package/.nyc_output/processinfo/32e2bffd-d561-4814-9aa3-fe929a1e178a.json +0 -1
  113. package/.nyc_output/processinfo/index.json +0 -1
@@ -1 +0,0 @@
1
- {"parent":null,"pid":221,"argv":["/usr/local/bin/node","/home/circleci/repo/node_modules/.bin/mocha","--recursive","--require","@babel/register","test"],"execArgv":[],"cwd":"/home/circleci/repo","time":1643910055005,"ppid":210,"coverageFilename":"/home/circleci/repo/.nyc_output/32e2bffd-d561-4814-9aa3-fe929a1e178a.json","externalId":"","uuid":"32e2bffd-d561-4814-9aa3-fe929a1e178a","files":["/home/circleci/repo/src/context/index.js","/home/circleci/repo/src/context/yaml/index.js","/home/circleci/repo/src/tools/index.js","/home/circleci/repo/src/tools/constants.js","/home/circleci/repo/src/tools/deploy.js","/home/circleci/repo/src/tools/auth0/index.js","/home/circleci/repo/src/tools/auth0/client.js","/home/circleci/repo/src/tools/utils.js","/home/circleci/repo/src/tools/logger.js","/home/circleci/repo/src/tools/auth0/schema.js","/home/circleci/repo/src/tools/auth0/handlers/index.js","/home/circleci/repo/src/tools/auth0/handlers/rules.js","/home/circleci/repo/src/tools/ValidationError.js","/home/circleci/repo/src/tools/auth0/handlers/default.js","/home/circleci/repo/src/tools/auth0/handlers/rulesConfigs.js","/home/circleci/repo/src/tools/auth0/handlers/hooks.js","/home/circleci/repo/src/tools/auth0/handlers/pages.js","/home/circleci/repo/src/tools/auth0/handlers/resourceServers.js","/home/circleci/repo/src/tools/auth0/handlers/databases.js","/home/circleci/repo/src/tools/auth0/handlers/connections.js","/home/circleci/repo/src/tools/auth0/handlers/clients.js","/home/circleci/repo/src/tools/auth0/handlers/tenant.js","/home/circleci/repo/src/tools/auth0/handlers/emailProvider.js","/home/circleci/repo/src/tools/auth0/handlers/emailTemplates.js","/home/circleci/repo/src/tools/auth0/handlers/clientGrants.js","/home/circleci/repo/src/tools/auth0/handlers/guardianFactors.js","/home/circleci/repo/src/tools/auth0/handlers/guardianFactorProviders.js","/home/circleci/repo/src/tools/auth0/handlers/guardianFactorTemplates.js","/home/circleci/repo/src/tools/auth0/handlers/guardianPolicies.js","/home/circleci/repo/src/tools/auth0/handlers/guardianPhoneFactorSelectedProvider.js","/home/circleci/repo/src/tools/auth0/handlers/guardianPhoneFactorMessageTypes.js","/home/circleci/repo/src/tools/auth0/handlers/roles.js","/home/circleci/repo/src/tools/auth0/handlers/branding.js","/home/circleci/repo/src/tools/auth0/handlers/prompts.js","/home/circleci/repo/src/tools/auth0/handlers/migrations.js","/home/circleci/repo/src/tools/auth0/handlers/actions.js","/home/circleci/repo/src/tools/auth0/handlers/triggers.js","/home/circleci/repo/src/tools/auth0/handlers/organizations.js","/home/circleci/repo/src/logger.js","/home/circleci/repo/src/utils.js","/home/circleci/repo/src/context/yaml/handlers/index.js","/home/circleci/repo/src/context/yaml/handlers/pages.js","/home/circleci/repo/src/context/yaml/handlers/rules.js","/home/circleci/repo/src/context/yaml/handlers/hooks.js","/home/circleci/repo/src/context/yaml/handlers/clients.js","/home/circleci/repo/src/context/yaml/handlers/tenant.js","/home/circleci/repo/src/context/yaml/handlers/emailProvider.js","/home/circleci/repo/src/context/defaults.js","/home/circleci/repo/src/context/yaml/handlers/connections.js","/home/circleci/repo/src/context/yaml/handlers/databases.js","/home/circleci/repo/src/context/yaml/handlers/emailTemplates.js","/home/circleci/repo/src/context/yaml/handlers/clientGrants.js","/home/circleci/repo/src/context/yaml/handlers/rulesConfigs.js","/home/circleci/repo/src/context/yaml/handlers/resourceServers.js","/home/circleci/repo/src/context/yaml/handlers/guardianFactors.js","/home/circleci/repo/src/context/yaml/handlers/guardianFactorProviders.js","/home/circleci/repo/src/context/yaml/handlers/guardianFactorTemplates.js","/home/circleci/repo/src/context/yaml/handlers/guardianPhoneFactorMessageTypes.js","/home/circleci/repo/src/context/yaml/handlers/guardianPhoneFactorSelectedProvider.js","/home/circleci/repo/src/context/yaml/handlers/guardianPolicies.js","/home/circleci/repo/src/context/yaml/handlers/roles.js","/home/circleci/repo/src/context/yaml/handlers/organizations.js","/home/circleci/repo/src/context/yaml/handlers/migrations.js","/home/circleci/repo/src/context/yaml/handlers/actions.js","/home/circleci/repo/src/context/yaml/handlers/triggers.js","/home/circleci/repo/src/readonly.js","/home/circleci/repo/src/context/directory/index.js","/home/circleci/repo/src/context/directory/handlers/index.js","/home/circleci/repo/src/context/directory/handlers/pages.js","/home/circleci/repo/src/context/directory/handlers/rules.js","/home/circleci/repo/src/context/directory/handlers/hooks.js","/home/circleci/repo/src/context/directory/handlers/clients.js","/home/circleci/repo/src/context/directory/handlers/tenant.js","/home/circleci/repo/src/context/directory/handlers/emailProvider.js","/home/circleci/repo/src/context/directory/handlers/connections.js","/home/circleci/repo/src/context/directory/handlers/databases.js","/home/circleci/repo/src/context/directory/handlers/emailTemplates.js","/home/circleci/repo/src/context/directory/handlers/clientGrants.js","/home/circleci/repo/src/context/directory/handlers/rulesConfigs.js","/home/circleci/repo/src/context/directory/handlers/resourceServers.js","/home/circleci/repo/src/context/directory/handlers/guardianFactors.js","/home/circleci/repo/src/context/directory/handlers/guardianFactorProviders.js","/home/circleci/repo/src/context/directory/handlers/guardianFactorTemplates.js","/home/circleci/repo/src/context/directory/handlers/guardianPhoneFactorMessageTypes.js","/home/circleci/repo/src/context/directory/handlers/guardianPhoneFactorSelectedProvider.js","/home/circleci/repo/src/context/directory/handlers/guardianPolicies.js","/home/circleci/repo/src/context/directory/handlers/roles.js","/home/circleci/repo/src/context/directory/handlers/migrations.js","/home/circleci/repo/src/context/directory/handlers/actions.js","/home/circleci/repo/src/context/directory/handlers/organizations.js","/home/circleci/repo/src/context/directory/handlers/triggers.js","/home/circleci/repo/src/index.js","/home/circleci/repo/src/args.js","/home/circleci/repo/src/commands/index.js","/home/circleci/repo/src/commands/import.js","/home/circleci/repo/src/configFactory.js","/home/circleci/repo/src/commands/export.js"]}
@@ -1 +0,0 @@
1
- {"processes":{"32e2bffd-d561-4814-9aa3-fe929a1e178a":{"parent":null,"children":[]}},"files":{"/home/circleci/repo/src/context/index.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/index.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/index.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/constants.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/deploy.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/index.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/client.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/utils.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/logger.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/schema.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/index.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/rules.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/ValidationError.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/default.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/rulesConfigs.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/hooks.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/pages.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/resourceServers.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/databases.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/connections.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/clients.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/tenant.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/emailProvider.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/emailTemplates.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/clientGrants.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/guardianFactors.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/guardianFactorProviders.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/guardianFactorTemplates.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/guardianPolicies.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/guardianPhoneFactorSelectedProvider.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/guardianPhoneFactorMessageTypes.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/roles.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/branding.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/prompts.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/migrations.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/actions.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/triggers.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/tools/auth0/handlers/organizations.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/logger.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/utils.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/index.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/pages.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/rules.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/hooks.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/clients.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/tenant.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/emailProvider.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/defaults.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/connections.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/databases.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/emailTemplates.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/clientGrants.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/rulesConfigs.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/resourceServers.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/guardianFactors.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/guardianFactorProviders.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/guardianFactorTemplates.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/guardianPhoneFactorMessageTypes.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/guardianPhoneFactorSelectedProvider.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/guardianPolicies.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/roles.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/organizations.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/migrations.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/actions.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/yaml/handlers/triggers.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/readonly.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/index.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/index.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/pages.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/rules.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/hooks.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/clients.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/tenant.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/emailProvider.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/connections.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/databases.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/emailTemplates.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/clientGrants.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/rulesConfigs.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/resourceServers.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/guardianFactors.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/guardianFactorProviders.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/guardianFactorTemplates.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/guardianPhoneFactorMessageTypes.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/guardianPhoneFactorSelectedProvider.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/guardianPolicies.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/roles.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/migrations.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/actions.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/organizations.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/context/directory/handlers/triggers.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/index.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/args.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/commands/index.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/commands/import.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/configFactory.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"],"/home/circleci/repo/src/commands/export.js":["32e2bffd-d561-4814-9aa3-fe929a1e178a"]},"externalIds":{}}