ApiLogicServer 15.0.65__py3-none-any.whl → 15.1.0__py3-none-any.whl

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 (519) hide show
  1. api_logic_server_cli/api_logic_server.py +2 -2
  2. api_logic_server_cli/database/basic_demo.sqlite +0 -0
  3. api_logic_server_cli/prototypes/base/.github/.copilot-instructions.md +25 -2
  4. api_logic_server_cli/prototypes/basic_demo/customizations/database/db.sqlite +0 -0
  5. api_logic_server_cli/prototypes/basic_demo/iteration/database/db.sqlite +0 -0
  6. api_logic_server_cli/prototypes/manager/.vscode/launch.json +2 -1
  7. api_logic_server_cli/prototypes/manager/samples/basic_demo/.devcontainer-option/For_VSCode.dockerfile +10 -0
  8. api_logic_server_cli/prototypes/manager/samples/basic_demo/.devcontainer-option/devcontainer.json +64 -0
  9. api_logic_server_cli/prototypes/manager/samples/basic_demo/.devcontainer-option/readme.md +1 -0
  10. api_logic_server_cli/prototypes/manager/samples/basic_demo/.devcontainer-option/setup.sh +10 -0
  11. api_logic_server_cli/prototypes/manager/samples/basic_demo/.env +4 -0
  12. api_logic_server_cli/prototypes/manager/samples/basic_demo/.github/.copilot-instructions.md +581 -0
  13. api_logic_server_cli/prototypes/manager/samples/basic_demo/.gitignore +9 -0
  14. api_logic_server_cli/prototypes/manager/samples/basic_demo/.idea/runConfigurations/ApiLogicServer.xml +24 -0
  15. api_logic_server_cli/prototypes/manager/samples/basic_demo/.idea/runConfigurations/Report_Behave_Logic.xml +24 -0
  16. api_logic_server_cli/prototypes/manager/samples/basic_demo/.idea/runConfigurations/Run_Behave.xml +24 -0
  17. api_logic_server_cli/prototypes/manager/samples/basic_demo/.idea/runConfigurations/Windows_Run_Behave.xml +24 -0
  18. api_logic_server_cli/prototypes/manager/samples/basic_demo/.idea/runConfigurations/run___No_Security.xml +25 -0
  19. api_logic_server_cli/prototypes/manager/samples/basic_demo/.idea/runConfigurations/run_docker.xml +59 -0
  20. api_logic_server_cli/prototypes/manager/samples/basic_demo/.vscode/launch.json +314 -0
  21. api_logic_server_cli/prototypes/manager/samples/basic_demo/.vscode/settings.json +40 -0
  22. api_logic_server_cli/prototypes/manager/samples/basic_demo/.vscode/venv_init.sh +64 -0
  23. api_logic_server_cli/prototypes/manager/samples/basic_demo/_config.yml +8 -0
  24. api_logic_server_cli/prototypes/manager/samples/basic_demo/_layouts/redirect.html +15 -0
  25. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/__init__.py +0 -0
  26. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/api_discovery/auto_discovery.py +27 -0
  27. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/api_discovery/mcp_discovery.py +97 -0
  28. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/api_discovery/mcp_expose_api_models.py +53 -0
  29. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/api_discovery/new_service.py +21 -0
  30. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/api_discovery/newer_service.py +21 -0
  31. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/api_discovery/ontimize_api.py +495 -0
  32. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/api_discovery/order_b2b_service.py +60 -0
  33. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/api_discovery/system.py +77 -0
  34. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/customize_api.py +63 -0
  35. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/expose_api_models.py +52 -0
  36. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/json_encoder.py +17 -0
  37. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/readme_customize_api.md +103 -0
  38. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/system/api_utils.py +171 -0
  39. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/system/custom_endpoint.py +1085 -0
  40. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/system/expression_parser.py +685 -0
  41. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/system/gen_csv_report.py +41 -0
  42. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/system/gen_pdf_report.py +215 -0
  43. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/system/opt_locking/opt_locking.py +158 -0
  44. api_logic_server_cli/prototypes/manager/samples/basic_demo/api/system/opt_locking/readme.md +225 -0
  45. api_logic_server_cli/prototypes/manager/samples/basic_demo/api_logic_server_run.py +162 -0
  46. api_logic_server_cli/prototypes/manager/samples/basic_demo/config/__init__.py +0 -0
  47. api_logic_server_cli/prototypes/manager/samples/basic_demo/config/activate_logicbank.py +46 -0
  48. api_logic_server_cli/prototypes/manager/samples/basic_demo/config/config.py +772 -0
  49. api_logic_server_cli/prototypes/manager/samples/basic_demo/config/default.env +16 -0
  50. api_logic_server_cli/prototypes/manager/samples/basic_demo/config/logging-reduced.yml +112 -0
  51. api_logic_server_cli/prototypes/manager/samples/basic_demo/config/logging.yml +123 -0
  52. api_logic_server_cli/prototypes/manager/samples/basic_demo/config/mypy.ini +25 -0
  53. api_logic_server_cli/prototypes/manager/samples/basic_demo/config/server_setup.py +459 -0
  54. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/api/api_discovery/openapi.py +92 -0
  55. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/config/default.env +13 -0
  56. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/database/db.sqlite +0 -0
  57. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/database/models.py +130 -0
  58. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/docs/mcp_learning/mcp_discovery.json +108 -0
  59. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/logic/cocktail-napkin.jpg +0 -0
  60. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/logic/declare_logic.py +106 -0
  61. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/logic/logic_discovery/email_request.py +49 -0
  62. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/logic/logic_discovery/simple_constraints.py +25 -0
  63. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/security/declare_security.py +60 -0
  64. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/admin/admin.yaml +162 -0
  65. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/admin/home.js +48 -0
  66. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/README.md +17 -0
  67. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/README_create_react_app.md +70 -0
  68. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/package-lock.json +18469 -0
  69. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/package.json +47 -0
  70. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/public/favicon.ico +0 -0
  71. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/public/index.html +43 -0
  72. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/public/logo192.png +0 -0
  73. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/public/logo512.png +0 -0
  74. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/public/manifest.json +25 -0
  75. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/public/robots.txt +3 -0
  76. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/App.css +38 -0
  77. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/App.js +61 -0
  78. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/App.test.js +8 -0
  79. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/Config-reference.js +527 -0
  80. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/Config.js +527 -0
  81. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/Customer-reference.js +216 -0
  82. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/Customer.js +230 -0
  83. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/Item.js +170 -0
  84. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/Order.js +207 -0
  85. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/Product.js +140 -0
  86. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/SysEmail.js +157 -0
  87. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/SysMcp.js +110 -0
  88. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/app_loader.js +24 -0
  89. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/index.css +13 -0
  90. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/index.js +17 -0
  91. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/logo.svg +1 -0
  92. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/rav4-jsonapi-client/.eslintrc +5 -0
  93. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/rav4-jsonapi-client/.yarnrc.yml +4 -0
  94. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/rav4-jsonapi-client/default-settings.js +25 -0
  95. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/rav4-jsonapi-client/default-settings.ts +25 -0
  96. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/rav4-jsonapi-client/errors.js +116 -0
  97. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/rav4-jsonapi-client/errors.ts +116 -0
  98. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/rav4-jsonapi-client/index.test.tsx +7 -0
  99. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/rav4-jsonapi-client/index.tsx +11 -0
  100. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/rav4-jsonapi-client/ra-jsonapi-client.js +577 -0
  101. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/rav4-jsonapi-client/ra-jsonapi-client.ts +577 -0
  102. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/rav4-jsonapi-client/resourceLookup.js +124 -0
  103. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/rav4-jsonapi-client/resourceLookup.ts +124 -0
  104. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/rav4-jsonapi-client/styles.module.css +9 -0
  105. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/reportWebVitals.js +13 -0
  106. api_logic_server_cli/prototypes/manager/samples/basic_demo/customizations/ui/reference_react_app/src/setupTests.js +5 -0
  107. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/__init__.py +0 -0
  108. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/alembic/alembic_run.py +98 -0
  109. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/alembic/env.py +78 -0
  110. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/alembic/readme_alembic.md +36 -0
  111. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/alembic/script.py.mako +24 -0
  112. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/alembic/versions/ae6a5c2fdc47_autogenerated.py +34 -0
  113. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/alembic/versions/readme.md +1 -0
  114. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/alembic.ini +103 -0
  115. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/authentication_db.sqlite +0 -0
  116. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/bind_dbs.py +25 -0
  117. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/customize_models.py +19 -0
  118. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/database_discovery/authentication_models.py +183 -0
  119. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/database_discovery/auto_discovery.py +27 -0
  120. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/db.sqlite +0 -0
  121. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/db_debug/db_debug.py +90 -0
  122. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/mcp_db.sqlite +0 -0
  123. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/mcp_models.py +58 -0
  124. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/models.py +132 -0
  125. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/system/SAFRSBaseX.py +139 -0
  126. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/test_data/alp_init.py +40 -0
  127. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/test_data/readme.md +13 -0
  128. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/test_data/response2code.py +148 -0
  129. api_logic_server_cli/prototypes/manager/samples/basic_demo/database/test_data/test_data_preamble.py +83 -0
  130. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/auth-db/authdb_mysql.Dockerfile +65 -0
  131. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/auth-db/authdb_mysql.sql +112 -0
  132. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/auth-db/authdb_postgres.sql +57 -0
  133. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/docker-compose-dev-azure/azure-deploy.sh +98 -0
  134. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/docker-compose-dev-local/docker-compose-dev-local.yml +38 -0
  135. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/docker-compose-dev-local/docker-compose.sh +34 -0
  136. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/docker-image/build_image.dockerfile +20 -0
  137. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/docker-image/build_image.sh +67 -0
  138. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/docker-image/env.list +35 -0
  139. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/docker-image/run_image.sh +23 -0
  140. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/docker-standard-image/docker-compose-standard-image.yml +33 -0
  141. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/docker-standard-image/env.list +55 -0
  142. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/data/h2/keycloakdb.mv.db +0 -0
  143. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/data/h2/keycloakdb.trace.db +236 -0
  144. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/data/import/kcals-realm.json +1807 -0
  145. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/data/import/kcals-users-0.json +24 -0
  146. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/data/import/master-realm.json +1953 -0
  147. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/data/import/master-users-0.json +23 -0
  148. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/data/tmp/kc-gzip-cache/nnbna/js/keycloak.js.gz +0 -0
  149. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/docker-compose-dev-network.yml +31 -0
  150. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/docker-compose-nginx.yml +48 -0
  151. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/docker-compose.yml +24 -0
  152. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/import/kcals-realm.json +1898 -0
  153. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/import/kcals-users-0.json +319 -0
  154. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/import/master-realm.json +1953 -0
  155. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/import/master-users-0.json +23 -0
  156. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/nginx/cert.pem +25 -0
  157. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/nginx/key.pem +28 -0
  158. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/nginx/nginx.conf +73 -0
  159. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/startup_log_nginx.txt +0 -0
  160. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/startup_log_no_nginx.txt +0 -0
  161. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/unused/auth_provider.py +80 -0
  162. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/keycloak/unused/unused-docker-compose-keycloak.sh +13 -0
  163. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/python-anywhere/python_anywhere_wsgi.py +116 -0
  164. api_logic_server_cli/prototypes/manager/samples/basic_demo/devops/readme-devops.md +31 -0
  165. api_logic_server_cli/prototypes/manager/samples/basic_demo/docs/db.dbml +14 -0
  166. api_logic_server_cli/prototypes/manager/samples/basic_demo/docs/graphics/readme.md +12 -0
  167. api_logic_server_cli/prototypes/manager/samples/basic_demo/docs/logic/readme.md +19 -0
  168. api_logic_server_cli/prototypes/manager/samples/basic_demo/docs/logic_suggestions/readme_logic_suggestions.md +3 -0
  169. api_logic_server_cli/prototypes/manager/samples/basic_demo/docs/mcp_learning/mcp.prompt +39 -0
  170. api_logic_server_cli/prototypes/manager/samples/basic_demo/docs/mcp_learning/mcp_schema.json +30 -0
  171. api_logic_server_cli/prototypes/manager/samples/basic_demo/docs/models-not-code.png +0 -0
  172. api_logic_server_cli/prototypes/manager/samples/basic_demo/docs/runtime engines.png +0 -0
  173. api_logic_server_cli/prototypes/manager/samples/basic_demo/docs/system-creation-vibe.md +158 -0
  174. api_logic_server_cli/prototypes/manager/samples/basic_demo/docs/training/admin_app_1_context.prompt.md +43 -0
  175. api_logic_server_cli/prototypes/manager/samples/basic_demo/docs/training/admin_app_2_functionality.prompt.md +69 -0
  176. api_logic_server_cli/prototypes/manager/samples/basic_demo/docs/training/admin_app_3_architecture.prompt.md +29 -0
  177. api_logic_server_cli/prototypes/manager/samples/basic_demo/docs/training/logic_bank_api.prompt +342 -0
  178. api_logic_server_cli/prototypes/manager/samples/basic_demo/docs/training/logic_example.py +41 -0
  179. api_logic_server_cli/prototypes/manager/samples/basic_demo/docs/training/react_map.prompt.md +13 -0
  180. api_logic_server_cli/prototypes/manager/samples/basic_demo/docs/training/react_tree.prompt.md +10 -0
  181. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/kafka/kafka_consumer.py +60 -0
  182. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/kafka/kafka_producer.py +127 -0
  183. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/kafka/kafka_readme.md +3 -0
  184. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/mcp/examples/mcp_context_results.txt +142 -0
  185. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/mcp/examples/mcp_discovery_response.json +150 -0
  186. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/mcp/examples/mcp_request.prompt +46 -0
  187. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/mcp/examples/mcp_schema.txt +47 -0
  188. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/mcp/examples/mcp_tool_context_response.json +34 -0
  189. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/mcp/examples/mcp_tool_context_response_get.json +18 -0
  190. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/mcp/mcp_client_executor.py +545 -0
  191. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/mcp/mcp_server_discovery.json +9 -0
  192. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/mcp/readme-mcp.md +9 -0
  193. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/n8n/N8N_WebHook_from_ApiLogicServer.json +394 -0
  194. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/n8n/n8n_producer.py +172 -0
  195. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/n8n/n8n_readme.md +67 -0
  196. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/row_dict_maps/OrderB2BMapper.py +54 -0
  197. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/row_dict_maps/row_dict_maps_readme.md +3 -0
  198. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/system/FlaskKafka.py +105 -0
  199. api_logic_server_cli/prototypes/manager/samples/basic_demo/integration/system/RowDictMapper.py +416 -0
  200. api_logic_server_cli/prototypes/manager/samples/basic_demo/iteration/api/api_discovery/order_b2b.py +92 -0
  201. api_logic_server_cli/prototypes/manager/samples/basic_demo/iteration/database/db.sqlite +0 -0
  202. api_logic_server_cli/prototypes/manager/samples/basic_demo/iteration/docs/er_diagram.png +0 -0
  203. api_logic_server_cli/prototypes/manager/samples/basic_demo/iteration/integration/row_dict_maps/OrderB2B.py +36 -0
  204. api_logic_server_cli/prototypes/manager/samples/basic_demo/iteration/integration/row_dict_maps/OrderShipping.py +30 -0
  205. api_logic_server_cli/prototypes/manager/samples/basic_demo/iteration/logic/declare_logic.py +147 -0
  206. api_logic_server_cli/prototypes/manager/samples/basic_demo/iteration/ui/admin/admin.yaml +175 -0
  207. api_logic_server_cli/prototypes/manager/samples/basic_demo/logic/declarative-vs-procedural-comparison.html +110 -0
  208. api_logic_server_cli/prototypes/manager/samples/basic_demo/logic/declare_logic.py +81 -0
  209. api_logic_server_cli/prototypes/manager/samples/basic_demo/logic/load_verify_rules.py +217 -0
  210. api_logic_server_cli/prototypes/manager/samples/basic_demo/logic/logic_discovery/app_integration.py +23 -0
  211. api_logic_server_cli/prototypes/manager/samples/basic_demo/logic/logic_discovery/auto_discovery.py +52 -0
  212. api_logic_server_cli/prototypes/manager/samples/basic_demo/logic/logic_discovery/check_credit.py +44 -0
  213. api_logic_server_cli/prototypes/manager/samples/basic_demo/logic/logic_discovery/mcp_client_executor_request.py +50 -0
  214. api_logic_server_cli/prototypes/manager/samples/basic_demo/logic/logic_discovery/readme_logic_discovery.md +9 -0
  215. api_logic_server_cli/prototypes/manager/samples/basic_demo/logic/logic_discovery/use_case.py +31 -0
  216. api_logic_server_cli/prototypes/manager/samples/basic_demo/logic/procedural/credit_service.py +204 -0
  217. api_logic_server_cli/prototypes/manager/samples/basic_demo/logic/procedural/declarative-vs-procedural-comparison.md +295 -0
  218. api_logic_server_cli/prototypes/manager/samples/basic_demo/logic/procedural/declarative-vs-procedural-comparison.png +0 -0
  219. api_logic_server_cli/prototypes/manager/samples/basic_demo/logic/readme_logic.md +249 -0
  220. api_logic_server_cli/prototypes/manager/samples/basic_demo/readme.md +495 -0
  221. api_logic_server_cli/prototypes/manager/samples/basic_demo/readme_project.md +43 -0
  222. api_logic_server_cli/prototypes/manager/samples/basic_demo/readme_standard.md +492 -0
  223. api_logic_server_cli/prototypes/manager/samples/basic_demo/readme_vibe.md +353 -0
  224. api_logic_server_cli/prototypes/manager/samples/basic_demo/requirements.txt +3 -0
  225. api_logic_server_cli/prototypes/manager/samples/basic_demo/run.ps1 +30 -0
  226. api_logic_server_cli/prototypes/manager/samples/basic_demo/run.sh +55 -0
  227. api_logic_server_cli/prototypes/manager/samples/basic_demo/security/__init__.py +0 -0
  228. api_logic_server_cli/prototypes/manager/samples/basic_demo/security/authentication_provider/__init__.py +0 -0
  229. api_logic_server_cli/prototypes/manager/samples/basic_demo/security/authentication_provider/abstract_authentication_provider.py +34 -0
  230. api_logic_server_cli/prototypes/manager/samples/basic_demo/security/authentication_provider/keycloak/auth_provider.py +238 -0
  231. api_logic_server_cli/prototypes/manager/samples/basic_demo/security/authentication_provider/memory/auth_provider.py +161 -0
  232. api_logic_server_cli/prototypes/manager/samples/basic_demo/security/authentication_provider/memory/auth_provider_no_swagger.py +98 -0
  233. api_logic_server_cli/prototypes/manager/samples/basic_demo/security/authentication_provider/sql/auth_provider.py +127 -0
  234. api_logic_server_cli/prototypes/manager/samples/basic_demo/security/declare_security.py +49 -0
  235. api_logic_server_cli/prototypes/manager/samples/basic_demo/security/readme_security.md +16 -0
  236. api_logic_server_cli/prototypes/manager/samples/basic_demo/security/system/authentication.py +129 -0
  237. api_logic_server_cli/prototypes/manager/samples/basic_demo/security/system/authorization.py +473 -0
  238. api_logic_server_cli/prototypes/manager/samples/basic_demo/security/system/custom_swagger.json +62 -0
  239. api_logic_server_cli/prototypes/manager/samples/basic_demo/test/__init__.py +0 -0
  240. api_logic_server_cli/prototypes/manager/samples/basic_demo/test/api_logic_server_behave/__init__.py +0 -0
  241. api_logic_server_cli/prototypes/manager/samples/basic_demo/test/api_logic_server_behave/behave_logic_report.py +256 -0
  242. api_logic_server_cli/prototypes/manager/samples/basic_demo/test/api_logic_server_behave/behave_run.py +64 -0
  243. api_logic_server_cli/prototypes/manager/samples/basic_demo/test/api_logic_server_behave/features/about.feature +12 -0
  244. api_logic_server_cli/prototypes/manager/samples/basic_demo/test/api_logic_server_behave/features/steps/about.py +20 -0
  245. api_logic_server_cli/prototypes/manager/samples/basic_demo/test/api_logic_server_behave/features/steps/test_utils.py +133 -0
  246. api_logic_server_cli/prototypes/manager/samples/basic_demo/test/api_logic_server_behave/logs/behave.log +0 -0
  247. api_logic_server_cli/prototypes/manager/samples/basic_demo/test/api_logic_server_behave/reports/Behave Logic Report Intro micro.md +4 -0
  248. api_logic_server_cli/prototypes/manager/samples/basic_demo/test/api_logic_server_behave/reports/Behave Logic Report Intro.md +75 -0
  249. api_logic_server_cli/prototypes/manager/samples/basic_demo/test/api_logic_server_behave/reports/Behave Logic Report Sample.md +1180 -0
  250. api_logic_server_cli/prototypes/manager/samples/basic_demo/test/basic/server_test.py +33 -0
  251. api_logic_server_cli/prototypes/manager/samples/basic_demo/test/readme_test.md +395 -0
  252. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/__init__.py +0 -0
  253. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/admin/admin.yaml +173 -0
  254. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/admin/admin_loader.py +217 -0
  255. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/admin/authentication_admin.yaml +99 -0
  256. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/admin/home.js +48 -0
  257. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/admin/mcp_admin.yaml +53 -0
  258. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/.browserslistrc +12 -0
  259. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/.dockerignore +47 -0
  260. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/.editorconfig +16 -0
  261. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/.eslintrc.json +51 -0
  262. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/.gitignore +47 -0
  263. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/README.md +42 -0
  264. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/angular.json +206 -0
  265. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/app_model.yaml +303 -0
  266. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/docker-compose-ontimize.yml +54 -0
  267. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/e2e/protractor.conf.js +32 -0
  268. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/e2e/src/app.e2e-spec.ts +23 -0
  269. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/e2e/src/app.po.ts +11 -0
  270. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/e2e/tsconfig.json +13 -0
  271. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/karma.conf.js +32 -0
  272. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/nginx/nginx.conf +29 -0
  273. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/ngsw-config.json +29 -0
  274. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/package-lock.json +22651 -0
  275. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/package.json +69 -0
  276. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/app-routing.module.ts +25 -0
  277. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/app.component.html +1 -0
  278. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/app.component.scss +1 -0
  279. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/app.component.spec.ts +35 -0
  280. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/app.component.ts +9 -0
  281. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/app.config.ts +43 -0
  282. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/app.module.ts +37 -0
  283. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/login/login-routing.module.ts +12 -0
  284. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/login/login.component.html +58 -0
  285. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/login/login.component.scss +155 -0
  286. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/login/login.component.ts +81 -0
  287. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/login/login.module.ts +18 -0
  288. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/login/login.theme.scss +51 -0
  289. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Customer/Customer-routing.module.ts +37 -0
  290. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Customer/Customer.module.ts +19 -0
  291. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Customer/detail/Customer-detail.component.html +90 -0
  292. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Customer/detail/Customer-detail.component.scss +0 -0
  293. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Customer/detail/Customer-detail.component.ts +32 -0
  294. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Customer/home/Customer-home.component.html +44 -0
  295. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Customer/home/Customer-home.component.scss +0 -0
  296. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Customer/home/Customer-home.component.ts +23 -0
  297. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Customer/new/Customer-new.component.html +26 -0
  298. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Customer/new/Customer-new.component.scss +0 -0
  299. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Customer/new/Customer-new.component.ts +18 -0
  300. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Item/Item-routing.module.ts +30 -0
  301. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Item/Item.module.ts +19 -0
  302. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Item/detail/Item-detail.component.html +72 -0
  303. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Item/detail/Item-detail.component.scss +0 -0
  304. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Item/detail/Item-detail.component.ts +32 -0
  305. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Item/home/Item-home.component.html +55 -0
  306. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Item/home/Item-home.component.scss +0 -0
  307. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Item/home/Item-home.component.ts +23 -0
  308. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Item/new/Item-new.component.html +60 -0
  309. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Item/new/Item-new.component.scss +0 -0
  310. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Item/new/Item-new.component.ts +18 -0
  311. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Order/Order-routing.module.ts +37 -0
  312. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Order/Order.module.ts +19 -0
  313. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Order/detail/Order-detail.component.html +114 -0
  314. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Order/detail/Order-detail.component.scss +0 -0
  315. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Order/detail/Order-detail.component.ts +32 -0
  316. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Order/home/Order-home.component.html +48 -0
  317. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Order/home/Order-home.component.scss +0 -0
  318. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Order/home/Order-home.component.ts +23 -0
  319. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Order/new/Order-new.component.html +43 -0
  320. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Order/new/Order-new.component.scss +0 -0
  321. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Order/new/Order-new.component.ts +18 -0
  322. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Product/Product-routing.module.ts +37 -0
  323. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Product/Product.module.ts +19 -0
  324. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Product/detail/Product-detail.component.html +91 -0
  325. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Product/detail/Product-detail.component.scss +0 -0
  326. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Product/detail/Product-detail.component.ts +32 -0
  327. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Product/home/Product-home.component.html +35 -0
  328. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Product/home/Product-home.component.scss +0 -0
  329. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Product/home/Product-home.component.ts +23 -0
  330. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Product/new/Product-new.component.html +20 -0
  331. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Product/new/Product-new.component.scss +0 -0
  332. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/Product/new/Product-new.component.ts +18 -0
  333. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/about/about-routing.module.ts +13 -0
  334. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/about/about.component.html +39 -0
  335. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/about/about.component.scss +35 -0
  336. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/about/about.component.ts +17 -0
  337. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/about/about.module.ts +18 -0
  338. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/about/about.theme.scss +14 -0
  339. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/home/home-routing.module.ts +17 -0
  340. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/home/home.component.html +1 -0
  341. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/home/home.component.scss +3 -0
  342. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/home/home.component.ts +21 -0
  343. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/home/home.module.ts +18 -0
  344. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/main-routing.module.ts +32 -0
  345. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/main-theme.scss +56 -0
  346. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/main.component.html +8 -0
  347. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/main.component.scss +1 -0
  348. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/main.component.ts +20 -0
  349. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/main.module.ts +22 -0
  350. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/settings/settings-routing.module.ts +14 -0
  351. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/settings/settings.component.html +14 -0
  352. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/settings/settings.component.scss +44 -0
  353. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/settings/settings.component.ts +46 -0
  354. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/main/settings/settings.module.ts +18 -0
  355. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/shared/Customer-card/Customer-card.component.html +1 -0
  356. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/shared/Customer-card/Customer-card.component.scss +0 -0
  357. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/shared/Customer-card/Customer-card.component.ts +16 -0
  358. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/shared/Item-card/Item-card.component.html +1 -0
  359. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/shared/Item-card/Item-card.component.scss +0 -0
  360. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/shared/Item-card/Item-card.component.ts +16 -0
  361. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/shared/Order-card/Order-card.component.html +1 -0
  362. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/shared/Order-card/Order-card.component.scss +0 -0
  363. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/shared/Order-card/Order-card.component.ts +16 -0
  364. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/shared/Product-card/Product-card.component.html +1 -0
  365. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/shared/Product-card/Product-card.component.scss +0 -0
  366. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/shared/Product-card/Product-card.component.ts +16 -0
  367. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/shared/app.menu.config.ts +45 -0
  368. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/shared/app.services.config.ts +5 -0
  369. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/shared/constant.ts +4 -0
  370. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/app/shared/shared.module.ts +15 -0
  371. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/.gitkeep +0 -0
  372. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/css/app.scss +20 -0
  373. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/css/loader.css +173 -0
  374. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/i18n/en.json +44 -0
  375. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/i18n/es.json +42 -0
  376. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/icons/ontimize128.png +0 -0
  377. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/icons/ontimize16.png +0 -0
  378. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/icons/ontimize256.png +0 -0
  379. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/icons/ontimize32.png +0 -0
  380. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/icons/ontimize48.png +0 -0
  381. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/icons/ontimize64.png +0 -0
  382. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/icons/ontimize72.png +0 -0
  383. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/icons/ontimize96.png +0 -0
  384. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/images/github.png +0 -0
  385. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/images/login_bg.png +0 -0
  386. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/images/no-image-transparent.png +0 -0
  387. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/images/no-image.png +0 -0
  388. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/images/ontimize.png +0 -0
  389. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/images/ontimize_web_log.png +0 -0
  390. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/images/sidenav-closed.png +0 -0
  391. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/images/sidenav-closed.svg +1 -0
  392. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/images/sidenav-opened.png +0 -0
  393. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/images/sidenav-opened.svg +1 -0
  394. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/images/user_profile.png +0 -0
  395. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/js/domchange.js +110 -0
  396. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/assets/js/keyboard.js +24 -0
  397. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/environments/environment.prod.ts +11 -0
  398. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/environments/environment.ts +15 -0
  399. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/favicon.ico +0 -0
  400. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/index.html +30 -0
  401. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/main.ts +15 -0
  402. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/manifest.webmanifest +59 -0
  403. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/polyfills.ts +66 -0
  404. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/styles.scss +1 -0
  405. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/src/test.ts +16 -0
  406. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/tsconfig.app.json +18 -0
  407. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/tsconfig.json +25 -0
  408. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/app/tsconfig.spec.json +18 -0
  409. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/images/Employee/andrew.jpg +0 -0
  410. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/images/Employee/anne.jpg +0 -0
  411. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/images/Employee/janet.jpg +0 -0
  412. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/images/Employee/laura.jpg +0 -0
  413. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/images/Employee/margaret.jpg +0 -0
  414. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/images/Employee/michael.jpg +0 -0
  415. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/images/Employee/nancy.jpg +0 -0
  416. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/images/Employee/robert.jpg +0 -0
  417. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/images/Employee/steven.jpg +0 -0
  418. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/images/Product/beverages.gif +0 -0
  419. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/images/Product/cereals.gif +0 -0
  420. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/images/Product/condiments.gif +0 -0
  421. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/images/Product/confections.gif +0 -0
  422. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/images/Product/diary.gif +0 -0
  423. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/images/Product/meat.gif +0 -0
  424. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/images/Product/produce.gif +0 -0
  425. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/images/Product/seafood.gif +0 -0
  426. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/README.md +16 -0
  427. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/README_create_react_app.md +70 -0
  428. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/package-lock.json +18469 -0
  429. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/package.json +47 -0
  430. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/public/favicon.ico +0 -0
  431. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/public/index.html +43 -0
  432. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/public/logo192.png +0 -0
  433. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/public/logo512.png +0 -0
  434. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/public/manifest.json +25 -0
  435. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/public/robots.txt +3 -0
  436. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/App.css +38 -0
  437. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/App.js +80 -0
  438. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/App.test.js +8 -0
  439. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/Config.js +527 -0
  440. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/Customer.js +218 -0
  441. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/Item.js +190 -0
  442. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/Order.js +189 -0
  443. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/Product.js +159 -0
  444. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/app_loader.js +24 -0
  445. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/index.css +13 -0
  446. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/index.js +17 -0
  447. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/logo.svg +1 -0
  448. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/rav4-jsonapi-client/.eslintrc +5 -0
  449. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/rav4-jsonapi-client/.yarnrc.yml +4 -0
  450. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/rav4-jsonapi-client/default-settings.js +25 -0
  451. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/rav4-jsonapi-client/default-settings.ts +25 -0
  452. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/rav4-jsonapi-client/errors.js +116 -0
  453. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/rav4-jsonapi-client/errors.ts +116 -0
  454. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/rav4-jsonapi-client/index.test.tsx +7 -0
  455. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/rav4-jsonapi-client/index.tsx +11 -0
  456. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/rav4-jsonapi-client/ra-jsonapi-client.js +577 -0
  457. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/rav4-jsonapi-client/ra-jsonapi-client.ts +577 -0
  458. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/rav4-jsonapi-client/resourceLookup.js +124 -0
  459. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/rav4-jsonapi-client/resourceLookup.ts +124 -0
  460. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/rav4-jsonapi-client/styles.module.css +9 -0
  461. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/reportWebVitals.js +13 -0
  462. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app/src/setupTests.js +5 -0
  463. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/README.md +20 -0
  464. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/README_create_react_app.md +72 -0
  465. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/package-lock.json +18469 -0
  466. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/package.json +47 -0
  467. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/product-cards.png +0 -0
  468. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/public/favicon.ico +0 -0
  469. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/public/index.html +43 -0
  470. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/public/logo192.png +0 -0
  471. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/public/logo512.png +0 -0
  472. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/public/manifest.json +25 -0
  473. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/public/robots.txt +3 -0
  474. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/App.css +38 -0
  475. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/App.js +80 -0
  476. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/App.test.js +8 -0
  477. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/Config.js +527 -0
  478. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/Customer.js +218 -0
  479. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/Item.js +190 -0
  480. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/Order.js +189 -0
  481. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/Product.js +241 -0
  482. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/app_loader.js +24 -0
  483. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/index.css +13 -0
  484. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/index.js +17 -0
  485. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/logo.svg +1 -0
  486. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/rav4-jsonapi-client/.eslintrc +5 -0
  487. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/rav4-jsonapi-client/.yarnrc.yml +4 -0
  488. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/rav4-jsonapi-client/default-settings.js +25 -0
  489. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/rav4-jsonapi-client/default-settings.ts +25 -0
  490. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/rav4-jsonapi-client/errors.js +116 -0
  491. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/rav4-jsonapi-client/errors.ts +116 -0
  492. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/rav4-jsonapi-client/index.test.tsx +7 -0
  493. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/rav4-jsonapi-client/index.tsx +11 -0
  494. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/rav4-jsonapi-client/ra-jsonapi-client.js +577 -0
  495. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/rav4-jsonapi-client/ra-jsonapi-client.ts +577 -0
  496. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/rav4-jsonapi-client/resourceLookup.js +124 -0
  497. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/rav4-jsonapi-client/resourceLookup.ts +124 -0
  498. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/rav4-jsonapi-client/styles.module.css +9 -0
  499. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/reportWebVitals.js +13 -0
  500. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/my-react-app-cards/src/setupTests.js +5 -0
  501. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/templates/bar_chart.jinja +64 -0
  502. api_logic_server_cli/prototypes/manager/samples/basic_demo/ui/templates/content.html +3 -0
  503. api_logic_server_cli/prototypes/manager/samples/basic_demo/venv_setup/py.py +121 -0
  504. api_logic_server_cli/prototypes/manager/samples/basic_demo/venv_setup/readme_venv.md +20 -0
  505. api_logic_server_cli/prototypes/manager/samples/basic_demo/venv_setup/requirements-no-cli.txt +33 -0
  506. api_logic_server_cli/prototypes/manager/samples/basic_demo/venv_setup/venv-linux.sh +28 -0
  507. api_logic_server_cli/prototypes/manager/samples/basic_demo/venv_setup/venv.ps1 +21 -0
  508. api_logic_server_cli/prototypes/manager/samples/basic_demo/venv_setup/venv.sh +28 -0
  509. api_logic_server_cli/prototypes/manager/samples/dbs/readme_dbs.md +4 -4
  510. api_logic_server_cli/prototypes/manager/samples/readme_samples.md +13 -6
  511. api_logic_server_cli/prototypes/manager/system/Manager_workspace.code-workspace +3 -2
  512. {apilogicserver-15.0.65.dist-info → apilogicserver-15.1.0.dist-info}/METADATA +1 -1
  513. {apilogicserver-15.0.65.dist-info → apilogicserver-15.1.0.dist-info}/RECORD +517 -17
  514. api_logic_server_cli/prototypes/manager/.vscode/.copilot-instructions.md +0 -58
  515. api_logic_server_cli/prototypes/manager/.vscode/ApiLogicServer.code-workspace +0 -15
  516. {apilogicserver-15.0.65.dist-info → apilogicserver-15.1.0.dist-info}/WHEEL +0 -0
  517. {apilogicserver-15.0.65.dist-info → apilogicserver-15.1.0.dist-info}/entry_points.txt +0 -0
  518. {apilogicserver-15.0.65.dist-info → apilogicserver-15.1.0.dist-info}/licenses/LICENSE +0 -0
  519. {apilogicserver-15.0.65.dist-info → apilogicserver-15.1.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1953 @@
1
+ {
2
+ "id" : "106332c9-fc0d-4f04-8dee-7dcf482c567e",
3
+ "realm" : "master",
4
+ "displayName" : "Keycloak",
5
+ "displayNameHtml" : "<div class=\"kc-logo-text\"><span>Keycloak</span></div>",
6
+ "notBefore" : 0,
7
+ "defaultSignatureAlgorithm" : "RS256",
8
+ "revokeRefreshToken" : false,
9
+ "refreshTokenMaxReuse" : 0,
10
+ "accessTokenLifespan" : 60,
11
+ "accessTokenLifespanForImplicitFlow" : 900,
12
+ "ssoSessionIdleTimeout" : 1800,
13
+ "ssoSessionMaxLifespan" : 36000,
14
+ "ssoSessionIdleTimeoutRememberMe" : 0,
15
+ "ssoSessionMaxLifespanRememberMe" : 0,
16
+ "offlineSessionIdleTimeout" : 2592000,
17
+ "offlineSessionMaxLifespanEnabled" : false,
18
+ "offlineSessionMaxLifespan" : 5184000,
19
+ "clientSessionIdleTimeout" : 0,
20
+ "clientSessionMaxLifespan" : 0,
21
+ "clientOfflineSessionIdleTimeout" : 0,
22
+ "clientOfflineSessionMaxLifespan" : 0,
23
+ "accessCodeLifespan" : 60,
24
+ "accessCodeLifespanUserAction" : 300,
25
+ "accessCodeLifespanLogin" : 1800,
26
+ "actionTokenGeneratedByAdminLifespan" : 43200,
27
+ "actionTokenGeneratedByUserLifespan" : 300,
28
+ "oauth2DeviceCodeLifespan" : 600,
29
+ "oauth2DevicePollingInterval" : 5,
30
+ "enabled" : true,
31
+ "sslRequired" : "external",
32
+ "registrationAllowed" : false,
33
+ "registrationEmailAsUsername" : false,
34
+ "rememberMe" : false,
35
+ "verifyEmail" : false,
36
+ "loginWithEmailAllowed" : true,
37
+ "duplicateEmailsAllowed" : false,
38
+ "resetPasswordAllowed" : false,
39
+ "editUsernameAllowed" : false,
40
+ "bruteForceProtected" : false,
41
+ "permanentLockout" : false,
42
+ "maxFailureWaitSeconds" : 900,
43
+ "minimumQuickLoginWaitSeconds" : 60,
44
+ "waitIncrementSeconds" : 60,
45
+ "quickLoginCheckMilliSeconds" : 1000,
46
+ "maxDeltaTimeSeconds" : 43200,
47
+ "failureFactor" : 30,
48
+ "roles" : {
49
+ "realm" : [ {
50
+ "id" : "2ccf734a-4bad-42ff-8f60-03d75e12b848",
51
+ "name" : "admin",
52
+ "description" : "${role_admin}",
53
+ "composite" : true,
54
+ "composites" : {
55
+ "realm" : [ "create-realm" ],
56
+ "client" : {
57
+ "kcals-realm" : [ "manage-identity-providers", "view-identity-providers", "create-client", "view-realm", "manage-realm", "manage-users", "query-users", "impersonation", "query-realms", "manage-clients", "view-authorization", "view-events", "manage-authorization", "view-clients", "view-users", "query-clients", "manage-events", "query-groups" ],
58
+ "master-realm" : [ "create-client", "view-identity-providers", "manage-events", "query-groups", "manage-users", "view-clients", "view-realm", "query-clients", "query-realms", "manage-clients", "view-authorization", "manage-realm", "manage-authorization", "impersonation", "view-events", "query-users", "view-users", "manage-identity-providers" ]
59
+ }
60
+ },
61
+ "clientRole" : false,
62
+ "containerId" : "106332c9-fc0d-4f04-8dee-7dcf482c567e",
63
+ "attributes" : { }
64
+ }, {
65
+ "id" : "c15f3b5a-03db-4c3f-9a2c-b41c8ee8778b",
66
+ "name" : "create-realm",
67
+ "description" : "${role_create-realm}",
68
+ "composite" : false,
69
+ "clientRole" : false,
70
+ "containerId" : "106332c9-fc0d-4f04-8dee-7dcf482c567e",
71
+ "attributes" : { }
72
+ }, {
73
+ "id" : "429352af-6d3b-43bb-b63f-e8f02a83c72b",
74
+ "name" : "offline_access",
75
+ "description" : "${role_offline-access}",
76
+ "composite" : false,
77
+ "clientRole" : false,
78
+ "containerId" : "106332c9-fc0d-4f04-8dee-7dcf482c567e",
79
+ "attributes" : { }
80
+ }, {
81
+ "id" : "1b9965c3-0d3c-44fb-bc1f-5990ef56d0b2",
82
+ "name" : "uma_authorization",
83
+ "description" : "${role_uma_authorization}",
84
+ "composite" : false,
85
+ "clientRole" : false,
86
+ "containerId" : "106332c9-fc0d-4f04-8dee-7dcf482c567e",
87
+ "attributes" : { }
88
+ }, {
89
+ "id" : "257ead55-63bc-4b03-b659-c544c4716edb",
90
+ "name" : "default-roles-master",
91
+ "description" : "${role_default-roles}",
92
+ "composite" : true,
93
+ "composites" : {
94
+ "realm" : [ "offline_access", "uma_authorization" ],
95
+ "client" : {
96
+ "account" : [ "manage-account", "view-profile" ]
97
+ }
98
+ },
99
+ "clientRole" : false,
100
+ "containerId" : "106332c9-fc0d-4f04-8dee-7dcf482c567e",
101
+ "attributes" : { }
102
+ } ],
103
+ "client" : {
104
+ "kcals-realm" : [ {
105
+ "id" : "3f5f430d-6221-4096-bc17-f1f4ad66feb0",
106
+ "name" : "manage-identity-providers",
107
+ "description" : "${role_manage-identity-providers}",
108
+ "composite" : false,
109
+ "clientRole" : true,
110
+ "containerId" : "be1d05c9-5029-492e-a8bf-83b94412e611",
111
+ "attributes" : { }
112
+ }, {
113
+ "id" : "c7d35228-e4dc-4ed1-9d1e-f74caa4d70aa",
114
+ "name" : "view-authorization",
115
+ "description" : "${role_view-authorization}",
116
+ "composite" : false,
117
+ "clientRole" : true,
118
+ "containerId" : "be1d05c9-5029-492e-a8bf-83b94412e611",
119
+ "attributes" : { }
120
+ }, {
121
+ "id" : "f1cb92a4-f599-4b16-bb8f-c4540f443fe7",
122
+ "name" : "view-events",
123
+ "description" : "${role_view-events}",
124
+ "composite" : false,
125
+ "clientRole" : true,
126
+ "containerId" : "be1d05c9-5029-492e-a8bf-83b94412e611",
127
+ "attributes" : { }
128
+ }, {
129
+ "id" : "1c40930a-1831-4b57-8ea7-93a89184c328",
130
+ "name" : "manage-authorization",
131
+ "description" : "${role_manage-authorization}",
132
+ "composite" : false,
133
+ "clientRole" : true,
134
+ "containerId" : "be1d05c9-5029-492e-a8bf-83b94412e611",
135
+ "attributes" : { }
136
+ }, {
137
+ "id" : "c8aa6116-c5be-4d54-bebc-3a4591dc98c4",
138
+ "name" : "view-clients",
139
+ "description" : "${role_view-clients}",
140
+ "composite" : true,
141
+ "composites" : {
142
+ "client" : {
143
+ "kcals-realm" : [ "query-clients" ]
144
+ }
145
+ },
146
+ "clientRole" : true,
147
+ "containerId" : "be1d05c9-5029-492e-a8bf-83b94412e611",
148
+ "attributes" : { }
149
+ }, {
150
+ "id" : "c237eed1-964a-400a-bda7-d095cdc27aa5",
151
+ "name" : "view-identity-providers",
152
+ "description" : "${role_view-identity-providers}",
153
+ "composite" : false,
154
+ "clientRole" : true,
155
+ "containerId" : "be1d05c9-5029-492e-a8bf-83b94412e611",
156
+ "attributes" : { }
157
+ }, {
158
+ "id" : "b1d60e3f-3e62-4a3b-a53a-bb71addf592e",
159
+ "name" : "create-client",
160
+ "description" : "${role_create-client}",
161
+ "composite" : false,
162
+ "clientRole" : true,
163
+ "containerId" : "be1d05c9-5029-492e-a8bf-83b94412e611",
164
+ "attributes" : { }
165
+ }, {
166
+ "id" : "97bd898b-b659-4adb-a9a8-5ddb75be5d78",
167
+ "name" : "view-users",
168
+ "description" : "${role_view-users}",
169
+ "composite" : true,
170
+ "composites" : {
171
+ "client" : {
172
+ "kcals-realm" : [ "query-users", "query-groups" ]
173
+ }
174
+ },
175
+ "clientRole" : true,
176
+ "containerId" : "be1d05c9-5029-492e-a8bf-83b94412e611",
177
+ "attributes" : { }
178
+ }, {
179
+ "id" : "96003289-bd98-4fcf-8efd-9db7b5a69fa5",
180
+ "name" : "query-clients",
181
+ "description" : "${role_query-clients}",
182
+ "composite" : false,
183
+ "clientRole" : true,
184
+ "containerId" : "be1d05c9-5029-492e-a8bf-83b94412e611",
185
+ "attributes" : { }
186
+ }, {
187
+ "id" : "9acba3e3-1856-41b9-a536-840c25a6ec15",
188
+ "name" : "manage-realm",
189
+ "description" : "${role_manage-realm}",
190
+ "composite" : false,
191
+ "clientRole" : true,
192
+ "containerId" : "be1d05c9-5029-492e-a8bf-83b94412e611",
193
+ "attributes" : { }
194
+ }, {
195
+ "id" : "02faff1e-d1e3-4701-bd6f-2ee44828e519",
196
+ "name" : "view-realm",
197
+ "description" : "${role_view-realm}",
198
+ "composite" : false,
199
+ "clientRole" : true,
200
+ "containerId" : "be1d05c9-5029-492e-a8bf-83b94412e611",
201
+ "attributes" : { }
202
+ }, {
203
+ "id" : "f5396b41-38a3-434d-8ee6-064fb4c3f29f",
204
+ "name" : "manage-users",
205
+ "description" : "${role_manage-users}",
206
+ "composite" : false,
207
+ "clientRole" : true,
208
+ "containerId" : "be1d05c9-5029-492e-a8bf-83b94412e611",
209
+ "attributes" : { }
210
+ }, {
211
+ "id" : "85b87454-4739-4853-b7f9-23550b28a307",
212
+ "name" : "query-users",
213
+ "description" : "${role_query-users}",
214
+ "composite" : false,
215
+ "clientRole" : true,
216
+ "containerId" : "be1d05c9-5029-492e-a8bf-83b94412e611",
217
+ "attributes" : { }
218
+ }, {
219
+ "id" : "03a69f81-549c-40c4-99a9-6df3231de77c",
220
+ "name" : "impersonation",
221
+ "description" : "${role_impersonation}",
222
+ "composite" : false,
223
+ "clientRole" : true,
224
+ "containerId" : "be1d05c9-5029-492e-a8bf-83b94412e611",
225
+ "attributes" : { }
226
+ }, {
227
+ "id" : "8a5eed82-b24e-49e1-b5a2-9b241d2e5825",
228
+ "name" : "query-realms",
229
+ "description" : "${role_query-realms}",
230
+ "composite" : false,
231
+ "clientRole" : true,
232
+ "containerId" : "be1d05c9-5029-492e-a8bf-83b94412e611",
233
+ "attributes" : { }
234
+ }, {
235
+ "id" : "ab0d9b46-9514-4197-bae6-7dd262592a9e",
236
+ "name" : "manage-events",
237
+ "description" : "${role_manage-events}",
238
+ "composite" : false,
239
+ "clientRole" : true,
240
+ "containerId" : "be1d05c9-5029-492e-a8bf-83b94412e611",
241
+ "attributes" : { }
242
+ }, {
243
+ "id" : "99cd8cea-2f3b-4a84-9752-120fe0f0698b",
244
+ "name" : "manage-clients",
245
+ "description" : "${role_manage-clients}",
246
+ "composite" : false,
247
+ "clientRole" : true,
248
+ "containerId" : "be1d05c9-5029-492e-a8bf-83b94412e611",
249
+ "attributes" : { }
250
+ }, {
251
+ "id" : "79363ba5-d4f8-4667-ae01-fb57c7532c7a",
252
+ "name" : "query-groups",
253
+ "description" : "${role_query-groups}",
254
+ "composite" : false,
255
+ "clientRole" : true,
256
+ "containerId" : "be1d05c9-5029-492e-a8bf-83b94412e611",
257
+ "attributes" : { }
258
+ } ],
259
+ "security-admin-console" : [ ],
260
+ "admin-cli" : [ ],
261
+ "account-console" : [ ],
262
+ "broker" : [ {
263
+ "id" : "4d4dbdb2-b85e-48bd-b76b-4dcc26eff380",
264
+ "name" : "read-token",
265
+ "description" : "${role_read-token}",
266
+ "composite" : false,
267
+ "clientRole" : true,
268
+ "containerId" : "1084ad53-cbad-4c8b-acda-508b08760300",
269
+ "attributes" : { }
270
+ } ],
271
+ "master-realm" : [ {
272
+ "id" : "0eaee293-f24e-41ce-8885-bcd710c0e30f",
273
+ "name" : "create-client",
274
+ "description" : "${role_create-client}",
275
+ "composite" : false,
276
+ "clientRole" : true,
277
+ "containerId" : "c342bf9e-7b46-4473-9f55-ac551621671b",
278
+ "attributes" : { }
279
+ }, {
280
+ "id" : "012902ad-7395-4f4a-8e12-9c882eb1c837",
281
+ "name" : "view-identity-providers",
282
+ "description" : "${role_view-identity-providers}",
283
+ "composite" : false,
284
+ "clientRole" : true,
285
+ "containerId" : "c342bf9e-7b46-4473-9f55-ac551621671b",
286
+ "attributes" : { }
287
+ }, {
288
+ "id" : "389dbe33-fbc8-48c9-8087-210b3b99134f",
289
+ "name" : "manage-events",
290
+ "description" : "${role_manage-events}",
291
+ "composite" : false,
292
+ "clientRole" : true,
293
+ "containerId" : "c342bf9e-7b46-4473-9f55-ac551621671b",
294
+ "attributes" : { }
295
+ }, {
296
+ "id" : "87f76044-fdfc-42a5-894b-aa7f48ca8580",
297
+ "name" : "manage-authorization",
298
+ "description" : "${role_manage-authorization}",
299
+ "composite" : false,
300
+ "clientRole" : true,
301
+ "containerId" : "c342bf9e-7b46-4473-9f55-ac551621671b",
302
+ "attributes" : { }
303
+ }, {
304
+ "id" : "3d52d0e5-da54-4b77-93c8-67b8bec5c5a0",
305
+ "name" : "manage-realm",
306
+ "description" : "${role_manage-realm}",
307
+ "composite" : false,
308
+ "clientRole" : true,
309
+ "containerId" : "c342bf9e-7b46-4473-9f55-ac551621671b",
310
+ "attributes" : { }
311
+ }, {
312
+ "id" : "9370c823-8596-4928-8c1c-b8d4fb0aa013",
313
+ "name" : "impersonation",
314
+ "description" : "${role_impersonation}",
315
+ "composite" : false,
316
+ "clientRole" : true,
317
+ "containerId" : "c342bf9e-7b46-4473-9f55-ac551621671b",
318
+ "attributes" : { }
319
+ }, {
320
+ "id" : "be112a05-0362-48d5-8abc-fea14ce96f3c",
321
+ "name" : "view-events",
322
+ "description" : "${role_view-events}",
323
+ "composite" : false,
324
+ "clientRole" : true,
325
+ "containerId" : "c342bf9e-7b46-4473-9f55-ac551621671b",
326
+ "attributes" : { }
327
+ }, {
328
+ "id" : "153b3f6e-317d-4173-8076-9d09ddc847e3",
329
+ "name" : "query-groups",
330
+ "description" : "${role_query-groups}",
331
+ "composite" : false,
332
+ "clientRole" : true,
333
+ "containerId" : "c342bf9e-7b46-4473-9f55-ac551621671b",
334
+ "attributes" : { }
335
+ }, {
336
+ "id" : "f904f2a9-5651-4941-b4b4-47ffab067017",
337
+ "name" : "manage-users",
338
+ "description" : "${role_manage-users}",
339
+ "composite" : false,
340
+ "clientRole" : true,
341
+ "containerId" : "c342bf9e-7b46-4473-9f55-ac551621671b",
342
+ "attributes" : { }
343
+ }, {
344
+ "id" : "a9e8bb42-cc84-4d7c-b265-63993df7c5c2",
345
+ "name" : "query-users",
346
+ "description" : "${role_query-users}",
347
+ "composite" : false,
348
+ "clientRole" : true,
349
+ "containerId" : "c342bf9e-7b46-4473-9f55-ac551621671b",
350
+ "attributes" : { }
351
+ }, {
352
+ "id" : "c48a9d2e-bb04-4c0b-897a-ce1ffb49fc34",
353
+ "name" : "view-clients",
354
+ "description" : "${role_view-clients}",
355
+ "composite" : true,
356
+ "composites" : {
357
+ "client" : {
358
+ "master-realm" : [ "query-clients" ]
359
+ }
360
+ },
361
+ "clientRole" : true,
362
+ "containerId" : "c342bf9e-7b46-4473-9f55-ac551621671b",
363
+ "attributes" : { }
364
+ }, {
365
+ "id" : "85ed0910-2eee-4bbb-94d5-28b870f95145",
366
+ "name" : "view-realm",
367
+ "description" : "${role_view-realm}",
368
+ "composite" : false,
369
+ "clientRole" : true,
370
+ "containerId" : "c342bf9e-7b46-4473-9f55-ac551621671b",
371
+ "attributes" : { }
372
+ }, {
373
+ "id" : "c45327fa-d57b-49ca-bf28-60505fea9e0c",
374
+ "name" : "view-users",
375
+ "description" : "${role_view-users}",
376
+ "composite" : true,
377
+ "composites" : {
378
+ "client" : {
379
+ "master-realm" : [ "query-groups", "query-users" ]
380
+ }
381
+ },
382
+ "clientRole" : true,
383
+ "containerId" : "c342bf9e-7b46-4473-9f55-ac551621671b",
384
+ "attributes" : { }
385
+ }, {
386
+ "id" : "35fad24e-45bd-43bf-93e2-838b218677f5",
387
+ "name" : "manage-identity-providers",
388
+ "description" : "${role_manage-identity-providers}",
389
+ "composite" : false,
390
+ "clientRole" : true,
391
+ "containerId" : "c342bf9e-7b46-4473-9f55-ac551621671b",
392
+ "attributes" : { }
393
+ }, {
394
+ "id" : "3d9bf52e-19f0-4655-9a91-b918d443fc69",
395
+ "name" : "query-clients",
396
+ "description" : "${role_query-clients}",
397
+ "composite" : false,
398
+ "clientRole" : true,
399
+ "containerId" : "c342bf9e-7b46-4473-9f55-ac551621671b",
400
+ "attributes" : { }
401
+ }, {
402
+ "id" : "8510e1ba-d413-449d-810f-b9c16472ce6e",
403
+ "name" : "query-realms",
404
+ "description" : "${role_query-realms}",
405
+ "composite" : false,
406
+ "clientRole" : true,
407
+ "containerId" : "c342bf9e-7b46-4473-9f55-ac551621671b",
408
+ "attributes" : { }
409
+ }, {
410
+ "id" : "a7db079f-6f24-4415-937b-8d1fcc5e9a98",
411
+ "name" : "manage-clients",
412
+ "description" : "${role_manage-clients}",
413
+ "composite" : false,
414
+ "clientRole" : true,
415
+ "containerId" : "c342bf9e-7b46-4473-9f55-ac551621671b",
416
+ "attributes" : { }
417
+ }, {
418
+ "id" : "43fa1e29-0834-4586-a928-f4ba59edd29c",
419
+ "name" : "view-authorization",
420
+ "description" : "${role_view-authorization}",
421
+ "composite" : false,
422
+ "clientRole" : true,
423
+ "containerId" : "c342bf9e-7b46-4473-9f55-ac551621671b",
424
+ "attributes" : { }
425
+ } ],
426
+ "account" : [ {
427
+ "id" : "079f3040-e936-4373-b837-2fd0f44e7d67",
428
+ "name" : "view-consent",
429
+ "description" : "${role_view-consent}",
430
+ "composite" : false,
431
+ "clientRole" : true,
432
+ "containerId" : "e2a79ae6-4a89-4093-a4dc-fc4505f85585",
433
+ "attributes" : { }
434
+ }, {
435
+ "id" : "70e1a00f-2fcf-4605-956c-f09924a9ecd7",
436
+ "name" : "delete-account",
437
+ "description" : "${role_delete-account}",
438
+ "composite" : false,
439
+ "clientRole" : true,
440
+ "containerId" : "e2a79ae6-4a89-4093-a4dc-fc4505f85585",
441
+ "attributes" : { }
442
+ }, {
443
+ "id" : "d374c42c-6a63-4b65-a84b-c9c4cc35ca96",
444
+ "name" : "manage-account",
445
+ "description" : "${role_manage-account}",
446
+ "composite" : true,
447
+ "composites" : {
448
+ "client" : {
449
+ "account" : [ "manage-account-links" ]
450
+ }
451
+ },
452
+ "clientRole" : true,
453
+ "containerId" : "e2a79ae6-4a89-4093-a4dc-fc4505f85585",
454
+ "attributes" : { }
455
+ }, {
456
+ "id" : "ddd60af3-b68c-45e0-8245-2a15bf016a84",
457
+ "name" : "view-applications",
458
+ "description" : "${role_view-applications}",
459
+ "composite" : false,
460
+ "clientRole" : true,
461
+ "containerId" : "e2a79ae6-4a89-4093-a4dc-fc4505f85585",
462
+ "attributes" : { }
463
+ }, {
464
+ "id" : "93e964e2-209d-4245-a501-be2c195e70e1",
465
+ "name" : "view-profile",
466
+ "description" : "${role_view-profile}",
467
+ "composite" : false,
468
+ "clientRole" : true,
469
+ "containerId" : "e2a79ae6-4a89-4093-a4dc-fc4505f85585",
470
+ "attributes" : { }
471
+ }, {
472
+ "id" : "1af63c04-6441-4bf2-a6b0-c17116714bee",
473
+ "name" : "manage-account-links",
474
+ "description" : "${role_manage-account-links}",
475
+ "composite" : false,
476
+ "clientRole" : true,
477
+ "containerId" : "e2a79ae6-4a89-4093-a4dc-fc4505f85585",
478
+ "attributes" : { }
479
+ }, {
480
+ "id" : "26060348-44b4-4aa6-9856-1059af615acb",
481
+ "name" : "manage-consent",
482
+ "description" : "${role_manage-consent}",
483
+ "composite" : true,
484
+ "composites" : {
485
+ "client" : {
486
+ "account" : [ "view-consent" ]
487
+ }
488
+ },
489
+ "clientRole" : true,
490
+ "containerId" : "e2a79ae6-4a89-4093-a4dc-fc4505f85585",
491
+ "attributes" : { }
492
+ }, {
493
+ "id" : "8105dbe2-b089-4d82-9f33-0f0250d931a4",
494
+ "name" : "view-groups",
495
+ "description" : "${role_view-groups}",
496
+ "composite" : false,
497
+ "clientRole" : true,
498
+ "containerId" : "e2a79ae6-4a89-4093-a4dc-fc4505f85585",
499
+ "attributes" : { }
500
+ } ]
501
+ }
502
+ },
503
+ "groups" : [ ],
504
+ "defaultRole" : {
505
+ "id" : "257ead55-63bc-4b03-b659-c544c4716edb",
506
+ "name" : "default-roles-master",
507
+ "description" : "${role_default-roles}",
508
+ "composite" : true,
509
+ "clientRole" : false,
510
+ "containerId" : "106332c9-fc0d-4f04-8dee-7dcf482c567e"
511
+ },
512
+ "requiredCredentials" : [ "password" ],
513
+ "otpPolicyType" : "totp",
514
+ "otpPolicyAlgorithm" : "HmacSHA1",
515
+ "otpPolicyInitialCounter" : 0,
516
+ "otpPolicyDigits" : 6,
517
+ "otpPolicyLookAheadWindow" : 1,
518
+ "otpPolicyPeriod" : 30,
519
+ "otpPolicyCodeReusable" : false,
520
+ "otpSupportedApplications" : [ "totpAppFreeOTPName", "totpAppGoogleName", "totpAppMicrosoftAuthenticatorName" ],
521
+ "localizationTexts" : { },
522
+ "webAuthnPolicyRpEntityName" : "keycloak",
523
+ "webAuthnPolicySignatureAlgorithms" : [ "ES256" ],
524
+ "webAuthnPolicyRpId" : "",
525
+ "webAuthnPolicyAttestationConveyancePreference" : "not specified",
526
+ "webAuthnPolicyAuthenticatorAttachment" : "not specified",
527
+ "webAuthnPolicyRequireResidentKey" : "not specified",
528
+ "webAuthnPolicyUserVerificationRequirement" : "not specified",
529
+ "webAuthnPolicyCreateTimeout" : 0,
530
+ "webAuthnPolicyAvoidSameAuthenticatorRegister" : false,
531
+ "webAuthnPolicyAcceptableAaguids" : [ ],
532
+ "webAuthnPolicyExtraOrigins" : [ ],
533
+ "webAuthnPolicyPasswordlessRpEntityName" : "keycloak",
534
+ "webAuthnPolicyPasswordlessSignatureAlgorithms" : [ "ES256" ],
535
+ "webAuthnPolicyPasswordlessRpId" : "",
536
+ "webAuthnPolicyPasswordlessAttestationConveyancePreference" : "not specified",
537
+ "webAuthnPolicyPasswordlessAuthenticatorAttachment" : "not specified",
538
+ "webAuthnPolicyPasswordlessRequireResidentKey" : "not specified",
539
+ "webAuthnPolicyPasswordlessUserVerificationRequirement" : "not specified",
540
+ "webAuthnPolicyPasswordlessCreateTimeout" : 0,
541
+ "webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister" : false,
542
+ "webAuthnPolicyPasswordlessAcceptableAaguids" : [ ],
543
+ "webAuthnPolicyPasswordlessExtraOrigins" : [ ],
544
+ "scopeMappings" : [ {
545
+ "clientScope" : "offline_access",
546
+ "roles" : [ "offline_access" ]
547
+ } ],
548
+ "clientScopeMappings" : {
549
+ "account" : [ {
550
+ "client" : "account-console",
551
+ "roles" : [ "manage-account", "view-groups" ]
552
+ } ]
553
+ },
554
+ "clients" : [ {
555
+ "id" : "e2a79ae6-4a89-4093-a4dc-fc4505f85585",
556
+ "clientId" : "account",
557
+ "name" : "${client_account}",
558
+ "rootUrl" : "${authBaseUrl}",
559
+ "baseUrl" : "/realms/master/account/",
560
+ "surrogateAuthRequired" : false,
561
+ "enabled" : true,
562
+ "alwaysDisplayInConsole" : false,
563
+ "clientAuthenticatorType" : "client-secret",
564
+ "redirectUris" : [ "/realms/master/account/*" ],
565
+ "webOrigins" : [ ],
566
+ "notBefore" : 0,
567
+ "bearerOnly" : false,
568
+ "consentRequired" : false,
569
+ "standardFlowEnabled" : true,
570
+ "implicitFlowEnabled" : false,
571
+ "directAccessGrantsEnabled" : false,
572
+ "serviceAccountsEnabled" : false,
573
+ "publicClient" : true,
574
+ "frontchannelLogout" : false,
575
+ "protocol" : "openid-connect",
576
+ "attributes" : {
577
+ "post.logout.redirect.uris" : "+"
578
+ },
579
+ "authenticationFlowBindingOverrides" : { },
580
+ "fullScopeAllowed" : false,
581
+ "nodeReRegistrationTimeout" : 0,
582
+ "defaultClientScopes" : [ "web-origins", "acr", "profile", "roles", "email" ],
583
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
584
+ }, {
585
+ "id" : "2301e523-d418-48af-8f1d-319acc3e9799",
586
+ "clientId" : "account-console",
587
+ "name" : "${client_account-console}",
588
+ "rootUrl" : "${authBaseUrl}",
589
+ "baseUrl" : "/realms/master/account/",
590
+ "surrogateAuthRequired" : false,
591
+ "enabled" : true,
592
+ "alwaysDisplayInConsole" : false,
593
+ "clientAuthenticatorType" : "client-secret",
594
+ "redirectUris" : [ "/realms/master/account/*" ],
595
+ "webOrigins" : [ ],
596
+ "notBefore" : 0,
597
+ "bearerOnly" : false,
598
+ "consentRequired" : false,
599
+ "standardFlowEnabled" : true,
600
+ "implicitFlowEnabled" : false,
601
+ "directAccessGrantsEnabled" : false,
602
+ "serviceAccountsEnabled" : false,
603
+ "publicClient" : true,
604
+ "frontchannelLogout" : false,
605
+ "protocol" : "openid-connect",
606
+ "attributes" : {
607
+ "post.logout.redirect.uris" : "+",
608
+ "pkce.code.challenge.method" : "S256"
609
+ },
610
+ "authenticationFlowBindingOverrides" : { },
611
+ "fullScopeAllowed" : false,
612
+ "nodeReRegistrationTimeout" : 0,
613
+ "protocolMappers" : [ {
614
+ "id" : "3413c892-4a08-4a00-a8a5-ae1f4aeade0a",
615
+ "name" : "audience resolve",
616
+ "protocol" : "openid-connect",
617
+ "protocolMapper" : "oidc-audience-resolve-mapper",
618
+ "consentRequired" : false,
619
+ "config" : { }
620
+ } ],
621
+ "defaultClientScopes" : [ "web-origins", "acr", "profile", "roles", "email" ],
622
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
623
+ }, {
624
+ "id" : "e3dc9606-b42c-4b82-bb15-fa9d20c8bc69",
625
+ "clientId" : "admin-cli",
626
+ "name" : "${client_admin-cli}",
627
+ "surrogateAuthRequired" : false,
628
+ "enabled" : true,
629
+ "alwaysDisplayInConsole" : false,
630
+ "clientAuthenticatorType" : "client-secret",
631
+ "redirectUris" : [ ],
632
+ "webOrigins" : [ ],
633
+ "notBefore" : 0,
634
+ "bearerOnly" : false,
635
+ "consentRequired" : false,
636
+ "standardFlowEnabled" : false,
637
+ "implicitFlowEnabled" : false,
638
+ "directAccessGrantsEnabled" : true,
639
+ "serviceAccountsEnabled" : false,
640
+ "publicClient" : true,
641
+ "frontchannelLogout" : false,
642
+ "protocol" : "openid-connect",
643
+ "attributes" : { },
644
+ "authenticationFlowBindingOverrides" : { },
645
+ "fullScopeAllowed" : false,
646
+ "nodeReRegistrationTimeout" : 0,
647
+ "defaultClientScopes" : [ "web-origins", "acr", "profile", "roles", "email" ],
648
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
649
+ }, {
650
+ "id" : "1084ad53-cbad-4c8b-acda-508b08760300",
651
+ "clientId" : "broker",
652
+ "name" : "${client_broker}",
653
+ "surrogateAuthRequired" : false,
654
+ "enabled" : true,
655
+ "alwaysDisplayInConsole" : false,
656
+ "clientAuthenticatorType" : "client-secret",
657
+ "redirectUris" : [ ],
658
+ "webOrigins" : [ ],
659
+ "notBefore" : 0,
660
+ "bearerOnly" : true,
661
+ "consentRequired" : false,
662
+ "standardFlowEnabled" : true,
663
+ "implicitFlowEnabled" : false,
664
+ "directAccessGrantsEnabled" : false,
665
+ "serviceAccountsEnabled" : false,
666
+ "publicClient" : false,
667
+ "frontchannelLogout" : false,
668
+ "protocol" : "openid-connect",
669
+ "attributes" : { },
670
+ "authenticationFlowBindingOverrides" : { },
671
+ "fullScopeAllowed" : false,
672
+ "nodeReRegistrationTimeout" : 0,
673
+ "defaultClientScopes" : [ "web-origins", "acr", "profile", "roles", "email" ],
674
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
675
+ }, {
676
+ "id" : "be1d05c9-5029-492e-a8bf-83b94412e611",
677
+ "clientId" : "kcals-realm",
678
+ "name" : "kcals Realm",
679
+ "surrogateAuthRequired" : false,
680
+ "enabled" : true,
681
+ "alwaysDisplayInConsole" : false,
682
+ "clientAuthenticatorType" : "client-secret",
683
+ "redirectUris" : [ ],
684
+ "webOrigins" : [ ],
685
+ "notBefore" : 0,
686
+ "bearerOnly" : true,
687
+ "consentRequired" : false,
688
+ "standardFlowEnabled" : true,
689
+ "implicitFlowEnabled" : false,
690
+ "directAccessGrantsEnabled" : false,
691
+ "serviceAccountsEnabled" : false,
692
+ "publicClient" : false,
693
+ "frontchannelLogout" : false,
694
+ "attributes" : { },
695
+ "authenticationFlowBindingOverrides" : { },
696
+ "fullScopeAllowed" : false,
697
+ "nodeReRegistrationTimeout" : 0,
698
+ "defaultClientScopes" : [ ],
699
+ "optionalClientScopes" : [ ]
700
+ }, {
701
+ "id" : "c342bf9e-7b46-4473-9f55-ac551621671b",
702
+ "clientId" : "master-realm",
703
+ "name" : "master Realm",
704
+ "surrogateAuthRequired" : false,
705
+ "enabled" : true,
706
+ "alwaysDisplayInConsole" : false,
707
+ "clientAuthenticatorType" : "client-secret",
708
+ "redirectUris" : [ ],
709
+ "webOrigins" : [ ],
710
+ "notBefore" : 0,
711
+ "bearerOnly" : true,
712
+ "consentRequired" : false,
713
+ "standardFlowEnabled" : true,
714
+ "implicitFlowEnabled" : false,
715
+ "directAccessGrantsEnabled" : false,
716
+ "serviceAccountsEnabled" : false,
717
+ "publicClient" : false,
718
+ "frontchannelLogout" : false,
719
+ "attributes" : { },
720
+ "authenticationFlowBindingOverrides" : { },
721
+ "fullScopeAllowed" : false,
722
+ "nodeReRegistrationTimeout" : 0,
723
+ "defaultClientScopes" : [ "web-origins", "acr", "profile", "roles", "email" ],
724
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
725
+ }, {
726
+ "id" : "2d103706-c280-4d90-a890-2bbb6b420031",
727
+ "clientId" : "security-admin-console",
728
+ "name" : "${client_security-admin-console}",
729
+ "rootUrl" : "${authAdminUrl}",
730
+ "baseUrl" : "/admin/master/console/",
731
+ "surrogateAuthRequired" : false,
732
+ "enabled" : true,
733
+ "alwaysDisplayInConsole" : false,
734
+ "clientAuthenticatorType" : "client-secret",
735
+ "redirectUris" : [ "/admin/master/console/*" ],
736
+ "webOrigins" : [ "+" ],
737
+ "notBefore" : 0,
738
+ "bearerOnly" : false,
739
+ "consentRequired" : false,
740
+ "standardFlowEnabled" : true,
741
+ "implicitFlowEnabled" : false,
742
+ "directAccessGrantsEnabled" : false,
743
+ "serviceAccountsEnabled" : false,
744
+ "publicClient" : true,
745
+ "frontchannelLogout" : false,
746
+ "protocol" : "openid-connect",
747
+ "attributes" : {
748
+ "post.logout.redirect.uris" : "+",
749
+ "pkce.code.challenge.method" : "S256"
750
+ },
751
+ "authenticationFlowBindingOverrides" : { },
752
+ "fullScopeAllowed" : false,
753
+ "nodeReRegistrationTimeout" : 0,
754
+ "protocolMappers" : [ {
755
+ "id" : "0136af8e-c0db-4227-ab62-8c8a10d7b641",
756
+ "name" : "locale",
757
+ "protocol" : "openid-connect",
758
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
759
+ "consentRequired" : false,
760
+ "config" : {
761
+ "introspection.token.claim" : "true",
762
+ "userinfo.token.claim" : "true",
763
+ "user.attribute" : "locale",
764
+ "id.token.claim" : "true",
765
+ "access.token.claim" : "true",
766
+ "claim.name" : "locale",
767
+ "jsonType.label" : "String"
768
+ }
769
+ } ],
770
+ "defaultClientScopes" : [ "web-origins", "acr", "profile", "roles", "email" ],
771
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
772
+ } ],
773
+ "clientScopes" : [ {
774
+ "id" : "8e147697-b001-4956-8d2a-b820c85f14aa",
775
+ "name" : "web-origins",
776
+ "description" : "OpenID Connect scope for add allowed web origins to the access token",
777
+ "protocol" : "openid-connect",
778
+ "attributes" : {
779
+ "include.in.token.scope" : "false",
780
+ "display.on.consent.screen" : "false",
781
+ "consent.screen.text" : ""
782
+ },
783
+ "protocolMappers" : [ {
784
+ "id" : "4af01d12-18a2-4299-a1c0-58bb92ca9b7a",
785
+ "name" : "allowed web origins",
786
+ "protocol" : "openid-connect",
787
+ "protocolMapper" : "oidc-allowed-origins-mapper",
788
+ "consentRequired" : false,
789
+ "config" : {
790
+ "introspection.token.claim" : "true",
791
+ "access.token.claim" : "true"
792
+ }
793
+ } ]
794
+ }, {
795
+ "id" : "9b2cc296-e2aa-46f4-b654-b066eeadf7e9",
796
+ "name" : "offline_access",
797
+ "description" : "OpenID Connect built-in scope: offline_access",
798
+ "protocol" : "openid-connect",
799
+ "attributes" : {
800
+ "consent.screen.text" : "${offlineAccessScopeConsentText}",
801
+ "display.on.consent.screen" : "true"
802
+ }
803
+ }, {
804
+ "id" : "e9634dd0-ed2e-41d9-8da5-568d639e679c",
805
+ "name" : "profile",
806
+ "description" : "OpenID Connect built-in scope: profile",
807
+ "protocol" : "openid-connect",
808
+ "attributes" : {
809
+ "include.in.token.scope" : "true",
810
+ "display.on.consent.screen" : "true",
811
+ "consent.screen.text" : "${profileScopeConsentText}"
812
+ },
813
+ "protocolMappers" : [ {
814
+ "id" : "cfc28a32-1f33-41d3-8554-d1db7b87333c",
815
+ "name" : "nickname",
816
+ "protocol" : "openid-connect",
817
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
818
+ "consentRequired" : false,
819
+ "config" : {
820
+ "introspection.token.claim" : "true",
821
+ "userinfo.token.claim" : "true",
822
+ "user.attribute" : "nickname",
823
+ "id.token.claim" : "true",
824
+ "access.token.claim" : "true",
825
+ "claim.name" : "nickname",
826
+ "jsonType.label" : "String"
827
+ }
828
+ }, {
829
+ "id" : "5942371c-1130-4930-8ad0-40bf49ff7398",
830
+ "name" : "username",
831
+ "protocol" : "openid-connect",
832
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
833
+ "consentRequired" : false,
834
+ "config" : {
835
+ "introspection.token.claim" : "true",
836
+ "userinfo.token.claim" : "true",
837
+ "user.attribute" : "username",
838
+ "id.token.claim" : "true",
839
+ "access.token.claim" : "true",
840
+ "claim.name" : "preferred_username",
841
+ "jsonType.label" : "String"
842
+ }
843
+ }, {
844
+ "id" : "d60c209b-febd-4416-a4f3-dfdfc4b056fd",
845
+ "name" : "picture",
846
+ "protocol" : "openid-connect",
847
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
848
+ "consentRequired" : false,
849
+ "config" : {
850
+ "introspection.token.claim" : "true",
851
+ "userinfo.token.claim" : "true",
852
+ "user.attribute" : "picture",
853
+ "id.token.claim" : "true",
854
+ "access.token.claim" : "true",
855
+ "claim.name" : "picture",
856
+ "jsonType.label" : "String"
857
+ }
858
+ }, {
859
+ "id" : "33cf12ca-2dd8-4502-b17d-dbed670d8f03",
860
+ "name" : "given name",
861
+ "protocol" : "openid-connect",
862
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
863
+ "consentRequired" : false,
864
+ "config" : {
865
+ "introspection.token.claim" : "true",
866
+ "userinfo.token.claim" : "true",
867
+ "user.attribute" : "firstName",
868
+ "id.token.claim" : "true",
869
+ "access.token.claim" : "true",
870
+ "claim.name" : "given_name",
871
+ "jsonType.label" : "String"
872
+ }
873
+ }, {
874
+ "id" : "a99e0dd1-758c-482c-9365-81145ec270d0",
875
+ "name" : "full name",
876
+ "protocol" : "openid-connect",
877
+ "protocolMapper" : "oidc-full-name-mapper",
878
+ "consentRequired" : false,
879
+ "config" : {
880
+ "id.token.claim" : "true",
881
+ "introspection.token.claim" : "true",
882
+ "access.token.claim" : "true",
883
+ "userinfo.token.claim" : "true"
884
+ }
885
+ }, {
886
+ "id" : "52874398-b06e-490e-9ee2-5dd4d548ded3",
887
+ "name" : "zoneinfo",
888
+ "protocol" : "openid-connect",
889
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
890
+ "consentRequired" : false,
891
+ "config" : {
892
+ "introspection.token.claim" : "true",
893
+ "userinfo.token.claim" : "true",
894
+ "user.attribute" : "zoneinfo",
895
+ "id.token.claim" : "true",
896
+ "access.token.claim" : "true",
897
+ "claim.name" : "zoneinfo",
898
+ "jsonType.label" : "String"
899
+ }
900
+ }, {
901
+ "id" : "b25d1cb7-aa4c-4104-b0ac-3110b614d9b4",
902
+ "name" : "profile",
903
+ "protocol" : "openid-connect",
904
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
905
+ "consentRequired" : false,
906
+ "config" : {
907
+ "introspection.token.claim" : "true",
908
+ "userinfo.token.claim" : "true",
909
+ "user.attribute" : "profile",
910
+ "id.token.claim" : "true",
911
+ "access.token.claim" : "true",
912
+ "claim.name" : "profile",
913
+ "jsonType.label" : "String"
914
+ }
915
+ }, {
916
+ "id" : "a2b2e894-066c-48e3-ac88-14d90205d4eb",
917
+ "name" : "updated at",
918
+ "protocol" : "openid-connect",
919
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
920
+ "consentRequired" : false,
921
+ "config" : {
922
+ "introspection.token.claim" : "true",
923
+ "userinfo.token.claim" : "true",
924
+ "user.attribute" : "updatedAt",
925
+ "id.token.claim" : "true",
926
+ "access.token.claim" : "true",
927
+ "claim.name" : "updated_at",
928
+ "jsonType.label" : "long"
929
+ }
930
+ }, {
931
+ "id" : "0264f0e4-b032-4477-9119-17c8c1d44c30",
932
+ "name" : "birthdate",
933
+ "protocol" : "openid-connect",
934
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
935
+ "consentRequired" : false,
936
+ "config" : {
937
+ "introspection.token.claim" : "true",
938
+ "userinfo.token.claim" : "true",
939
+ "user.attribute" : "birthdate",
940
+ "id.token.claim" : "true",
941
+ "access.token.claim" : "true",
942
+ "claim.name" : "birthdate",
943
+ "jsonType.label" : "String"
944
+ }
945
+ }, {
946
+ "id" : "7775e46e-6a45-47e4-a115-0f7aebb34c6e",
947
+ "name" : "website",
948
+ "protocol" : "openid-connect",
949
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
950
+ "consentRequired" : false,
951
+ "config" : {
952
+ "introspection.token.claim" : "true",
953
+ "userinfo.token.claim" : "true",
954
+ "user.attribute" : "website",
955
+ "id.token.claim" : "true",
956
+ "access.token.claim" : "true",
957
+ "claim.name" : "website",
958
+ "jsonType.label" : "String"
959
+ }
960
+ }, {
961
+ "id" : "9d420b15-094e-4ef5-87e4-5ef187641f1c",
962
+ "name" : "gender",
963
+ "protocol" : "openid-connect",
964
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
965
+ "consentRequired" : false,
966
+ "config" : {
967
+ "introspection.token.claim" : "true",
968
+ "userinfo.token.claim" : "true",
969
+ "user.attribute" : "gender",
970
+ "id.token.claim" : "true",
971
+ "access.token.claim" : "true",
972
+ "claim.name" : "gender",
973
+ "jsonType.label" : "String"
974
+ }
975
+ }, {
976
+ "id" : "b2c1812d-1c0a-4aa0-b9c3-8cc107770597",
977
+ "name" : "family name",
978
+ "protocol" : "openid-connect",
979
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
980
+ "consentRequired" : false,
981
+ "config" : {
982
+ "introspection.token.claim" : "true",
983
+ "userinfo.token.claim" : "true",
984
+ "user.attribute" : "lastName",
985
+ "id.token.claim" : "true",
986
+ "access.token.claim" : "true",
987
+ "claim.name" : "family_name",
988
+ "jsonType.label" : "String"
989
+ }
990
+ }, {
991
+ "id" : "b884bd0b-442f-475c-9c80-b25a3acbb1a5",
992
+ "name" : "middle name",
993
+ "protocol" : "openid-connect",
994
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
995
+ "consentRequired" : false,
996
+ "config" : {
997
+ "introspection.token.claim" : "true",
998
+ "userinfo.token.claim" : "true",
999
+ "user.attribute" : "middleName",
1000
+ "id.token.claim" : "true",
1001
+ "access.token.claim" : "true",
1002
+ "claim.name" : "middle_name",
1003
+ "jsonType.label" : "String"
1004
+ }
1005
+ }, {
1006
+ "id" : "5ca6f6a7-0367-4432-80a1-379cb199804f",
1007
+ "name" : "locale",
1008
+ "protocol" : "openid-connect",
1009
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
1010
+ "consentRequired" : false,
1011
+ "config" : {
1012
+ "introspection.token.claim" : "true",
1013
+ "userinfo.token.claim" : "true",
1014
+ "user.attribute" : "locale",
1015
+ "id.token.claim" : "true",
1016
+ "access.token.claim" : "true",
1017
+ "claim.name" : "locale",
1018
+ "jsonType.label" : "String"
1019
+ }
1020
+ } ]
1021
+ }, {
1022
+ "id" : "69ab530c-6980-4e1a-af9a-1d386308b497",
1023
+ "name" : "email",
1024
+ "description" : "OpenID Connect built-in scope: email",
1025
+ "protocol" : "openid-connect",
1026
+ "attributes" : {
1027
+ "include.in.token.scope" : "true",
1028
+ "display.on.consent.screen" : "true",
1029
+ "consent.screen.text" : "${emailScopeConsentText}"
1030
+ },
1031
+ "protocolMappers" : [ {
1032
+ "id" : "1bfac98a-4baa-44c0-9403-0e4f1726e676",
1033
+ "name" : "email verified",
1034
+ "protocol" : "openid-connect",
1035
+ "protocolMapper" : "oidc-usermodel-property-mapper",
1036
+ "consentRequired" : false,
1037
+ "config" : {
1038
+ "introspection.token.claim" : "true",
1039
+ "userinfo.token.claim" : "true",
1040
+ "user.attribute" : "emailVerified",
1041
+ "id.token.claim" : "true",
1042
+ "access.token.claim" : "true",
1043
+ "claim.name" : "email_verified",
1044
+ "jsonType.label" : "boolean"
1045
+ }
1046
+ }, {
1047
+ "id" : "042aec87-0b51-47cf-a817-d588c7721000",
1048
+ "name" : "email",
1049
+ "protocol" : "openid-connect",
1050
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
1051
+ "consentRequired" : false,
1052
+ "config" : {
1053
+ "introspection.token.claim" : "true",
1054
+ "userinfo.token.claim" : "true",
1055
+ "user.attribute" : "email",
1056
+ "id.token.claim" : "true",
1057
+ "access.token.claim" : "true",
1058
+ "claim.name" : "email",
1059
+ "jsonType.label" : "String"
1060
+ }
1061
+ } ]
1062
+ }, {
1063
+ "id" : "ad5969a3-d689-4901-9486-f8c1d93e7870",
1064
+ "name" : "roles",
1065
+ "description" : "OpenID Connect scope for add user roles to the access token",
1066
+ "protocol" : "openid-connect",
1067
+ "attributes" : {
1068
+ "include.in.token.scope" : "false",
1069
+ "display.on.consent.screen" : "true",
1070
+ "consent.screen.text" : "${rolesScopeConsentText}"
1071
+ },
1072
+ "protocolMappers" : [ {
1073
+ "id" : "20be6c64-ef8c-4bf5-a501-edee87882270",
1074
+ "name" : "realm roles",
1075
+ "protocol" : "openid-connect",
1076
+ "protocolMapper" : "oidc-usermodel-realm-role-mapper",
1077
+ "consentRequired" : false,
1078
+ "config" : {
1079
+ "introspection.token.claim" : "true",
1080
+ "multivalued" : "true",
1081
+ "user.attribute" : "foo",
1082
+ "access.token.claim" : "true",
1083
+ "claim.name" : "realm_access.roles",
1084
+ "jsonType.label" : "String"
1085
+ }
1086
+ }, {
1087
+ "id" : "840061c6-ee16-4503-914e-51d6cff4be79",
1088
+ "name" : "audience resolve",
1089
+ "protocol" : "openid-connect",
1090
+ "protocolMapper" : "oidc-audience-resolve-mapper",
1091
+ "consentRequired" : false,
1092
+ "config" : {
1093
+ "introspection.token.claim" : "true",
1094
+ "access.token.claim" : "true"
1095
+ }
1096
+ }, {
1097
+ "id" : "8a0b2e7a-d7cc-43a1-aeae-d778f92825ae",
1098
+ "name" : "client roles",
1099
+ "protocol" : "openid-connect",
1100
+ "protocolMapper" : "oidc-usermodel-client-role-mapper",
1101
+ "consentRequired" : false,
1102
+ "config" : {
1103
+ "introspection.token.claim" : "true",
1104
+ "multivalued" : "true",
1105
+ "user.attribute" : "foo",
1106
+ "access.token.claim" : "true",
1107
+ "claim.name" : "resource_access.${client_id}.roles",
1108
+ "jsonType.label" : "String"
1109
+ }
1110
+ } ]
1111
+ }, {
1112
+ "id" : "cc1720ec-4137-42fa-97c7-c354704ca9fb",
1113
+ "name" : "microprofile-jwt",
1114
+ "description" : "Microprofile - JWT built-in scope",
1115
+ "protocol" : "openid-connect",
1116
+ "attributes" : {
1117
+ "include.in.token.scope" : "true",
1118
+ "display.on.consent.screen" : "false"
1119
+ },
1120
+ "protocolMappers" : [ {
1121
+ "id" : "8cd3c95a-aa8a-4bee-977d-73aaedf6a821",
1122
+ "name" : "upn",
1123
+ "protocol" : "openid-connect",
1124
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
1125
+ "consentRequired" : false,
1126
+ "config" : {
1127
+ "introspection.token.claim" : "true",
1128
+ "userinfo.token.claim" : "true",
1129
+ "user.attribute" : "username",
1130
+ "id.token.claim" : "true",
1131
+ "access.token.claim" : "true",
1132
+ "claim.name" : "upn",
1133
+ "jsonType.label" : "String"
1134
+ }
1135
+ }, {
1136
+ "id" : "2f98f1d2-dd59-4d60-99d3-680a23303eb8",
1137
+ "name" : "groups",
1138
+ "protocol" : "openid-connect",
1139
+ "protocolMapper" : "oidc-usermodel-realm-role-mapper",
1140
+ "consentRequired" : false,
1141
+ "config" : {
1142
+ "introspection.token.claim" : "true",
1143
+ "multivalued" : "true",
1144
+ "user.attribute" : "foo",
1145
+ "id.token.claim" : "true",
1146
+ "access.token.claim" : "true",
1147
+ "claim.name" : "groups",
1148
+ "jsonType.label" : "String"
1149
+ }
1150
+ } ]
1151
+ }, {
1152
+ "id" : "dfc01c3d-87d5-420d-8cc1-d5f6df2d9314",
1153
+ "name" : "role_list",
1154
+ "description" : "SAML role list",
1155
+ "protocol" : "saml",
1156
+ "attributes" : {
1157
+ "consent.screen.text" : "${samlRoleListScopeConsentText}",
1158
+ "display.on.consent.screen" : "true"
1159
+ },
1160
+ "protocolMappers" : [ {
1161
+ "id" : "32f73bf8-a889-4a54-bb2c-d84347e0bf24",
1162
+ "name" : "role list",
1163
+ "protocol" : "saml",
1164
+ "protocolMapper" : "saml-role-list-mapper",
1165
+ "consentRequired" : false,
1166
+ "config" : {
1167
+ "single" : "false",
1168
+ "attribute.nameformat" : "Basic",
1169
+ "attribute.name" : "Role"
1170
+ }
1171
+ } ]
1172
+ }, {
1173
+ "id" : "15461db8-c13a-4642-8576-34946d9d6604",
1174
+ "name" : "acr",
1175
+ "description" : "OpenID Connect scope for add acr (authentication context class reference) to the token",
1176
+ "protocol" : "openid-connect",
1177
+ "attributes" : {
1178
+ "include.in.token.scope" : "false",
1179
+ "display.on.consent.screen" : "false"
1180
+ },
1181
+ "protocolMappers" : [ {
1182
+ "id" : "4b301476-1524-4f83-a474-47d55f8bb08b",
1183
+ "name" : "acr loa level",
1184
+ "protocol" : "openid-connect",
1185
+ "protocolMapper" : "oidc-acr-mapper",
1186
+ "consentRequired" : false,
1187
+ "config" : {
1188
+ "id.token.claim" : "true",
1189
+ "introspection.token.claim" : "true",
1190
+ "access.token.claim" : "true"
1191
+ }
1192
+ } ]
1193
+ }, {
1194
+ "id" : "8b12f30e-336c-465a-ac03-d3959b34cfaf",
1195
+ "name" : "address",
1196
+ "description" : "OpenID Connect built-in scope: address",
1197
+ "protocol" : "openid-connect",
1198
+ "attributes" : {
1199
+ "include.in.token.scope" : "true",
1200
+ "display.on.consent.screen" : "true",
1201
+ "consent.screen.text" : "${addressScopeConsentText}"
1202
+ },
1203
+ "protocolMappers" : [ {
1204
+ "id" : "0746e3fe-3ec5-46c0-9895-d6a00370d647",
1205
+ "name" : "address",
1206
+ "protocol" : "openid-connect",
1207
+ "protocolMapper" : "oidc-address-mapper",
1208
+ "consentRequired" : false,
1209
+ "config" : {
1210
+ "user.attribute.formatted" : "formatted",
1211
+ "user.attribute.country" : "country",
1212
+ "introspection.token.claim" : "true",
1213
+ "user.attribute.postal_code" : "postal_code",
1214
+ "userinfo.token.claim" : "true",
1215
+ "user.attribute.street" : "street",
1216
+ "id.token.claim" : "true",
1217
+ "user.attribute.region" : "region",
1218
+ "access.token.claim" : "true",
1219
+ "user.attribute.locality" : "locality"
1220
+ }
1221
+ } ]
1222
+ }, {
1223
+ "id" : "d1a83cfe-2851-44ba-9ea4-1ff7d8662d90",
1224
+ "name" : "phone",
1225
+ "description" : "OpenID Connect built-in scope: phone",
1226
+ "protocol" : "openid-connect",
1227
+ "attributes" : {
1228
+ "include.in.token.scope" : "true",
1229
+ "display.on.consent.screen" : "true",
1230
+ "consent.screen.text" : "${phoneScopeConsentText}"
1231
+ },
1232
+ "protocolMappers" : [ {
1233
+ "id" : "1a4d42de-aaeb-499d-bbf1-412734ffea05",
1234
+ "name" : "phone number verified",
1235
+ "protocol" : "openid-connect",
1236
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
1237
+ "consentRequired" : false,
1238
+ "config" : {
1239
+ "introspection.token.claim" : "true",
1240
+ "userinfo.token.claim" : "true",
1241
+ "user.attribute" : "phoneNumberVerified",
1242
+ "id.token.claim" : "true",
1243
+ "access.token.claim" : "true",
1244
+ "claim.name" : "phone_number_verified",
1245
+ "jsonType.label" : "boolean"
1246
+ }
1247
+ }, {
1248
+ "id" : "27e5db45-7de1-411b-ab52-84e9d5c4a2e8",
1249
+ "name" : "phone number",
1250
+ "protocol" : "openid-connect",
1251
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
1252
+ "consentRequired" : false,
1253
+ "config" : {
1254
+ "introspection.token.claim" : "true",
1255
+ "userinfo.token.claim" : "true",
1256
+ "user.attribute" : "phoneNumber",
1257
+ "id.token.claim" : "true",
1258
+ "access.token.claim" : "true",
1259
+ "claim.name" : "phone_number",
1260
+ "jsonType.label" : "String"
1261
+ }
1262
+ } ]
1263
+ } ],
1264
+ "defaultDefaultClientScopes" : [ "role_list", "profile", "email", "roles", "web-origins", "acr" ],
1265
+ "defaultOptionalClientScopes" : [ "offline_access", "address", "phone", "microprofile-jwt" ],
1266
+ "browserSecurityHeaders" : {
1267
+ "contentSecurityPolicyReportOnly" : "",
1268
+ "xContentTypeOptions" : "nosniff",
1269
+ "referrerPolicy" : "no-referrer",
1270
+ "xRobotsTag" : "none",
1271
+ "xFrameOptions" : "SAMEORIGIN",
1272
+ "xXSSProtection" : "1; mode=block",
1273
+ "contentSecurityPolicy" : "frame-src 'self'; frame-ancestors 'self'; object-src 'none';",
1274
+ "strictTransportSecurity" : "max-age=31536000; includeSubDomains"
1275
+ },
1276
+ "smtpServer" : { },
1277
+ "eventsEnabled" : false,
1278
+ "eventsListeners" : [ "jboss-logging" ],
1279
+ "enabledEventTypes" : [ ],
1280
+ "adminEventsEnabled" : false,
1281
+ "adminEventsDetailsEnabled" : false,
1282
+ "identityProviders" : [ ],
1283
+ "identityProviderMappers" : [ ],
1284
+ "components" : {
1285
+ "org.keycloak.services.clientregistration.policy.ClientRegistrationPolicy" : [ {
1286
+ "id" : "d7cdf47d-05f7-4d29-9364-dae035349057",
1287
+ "name" : "Allowed Protocol Mapper Types",
1288
+ "providerId" : "allowed-protocol-mappers",
1289
+ "subType" : "anonymous",
1290
+ "subComponents" : { },
1291
+ "config" : {
1292
+ "allowed-protocol-mapper-types" : [ "saml-user-property-mapper", "saml-role-list-mapper", "oidc-sha256-pairwise-sub-mapper", "oidc-full-name-mapper", "oidc-address-mapper", "oidc-usermodel-property-mapper", "saml-user-attribute-mapper", "oidc-usermodel-attribute-mapper" ]
1293
+ }
1294
+ }, {
1295
+ "id" : "a22f95a4-5105-4894-a930-c65f5b11779f",
1296
+ "name" : "Consent Required",
1297
+ "providerId" : "consent-required",
1298
+ "subType" : "anonymous",
1299
+ "subComponents" : { },
1300
+ "config" : { }
1301
+ }, {
1302
+ "id" : "ed0aab25-65a3-4809-8f7e-f989f1cfc33a",
1303
+ "name" : "Allowed Client Scopes",
1304
+ "providerId" : "allowed-client-templates",
1305
+ "subType" : "anonymous",
1306
+ "subComponents" : { },
1307
+ "config" : {
1308
+ "allow-default-scopes" : [ "true" ]
1309
+ }
1310
+ }, {
1311
+ "id" : "a289ada9-edd0-4ea8-8dc3-4fa6154f173c",
1312
+ "name" : "Allowed Client Scopes",
1313
+ "providerId" : "allowed-client-templates",
1314
+ "subType" : "authenticated",
1315
+ "subComponents" : { },
1316
+ "config" : {
1317
+ "allow-default-scopes" : [ "true" ]
1318
+ }
1319
+ }, {
1320
+ "id" : "5ccd8799-efb8-4997-862a-dcec3e5c3890",
1321
+ "name" : "Allowed Protocol Mapper Types",
1322
+ "providerId" : "allowed-protocol-mappers",
1323
+ "subType" : "authenticated",
1324
+ "subComponents" : { },
1325
+ "config" : {
1326
+ "allowed-protocol-mapper-types" : [ "oidc-address-mapper", "oidc-sha256-pairwise-sub-mapper", "saml-user-attribute-mapper", "oidc-usermodel-property-mapper", "oidc-usermodel-attribute-mapper", "oidc-full-name-mapper", "saml-role-list-mapper", "saml-user-property-mapper" ]
1327
+ }
1328
+ }, {
1329
+ "id" : "f745a631-7698-45b2-a29b-dc15a8d96e09",
1330
+ "name" : "Full Scope Disabled",
1331
+ "providerId" : "scope",
1332
+ "subType" : "anonymous",
1333
+ "subComponents" : { },
1334
+ "config" : { }
1335
+ }, {
1336
+ "id" : "aa08f7aa-8f01-4ea5-a0b7-4202439da7f4",
1337
+ "name" : "Max Clients Limit",
1338
+ "providerId" : "max-clients",
1339
+ "subType" : "anonymous",
1340
+ "subComponents" : { },
1341
+ "config" : {
1342
+ "max-clients" : [ "200" ]
1343
+ }
1344
+ }, {
1345
+ "id" : "04130189-39b6-4410-89aa-e4d1b05a3077",
1346
+ "name" : "Trusted Hosts",
1347
+ "providerId" : "trusted-hosts",
1348
+ "subType" : "anonymous",
1349
+ "subComponents" : { },
1350
+ "config" : {
1351
+ "host-sending-registration-request-must-match" : [ "true" ],
1352
+ "client-uris-must-match" : [ "true" ]
1353
+ }
1354
+ } ],
1355
+ "org.keycloak.keys.KeyProvider" : [ {
1356
+ "id" : "6831bac3-6a3e-43b4-9ea1-af94eb0b4a8d",
1357
+ "name" : "rsa-enc-generated",
1358
+ "providerId" : "rsa-enc-generated",
1359
+ "subComponents" : { },
1360
+ "config" : {
1361
+ "privateKey" : [ "MIIEogIBAAKCAQEAixHweWeZBGtrgNrPUEY9AuuFPkNu+3HSCp6cGrlh8opkwZlD1aXcYq1emP2u5O8TbpXvENZde4iuNxYZhEO6QY1lVGVcxTMsXZXHBzgbvIWcviH8aie9UaLMXlPbXhkYwvNOHloMDvD+3r4FJMcvz2s94ctTh3U4fH1PLD8oetuHNpUV3jf1tLchtvpyl5zOy1Ad8heU8BAylVUCD+7VXrQz3F8PJ0b97VvFqDplcD6NbFwZRSkUhjBuC1bvwhgAHFuEZ7J5DOLyIRlBC52Dsh3oINJBMIHKvEFp521xe9YvLKhOIpgugtR3423xt99IN0weiugRQNR1+9zm4trsbQIDAQABAoIBAAkc9uppvBin9mPmUsqtSPRkR8y4TAaXoz6KvWrbO5HSeP7zwsLLwI5J00azbFl4WN24tFwLhBWN3nFh1hsOpMmvZj9lI11meKbgTf9z2+Nwc6tE8bQTdb/qqw7tBVVxpRJUscmM4o3nGSMyW1wZM7xD8t/qkZxxNW9OTIN3LGP9M9m39ZPfKS+/8rSF/pLvY8L0bQcM5ItncqDEsG8LN/jmchsUWxDpg5wUgC0YMcEs+Dd5nr37AZL6doltAdCxCCMCOzRZF9W1TozR5DP/tGlgSy8NkNEHOXHCEi6rNf7tpQ/ZMFxPG+ahgG191HyJpuk5fR8wLqlaPTN4TIP0VnkCgYEAwUJu54fJAVj6fC5+2u6ftY19lkQ1ZfbsGYpAmrfLfxIGUPjqTh/yPQ9JvozfJ62v9fKOYChyzW7SjFqGOHbfBrAxFU42bRFfWRA//dGfjhO0bYtWkfoC1uDrqBK436KIyaynI75MSkIieqbX5H2pPnu9f9aULB46tWTldVAsFbkCgYEAuDfjKWew8bscHBWMPh1/n27M+PCJhdyklxXrdFmnar0ZPlVq8IMKtOFXpt7t9x1xofSerEPixLC+9ePjdDS0PjmUZJVmoswwsJvyc4/V/IJE0zfbE/4qwU7+COGxGPnyAAT4Ml1fooS3T5VR8ZD5nxPwmRxCax3O06rXbxgQZlUCgYBtk6RcZNIkkHXeCWLl8ZzejO4jUGNSgBHYXVpKH2Ijl227ZZc8WsK3uj5e63LwBXwaoL/3Z5fIQUjiScWGqGfGXApIgUM8zjfYwOz3lm64WRXZcsLQHAiWG4uijZMDQh3684kFLDYHeL4h+w24QUO/6NtGa70x0qYJCb9Mp/uHCQKBgB5UZTwd7E4ARmKBUbOwW6C+N1UNFTdK2nZdj4R6dkvmkk9m9NJgYNTi/PFmZrt2x4yon68xBhboGqiVOo+ZVcug40OkLV/ESofpRQOtvMd0EyzLV3B1OkjVXpHLxsKb9DH4n3x7TxGM1DlwFiu1eMOuHsC2nGDSaYkD6bBKv/h5AoGACiw9riVa7AtBP0XmvvD1JY2Lt8tZDzNfQ8jdT0SqijgOLSbA6A7YknwA22a5LGkwYJLgXOLqwIzbbF94SLsoY6795OrJM75T6DelQY8DnIpVUZW5kyM9Ep5x6jsDtVZvNvaQrxhusXEYYFeUFdaGiYxji8QcZuV/FrhAVitmew4=" ],
1362
+ "keyUse" : [ "ENC" ],
1363
+ "certificate" : [ "MIICmzCCAYMCBgGQZVClWDANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDDAZtYXN0ZXIwHhcNMjQwNjI5MTg0MzIyWhcNMzQwNjI5MTg0NTAyWjARMQ8wDQYDVQQDDAZtYXN0ZXIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCLEfB5Z5kEa2uA2s9QRj0C64U+Q277cdIKnpwauWHyimTBmUPVpdxirV6Y/a7k7xNule8Q1l17iK43FhmEQ7pBjWVUZVzFMyxdlccHOBu8hZy+IfxqJ71RosxeU9teGRjC804eWgwO8P7evgUkxy/Paz3hy1OHdTh8fU8sPyh624c2lRXeN/W0tyG2+nKXnM7LUB3yF5TwEDKVVQIP7tVetDPcXw8nRv3tW8WoOmVwPo1sXBlFKRSGMG4LVu/CGAAcW4RnsnkM4vIhGUELnYOyHegg0kEwgcq8QWnnbXF71i8sqE4imC6C1HfjbfG330g3TB6K6BFA1HX73Obi2uxtAgMBAAEwDQYJKoZIhvcNAQELBQADggEBAHTB7piJaS7+nL20xxwLDE2Z9HO1NGWG9UbShOVZumL8iKvLut61uOi7hdK4Nw8VpYYoWNpmDjFtK85fnzYM8owwKTF86PVQTJssA/CJvVSXNx/rORYw4bXd7L1UVytzSJitVqfUPt3v2Sm3YXYqmpM7pw3rU4HTFTyQLOaP5BuQziZvwixXjv3mzNRl9+YZe7+vXaokwqp/MOrp7ecL0GvIqd3KasM+E/Um9IDjTZjFdzdUdi+3yrlsEVCzk/D4OWUBwkmoSxQD1svzaqePGpixcITlPp7YNyNVfkzeEwCTPPqlabZn57dM0JzD1O9WWC9zshAmE4fznko9zPt9Pfk=" ],
1364
+ "priority" : [ "100" ],
1365
+ "algorithm" : [ "RSA-OAEP" ]
1366
+ }
1367
+ }, {
1368
+ "id" : "922facc1-4636-475b-91f2-816265dc67dd",
1369
+ "name" : "hmac-generated",
1370
+ "providerId" : "hmac-generated",
1371
+ "subComponents" : { },
1372
+ "config" : {
1373
+ "kid" : [ "3d7d09c8-6c50-419b-988c-664fc153ebbc" ],
1374
+ "secret" : [ "dMfEq59HKZa2Pz1mbVHLZXL6hUTntkZZc1CJ3E8tMVqm5AwFpGNOuQykkJRpqXn5-4Jjc_Dec_lZ31A-odYtmQ" ],
1375
+ "priority" : [ "100" ],
1376
+ "algorithm" : [ "HS256" ]
1377
+ }
1378
+ }, {
1379
+ "id" : "bcd512ec-8e52-49ac-8332-906124e724ad",
1380
+ "name" : "aes-generated",
1381
+ "providerId" : "aes-generated",
1382
+ "subComponents" : { },
1383
+ "config" : {
1384
+ "kid" : [ "a17d94ce-4d31-4491-904a-e33157fad2e9" ],
1385
+ "secret" : [ "NSmF57F6_ZlnWPknhtavFw" ],
1386
+ "priority" : [ "100" ]
1387
+ }
1388
+ }, {
1389
+ "id" : "a1cbb10b-1c98-40c1-8c04-b1e04c3f6819",
1390
+ "name" : "rsa-generated",
1391
+ "providerId" : "rsa-generated",
1392
+ "subComponents" : { },
1393
+ "config" : {
1394
+ "privateKey" : [ "MIIEpAIBAAKCAQEArsKT3Zs8NBB8vUow5w5zoMdDK18b9pafj9X70vLedNS7nbgFFFWyEW/JSkBLCyiMrFXqib9qCCa02rhRdqAf/UocmPSEvsHmJMX7qhvaPvDSbZJiIwnL3Y+a86S+WSueAlC+FPP/nRdsFwP0B2+tJVIo0z26FbYqwDabsHzAxvC0J6g7GHgm856nBR6KW645+VC7EmDNXSUYFIQnxNJFaS8e2QqaIvvvl3mXWOoNUVCehPRiV34H83bpXUlKf3s/n1wkrVdZQjGmS93RM/R7bpoFkO7R0WvPacpbcQYKLSwJa4VNpyCv8vHQrlIAlcSIER5iTV/A5JHF9nmylpYSGwIDAQABAoIBABF0CFLKVUhj2c6zxqTaH3fP/r1++arLtIgnwvHN5KP+t6AS8prrILtiEn8nuExB0qQcI9jO9Owh0CUZ4bTlsrGCrHl6ziPDof72hjb2d3pFZdaglyF7ByZhAwTQkAbAIZSHSNHh48Y7bRryqkqbKiEp4+mOPB6SphFdQs5CSfnJglpIbRYZf6W2nHf5xG+KUm1VQBG5yaXZTNl+N06XJ/Y5jIO7CkMsWeHhoBH85nC1yfkEl04AHZjVrlUyM90bQLrvg6htPqjUPQWrods7C81IRboiQBiPuHuqsJrXtOTQBi2aI610oFAYWBViN37L+wLJqbOp1SWiw1rELiNIE9ECgYEA28cOvzq3/YT/l+SsZ1FatJ4gCS6v3eSEaR8rGrCjki6alwdpx1Mg4aDTBgNl4bELqqGqKvdgL0VUvD1JYCxJPJXZf6aZvqPRKaMbNy0H97akh6CGFnOxI5O3IHgtmPYeTSgQ7lqs1qhPhTymRDQBT9tLR94Zwy9Ds9ihSiRr8tECgYEAy5Afr2IhlrmBeeUVOKazyrrTwpXDsepRUn9KK4J5vGzM968EirtPfBibWB7ezDMQWhCMJ4mmqMaEGF+541Mh01aUQTnJZKPbUEa3woVNHzfmkEK3Z6cIp2oT7Hv/iGUqFFw2r9kJylXTvvLG7je18Re2x4q0BC7A+mZnoUCX+SsCgYEAzkDBVjWE9icatzGjmlJ/DYJYDkYCRftvSDg3+5RJ7aZO7e3HF4isExMa90m5E1VT3Y5aZHhDjBlErGPXuKnXEUSQGXwATSjv4mNv5xgboh2FysKbE/b/BqRZ997Q6/wN89rmCMqP6eOKvT9tyhQEJy1mOMv24XY50046D5qetAECgYEAtYTnPDV9TjJNSq0Ep2e/m1/NxQ5XWydfLPlk4jeO5n7+pz7iBfPRhQ9MNuAQPHasdiObVwZgHtAmqrVxxUw0NYhW23L0K1ISFxt4cXT8uIHYj3tuoHdKOD9XVOGdk7riMxWnjlcza8Hs97D1wybajwpeasE8lR475w26CwjWe9ECgYAxjye9hdEAUMPc2pzbb3FofBB0rhyOKtsJSOzQKZZ52SObJgh4pTHAbYS379YrXQkh0sVLFVh8sQKM6HM5rNVWB5GyveGidzym0YpR/MmrLJl3N5pmpOMCecwMs1jXHE3n9lOIwDPGGrt1NLkDRZo5aMT1cmfj1eikfVFNrCxAXg==" ],
1395
+ "keyUse" : [ "SIG" ],
1396
+ "certificate" : [ "MIICmzCCAYMCBgGQZVClCTANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDDAZtYXN0ZXIwHhcNMjQwNjI5MTg0MzIyWhcNMzQwNjI5MTg0NTAyWjARMQ8wDQYDVQQDDAZtYXN0ZXIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCuwpPdmzw0EHy9SjDnDnOgx0MrXxv2lp+P1fvS8t501LuduAUUVbIRb8lKQEsLKIysVeqJv2oIJrTauFF2oB/9ShyY9IS+weYkxfuqG9o+8NJtkmIjCcvdj5rzpL5ZK54CUL4U8/+dF2wXA/QHb60lUijTPboVtirANpuwfMDG8LQnqDsYeCbznqcFHopbrjn5ULsSYM1dJRgUhCfE0kVpLx7ZCpoi+++XeZdY6g1RUJ6E9GJXfgfzduldSUp/ez+fXCStV1lCMaZL3dEz9HtumgWQ7tHRa89pyltxBgotLAlrhU2nIK/y8dCuUgCVxIgRHmJNX8DkkcX2ebKWlhIbAgMBAAEwDQYJKoZIhvcNAQELBQADggEBAJxas6RE5IdSDwBRJv8eaUiVOwUuIJDpir5GbTIyr/rJFvB9pWO2QHTi4/aCctBwfD0HPz/B7ENi0jP2fVIBKjoMIHix0p1fDTm1IVOfmNdhJ+fjNYFU5tEKQJHeF8HrGhFWQvgCCzx1uHrxP4ygy4Z4HZIqOjb8j2aQ25KeRaLddCiVvNLXPY13SP5Rhqau2DQKdYAX9XDZzojFZtZSpMgsZwKIdaAl0Ezj8Jr1zZUrWtDs/xq3jPX6IM6ij34w14+tV9PN24UMWMaMhR0hocG1lQIMh8VzstnClKKv96adkbsBKvNN5UWrd6qHMOZcJXzW+rL7O42YBUU2b5o8tjk=" ],
1397
+ "priority" : [ "100" ]
1398
+ }
1399
+ } ]
1400
+ },
1401
+ "internationalizationEnabled" : false,
1402
+ "supportedLocales" : [ ],
1403
+ "authenticationFlows" : [ {
1404
+ "id" : "90f9ad10-3518-40d3-8ea8-0e477c9e24ae",
1405
+ "alias" : "Account verification options",
1406
+ "description" : "Method with which to verity the existing account",
1407
+ "providerId" : "basic-flow",
1408
+ "topLevel" : false,
1409
+ "builtIn" : true,
1410
+ "authenticationExecutions" : [ {
1411
+ "authenticator" : "idp-email-verification",
1412
+ "authenticatorFlow" : false,
1413
+ "requirement" : "ALTERNATIVE",
1414
+ "priority" : 10,
1415
+ "autheticatorFlow" : false,
1416
+ "userSetupAllowed" : false
1417
+ }, {
1418
+ "authenticatorFlow" : true,
1419
+ "requirement" : "ALTERNATIVE",
1420
+ "priority" : 20,
1421
+ "autheticatorFlow" : true,
1422
+ "flowAlias" : "Verify Existing Account by Re-authentication",
1423
+ "userSetupAllowed" : false
1424
+ } ]
1425
+ }, {
1426
+ "id" : "43289ed9-45c0-43de-b20a-ac5521c9e31a",
1427
+ "alias" : "Browser - Conditional OTP",
1428
+ "description" : "Flow to determine if the OTP is required for the authentication",
1429
+ "providerId" : "basic-flow",
1430
+ "topLevel" : false,
1431
+ "builtIn" : true,
1432
+ "authenticationExecutions" : [ {
1433
+ "authenticator" : "conditional-user-configured",
1434
+ "authenticatorFlow" : false,
1435
+ "requirement" : "REQUIRED",
1436
+ "priority" : 10,
1437
+ "autheticatorFlow" : false,
1438
+ "userSetupAllowed" : false
1439
+ }, {
1440
+ "authenticator" : "auth-otp-form",
1441
+ "authenticatorFlow" : false,
1442
+ "requirement" : "REQUIRED",
1443
+ "priority" : 20,
1444
+ "autheticatorFlow" : false,
1445
+ "userSetupAllowed" : false
1446
+ } ]
1447
+ }, {
1448
+ "id" : "acc9fef6-8a1e-42a8-acef-9d86b5c8b26c",
1449
+ "alias" : "Direct Grant - Conditional OTP",
1450
+ "description" : "Flow to determine if the OTP is required for the authentication",
1451
+ "providerId" : "basic-flow",
1452
+ "topLevel" : false,
1453
+ "builtIn" : true,
1454
+ "authenticationExecutions" : [ {
1455
+ "authenticator" : "conditional-user-configured",
1456
+ "authenticatorFlow" : false,
1457
+ "requirement" : "REQUIRED",
1458
+ "priority" : 10,
1459
+ "autheticatorFlow" : false,
1460
+ "userSetupAllowed" : false
1461
+ }, {
1462
+ "authenticator" : "direct-grant-validate-otp",
1463
+ "authenticatorFlow" : false,
1464
+ "requirement" : "REQUIRED",
1465
+ "priority" : 20,
1466
+ "autheticatorFlow" : false,
1467
+ "userSetupAllowed" : false
1468
+ } ]
1469
+ }, {
1470
+ "id" : "512d9aa0-5ace-4012-bbb5-8fc574d4692f",
1471
+ "alias" : "First broker login - Conditional OTP",
1472
+ "description" : "Flow to determine if the OTP is required for the authentication",
1473
+ "providerId" : "basic-flow",
1474
+ "topLevel" : false,
1475
+ "builtIn" : true,
1476
+ "authenticationExecutions" : [ {
1477
+ "authenticator" : "conditional-user-configured",
1478
+ "authenticatorFlow" : false,
1479
+ "requirement" : "REQUIRED",
1480
+ "priority" : 10,
1481
+ "autheticatorFlow" : false,
1482
+ "userSetupAllowed" : false
1483
+ }, {
1484
+ "authenticator" : "auth-otp-form",
1485
+ "authenticatorFlow" : false,
1486
+ "requirement" : "REQUIRED",
1487
+ "priority" : 20,
1488
+ "autheticatorFlow" : false,
1489
+ "userSetupAllowed" : false
1490
+ } ]
1491
+ }, {
1492
+ "id" : "19b0e6e3-4b83-48c1-93c5-3997040d8740",
1493
+ "alias" : "Handle Existing Account",
1494
+ "description" : "Handle what to do if there is existing account with same email/username like authenticated identity provider",
1495
+ "providerId" : "basic-flow",
1496
+ "topLevel" : false,
1497
+ "builtIn" : true,
1498
+ "authenticationExecutions" : [ {
1499
+ "authenticator" : "idp-confirm-link",
1500
+ "authenticatorFlow" : false,
1501
+ "requirement" : "REQUIRED",
1502
+ "priority" : 10,
1503
+ "autheticatorFlow" : false,
1504
+ "userSetupAllowed" : false
1505
+ }, {
1506
+ "authenticatorFlow" : true,
1507
+ "requirement" : "REQUIRED",
1508
+ "priority" : 20,
1509
+ "autheticatorFlow" : true,
1510
+ "flowAlias" : "Account verification options",
1511
+ "userSetupAllowed" : false
1512
+ } ]
1513
+ }, {
1514
+ "id" : "0234c49e-ca1f-47f5-a8ea-8c7b607061de",
1515
+ "alias" : "Reset - Conditional OTP",
1516
+ "description" : "Flow to determine if the OTP should be reset or not. Set to REQUIRED to force.",
1517
+ "providerId" : "basic-flow",
1518
+ "topLevel" : false,
1519
+ "builtIn" : true,
1520
+ "authenticationExecutions" : [ {
1521
+ "authenticator" : "conditional-user-configured",
1522
+ "authenticatorFlow" : false,
1523
+ "requirement" : "REQUIRED",
1524
+ "priority" : 10,
1525
+ "autheticatorFlow" : false,
1526
+ "userSetupAllowed" : false
1527
+ }, {
1528
+ "authenticator" : "reset-otp",
1529
+ "authenticatorFlow" : false,
1530
+ "requirement" : "REQUIRED",
1531
+ "priority" : 20,
1532
+ "autheticatorFlow" : false,
1533
+ "userSetupAllowed" : false
1534
+ } ]
1535
+ }, {
1536
+ "id" : "16c3e9e7-8ca4-4886-9603-401c719226e1",
1537
+ "alias" : "User creation or linking",
1538
+ "description" : "Flow for the existing/non-existing user alternatives",
1539
+ "providerId" : "basic-flow",
1540
+ "topLevel" : false,
1541
+ "builtIn" : true,
1542
+ "authenticationExecutions" : [ {
1543
+ "authenticatorConfig" : "create unique user config",
1544
+ "authenticator" : "idp-create-user-if-unique",
1545
+ "authenticatorFlow" : false,
1546
+ "requirement" : "ALTERNATIVE",
1547
+ "priority" : 10,
1548
+ "autheticatorFlow" : false,
1549
+ "userSetupAllowed" : false
1550
+ }, {
1551
+ "authenticatorFlow" : true,
1552
+ "requirement" : "ALTERNATIVE",
1553
+ "priority" : 20,
1554
+ "autheticatorFlow" : true,
1555
+ "flowAlias" : "Handle Existing Account",
1556
+ "userSetupAllowed" : false
1557
+ } ]
1558
+ }, {
1559
+ "id" : "94045a56-89ab-469d-b54d-bfacf4c07946",
1560
+ "alias" : "Verify Existing Account by Re-authentication",
1561
+ "description" : "Reauthentication of existing account",
1562
+ "providerId" : "basic-flow",
1563
+ "topLevel" : false,
1564
+ "builtIn" : true,
1565
+ "authenticationExecutions" : [ {
1566
+ "authenticator" : "idp-username-password-form",
1567
+ "authenticatorFlow" : false,
1568
+ "requirement" : "REQUIRED",
1569
+ "priority" : 10,
1570
+ "autheticatorFlow" : false,
1571
+ "userSetupAllowed" : false
1572
+ }, {
1573
+ "authenticatorFlow" : true,
1574
+ "requirement" : "CONDITIONAL",
1575
+ "priority" : 20,
1576
+ "autheticatorFlow" : true,
1577
+ "flowAlias" : "First broker login - Conditional OTP",
1578
+ "userSetupAllowed" : false
1579
+ } ]
1580
+ }, {
1581
+ "id" : "3550de93-d524-4f10-9a50-01c7e83214d7",
1582
+ "alias" : "browser",
1583
+ "description" : "browser based authentication",
1584
+ "providerId" : "basic-flow",
1585
+ "topLevel" : true,
1586
+ "builtIn" : true,
1587
+ "authenticationExecutions" : [ {
1588
+ "authenticator" : "auth-cookie",
1589
+ "authenticatorFlow" : false,
1590
+ "requirement" : "ALTERNATIVE",
1591
+ "priority" : 10,
1592
+ "autheticatorFlow" : false,
1593
+ "userSetupAllowed" : false
1594
+ }, {
1595
+ "authenticator" : "auth-spnego",
1596
+ "authenticatorFlow" : false,
1597
+ "requirement" : "DISABLED",
1598
+ "priority" : 20,
1599
+ "autheticatorFlow" : false,
1600
+ "userSetupAllowed" : false
1601
+ }, {
1602
+ "authenticator" : "identity-provider-redirector",
1603
+ "authenticatorFlow" : false,
1604
+ "requirement" : "ALTERNATIVE",
1605
+ "priority" : 25,
1606
+ "autheticatorFlow" : false,
1607
+ "userSetupAllowed" : false
1608
+ }, {
1609
+ "authenticatorFlow" : true,
1610
+ "requirement" : "ALTERNATIVE",
1611
+ "priority" : 30,
1612
+ "autheticatorFlow" : true,
1613
+ "flowAlias" : "forms",
1614
+ "userSetupAllowed" : false
1615
+ } ]
1616
+ }, {
1617
+ "id" : "3cc37395-e8a7-46b9-80dc-c482b354e9a1",
1618
+ "alias" : "clients",
1619
+ "description" : "Base authentication for clients",
1620
+ "providerId" : "client-flow",
1621
+ "topLevel" : true,
1622
+ "builtIn" : true,
1623
+ "authenticationExecutions" : [ {
1624
+ "authenticator" : "client-secret",
1625
+ "authenticatorFlow" : false,
1626
+ "requirement" : "ALTERNATIVE",
1627
+ "priority" : 10,
1628
+ "autheticatorFlow" : false,
1629
+ "userSetupAllowed" : false
1630
+ }, {
1631
+ "authenticator" : "client-jwt",
1632
+ "authenticatorFlow" : false,
1633
+ "requirement" : "ALTERNATIVE",
1634
+ "priority" : 20,
1635
+ "autheticatorFlow" : false,
1636
+ "userSetupAllowed" : false
1637
+ }, {
1638
+ "authenticator" : "client-secret-jwt",
1639
+ "authenticatorFlow" : false,
1640
+ "requirement" : "ALTERNATIVE",
1641
+ "priority" : 30,
1642
+ "autheticatorFlow" : false,
1643
+ "userSetupAllowed" : false
1644
+ }, {
1645
+ "authenticator" : "client-x509",
1646
+ "authenticatorFlow" : false,
1647
+ "requirement" : "ALTERNATIVE",
1648
+ "priority" : 40,
1649
+ "autheticatorFlow" : false,
1650
+ "userSetupAllowed" : false
1651
+ } ]
1652
+ }, {
1653
+ "id" : "347630ae-b626-4684-b917-4cf3026e5a14",
1654
+ "alias" : "direct grant",
1655
+ "description" : "OpenID Connect Resource Owner Grant",
1656
+ "providerId" : "basic-flow",
1657
+ "topLevel" : true,
1658
+ "builtIn" : true,
1659
+ "authenticationExecutions" : [ {
1660
+ "authenticator" : "direct-grant-validate-username",
1661
+ "authenticatorFlow" : false,
1662
+ "requirement" : "REQUIRED",
1663
+ "priority" : 10,
1664
+ "autheticatorFlow" : false,
1665
+ "userSetupAllowed" : false
1666
+ }, {
1667
+ "authenticator" : "direct-grant-validate-password",
1668
+ "authenticatorFlow" : false,
1669
+ "requirement" : "REQUIRED",
1670
+ "priority" : 20,
1671
+ "autheticatorFlow" : false,
1672
+ "userSetupAllowed" : false
1673
+ }, {
1674
+ "authenticatorFlow" : true,
1675
+ "requirement" : "CONDITIONAL",
1676
+ "priority" : 30,
1677
+ "autheticatorFlow" : true,
1678
+ "flowAlias" : "Direct Grant - Conditional OTP",
1679
+ "userSetupAllowed" : false
1680
+ } ]
1681
+ }, {
1682
+ "id" : "b111a946-4b75-4efc-a914-359f3fc7ce7a",
1683
+ "alias" : "docker auth",
1684
+ "description" : "Used by Docker clients to authenticate against the IDP",
1685
+ "providerId" : "basic-flow",
1686
+ "topLevel" : true,
1687
+ "builtIn" : true,
1688
+ "authenticationExecutions" : [ {
1689
+ "authenticator" : "docker-http-basic-authenticator",
1690
+ "authenticatorFlow" : false,
1691
+ "requirement" : "REQUIRED",
1692
+ "priority" : 10,
1693
+ "autheticatorFlow" : false,
1694
+ "userSetupAllowed" : false
1695
+ } ]
1696
+ }, {
1697
+ "id" : "4ac6fd5d-e828-4c1d-aa51-aaef17002858",
1698
+ "alias" : "first broker login",
1699
+ "description" : "Actions taken after first broker login with identity provider account, which is not yet linked to any Keycloak account",
1700
+ "providerId" : "basic-flow",
1701
+ "topLevel" : true,
1702
+ "builtIn" : true,
1703
+ "authenticationExecutions" : [ {
1704
+ "authenticatorConfig" : "review profile config",
1705
+ "authenticator" : "idp-review-profile",
1706
+ "authenticatorFlow" : false,
1707
+ "requirement" : "REQUIRED",
1708
+ "priority" : 10,
1709
+ "autheticatorFlow" : false,
1710
+ "userSetupAllowed" : false
1711
+ }, {
1712
+ "authenticatorFlow" : true,
1713
+ "requirement" : "REQUIRED",
1714
+ "priority" : 20,
1715
+ "autheticatorFlow" : true,
1716
+ "flowAlias" : "User creation or linking",
1717
+ "userSetupAllowed" : false
1718
+ } ]
1719
+ }, {
1720
+ "id" : "8f77e5ed-ed6e-41f4-8562-7bcec1701908",
1721
+ "alias" : "forms",
1722
+ "description" : "Username, password, otp and other auth forms.",
1723
+ "providerId" : "basic-flow",
1724
+ "topLevel" : false,
1725
+ "builtIn" : true,
1726
+ "authenticationExecutions" : [ {
1727
+ "authenticator" : "auth-username-password-form",
1728
+ "authenticatorFlow" : false,
1729
+ "requirement" : "REQUIRED",
1730
+ "priority" : 10,
1731
+ "autheticatorFlow" : false,
1732
+ "userSetupAllowed" : false
1733
+ }, {
1734
+ "authenticatorFlow" : true,
1735
+ "requirement" : "CONDITIONAL",
1736
+ "priority" : 20,
1737
+ "autheticatorFlow" : true,
1738
+ "flowAlias" : "Browser - Conditional OTP",
1739
+ "userSetupAllowed" : false
1740
+ } ]
1741
+ }, {
1742
+ "id" : "ebc7e37f-6ea9-448e-9df8-320ea066de16",
1743
+ "alias" : "registration",
1744
+ "description" : "registration flow",
1745
+ "providerId" : "basic-flow",
1746
+ "topLevel" : true,
1747
+ "builtIn" : true,
1748
+ "authenticationExecutions" : [ {
1749
+ "authenticator" : "registration-page-form",
1750
+ "authenticatorFlow" : true,
1751
+ "requirement" : "REQUIRED",
1752
+ "priority" : 10,
1753
+ "autheticatorFlow" : true,
1754
+ "flowAlias" : "registration form",
1755
+ "userSetupAllowed" : false
1756
+ } ]
1757
+ }, {
1758
+ "id" : "eadf9456-054c-4cd0-aba2-a90b94ee106e",
1759
+ "alias" : "registration form",
1760
+ "description" : "registration form",
1761
+ "providerId" : "form-flow",
1762
+ "topLevel" : false,
1763
+ "builtIn" : true,
1764
+ "authenticationExecutions" : [ {
1765
+ "authenticator" : "registration-user-creation",
1766
+ "authenticatorFlow" : false,
1767
+ "requirement" : "REQUIRED",
1768
+ "priority" : 20,
1769
+ "autheticatorFlow" : false,
1770
+ "userSetupAllowed" : false
1771
+ }, {
1772
+ "authenticator" : "registration-password-action",
1773
+ "authenticatorFlow" : false,
1774
+ "requirement" : "REQUIRED",
1775
+ "priority" : 50,
1776
+ "autheticatorFlow" : false,
1777
+ "userSetupAllowed" : false
1778
+ }, {
1779
+ "authenticator" : "registration-recaptcha-action",
1780
+ "authenticatorFlow" : false,
1781
+ "requirement" : "DISABLED",
1782
+ "priority" : 60,
1783
+ "autheticatorFlow" : false,
1784
+ "userSetupAllowed" : false
1785
+ }, {
1786
+ "authenticator" : "registration-terms-and-conditions",
1787
+ "authenticatorFlow" : false,
1788
+ "requirement" : "DISABLED",
1789
+ "priority" : 70,
1790
+ "autheticatorFlow" : false,
1791
+ "userSetupAllowed" : false
1792
+ } ]
1793
+ }, {
1794
+ "id" : "5cd2a0cc-6a39-4380-b93d-28ec1a70cf75",
1795
+ "alias" : "reset credentials",
1796
+ "description" : "Reset credentials for a user if they forgot their password or something",
1797
+ "providerId" : "basic-flow",
1798
+ "topLevel" : true,
1799
+ "builtIn" : true,
1800
+ "authenticationExecutions" : [ {
1801
+ "authenticator" : "reset-credentials-choose-user",
1802
+ "authenticatorFlow" : false,
1803
+ "requirement" : "REQUIRED",
1804
+ "priority" : 10,
1805
+ "autheticatorFlow" : false,
1806
+ "userSetupAllowed" : false
1807
+ }, {
1808
+ "authenticator" : "reset-credential-email",
1809
+ "authenticatorFlow" : false,
1810
+ "requirement" : "REQUIRED",
1811
+ "priority" : 20,
1812
+ "autheticatorFlow" : false,
1813
+ "userSetupAllowed" : false
1814
+ }, {
1815
+ "authenticator" : "reset-password",
1816
+ "authenticatorFlow" : false,
1817
+ "requirement" : "REQUIRED",
1818
+ "priority" : 30,
1819
+ "autheticatorFlow" : false,
1820
+ "userSetupAllowed" : false
1821
+ }, {
1822
+ "authenticatorFlow" : true,
1823
+ "requirement" : "CONDITIONAL",
1824
+ "priority" : 40,
1825
+ "autheticatorFlow" : true,
1826
+ "flowAlias" : "Reset - Conditional OTP",
1827
+ "userSetupAllowed" : false
1828
+ } ]
1829
+ }, {
1830
+ "id" : "1c2001f4-c877-4807-aabf-58646a44480a",
1831
+ "alias" : "saml ecp",
1832
+ "description" : "SAML ECP Profile Authentication Flow",
1833
+ "providerId" : "basic-flow",
1834
+ "topLevel" : true,
1835
+ "builtIn" : true,
1836
+ "authenticationExecutions" : [ {
1837
+ "authenticator" : "http-basic-authenticator",
1838
+ "authenticatorFlow" : false,
1839
+ "requirement" : "REQUIRED",
1840
+ "priority" : 10,
1841
+ "autheticatorFlow" : false,
1842
+ "userSetupAllowed" : false
1843
+ } ]
1844
+ } ],
1845
+ "authenticatorConfig" : [ {
1846
+ "id" : "321540a4-219f-4f9c-ba86-6afe22c0d653",
1847
+ "alias" : "create unique user config",
1848
+ "config" : {
1849
+ "require.password.update.after.registration" : "false"
1850
+ }
1851
+ }, {
1852
+ "id" : "3022d221-36ae-422d-914d-1e6ae3894f05",
1853
+ "alias" : "review profile config",
1854
+ "config" : {
1855
+ "update.profile.on.first.login" : "missing"
1856
+ }
1857
+ } ],
1858
+ "requiredActions" : [ {
1859
+ "alias" : "CONFIGURE_TOTP",
1860
+ "name" : "Configure OTP",
1861
+ "providerId" : "CONFIGURE_TOTP",
1862
+ "enabled" : true,
1863
+ "defaultAction" : false,
1864
+ "priority" : 10,
1865
+ "config" : { }
1866
+ }, {
1867
+ "alias" : "TERMS_AND_CONDITIONS",
1868
+ "name" : "Terms and Conditions",
1869
+ "providerId" : "TERMS_AND_CONDITIONS",
1870
+ "enabled" : false,
1871
+ "defaultAction" : false,
1872
+ "priority" : 20,
1873
+ "config" : { }
1874
+ }, {
1875
+ "alias" : "UPDATE_PASSWORD",
1876
+ "name" : "Update Password",
1877
+ "providerId" : "UPDATE_PASSWORD",
1878
+ "enabled" : true,
1879
+ "defaultAction" : false,
1880
+ "priority" : 30,
1881
+ "config" : { }
1882
+ }, {
1883
+ "alias" : "UPDATE_PROFILE",
1884
+ "name" : "Update Profile",
1885
+ "providerId" : "UPDATE_PROFILE",
1886
+ "enabled" : true,
1887
+ "defaultAction" : false,
1888
+ "priority" : 40,
1889
+ "config" : { }
1890
+ }, {
1891
+ "alias" : "VERIFY_EMAIL",
1892
+ "name" : "Verify Email",
1893
+ "providerId" : "VERIFY_EMAIL",
1894
+ "enabled" : true,
1895
+ "defaultAction" : false,
1896
+ "priority" : 50,
1897
+ "config" : { }
1898
+ }, {
1899
+ "alias" : "delete_account",
1900
+ "name" : "Delete Account",
1901
+ "providerId" : "delete_account",
1902
+ "enabled" : false,
1903
+ "defaultAction" : false,
1904
+ "priority" : 60,
1905
+ "config" : { }
1906
+ }, {
1907
+ "alias" : "webauthn-register",
1908
+ "name" : "Webauthn Register",
1909
+ "providerId" : "webauthn-register",
1910
+ "enabled" : true,
1911
+ "defaultAction" : false,
1912
+ "priority" : 70,
1913
+ "config" : { }
1914
+ }, {
1915
+ "alias" : "webauthn-register-passwordless",
1916
+ "name" : "Webauthn Register Passwordless",
1917
+ "providerId" : "webauthn-register-passwordless",
1918
+ "enabled" : true,
1919
+ "defaultAction" : false,
1920
+ "priority" : 80,
1921
+ "config" : { }
1922
+ }, {
1923
+ "alias" : "update_user_locale",
1924
+ "name" : "Update User Locale",
1925
+ "providerId" : "update_user_locale",
1926
+ "enabled" : true,
1927
+ "defaultAction" : false,
1928
+ "priority" : 1000,
1929
+ "config" : { }
1930
+ } ],
1931
+ "browserFlow" : "browser",
1932
+ "registrationFlow" : "registration",
1933
+ "directGrantFlow" : "direct grant",
1934
+ "resetCredentialsFlow" : "reset credentials",
1935
+ "clientAuthenticationFlow" : "clients",
1936
+ "dockerAuthenticationFlow" : "docker auth",
1937
+ "attributes" : {
1938
+ "cibaBackchannelTokenDeliveryMode" : "poll",
1939
+ "cibaExpiresIn" : "120",
1940
+ "cibaAuthRequestedUserHint" : "login_hint",
1941
+ "parRequestUriLifespan" : "60",
1942
+ "cibaInterval" : "5",
1943
+ "realmReusableOtpCode" : "false"
1944
+ },
1945
+ "keycloakVersion" : "23.0.6",
1946
+ "userManagedAccessAllowed" : false,
1947
+ "clientProfiles" : {
1948
+ "profiles" : [ ]
1949
+ },
1950
+ "clientPolicies" : {
1951
+ "policies" : [ ]
1952
+ }
1953
+ }