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" : "07beb932-e7e4-431d-bd85-fcd2ce1ef75a",
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" : "72d2372b-2f08-4869-ab85-401c3e517aae",
51
+ "name" : "admin",
52
+ "description" : "${role_admin}",
53
+ "composite" : true,
54
+ "composites" : {
55
+ "realm" : [ "create-realm" ],
56
+ "client" : {
57
+ "kcals-realm" : [ "impersonation", "manage-authorization", "view-authorization", "view-realm", "manage-realm", "create-client", "view-events", "manage-clients", "manage-users", "view-identity-providers", "manage-identity-providers", "query-realms", "manage-events", "view-users", "query-users", "query-clients", "query-groups", "view-clients" ],
58
+ "master-realm" : [ "view-clients", "manage-users", "view-users", "manage-realm", "impersonation", "query-users", "manage-events", "query-groups", "query-realms", "query-clients", "view-identity-providers", "manage-clients", "view-events", "manage-identity-providers", "view-authorization", "manage-authorization", "view-realm", "create-client" ]
59
+ }
60
+ },
61
+ "clientRole" : false,
62
+ "containerId" : "07beb932-e7e4-431d-bd85-fcd2ce1ef75a",
63
+ "attributes" : { }
64
+ }, {
65
+ "id" : "17aa0a6a-d5ee-4471-ae39-d4186d28f837",
66
+ "name" : "offline_access",
67
+ "description" : "${role_offline-access}",
68
+ "composite" : false,
69
+ "clientRole" : false,
70
+ "containerId" : "07beb932-e7e4-431d-bd85-fcd2ce1ef75a",
71
+ "attributes" : { }
72
+ }, {
73
+ "id" : "45d84fa7-cad0-44c9-b8c2-7aa7bf68a2cc",
74
+ "name" : "create-realm",
75
+ "description" : "${role_create-realm}",
76
+ "composite" : false,
77
+ "clientRole" : false,
78
+ "containerId" : "07beb932-e7e4-431d-bd85-fcd2ce1ef75a",
79
+ "attributes" : { }
80
+ }, {
81
+ "id" : "ac46afe9-f8ca-44ab-a3e8-ffbb2469a309",
82
+ "name" : "default-roles-master",
83
+ "description" : "${role_default-roles}",
84
+ "composite" : true,
85
+ "composites" : {
86
+ "realm" : [ "offline_access", "uma_authorization" ],
87
+ "client" : {
88
+ "account" : [ "view-profile", "manage-account" ]
89
+ }
90
+ },
91
+ "clientRole" : false,
92
+ "containerId" : "07beb932-e7e4-431d-bd85-fcd2ce1ef75a",
93
+ "attributes" : { }
94
+ }, {
95
+ "id" : "d18dc450-709b-4c5e-87fd-273858e29555",
96
+ "name" : "uma_authorization",
97
+ "description" : "${role_uma_authorization}",
98
+ "composite" : false,
99
+ "clientRole" : false,
100
+ "containerId" : "07beb932-e7e4-431d-bd85-fcd2ce1ef75a",
101
+ "attributes" : { }
102
+ } ],
103
+ "client" : {
104
+ "kcals-realm" : [ {
105
+ "id" : "38cdadcc-331b-4923-afc0-8d9ed37e79b2",
106
+ "name" : "impersonation",
107
+ "description" : "${role_impersonation}",
108
+ "composite" : false,
109
+ "clientRole" : true,
110
+ "containerId" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
111
+ "attributes" : { }
112
+ }, {
113
+ "id" : "c840ba3b-cca2-4836-8796-c5961cd263a0",
114
+ "name" : "manage-authorization",
115
+ "description" : "${role_manage-authorization}",
116
+ "composite" : false,
117
+ "clientRole" : true,
118
+ "containerId" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
119
+ "attributes" : { }
120
+ }, {
121
+ "id" : "cd0b4723-ed59-413a-b381-07b805421b92",
122
+ "name" : "manage-realm",
123
+ "description" : "${role_manage-realm}",
124
+ "composite" : false,
125
+ "clientRole" : true,
126
+ "containerId" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
127
+ "attributes" : { }
128
+ }, {
129
+ "id" : "0804900e-543f-4a20-a97a-619d231f18bf",
130
+ "name" : "view-authorization",
131
+ "description" : "${role_view-authorization}",
132
+ "composite" : false,
133
+ "clientRole" : true,
134
+ "containerId" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
135
+ "attributes" : { }
136
+ }, {
137
+ "id" : "1edb7dc0-943f-4179-88bc-23dac53676ed",
138
+ "name" : "view-realm",
139
+ "description" : "${role_view-realm}",
140
+ "composite" : false,
141
+ "clientRole" : true,
142
+ "containerId" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
143
+ "attributes" : { }
144
+ }, {
145
+ "id" : "35ece549-8616-4a62-8a9f-9bc65bbd8094",
146
+ "name" : "create-client",
147
+ "description" : "${role_create-client}",
148
+ "composite" : false,
149
+ "clientRole" : true,
150
+ "containerId" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
151
+ "attributes" : { }
152
+ }, {
153
+ "id" : "dd1bce0f-e967-4c14-87d4-d45a4880816c",
154
+ "name" : "manage-events",
155
+ "description" : "${role_manage-events}",
156
+ "composite" : false,
157
+ "clientRole" : true,
158
+ "containerId" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
159
+ "attributes" : { }
160
+ }, {
161
+ "id" : "02f0fac1-7ea0-46a3-acd6-ef85b4432465",
162
+ "name" : "query-realms",
163
+ "description" : "${role_query-realms}",
164
+ "composite" : false,
165
+ "clientRole" : true,
166
+ "containerId" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
167
+ "attributes" : { }
168
+ }, {
169
+ "id" : "c8812398-984e-45f9-924f-f7356b45347f",
170
+ "name" : "view-users",
171
+ "description" : "${role_view-users}",
172
+ "composite" : true,
173
+ "composites" : {
174
+ "client" : {
175
+ "kcals-realm" : [ "query-groups", "query-users" ]
176
+ }
177
+ },
178
+ "clientRole" : true,
179
+ "containerId" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
180
+ "attributes" : { }
181
+ }, {
182
+ "id" : "5dfba2ec-a844-454e-a520-f11a3b493bd6",
183
+ "name" : "query-users",
184
+ "description" : "${role_query-users}",
185
+ "composite" : false,
186
+ "clientRole" : true,
187
+ "containerId" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
188
+ "attributes" : { }
189
+ }, {
190
+ "id" : "9d01eef8-d262-4762-9ded-73b3dc749d3c",
191
+ "name" : "query-clients",
192
+ "description" : "${role_query-clients}",
193
+ "composite" : false,
194
+ "clientRole" : true,
195
+ "containerId" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
196
+ "attributes" : { }
197
+ }, {
198
+ "id" : "26404783-1f4d-48d0-bb45-19c8cda2d77e",
199
+ "name" : "view-events",
200
+ "description" : "${role_view-events}",
201
+ "composite" : false,
202
+ "clientRole" : true,
203
+ "containerId" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
204
+ "attributes" : { }
205
+ }, {
206
+ "id" : "be26254b-49b1-4f6e-a7cd-cc4bb77dcce4",
207
+ "name" : "manage-clients",
208
+ "description" : "${role_manage-clients}",
209
+ "composite" : false,
210
+ "clientRole" : true,
211
+ "containerId" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
212
+ "attributes" : { }
213
+ }, {
214
+ "id" : "a813ae39-90e2-4019-b432-59e2d574dc7e",
215
+ "name" : "query-groups",
216
+ "description" : "${role_query-groups}",
217
+ "composite" : false,
218
+ "clientRole" : true,
219
+ "containerId" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
220
+ "attributes" : { }
221
+ }, {
222
+ "id" : "9bba17fa-c845-4532-b032-56b65881b17f",
223
+ "name" : "manage-users",
224
+ "description" : "${role_manage-users}",
225
+ "composite" : false,
226
+ "clientRole" : true,
227
+ "containerId" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
228
+ "attributes" : { }
229
+ }, {
230
+ "id" : "8cd5a256-ec27-4b52-9416-173407ca6c74",
231
+ "name" : "view-clients",
232
+ "description" : "${role_view-clients}",
233
+ "composite" : true,
234
+ "composites" : {
235
+ "client" : {
236
+ "kcals-realm" : [ "query-clients" ]
237
+ }
238
+ },
239
+ "clientRole" : true,
240
+ "containerId" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
241
+ "attributes" : { }
242
+ }, {
243
+ "id" : "e03b11f9-eb9e-4f2d-b492-db46c3c0f6f2",
244
+ "name" : "manage-identity-providers",
245
+ "description" : "${role_manage-identity-providers}",
246
+ "composite" : false,
247
+ "clientRole" : true,
248
+ "containerId" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
249
+ "attributes" : { }
250
+ }, {
251
+ "id" : "ae6acaa4-4bed-47a0-b700-fcaac61f8dac",
252
+ "name" : "view-identity-providers",
253
+ "description" : "${role_view-identity-providers}",
254
+ "composite" : false,
255
+ "clientRole" : true,
256
+ "containerId" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
257
+ "attributes" : { }
258
+ } ],
259
+ "security-admin-console" : [ ],
260
+ "admin-cli" : [ ],
261
+ "account-console" : [ ],
262
+ "broker" : [ {
263
+ "id" : "2466567a-2ea1-4c68-9d88-ef8f404b5e1c",
264
+ "name" : "read-token",
265
+ "description" : "${role_read-token}",
266
+ "composite" : false,
267
+ "clientRole" : true,
268
+ "containerId" : "a338b906-39ea-4421-b18e-170137993043",
269
+ "attributes" : { }
270
+ } ],
271
+ "master-realm" : [ {
272
+ "id" : "6459250d-73ff-402d-9967-8803c1437365",
273
+ "name" : "view-clients",
274
+ "description" : "${role_view-clients}",
275
+ "composite" : true,
276
+ "composites" : {
277
+ "client" : {
278
+ "master-realm" : [ "query-clients" ]
279
+ }
280
+ },
281
+ "clientRole" : true,
282
+ "containerId" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
283
+ "attributes" : { }
284
+ }, {
285
+ "id" : "adf54eb2-00c3-4904-9f08-aa0c4c6300f4",
286
+ "name" : "manage-users",
287
+ "description" : "${role_manage-users}",
288
+ "composite" : false,
289
+ "clientRole" : true,
290
+ "containerId" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
291
+ "attributes" : { }
292
+ }, {
293
+ "id" : "fcd85556-b38d-4726-9aab-7b5753b73990",
294
+ "name" : "query-realms",
295
+ "description" : "${role_query-realms}",
296
+ "composite" : false,
297
+ "clientRole" : true,
298
+ "containerId" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
299
+ "attributes" : { }
300
+ }, {
301
+ "id" : "27d2214a-17c6-4679-9f86-e97a958d01bf",
302
+ "name" : "query-clients",
303
+ "description" : "${role_query-clients}",
304
+ "composite" : false,
305
+ "clientRole" : true,
306
+ "containerId" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
307
+ "attributes" : { }
308
+ }, {
309
+ "id" : "baee9d11-2d46-47a5-a389-78b6f37d2109",
310
+ "name" : "view-identity-providers",
311
+ "description" : "${role_view-identity-providers}",
312
+ "composite" : false,
313
+ "clientRole" : true,
314
+ "containerId" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
315
+ "attributes" : { }
316
+ }, {
317
+ "id" : "97bf7e69-7935-4af3-b63f-4165df87edcd",
318
+ "name" : "manage-clients",
319
+ "description" : "${role_manage-clients}",
320
+ "composite" : false,
321
+ "clientRole" : true,
322
+ "containerId" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
323
+ "attributes" : { }
324
+ }, {
325
+ "id" : "526f5af4-6aaf-491b-bd42-fec859a6e496",
326
+ "name" : "manage-realm",
327
+ "description" : "${role_manage-realm}",
328
+ "composite" : false,
329
+ "clientRole" : true,
330
+ "containerId" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
331
+ "attributes" : { }
332
+ }, {
333
+ "id" : "3f3338dd-dfec-4897-912d-e0f9d6299ab9",
334
+ "name" : "view-users",
335
+ "description" : "${role_view-users}",
336
+ "composite" : true,
337
+ "composites" : {
338
+ "client" : {
339
+ "master-realm" : [ "query-users", "query-groups" ]
340
+ }
341
+ },
342
+ "clientRole" : true,
343
+ "containerId" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
344
+ "attributes" : { }
345
+ }, {
346
+ "id" : "896049ec-36fa-415b-b919-5377c5d782d1",
347
+ "name" : "impersonation",
348
+ "description" : "${role_impersonation}",
349
+ "composite" : false,
350
+ "clientRole" : true,
351
+ "containerId" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
352
+ "attributes" : { }
353
+ }, {
354
+ "id" : "bdf9ecb0-069a-41ab-8348-7bc5017240a2",
355
+ "name" : "manage-identity-providers",
356
+ "description" : "${role_manage-identity-providers}",
357
+ "composite" : false,
358
+ "clientRole" : true,
359
+ "containerId" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
360
+ "attributes" : { }
361
+ }, {
362
+ "id" : "2f0195d6-98c4-4eb4-a640-0bf219d4a0a5",
363
+ "name" : "query-users",
364
+ "description" : "${role_query-users}",
365
+ "composite" : false,
366
+ "clientRole" : true,
367
+ "containerId" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
368
+ "attributes" : { }
369
+ }, {
370
+ "id" : "81f6b121-2d87-42dd-8386-67a6e761fca2",
371
+ "name" : "view-events",
372
+ "description" : "${role_view-events}",
373
+ "composite" : false,
374
+ "clientRole" : true,
375
+ "containerId" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
376
+ "attributes" : { }
377
+ }, {
378
+ "id" : "f75030c0-3b7c-4176-9891-073af4b384e5",
379
+ "name" : "view-authorization",
380
+ "description" : "${role_view-authorization}",
381
+ "composite" : false,
382
+ "clientRole" : true,
383
+ "containerId" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
384
+ "attributes" : { }
385
+ }, {
386
+ "id" : "c1ca9332-d57e-45be-b1f3-706e0e288802",
387
+ "name" : "manage-authorization",
388
+ "description" : "${role_manage-authorization}",
389
+ "composite" : false,
390
+ "clientRole" : true,
391
+ "containerId" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
392
+ "attributes" : { }
393
+ }, {
394
+ "id" : "d634e812-7899-41ea-9a61-cd25f51c2f88",
395
+ "name" : "view-realm",
396
+ "description" : "${role_view-realm}",
397
+ "composite" : false,
398
+ "clientRole" : true,
399
+ "containerId" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
400
+ "attributes" : { }
401
+ }, {
402
+ "id" : "51d67db3-8a8e-4611-8a63-31c4b15e043c",
403
+ "name" : "manage-events",
404
+ "description" : "${role_manage-events}",
405
+ "composite" : false,
406
+ "clientRole" : true,
407
+ "containerId" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
408
+ "attributes" : { }
409
+ }, {
410
+ "id" : "17fecdaf-c2c7-456d-b7f1-f8f51ae03f3a",
411
+ "name" : "query-groups",
412
+ "description" : "${role_query-groups}",
413
+ "composite" : false,
414
+ "clientRole" : true,
415
+ "containerId" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
416
+ "attributes" : { }
417
+ }, {
418
+ "id" : "0b4f6026-6c4d-4edc-b502-99cb9f195178",
419
+ "name" : "create-client",
420
+ "description" : "${role_create-client}",
421
+ "composite" : false,
422
+ "clientRole" : true,
423
+ "containerId" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
424
+ "attributes" : { }
425
+ } ],
426
+ "account" : [ {
427
+ "id" : "e92924ec-247f-43eb-ab5d-7e91ab29bd9e",
428
+ "name" : "manage-consent",
429
+ "description" : "${role_manage-consent}",
430
+ "composite" : true,
431
+ "composites" : {
432
+ "client" : {
433
+ "account" : [ "view-consent" ]
434
+ }
435
+ },
436
+ "clientRole" : true,
437
+ "containerId" : "419e1920-a7ea-4480-9524-47db780ff068",
438
+ "attributes" : { }
439
+ }, {
440
+ "id" : "f3ed9249-b0a1-4b3e-b0cd-5205c0d6f940",
441
+ "name" : "view-profile",
442
+ "description" : "${role_view-profile}",
443
+ "composite" : false,
444
+ "clientRole" : true,
445
+ "containerId" : "419e1920-a7ea-4480-9524-47db780ff068",
446
+ "attributes" : { }
447
+ }, {
448
+ "id" : "6eafaca5-b205-49c3-8ad1-7fd64e9530b7",
449
+ "name" : "view-consent",
450
+ "description" : "${role_view-consent}",
451
+ "composite" : false,
452
+ "clientRole" : true,
453
+ "containerId" : "419e1920-a7ea-4480-9524-47db780ff068",
454
+ "attributes" : { }
455
+ }, {
456
+ "id" : "c8c95b63-45aa-42ba-b8d1-1ef4c7293895",
457
+ "name" : "delete-account",
458
+ "description" : "${role_delete-account}",
459
+ "composite" : false,
460
+ "clientRole" : true,
461
+ "containerId" : "419e1920-a7ea-4480-9524-47db780ff068",
462
+ "attributes" : { }
463
+ }, {
464
+ "id" : "dbe0c35b-9886-461e-b066-903c9b1dbb25",
465
+ "name" : "view-applications",
466
+ "description" : "${role_view-applications}",
467
+ "composite" : false,
468
+ "clientRole" : true,
469
+ "containerId" : "419e1920-a7ea-4480-9524-47db780ff068",
470
+ "attributes" : { }
471
+ }, {
472
+ "id" : "0a08df63-a2eb-4824-9cdb-d5c118e5b3cd",
473
+ "name" : "manage-account-links",
474
+ "description" : "${role_manage-account-links}",
475
+ "composite" : false,
476
+ "clientRole" : true,
477
+ "containerId" : "419e1920-a7ea-4480-9524-47db780ff068",
478
+ "attributes" : { }
479
+ }, {
480
+ "id" : "ec046f1f-6a67-41a3-97f0-6de9bef78e37",
481
+ "name" : "view-groups",
482
+ "description" : "${role_view-groups}",
483
+ "composite" : false,
484
+ "clientRole" : true,
485
+ "containerId" : "419e1920-a7ea-4480-9524-47db780ff068",
486
+ "attributes" : { }
487
+ }, {
488
+ "id" : "b5d5a403-8097-45c0-b7b5-f3194d7f2de9",
489
+ "name" : "manage-account",
490
+ "description" : "${role_manage-account}",
491
+ "composite" : true,
492
+ "composites" : {
493
+ "client" : {
494
+ "account" : [ "manage-account-links" ]
495
+ }
496
+ },
497
+ "clientRole" : true,
498
+ "containerId" : "419e1920-a7ea-4480-9524-47db780ff068",
499
+ "attributes" : { }
500
+ } ]
501
+ }
502
+ },
503
+ "groups" : [ ],
504
+ "defaultRole" : {
505
+ "id" : "ac46afe9-f8ca-44ab-a3e8-ffbb2469a309",
506
+ "name" : "default-roles-master",
507
+ "description" : "${role_default-roles}",
508
+ "composite" : true,
509
+ "clientRole" : false,
510
+ "containerId" : "07beb932-e7e4-431d-bd85-fcd2ce1ef75a"
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" : "419e1920-a7ea-4480-9524-47db780ff068",
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" : "26b3be7e-056b-4330-8cb3-a0c2fad4dd02",
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" : "38650d68-1094-422b-aa98-83b8ee187786",
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" : "deba01ad-dff0-404c-b5a5-03802b37746f",
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" : "a338b906-39ea-4421-b18e-170137993043",
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" : "6d6e606d-4b55-4a9a-b41a-f5750d6cf515",
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" : "cfacc5d8-42fc-4916-be8f-38dcb5d2f793",
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" : "2e4d6245-42db-4cde-baf4-e54ff49d2a54",
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" : "82efe8b3-9d82-459b-be7b-35056047d3db",
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" : "1a105a2e-4eda-46ef-ad72-05e674b6e646",
775
+ "name" : "profile",
776
+ "description" : "OpenID Connect built-in scope: profile",
777
+ "protocol" : "openid-connect",
778
+ "attributes" : {
779
+ "include.in.token.scope" : "true",
780
+ "display.on.consent.screen" : "true",
781
+ "consent.screen.text" : "${profileScopeConsentText}"
782
+ },
783
+ "protocolMappers" : [ {
784
+ "id" : "4c982a83-ad1a-486f-9f27-ad7b60f05218",
785
+ "name" : "updated at",
786
+ "protocol" : "openid-connect",
787
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
788
+ "consentRequired" : false,
789
+ "config" : {
790
+ "introspection.token.claim" : "true",
791
+ "userinfo.token.claim" : "true",
792
+ "user.attribute" : "updatedAt",
793
+ "id.token.claim" : "true",
794
+ "access.token.claim" : "true",
795
+ "claim.name" : "updated_at",
796
+ "jsonType.label" : "long"
797
+ }
798
+ }, {
799
+ "id" : "afeccc8b-4ce2-4802-80a5-7caa958a0d63",
800
+ "name" : "website",
801
+ "protocol" : "openid-connect",
802
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
803
+ "consentRequired" : false,
804
+ "config" : {
805
+ "introspection.token.claim" : "true",
806
+ "userinfo.token.claim" : "true",
807
+ "user.attribute" : "website",
808
+ "id.token.claim" : "true",
809
+ "access.token.claim" : "true",
810
+ "claim.name" : "website",
811
+ "jsonType.label" : "String"
812
+ }
813
+ }, {
814
+ "id" : "0d258568-53f0-4015-8cbd-061a87e44a73",
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" : "2ad3e084-b688-4815-9d45-035cceaeb9cf",
830
+ "name" : "picture",
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" : "picture",
838
+ "id.token.claim" : "true",
839
+ "access.token.claim" : "true",
840
+ "claim.name" : "picture",
841
+ "jsonType.label" : "String"
842
+ }
843
+ }, {
844
+ "id" : "aa8aef06-3d9f-4d06-8c81-671be4cfdcbe",
845
+ "name" : "gender",
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" : "gender",
853
+ "id.token.claim" : "true",
854
+ "access.token.claim" : "true",
855
+ "claim.name" : "gender",
856
+ "jsonType.label" : "String"
857
+ }
858
+ }, {
859
+ "id" : "93811ce2-4108-4ccb-90d8-1b9cc699767f",
860
+ "name" : "family 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" : "lastName",
868
+ "id.token.claim" : "true",
869
+ "access.token.claim" : "true",
870
+ "claim.name" : "family_name",
871
+ "jsonType.label" : "String"
872
+ }
873
+ }, {
874
+ "id" : "e3aad49b-87f1-4498-9b77-c19082919d0e",
875
+ "name" : "username",
876
+ "protocol" : "openid-connect",
877
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
878
+ "consentRequired" : false,
879
+ "config" : {
880
+ "introspection.token.claim" : "true",
881
+ "userinfo.token.claim" : "true",
882
+ "user.attribute" : "username",
883
+ "id.token.claim" : "true",
884
+ "access.token.claim" : "true",
885
+ "claim.name" : "preferred_username",
886
+ "jsonType.label" : "String"
887
+ }
888
+ }, {
889
+ "id" : "c83c9554-6d61-4b58-8565-a29f52fc30f1",
890
+ "name" : "middle name",
891
+ "protocol" : "openid-connect",
892
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
893
+ "consentRequired" : false,
894
+ "config" : {
895
+ "introspection.token.claim" : "true",
896
+ "userinfo.token.claim" : "true",
897
+ "user.attribute" : "middleName",
898
+ "id.token.claim" : "true",
899
+ "access.token.claim" : "true",
900
+ "claim.name" : "middle_name",
901
+ "jsonType.label" : "String"
902
+ }
903
+ }, {
904
+ "id" : "b0bdef2e-fe84-481f-926a-a80d9cf5051a",
905
+ "name" : "full name",
906
+ "protocol" : "openid-connect",
907
+ "protocolMapper" : "oidc-full-name-mapper",
908
+ "consentRequired" : false,
909
+ "config" : {
910
+ "id.token.claim" : "true",
911
+ "introspection.token.claim" : "true",
912
+ "access.token.claim" : "true",
913
+ "userinfo.token.claim" : "true"
914
+ }
915
+ }, {
916
+ "id" : "85e2ed59-78d2-4dc7-8c9c-2bd7098fd196",
917
+ "name" : "birthdate",
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" : "birthdate",
925
+ "id.token.claim" : "true",
926
+ "access.token.claim" : "true",
927
+ "claim.name" : "birthdate",
928
+ "jsonType.label" : "String"
929
+ }
930
+ }, {
931
+ "id" : "319740b5-9e11-4287-8771-30066bfb7b4b",
932
+ "name" : "profile",
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" : "profile",
940
+ "id.token.claim" : "true",
941
+ "access.token.claim" : "true",
942
+ "claim.name" : "profile",
943
+ "jsonType.label" : "String"
944
+ }
945
+ }, {
946
+ "id" : "17f5586f-7673-4563-9559-0286a71d4d49",
947
+ "name" : "given name",
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" : "firstName",
955
+ "id.token.claim" : "true",
956
+ "access.token.claim" : "true",
957
+ "claim.name" : "given_name",
958
+ "jsonType.label" : "String"
959
+ }
960
+ }, {
961
+ "id" : "87c0e887-b1a3-4e3e-aebf-da9007c379b1",
962
+ "name" : "locale",
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" : "locale",
970
+ "id.token.claim" : "true",
971
+ "access.token.claim" : "true",
972
+ "claim.name" : "locale",
973
+ "jsonType.label" : "String"
974
+ }
975
+ }, {
976
+ "id" : "45fe5772-d519-4217-aa7c-d66bcca7c72d",
977
+ "name" : "zoneinfo",
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" : "zoneinfo",
985
+ "id.token.claim" : "true",
986
+ "access.token.claim" : "true",
987
+ "claim.name" : "zoneinfo",
988
+ "jsonType.label" : "String"
989
+ }
990
+ } ]
991
+ }, {
992
+ "id" : "72fe1eeb-ec46-41ef-a33b-30a7fb8076af",
993
+ "name" : "roles",
994
+ "description" : "OpenID Connect scope for add user roles to the access token",
995
+ "protocol" : "openid-connect",
996
+ "attributes" : {
997
+ "include.in.token.scope" : "false",
998
+ "display.on.consent.screen" : "true",
999
+ "consent.screen.text" : "${rolesScopeConsentText}"
1000
+ },
1001
+ "protocolMappers" : [ {
1002
+ "id" : "c22f325b-0862-4b70-9f0b-a78b0da804b2",
1003
+ "name" : "audience resolve",
1004
+ "protocol" : "openid-connect",
1005
+ "protocolMapper" : "oidc-audience-resolve-mapper",
1006
+ "consentRequired" : false,
1007
+ "config" : {
1008
+ "introspection.token.claim" : "true",
1009
+ "access.token.claim" : "true"
1010
+ }
1011
+ }, {
1012
+ "id" : "3f5499b0-fa90-42ca-946a-e25c83bef8d2",
1013
+ "name" : "realm roles",
1014
+ "protocol" : "openid-connect",
1015
+ "protocolMapper" : "oidc-usermodel-realm-role-mapper",
1016
+ "consentRequired" : false,
1017
+ "config" : {
1018
+ "introspection.token.claim" : "true",
1019
+ "multivalued" : "true",
1020
+ "user.attribute" : "foo",
1021
+ "access.token.claim" : "true",
1022
+ "claim.name" : "realm_access.roles",
1023
+ "jsonType.label" : "String"
1024
+ }
1025
+ }, {
1026
+ "id" : "31776420-9f80-4e35-895c-fa958f0cd822",
1027
+ "name" : "client roles",
1028
+ "protocol" : "openid-connect",
1029
+ "protocolMapper" : "oidc-usermodel-client-role-mapper",
1030
+ "consentRequired" : false,
1031
+ "config" : {
1032
+ "introspection.token.claim" : "true",
1033
+ "multivalued" : "true",
1034
+ "user.attribute" : "foo",
1035
+ "access.token.claim" : "true",
1036
+ "claim.name" : "resource_access.${client_id}.roles",
1037
+ "jsonType.label" : "String"
1038
+ }
1039
+ } ]
1040
+ }, {
1041
+ "id" : "c30c579d-9d27-4f41-843d-a04f234f56b3",
1042
+ "name" : "web-origins",
1043
+ "description" : "OpenID Connect scope for add allowed web origins to the access token",
1044
+ "protocol" : "openid-connect",
1045
+ "attributes" : {
1046
+ "include.in.token.scope" : "false",
1047
+ "display.on.consent.screen" : "false",
1048
+ "consent.screen.text" : ""
1049
+ },
1050
+ "protocolMappers" : [ {
1051
+ "id" : "be31cb93-9d36-4e73-969b-9b4450d02faf",
1052
+ "name" : "allowed web origins",
1053
+ "protocol" : "openid-connect",
1054
+ "protocolMapper" : "oidc-allowed-origins-mapper",
1055
+ "consentRequired" : false,
1056
+ "config" : {
1057
+ "introspection.token.claim" : "true",
1058
+ "access.token.claim" : "true"
1059
+ }
1060
+ } ]
1061
+ }, {
1062
+ "id" : "a2af7e2f-3425-425e-b730-bc6486f17e02",
1063
+ "name" : "microprofile-jwt",
1064
+ "description" : "Microprofile - JWT built-in scope",
1065
+ "protocol" : "openid-connect",
1066
+ "attributes" : {
1067
+ "include.in.token.scope" : "true",
1068
+ "display.on.consent.screen" : "false"
1069
+ },
1070
+ "protocolMappers" : [ {
1071
+ "id" : "8601b124-d054-4d5a-a043-eca225625cf8",
1072
+ "name" : "upn",
1073
+ "protocol" : "openid-connect",
1074
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
1075
+ "consentRequired" : false,
1076
+ "config" : {
1077
+ "introspection.token.claim" : "true",
1078
+ "userinfo.token.claim" : "true",
1079
+ "user.attribute" : "username",
1080
+ "id.token.claim" : "true",
1081
+ "access.token.claim" : "true",
1082
+ "claim.name" : "upn",
1083
+ "jsonType.label" : "String"
1084
+ }
1085
+ }, {
1086
+ "id" : "76d72de6-0f49-4ce5-8ac1-c5fcaa1633ca",
1087
+ "name" : "groups",
1088
+ "protocol" : "openid-connect",
1089
+ "protocolMapper" : "oidc-usermodel-realm-role-mapper",
1090
+ "consentRequired" : false,
1091
+ "config" : {
1092
+ "introspection.token.claim" : "true",
1093
+ "multivalued" : "true",
1094
+ "user.attribute" : "foo",
1095
+ "id.token.claim" : "true",
1096
+ "access.token.claim" : "true",
1097
+ "claim.name" : "groups",
1098
+ "jsonType.label" : "String"
1099
+ }
1100
+ } ]
1101
+ }, {
1102
+ "id" : "9f82886b-787f-40b0-b49a-e798a3eb889f",
1103
+ "name" : "offline_access",
1104
+ "description" : "OpenID Connect built-in scope: offline_access",
1105
+ "protocol" : "openid-connect",
1106
+ "attributes" : {
1107
+ "consent.screen.text" : "${offlineAccessScopeConsentText}",
1108
+ "display.on.consent.screen" : "true"
1109
+ }
1110
+ }, {
1111
+ "id" : "17dd62ec-66c2-4dfc-96f4-4af261fb1232",
1112
+ "name" : "acr",
1113
+ "description" : "OpenID Connect scope for add acr (authentication context class reference) to the token",
1114
+ "protocol" : "openid-connect",
1115
+ "attributes" : {
1116
+ "include.in.token.scope" : "false",
1117
+ "display.on.consent.screen" : "false"
1118
+ },
1119
+ "protocolMappers" : [ {
1120
+ "id" : "6752fecd-d786-4b6b-a564-3e4d2744b764",
1121
+ "name" : "acr loa level",
1122
+ "protocol" : "openid-connect",
1123
+ "protocolMapper" : "oidc-acr-mapper",
1124
+ "consentRequired" : false,
1125
+ "config" : {
1126
+ "id.token.claim" : "true",
1127
+ "introspection.token.claim" : "true",
1128
+ "access.token.claim" : "true"
1129
+ }
1130
+ } ]
1131
+ }, {
1132
+ "id" : "8c2fcba8-7f90-4886-a38e-6c4886ba31b6",
1133
+ "name" : "role_list",
1134
+ "description" : "SAML role list",
1135
+ "protocol" : "saml",
1136
+ "attributes" : {
1137
+ "consent.screen.text" : "${samlRoleListScopeConsentText}",
1138
+ "display.on.consent.screen" : "true"
1139
+ },
1140
+ "protocolMappers" : [ {
1141
+ "id" : "8b11bff0-0f04-4192-b495-10d24c9a2db6",
1142
+ "name" : "role list",
1143
+ "protocol" : "saml",
1144
+ "protocolMapper" : "saml-role-list-mapper",
1145
+ "consentRequired" : false,
1146
+ "config" : {
1147
+ "single" : "false",
1148
+ "attribute.nameformat" : "Basic",
1149
+ "attribute.name" : "Role"
1150
+ }
1151
+ } ]
1152
+ }, {
1153
+ "id" : "2bb8ae4e-429a-46b6-bbf9-86e0e6351088",
1154
+ "name" : "address",
1155
+ "description" : "OpenID Connect built-in scope: address",
1156
+ "protocol" : "openid-connect",
1157
+ "attributes" : {
1158
+ "include.in.token.scope" : "true",
1159
+ "display.on.consent.screen" : "true",
1160
+ "consent.screen.text" : "${addressScopeConsentText}"
1161
+ },
1162
+ "protocolMappers" : [ {
1163
+ "id" : "6e73feb6-eef7-4b29-bebb-37d6e6164e36",
1164
+ "name" : "address",
1165
+ "protocol" : "openid-connect",
1166
+ "protocolMapper" : "oidc-address-mapper",
1167
+ "consentRequired" : false,
1168
+ "config" : {
1169
+ "user.attribute.formatted" : "formatted",
1170
+ "user.attribute.country" : "country",
1171
+ "introspection.token.claim" : "true",
1172
+ "user.attribute.postal_code" : "postal_code",
1173
+ "userinfo.token.claim" : "true",
1174
+ "user.attribute.street" : "street",
1175
+ "id.token.claim" : "true",
1176
+ "user.attribute.region" : "region",
1177
+ "access.token.claim" : "true",
1178
+ "user.attribute.locality" : "locality"
1179
+ }
1180
+ } ]
1181
+ }, {
1182
+ "id" : "460e0d62-c6c8-47a9-ad5c-88892c46ea3c",
1183
+ "name" : "email",
1184
+ "description" : "OpenID Connect built-in scope: email",
1185
+ "protocol" : "openid-connect",
1186
+ "attributes" : {
1187
+ "include.in.token.scope" : "true",
1188
+ "display.on.consent.screen" : "true",
1189
+ "consent.screen.text" : "${emailScopeConsentText}"
1190
+ },
1191
+ "protocolMappers" : [ {
1192
+ "id" : "e2bc4206-7da3-40dc-879f-9f026174ce6f",
1193
+ "name" : "email",
1194
+ "protocol" : "openid-connect",
1195
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
1196
+ "consentRequired" : false,
1197
+ "config" : {
1198
+ "introspection.token.claim" : "true",
1199
+ "userinfo.token.claim" : "true",
1200
+ "user.attribute" : "email",
1201
+ "id.token.claim" : "true",
1202
+ "access.token.claim" : "true",
1203
+ "claim.name" : "email",
1204
+ "jsonType.label" : "String"
1205
+ }
1206
+ }, {
1207
+ "id" : "39feb7cf-849a-4963-bac9-cfe27bc6f8fb",
1208
+ "name" : "email verified",
1209
+ "protocol" : "openid-connect",
1210
+ "protocolMapper" : "oidc-usermodel-property-mapper",
1211
+ "consentRequired" : false,
1212
+ "config" : {
1213
+ "introspection.token.claim" : "true",
1214
+ "userinfo.token.claim" : "true",
1215
+ "user.attribute" : "emailVerified",
1216
+ "id.token.claim" : "true",
1217
+ "access.token.claim" : "true",
1218
+ "claim.name" : "email_verified",
1219
+ "jsonType.label" : "boolean"
1220
+ }
1221
+ } ]
1222
+ }, {
1223
+ "id" : "d8b6274a-b476-4958-897d-5c2cfa568628",
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" : "755f0dc2-7f80-4055-a308-645e52859848",
1234
+ "name" : "phone number",
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" : "phoneNumber",
1242
+ "id.token.claim" : "true",
1243
+ "access.token.claim" : "true",
1244
+ "claim.name" : "phone_number",
1245
+ "jsonType.label" : "String"
1246
+ }
1247
+ }, {
1248
+ "id" : "3934a716-9e9b-458f-9b52-f729eee558ce",
1249
+ "name" : "phone number verified",
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" : "phoneNumberVerified",
1257
+ "id.token.claim" : "true",
1258
+ "access.token.claim" : "true",
1259
+ "claim.name" : "phone_number_verified",
1260
+ "jsonType.label" : "boolean"
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" : "809942ee-4a37-4f8e-8334-76ca6fa5255d",
1287
+ "name" : "Trusted Hosts",
1288
+ "providerId" : "trusted-hosts",
1289
+ "subType" : "anonymous",
1290
+ "subComponents" : { },
1291
+ "config" : {
1292
+ "host-sending-registration-request-must-match" : [ "true" ],
1293
+ "client-uris-must-match" : [ "true" ]
1294
+ }
1295
+ }, {
1296
+ "id" : "1885d173-ed14-4889-ac04-a253425eade9",
1297
+ "name" : "Allowed Protocol Mapper Types",
1298
+ "providerId" : "allowed-protocol-mappers",
1299
+ "subType" : "authenticated",
1300
+ "subComponents" : { },
1301
+ "config" : {
1302
+ "allowed-protocol-mapper-types" : [ "saml-user-property-mapper", "oidc-full-name-mapper", "oidc-usermodel-property-mapper", "saml-role-list-mapper", "oidc-sha256-pairwise-sub-mapper", "oidc-address-mapper", "oidc-usermodel-attribute-mapper", "saml-user-attribute-mapper" ]
1303
+ }
1304
+ }, {
1305
+ "id" : "6b07fb1c-ec29-4cbd-8c9f-dd9aadd257aa",
1306
+ "name" : "Allowed Client Scopes",
1307
+ "providerId" : "allowed-client-templates",
1308
+ "subType" : "authenticated",
1309
+ "subComponents" : { },
1310
+ "config" : {
1311
+ "allow-default-scopes" : [ "true" ]
1312
+ }
1313
+ }, {
1314
+ "id" : "f7a9a504-1fae-4f7b-b83f-ed2c32d488be",
1315
+ "name" : "Full Scope Disabled",
1316
+ "providerId" : "scope",
1317
+ "subType" : "anonymous",
1318
+ "subComponents" : { },
1319
+ "config" : { }
1320
+ }, {
1321
+ "id" : "2c00f90a-a503-4bc0-b73c-5ec745fe929b",
1322
+ "name" : "Consent Required",
1323
+ "providerId" : "consent-required",
1324
+ "subType" : "anonymous",
1325
+ "subComponents" : { },
1326
+ "config" : { }
1327
+ }, {
1328
+ "id" : "ddea66c4-e19d-415c-9830-1d6850fba6c8",
1329
+ "name" : "Max Clients Limit",
1330
+ "providerId" : "max-clients",
1331
+ "subType" : "anonymous",
1332
+ "subComponents" : { },
1333
+ "config" : {
1334
+ "max-clients" : [ "200" ]
1335
+ }
1336
+ }, {
1337
+ "id" : "54f5ecf3-e8f2-41ab-a3cb-ec1ca60b61cf",
1338
+ "name" : "Allowed Protocol Mapper Types",
1339
+ "providerId" : "allowed-protocol-mappers",
1340
+ "subType" : "anonymous",
1341
+ "subComponents" : { },
1342
+ "config" : {
1343
+ "allowed-protocol-mapper-types" : [ "oidc-usermodel-property-mapper", "saml-role-list-mapper", "oidc-sha256-pairwise-sub-mapper", "oidc-usermodel-attribute-mapper", "saml-user-property-mapper", "oidc-address-mapper", "oidc-full-name-mapper", "saml-user-attribute-mapper" ]
1344
+ }
1345
+ }, {
1346
+ "id" : "8489c346-da73-42fb-a869-26cccbe98bdb",
1347
+ "name" : "Allowed Client Scopes",
1348
+ "providerId" : "allowed-client-templates",
1349
+ "subType" : "anonymous",
1350
+ "subComponents" : { },
1351
+ "config" : {
1352
+ "allow-default-scopes" : [ "true" ]
1353
+ }
1354
+ } ],
1355
+ "org.keycloak.keys.KeyProvider" : [ {
1356
+ "id" : "80df4aa4-1856-4eca-9a99-833017e97218",
1357
+ "name" : "aes-generated",
1358
+ "providerId" : "aes-generated",
1359
+ "subComponents" : { },
1360
+ "config" : {
1361
+ "kid" : [ "5f94da98-0937-4316-bc86-1fa93b4ac269" ],
1362
+ "secret" : [ "x2ef0JnaK30QTOB-6qFUAQ" ],
1363
+ "priority" : [ "100" ]
1364
+ }
1365
+ }, {
1366
+ "id" : "854c3cab-0ffe-40a9-ad2b-c374480b5000",
1367
+ "name" : "hmac-generated",
1368
+ "providerId" : "hmac-generated",
1369
+ "subComponents" : { },
1370
+ "config" : {
1371
+ "kid" : [ "91912f9c-3865-4d2b-bec3-045098bc5a99" ],
1372
+ "secret" : [ "gPmYO2u4FFIUK6OF9YtImHc6h-7zK4Z5X1MbxoFgcOl5ZASsdzZAvggZ7tCZwR2a4SBcVEJAjkm-EXI0ah5uDQ" ],
1373
+ "priority" : [ "100" ],
1374
+ "algorithm" : [ "HS256" ]
1375
+ }
1376
+ }, {
1377
+ "id" : "8ce7003f-7bfc-4f69-ab43-991138c1d939",
1378
+ "name" : "rsa-enc-generated",
1379
+ "providerId" : "rsa-enc-generated",
1380
+ "subComponents" : { },
1381
+ "config" : {
1382
+ "privateKey" : [ "MIIEogIBAAKCAQEAxEgYeo58moiSaKhPHVh3BpPRZq+D0LKnWcRjZ/HT2qKUmZ3vVjLRt8uqJjtxSzLZaNhnyQvwsU7+sklXQoh7oTpr4wJDo6X5PSNe1NwGpFAd5J6+U7gHJ3Z2GImNkpdQNluAzZsjBWQG+cdlqmowceEAr3AH/pDobovAbUzoLTZ38LRMBNL6cZxvETQlA32aCFzklDFmnklj4d8iuVNE1PSUwGAMwR6Yb3rX3UiZqRUj8zJyJBVRmxmwPBOS5fJI8ZJNTUZaDU2yuqSSWVjQ0oi8RmRwp8djZpfVgi1CkwVwDg05Yp4dz1kHToiWqFTCgRzSHZRV1aCdU8mVIRUORwIDAQABAoIBAAXSAVgWFV6vEd8Gz/yzruSseJYvGEPIyPVrhZWhUj/jTZJtgoh2DpaR41aHfj+3tGSlBEguBML6ke079j/zuLpAxFcZC+x9AlzudCRWmYoWRbOWYiUKp6pSI/woWel3M4dppYvVZicWvIuvQvXxq/fAyQEd/bWhRYodpRxr0ZE7NA55gRNip0rWYdP1KfEtevv6cSiZYWiHknkmTTRFFB73GM49VVy8N7Pi55MJDsV4YaKWMq4hLls2lIz73VqxKP6Bqc5zCoTGua+DW+RLmu/GLbkqe/f59F4haofxjsSVGVcsqrqE8n+43KUhrmc1n9E9vJMV9ctGWEV1rRQ7DhkCgYEA5VbC/BpmasyO0DQQWMw+/fKjfGkki/jHe40SKFv9BsN7nI70pSmSa35VsCjrjQxJVjfZ8Njx0ukwrtZSYgc86xd+Q/v8PTamUmvDpYJILXGyKKm6WuCSYwQQel27KkTnLhgGbp4eRSppw0NNCbFSJPexpytTx71j38W9wi0dJXkCgYEA2xmIaKfwvfm19E2blHmtcZXaze7dyBI8VyloX3rj/50VCvf0JiuNrlpo5VsHVOFfTRsdE8B5zm12d2kUvOjB8JupTXJbNgcD0zc1qYFzFs/OQGjjmSmHAaokzhLN2i4pEdbQdRVT667t6K5cAR8R9DqDkQaDGDjqFj1KExmtob8CgYARveqLskcmD/kkZkK1e+eLoc+/+ipXocFc74buFF+4vDq929lVRagMJNPgMuo2GTM7Nkrn9QCQPnYDsJTi/Ihb749XFxFmcunfCnMyRKfszBTqTGccTK9GdbQIo2OtW3M+/6DPwe+5jhRshLJbA5rFPVxDAHkUxLQLRbLuaKsOkQKBgA0Rf85mPfjG3TB+NIptm4fL3WotFjNpywmT4bLYPKMxdmDaG0jvjhrZL6qGfHB2pN2PgXN9JobGhqtmrCL8axzz2+xPptsZHgRKJbw/iWLR8EZtOy4WiQPzZxCXlImv+SkkO/jP1dqX637Wb4xtkv+TQeezkLwwIN5Et5deD7o3AoGAcsxQAkvzYwiAuKlm1+9gt0Ec/abTZroooa10t1lUzhakc4zAITh5g9PRxnBvTuLmpO1YAa2SPeBFBhy7hNsyNG5Os/7HqZu/iUcysIHgSIOoA7iihrVXM9hICFqMdsDsJiopB9Sz3RUBgfut1GI/gsWX94rfyq5+6c5aTB+q4ps=" ],
1383
+ "keyUse" : [ "ENC" ],
1384
+ "certificate" : [ "MIICmzCCAYMCBgGN5EU93DANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDDAZtYXN0ZXIwHhcNMjQwMjI2MDcxNDE5WhcNMzQwMjI2MDcxNTU5WjARMQ8wDQYDVQQDDAZtYXN0ZXIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDESBh6jnyaiJJoqE8dWHcGk9Fmr4PQsqdZxGNn8dPaopSZne9WMtG3y6omO3FLMtlo2GfJC/CxTv6ySVdCiHuhOmvjAkOjpfk9I17U3AakUB3knr5TuAcndnYYiY2Sl1A2W4DNmyMFZAb5x2WqajBx4QCvcAf+kOhui8BtTOgtNnfwtEwE0vpxnG8RNCUDfZoIXOSUMWaeSWPh3yK5U0TU9JTAYAzBHphvetfdSJmpFSPzMnIkFVGbGbA8E5Ll8kjxkk1NRloNTbK6pJJZWNDSiLxGZHCnx2Nml9WCLUKTBXAODTlinh3PWQdOiJaoVMKBHNIdlFXVoJ1TyZUhFQ5HAgMBAAEwDQYJKoZIhvcNAQELBQADggEBAI1FXRPkpqYTPRWCgflRDEUZmFl0PvMI4JwAouXSDR2QGVC80ayWfIaGBj+Htd6v/EZ6nhBgVpGscOEMxr11MxQ2trtsdnL7SDkyuF2su2evKgojp9U3SVLsCbGIEZFipm0ug5txny7o1gK7ksDWFnNrLvSzMTR2MiJCDR7v2HyigD8DnDjU6kPAhLjqYN62H0XWegfRN90LK70YupLqd2i1tZbIrzz0DWAT2lA5zwtWtQYnrJ0J+5ZLNkAIc85wb+TR92lbp50L6jW+nOCvLebnt/00CVIvddRE/0oU42keKwOtwLuFtqciVjA2cQ5RIYhZsUTu26FwKp+joaQas1M=" ],
1385
+ "priority" : [ "100" ],
1386
+ "algorithm" : [ "RSA-OAEP" ]
1387
+ }
1388
+ }, {
1389
+ "id" : "36b29328-7aa7-482c-ab8a-af27f582b6f5",
1390
+ "name" : "rsa-generated",
1391
+ "providerId" : "rsa-generated",
1392
+ "subComponents" : { },
1393
+ "config" : {
1394
+ "privateKey" : [ "MIIEowIBAAKCAQEAy+eZzWYRQCNP3AvqpTwVuWyK1w2tu4/2W2XozIoBfhIEPE+nBkP0bkTmHd+eJfyvD+T57nONT92IOw23iYSWDSAkwW498d8oj/NLanafMwacMLhHCSajN1AAcV+1ZDoePOomBvd+MABwLe1X8MvQQZuCdbBmI5MB0BuR1Rg3yuHt0sn5O0P5EVJRwQIGgIsm/pv2p3eVoPRmHJYQefLGQtjq5E6ssSFABuhlQtkD/tQy3/1wtBlFMF2h3i37Umb7anCE1Mil6LlhQw+Si3U6fP4+4XWS6k06vDmmU50WlLSroPLfxoXYdC9Xky1bH50fQz8UoH/LNviOA0qXQg95swIDAQABAoIBAE3w4naD7FYi6VTIbVHpzLgLCGs5vE30souvQbRlkDp7cokHPWYEtbsstPV4U8BbfSNLOEnwe3SqznccQCrdtmmf/sy9cgoxbhTQP+SbITFk9nEdD3ItBbiP6QttNS3xlTtdmVmSYvbARCEaF0Jg9eMOKWkJG5G/kLLWxwC4eCMhWJPLSkpY74IWuwMa441S1Mxv4evnKS49RiAIiIl7wK6Xe7UFMzskHjsLGi1HCCwll3KK6IrRuHLLT82IsxmdZeM5U7+rHMSr0pp1tiC2jOAkJcG8uKlATQeJ/yDIJ9utaT1GR6nJ8Sj5MJqs63VHj6D5p9+xrw2fzB6UUmoq6BkCgYEA52jM3b73e6QFNQVt5lfT12yQksUT0B3kOpSAlin3rY5omKGGdDyTJ5X3ocUkg2RqvNHKZAPNYgqdxa+NdbL7Tw2JF7DI/a4HqX3J8rhiBuGsnW2y7VXh7avNvaJT1UIO8Jo6NyDovzctZ4HcFJbl9q/g/0rCeXSzSjEw628PKC8CgYEA4ZKR/+Mm+hcUbPHNbYvo0kVNSjIRT/T7TH7ULomIO0XQko38XcWrzxi+7C4I0OSqrxZR67bYHzsW6TPyMnn7laEQRcbH7Xn5suIJIZKgR/yiuH9f57/CSzdTWHOR3a12VcH2KIS7guUeiQeAch3fv/omGreCvEz0yq3T92ZrYb0CgYBimjg5AEcJqvEBD6gtbxz3/O15bHotwp7eCyrjUUyU6kpNRv44hxsY0gDrMEqHpgEJJcc8aJZaATYK5uu6zCHjJFxW+OAbn8zp/oxPXRt/3SclCXolQOP81qja9dEM3JHrGXxWwzIJUCSLpzy0lTu1qmmPvjYxdHV01pMGrpLhxwKBgCDl1XEyWb7jmtEAuusdGomAHfOSNcAphHT1klBvMnUii3a0SngKmjIL89xSImsEznfWk4ADHKYBYigEsW/3Jl/+K3dhtErIHUifeqFw1vtotvqdaQlNiDKcEQW3ZTClWbrMHPBv20EN1VQ6ydrazIUdIG2JEgIQXysoCt/sCgEpAoGBANpSDW9Ynk57MCHKHhHlZxx1NIweFF+DMRU9KWTmLQN92TzjBGTRcikluFPSrp0lYoRWQhv+u6s8EdsZZFb0m8aP5Gk+P7/o8bN9Vbn4zjN8GLfhnm5wYNpX1qJI/5O98Ey2ljeGQmpJFAoGJeArvRCL26DEOx4rNYvPMSlerar8" ],
1395
+ "keyUse" : [ "SIG" ],
1396
+ "certificate" : [ "MIICmzCCAYMCBgGN5EU1ozANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDDAZtYXN0ZXIwHhcNMjQwMjI2MDcxNDE3WhcNMzQwMjI2MDcxNTU3WjARMQ8wDQYDVQQDDAZtYXN0ZXIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDL55nNZhFAI0/cC+qlPBW5bIrXDa27j/ZbZejMigF+EgQ8T6cGQ/RuROYd354l/K8P5Pnuc41P3Yg7DbeJhJYNICTBbj3x3yiP80tqdp8zBpwwuEcJJqM3UABxX7VkOh486iYG934wAHAt7Vfwy9BBm4J1sGYjkwHQG5HVGDfK4e3Syfk7Q/kRUlHBAgaAiyb+m/and5Wg9GYclhB58sZC2OrkTqyxIUAG6GVC2QP+1DLf/XC0GUUwXaHeLftSZvtqcITUyKXouWFDD5KLdTp8/j7hdZLqTTq8OaZTnRaUtKug8t/Ghdh0L1eTLVsfnR9DPxSgf8s2+I4DSpdCD3mzAgMBAAEwDQYJKoZIhvcNAQELBQADggEBALfA6pXO6arm2s0hZ8QkcBGdJaG4rqeW3HSWtuDgmX0nyGXJgwmleUUaOGSUlLzAwm5rh2+AXWjxRavBrQCoA31MfZdKFqvZaU3wOc0I3DbfzVqTBoJXRKY0rzRHmIlU0UuarpDRH9cEgy+snr3ZHuRSQM0To8i3NfJLlH33W4FrGG1V3CM7b2PPrKGS5g/W4wxmExj2cMmvggHVinxgTFXt67e9a6RGouIQ0peTNBS7E150V/+JZlg+O0CqmZTnl+HIqq1VcjwrrrYhiCUf1x092TdMrk4bSd7EFrsRhb9dk1MyqxnTHO9qkokqDoSKtj/mDkSjFH8s49FprPzte6s=" ],
1397
+ "priority" : [ "100" ]
1398
+ }
1399
+ } ]
1400
+ },
1401
+ "internationalizationEnabled" : false,
1402
+ "supportedLocales" : [ ],
1403
+ "authenticationFlows" : [ {
1404
+ "id" : "59a83814-79ec-4cdf-9bee-f35c9fdb9d36",
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" : "be02e666-b7c9-4af6-b448-05a39cfd8c82",
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" : "becced9a-b3a8-45ff-9c31-0976c63ef990",
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" : "54e193cb-c7a2-4972-8b19-d315ea0e620c",
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" : "21133ec2-a6c8-45a2-9fae-767541dd1181",
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" : "07196bce-6cd9-4355-a006-f40a642dc6e4",
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" : "2a50e0d1-8f8d-42a4-b899-8052b9c5eaf7",
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" : "c1aee8e5-429b-44f2-8ea0-5d998a915895",
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" : "c1db56d5-89c8-469c-95ea-3a34b053ba36",
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" : "0b36e305-e6d3-4379-bd97-e51328409d20",
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" : "a0e21661-b966-4c02-a96d-6892781fa76d",
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" : "946cb346-72e5-4052-a121-6afd54af2346",
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" : "79597fb7-0fed-4363-b621-71282a4685d1",
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" : "4c691668-4e1c-4104-bd88-0d2bf23dce08",
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" : "092e91db-d0f6-4eb6-bb6b-a12c0d8dfe7d",
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" : "53dea23e-7cb1-4055-8467-d1a9a03655ea",
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" : "d8c1610f-3514-435f-b986-41f8a034201d",
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" : "32b78892-f654-4815-88ce-d13e801a5c44",
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" : "0bf3a40c-649a-4ccb-8ec5-90af32f28a05",
1847
+ "alias" : "create unique user config",
1848
+ "config" : {
1849
+ "require.password.update.after.registration" : "false"
1850
+ }
1851
+ }, {
1852
+ "id" : "a36dc6eb-3929-4278-91c7-ef1700c3a66f",
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
+ }