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,1807 @@
1
+ {
2
+ "id" : "829711f6-8cfc-478f-b78d-8517e632f51c",
3
+ "realm" : "kcals",
4
+ "notBefore" : 0,
5
+ "defaultSignatureAlgorithm" : "RS256",
6
+ "revokeRefreshToken" : false,
7
+ "refreshTokenMaxReuse" : 0,
8
+ "accessTokenLifespan" : 300,
9
+ "accessTokenLifespanForImplicitFlow" : 900,
10
+ "ssoSessionIdleTimeout" : 1800,
11
+ "ssoSessionMaxLifespan" : 36000,
12
+ "ssoSessionIdleTimeoutRememberMe" : 0,
13
+ "ssoSessionMaxLifespanRememberMe" : 0,
14
+ "offlineSessionIdleTimeout" : 2592000,
15
+ "offlineSessionMaxLifespanEnabled" : false,
16
+ "offlineSessionMaxLifespan" : 5184000,
17
+ "clientSessionIdleTimeout" : 0,
18
+ "clientSessionMaxLifespan" : 0,
19
+ "clientOfflineSessionIdleTimeout" : 0,
20
+ "clientOfflineSessionMaxLifespan" : 0,
21
+ "accessCodeLifespan" : 60,
22
+ "accessCodeLifespanUserAction" : 300,
23
+ "accessCodeLifespanLogin" : 1800,
24
+ "actionTokenGeneratedByAdminLifespan" : 43200,
25
+ "actionTokenGeneratedByUserLifespan" : 300,
26
+ "oauth2DeviceCodeLifespan" : 600,
27
+ "oauth2DevicePollingInterval" : 5,
28
+ "enabled" : true,
29
+ "sslRequired" : "external",
30
+ "registrationAllowed" : false,
31
+ "registrationEmailAsUsername" : false,
32
+ "rememberMe" : false,
33
+ "verifyEmail" : false,
34
+ "loginWithEmailAllowed" : true,
35
+ "duplicateEmailsAllowed" : false,
36
+ "resetPasswordAllowed" : false,
37
+ "editUsernameAllowed" : false,
38
+ "bruteForceProtected" : false,
39
+ "permanentLockout" : false,
40
+ "maxFailureWaitSeconds" : 900,
41
+ "minimumQuickLoginWaitSeconds" : 60,
42
+ "waitIncrementSeconds" : 60,
43
+ "quickLoginCheckMilliSeconds" : 1000,
44
+ "maxDeltaTimeSeconds" : 43200,
45
+ "failureFactor" : 30,
46
+ "roles" : {
47
+ "realm" : [ {
48
+ "id" : "560dfab2-5bf6-4c88-9cff-56bded05ab07",
49
+ "name" : "uma_authorization",
50
+ "description" : "${role_uma_authorization}",
51
+ "composite" : false,
52
+ "clientRole" : false,
53
+ "containerId" : "829711f6-8cfc-478f-b78d-8517e632f51c",
54
+ "attributes" : { }
55
+ }, {
56
+ "id" : "50de895c-812b-4c02-9d03-bd882d6b7492",
57
+ "name" : "default-roles-kcals",
58
+ "description" : "${role_default-roles}",
59
+ "composite" : true,
60
+ "composites" : {
61
+ "realm" : [ "offline_access", "uma_authorization" ],
62
+ "client" : {
63
+ "account" : [ "view-profile", "manage-account" ]
64
+ }
65
+ },
66
+ "clientRole" : false,
67
+ "containerId" : "829711f6-8cfc-478f-b78d-8517e632f51c",
68
+ "attributes" : { }
69
+ }, {
70
+ "id" : "3c1011cb-8549-4c67-858b-e770c966a369",
71
+ "name" : "offline_access",
72
+ "description" : "${role_offline-access}",
73
+ "composite" : false,
74
+ "clientRole" : false,
75
+ "containerId" : "829711f6-8cfc-478f-b78d-8517e632f51c",
76
+ "attributes" : { }
77
+ } ],
78
+ "client" : {
79
+ "realm-management" : [ {
80
+ "id" : "d38780de-417c-4f2c-8946-4b1895b0aeef",
81
+ "name" : "query-clients",
82
+ "description" : "${role_query-clients}",
83
+ "composite" : false,
84
+ "clientRole" : true,
85
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
86
+ "attributes" : { }
87
+ }, {
88
+ "id" : "19dc9ab1-dcc2-4536-8d73-38f7465f9ba3",
89
+ "name" : "query-users",
90
+ "description" : "${role_query-users}",
91
+ "composite" : false,
92
+ "clientRole" : true,
93
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
94
+ "attributes" : { }
95
+ }, {
96
+ "id" : "d2df6e1e-5834-4794-a65b-bf05d6da604f",
97
+ "name" : "manage-authorization",
98
+ "description" : "${role_manage-authorization}",
99
+ "composite" : false,
100
+ "clientRole" : true,
101
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
102
+ "attributes" : { }
103
+ }, {
104
+ "id" : "75ad425a-e082-4efe-a50b-078201043718",
105
+ "name" : "manage-events",
106
+ "description" : "${role_manage-events}",
107
+ "composite" : false,
108
+ "clientRole" : true,
109
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
110
+ "attributes" : { }
111
+ }, {
112
+ "id" : "1555d178-0870-4687-a5e4-c7c49e47cf85",
113
+ "name" : "view-identity-providers",
114
+ "description" : "${role_view-identity-providers}",
115
+ "composite" : false,
116
+ "clientRole" : true,
117
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
118
+ "attributes" : { }
119
+ }, {
120
+ "id" : "b340cc3e-a269-4fd9-9486-a938f3f6c4f2",
121
+ "name" : "view-clients",
122
+ "description" : "${role_view-clients}",
123
+ "composite" : true,
124
+ "composites" : {
125
+ "client" : {
126
+ "realm-management" : [ "query-clients" ]
127
+ }
128
+ },
129
+ "clientRole" : true,
130
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
131
+ "attributes" : { }
132
+ }, {
133
+ "id" : "aa920c65-f101-4f03-8b95-92193b0daeea",
134
+ "name" : "view-users",
135
+ "description" : "${role_view-users}",
136
+ "composite" : true,
137
+ "composites" : {
138
+ "client" : {
139
+ "realm-management" : [ "query-users", "query-groups" ]
140
+ }
141
+ },
142
+ "clientRole" : true,
143
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
144
+ "attributes" : { }
145
+ }, {
146
+ "id" : "d166f8a3-34ad-4f0c-a87e-eb395d3a0fe8",
147
+ "name" : "view-events",
148
+ "description" : "${role_view-events}",
149
+ "composite" : false,
150
+ "clientRole" : true,
151
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
152
+ "attributes" : { }
153
+ }, {
154
+ "id" : "9b8557cc-1b4e-4642-8452-b6a513ab2d0f",
155
+ "name" : "query-realms",
156
+ "description" : "${role_query-realms}",
157
+ "composite" : false,
158
+ "clientRole" : true,
159
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
160
+ "attributes" : { }
161
+ }, {
162
+ "id" : "246682c7-0d9b-482a-ba88-a3aa0345d968",
163
+ "name" : "manage-users",
164
+ "description" : "${role_manage-users}",
165
+ "composite" : false,
166
+ "clientRole" : true,
167
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
168
+ "attributes" : { }
169
+ }, {
170
+ "id" : "615916c4-9fc7-4cbf-9fba-591af5390e86",
171
+ "name" : "manage-clients",
172
+ "description" : "${role_manage-clients}",
173
+ "composite" : false,
174
+ "clientRole" : true,
175
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
176
+ "attributes" : { }
177
+ }, {
178
+ "id" : "d54abfcf-5f73-41a2-a164-b39ef9e09b07",
179
+ "name" : "realm-admin",
180
+ "description" : "${role_realm-admin}",
181
+ "composite" : true,
182
+ "composites" : {
183
+ "client" : {
184
+ "realm-management" : [ "query-users", "query-clients", "manage-authorization", "manage-events", "view-identity-providers", "view-clients", "view-users", "view-events", "query-realms", "manage-users", "manage-clients", "manage-identity-providers", "query-groups", "view-authorization", "impersonation", "view-realm", "create-client", "manage-realm" ]
185
+ }
186
+ },
187
+ "clientRole" : true,
188
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
189
+ "attributes" : { }
190
+ }, {
191
+ "id" : "3fa3e7bc-c5d5-45a6-bd88-69b68085edf8",
192
+ "name" : "manage-identity-providers",
193
+ "description" : "${role_manage-identity-providers}",
194
+ "composite" : false,
195
+ "clientRole" : true,
196
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
197
+ "attributes" : { }
198
+ }, {
199
+ "id" : "66bb9a1f-b554-437c-ab22-ca5f0b14d8fd",
200
+ "name" : "query-groups",
201
+ "description" : "${role_query-groups}",
202
+ "composite" : false,
203
+ "clientRole" : true,
204
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
205
+ "attributes" : { }
206
+ }, {
207
+ "id" : "134c94c8-0d43-4229-831e-34e316935878",
208
+ "name" : "view-authorization",
209
+ "description" : "${role_view-authorization}",
210
+ "composite" : false,
211
+ "clientRole" : true,
212
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
213
+ "attributes" : { }
214
+ }, {
215
+ "id" : "08452022-b3ea-4018-915d-13254e284316",
216
+ "name" : "impersonation",
217
+ "description" : "${role_impersonation}",
218
+ "composite" : false,
219
+ "clientRole" : true,
220
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
221
+ "attributes" : { }
222
+ }, {
223
+ "id" : "cbb34606-e962-4d34-a92e-07281f25fd66",
224
+ "name" : "view-realm",
225
+ "description" : "${role_view-realm}",
226
+ "composite" : false,
227
+ "clientRole" : true,
228
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
229
+ "attributes" : { }
230
+ }, {
231
+ "id" : "c30f2938-216c-4749-ab7b-e1af910cfcc4",
232
+ "name" : "create-client",
233
+ "description" : "${role_create-client}",
234
+ "composite" : false,
235
+ "clientRole" : true,
236
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
237
+ "attributes" : { }
238
+ }, {
239
+ "id" : "f5d1ffc9-56a0-49d8-ba66-fc921dfa659f",
240
+ "name" : "manage-realm",
241
+ "description" : "${role_manage-realm}",
242
+ "composite" : false,
243
+ "clientRole" : true,
244
+ "containerId" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
245
+ "attributes" : { }
246
+ } ],
247
+ "security-admin-console" : [ ],
248
+ "admin-cli" : [ ],
249
+ "account-console" : [ ],
250
+ "broker" : [ {
251
+ "id" : "b600f36e-cb50-4818-9c9a-d438647f9c60",
252
+ "name" : "read-token",
253
+ "description" : "${role_read-token}",
254
+ "composite" : false,
255
+ "clientRole" : true,
256
+ "containerId" : "44d5731d-be40-414c-9498-f7876d4bb65a",
257
+ "attributes" : { }
258
+ } ],
259
+ "account" : [ {
260
+ "id" : "83b7356f-9e50-4289-9c49-8ac22d6bbf32",
261
+ "name" : "manage-consent",
262
+ "description" : "${role_manage-consent}",
263
+ "composite" : true,
264
+ "composites" : {
265
+ "client" : {
266
+ "account" : [ "view-consent" ]
267
+ }
268
+ },
269
+ "clientRole" : true,
270
+ "containerId" : "3de7f5ff-71e4-4c12-83e5-6a8eaf2aa872",
271
+ "attributes" : { }
272
+ }, {
273
+ "id" : "d1226e92-36e9-4533-86d2-10e3dca5808f",
274
+ "name" : "manage-account-links",
275
+ "description" : "${role_manage-account-links}",
276
+ "composite" : false,
277
+ "clientRole" : true,
278
+ "containerId" : "3de7f5ff-71e4-4c12-83e5-6a8eaf2aa872",
279
+ "attributes" : { }
280
+ }, {
281
+ "id" : "a34cf931-e232-429e-b0cc-712c00bee2ac",
282
+ "name" : "view-groups",
283
+ "description" : "${role_view-groups}",
284
+ "composite" : false,
285
+ "clientRole" : true,
286
+ "containerId" : "3de7f5ff-71e4-4c12-83e5-6a8eaf2aa872",
287
+ "attributes" : { }
288
+ }, {
289
+ "id" : "5edbf972-7394-43ed-846a-9234ee08df7d",
290
+ "name" : "view-applications",
291
+ "description" : "${role_view-applications}",
292
+ "composite" : false,
293
+ "clientRole" : true,
294
+ "containerId" : "3de7f5ff-71e4-4c12-83e5-6a8eaf2aa872",
295
+ "attributes" : { }
296
+ }, {
297
+ "id" : "ff25a873-7a8b-4741-bab5-6e97f29385ac",
298
+ "name" : "view-consent",
299
+ "description" : "${role_view-consent}",
300
+ "composite" : false,
301
+ "clientRole" : true,
302
+ "containerId" : "3de7f5ff-71e4-4c12-83e5-6a8eaf2aa872",
303
+ "attributes" : { }
304
+ }, {
305
+ "id" : "bd4bd173-79c2-4d29-9284-055fab2605f1",
306
+ "name" : "delete-account",
307
+ "description" : "${role_delete-account}",
308
+ "composite" : false,
309
+ "clientRole" : true,
310
+ "containerId" : "3de7f5ff-71e4-4c12-83e5-6a8eaf2aa872",
311
+ "attributes" : { }
312
+ }, {
313
+ "id" : "13ebb489-9b93-4f18-a7fd-82d2e8b91465",
314
+ "name" : "view-profile",
315
+ "description" : "${role_view-profile}",
316
+ "composite" : false,
317
+ "clientRole" : true,
318
+ "containerId" : "3de7f5ff-71e4-4c12-83e5-6a8eaf2aa872",
319
+ "attributes" : { }
320
+ }, {
321
+ "id" : "ec48e09f-87a3-46d9-8c3b-88142db13c42",
322
+ "name" : "manage-account",
323
+ "description" : "${role_manage-account}",
324
+ "composite" : true,
325
+ "composites" : {
326
+ "client" : {
327
+ "account" : [ "manage-account-links" ]
328
+ }
329
+ },
330
+ "clientRole" : true,
331
+ "containerId" : "3de7f5ff-71e4-4c12-83e5-6a8eaf2aa872",
332
+ "attributes" : { }
333
+ } ],
334
+ "alsclient" : [ ]
335
+ }
336
+ },
337
+ "groups" : [ ],
338
+ "defaultRole" : {
339
+ "id" : "50de895c-812b-4c02-9d03-bd882d6b7492",
340
+ "name" : "default-roles-kcals",
341
+ "description" : "${role_default-roles}",
342
+ "composite" : true,
343
+ "clientRole" : false,
344
+ "containerId" : "829711f6-8cfc-478f-b78d-8517e632f51c"
345
+ },
346
+ "requiredCredentials" : [ "password" ],
347
+ "otpPolicyType" : "totp",
348
+ "otpPolicyAlgorithm" : "HmacSHA1",
349
+ "otpPolicyInitialCounter" : 0,
350
+ "otpPolicyDigits" : 6,
351
+ "otpPolicyLookAheadWindow" : 1,
352
+ "otpPolicyPeriod" : 30,
353
+ "otpPolicyCodeReusable" : false,
354
+ "otpSupportedApplications" : [ "totpAppFreeOTPName", "totpAppGoogleName", "totpAppMicrosoftAuthenticatorName" ],
355
+ "localizationTexts" : { },
356
+ "webAuthnPolicyRpEntityName" : "keycloak",
357
+ "webAuthnPolicySignatureAlgorithms" : [ "ES256" ],
358
+ "webAuthnPolicyRpId" : "",
359
+ "webAuthnPolicyAttestationConveyancePreference" : "not specified",
360
+ "webAuthnPolicyAuthenticatorAttachment" : "not specified",
361
+ "webAuthnPolicyRequireResidentKey" : "not specified",
362
+ "webAuthnPolicyUserVerificationRequirement" : "not specified",
363
+ "webAuthnPolicyCreateTimeout" : 0,
364
+ "webAuthnPolicyAvoidSameAuthenticatorRegister" : false,
365
+ "webAuthnPolicyAcceptableAaguids" : [ ],
366
+ "webAuthnPolicyExtraOrigins" : [ ],
367
+ "webAuthnPolicyPasswordlessRpEntityName" : "keycloak",
368
+ "webAuthnPolicyPasswordlessSignatureAlgorithms" : [ "ES256" ],
369
+ "webAuthnPolicyPasswordlessRpId" : "",
370
+ "webAuthnPolicyPasswordlessAttestationConveyancePreference" : "not specified",
371
+ "webAuthnPolicyPasswordlessAuthenticatorAttachment" : "not specified",
372
+ "webAuthnPolicyPasswordlessRequireResidentKey" : "not specified",
373
+ "webAuthnPolicyPasswordlessUserVerificationRequirement" : "not specified",
374
+ "webAuthnPolicyPasswordlessCreateTimeout" : 0,
375
+ "webAuthnPolicyPasswordlessAvoidSameAuthenticatorRegister" : false,
376
+ "webAuthnPolicyPasswordlessAcceptableAaguids" : [ ],
377
+ "webAuthnPolicyPasswordlessExtraOrigins" : [ ],
378
+ "scopeMappings" : [ {
379
+ "clientScope" : "offline_access",
380
+ "roles" : [ "offline_access" ]
381
+ } ],
382
+ "clientScopeMappings" : {
383
+ "account" : [ {
384
+ "client" : "account-console",
385
+ "roles" : [ "manage-account", "view-groups" ]
386
+ } ]
387
+ },
388
+ "clients" : [ {
389
+ "id" : "3de7f5ff-71e4-4c12-83e5-6a8eaf2aa872",
390
+ "clientId" : "account",
391
+ "name" : "${client_account}",
392
+ "rootUrl" : "${authBaseUrl}",
393
+ "baseUrl" : "/realms/kcals/account/",
394
+ "surrogateAuthRequired" : false,
395
+ "enabled" : true,
396
+ "alwaysDisplayInConsole" : false,
397
+ "clientAuthenticatorType" : "client-secret",
398
+ "redirectUris" : [ "/realms/kcals/account/*" ],
399
+ "webOrigins" : [ ],
400
+ "notBefore" : 0,
401
+ "bearerOnly" : false,
402
+ "consentRequired" : false,
403
+ "standardFlowEnabled" : true,
404
+ "implicitFlowEnabled" : false,
405
+ "directAccessGrantsEnabled" : false,
406
+ "serviceAccountsEnabled" : false,
407
+ "publicClient" : true,
408
+ "frontchannelLogout" : false,
409
+ "protocol" : "openid-connect",
410
+ "attributes" : {
411
+ "post.logout.redirect.uris" : "+"
412
+ },
413
+ "authenticationFlowBindingOverrides" : { },
414
+ "fullScopeAllowed" : false,
415
+ "nodeReRegistrationTimeout" : 0,
416
+ "defaultClientScopes" : [ "web-origins", "acr", "roles", "profile", "email" ],
417
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
418
+ }, {
419
+ "id" : "7e4ef6a3-a5da-4122-a5af-dfd14ddd708a",
420
+ "clientId" : "account-console",
421
+ "name" : "${client_account-console}",
422
+ "rootUrl" : "${authBaseUrl}",
423
+ "baseUrl" : "/realms/kcals/account/",
424
+ "surrogateAuthRequired" : false,
425
+ "enabled" : true,
426
+ "alwaysDisplayInConsole" : false,
427
+ "clientAuthenticatorType" : "client-secret",
428
+ "redirectUris" : [ "/realms/kcals/account/*" ],
429
+ "webOrigins" : [ ],
430
+ "notBefore" : 0,
431
+ "bearerOnly" : false,
432
+ "consentRequired" : false,
433
+ "standardFlowEnabled" : true,
434
+ "implicitFlowEnabled" : false,
435
+ "directAccessGrantsEnabled" : false,
436
+ "serviceAccountsEnabled" : false,
437
+ "publicClient" : true,
438
+ "frontchannelLogout" : false,
439
+ "protocol" : "openid-connect",
440
+ "attributes" : {
441
+ "post.logout.redirect.uris" : "+",
442
+ "pkce.code.challenge.method" : "S256"
443
+ },
444
+ "authenticationFlowBindingOverrides" : { },
445
+ "fullScopeAllowed" : false,
446
+ "nodeReRegistrationTimeout" : 0,
447
+ "protocolMappers" : [ {
448
+ "id" : "2a68ff9e-96fd-4194-9994-faf1eee59975",
449
+ "name" : "audience resolve",
450
+ "protocol" : "openid-connect",
451
+ "protocolMapper" : "oidc-audience-resolve-mapper",
452
+ "consentRequired" : false,
453
+ "config" : { }
454
+ } ],
455
+ "defaultClientScopes" : [ "web-origins", "acr", "roles", "profile", "email" ],
456
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
457
+ }, {
458
+ "id" : "30850cdf-5507-4fe9-9fe3-38053b4d7129",
459
+ "clientId" : "admin-cli",
460
+ "name" : "${client_admin-cli}",
461
+ "surrogateAuthRequired" : false,
462
+ "enabled" : true,
463
+ "alwaysDisplayInConsole" : false,
464
+ "clientAuthenticatorType" : "client-secret",
465
+ "redirectUris" : [ ],
466
+ "webOrigins" : [ ],
467
+ "notBefore" : 0,
468
+ "bearerOnly" : false,
469
+ "consentRequired" : false,
470
+ "standardFlowEnabled" : false,
471
+ "implicitFlowEnabled" : false,
472
+ "directAccessGrantsEnabled" : true,
473
+ "serviceAccountsEnabled" : false,
474
+ "publicClient" : true,
475
+ "frontchannelLogout" : false,
476
+ "protocol" : "openid-connect",
477
+ "attributes" : {
478
+ "post.logout.redirect.uris" : "+"
479
+ },
480
+ "authenticationFlowBindingOverrides" : { },
481
+ "fullScopeAllowed" : false,
482
+ "nodeReRegistrationTimeout" : 0,
483
+ "defaultClientScopes" : [ "web-origins", "acr", "roles", "profile", "email" ],
484
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
485
+ }, {
486
+ "id" : "8c42bad6-52a0-44d1-bb7b-c84c43a6ce25",
487
+ "clientId" : "alsclient",
488
+ "name" : "",
489
+ "description" : "",
490
+ "rootUrl" : "",
491
+ "adminUrl" : "",
492
+ "baseUrl" : "",
493
+ "surrogateAuthRequired" : false,
494
+ "enabled" : true,
495
+ "alwaysDisplayInConsole" : false,
496
+ "clientAuthenticatorType" : "client-secret",
497
+ "redirectUris" : [ "", "*" ],
498
+ "webOrigins" : [ "", "*", "http://localhost:3000/" ],
499
+ "notBefore" : 0,
500
+ "bearerOnly" : false,
501
+ "consentRequired" : false,
502
+ "standardFlowEnabled" : true,
503
+ "implicitFlowEnabled" : false,
504
+ "directAccessGrantsEnabled" : true,
505
+ "serviceAccountsEnabled" : false,
506
+ "publicClient" : true,
507
+ "frontchannelLogout" : true,
508
+ "protocol" : "openid-connect",
509
+ "attributes" : {
510
+ "oidc.ciba.grant.enabled" : "false",
511
+ "backchannel.logout.session.required" : "true",
512
+ "post.logout.redirect.uris" : "+",
513
+ "oauth2.device.authorization.grant.enabled" : "false",
514
+ "display.on.consent.screen" : "false",
515
+ "backchannel.logout.revoke.offline.tokens" : "false"
516
+ },
517
+ "authenticationFlowBindingOverrides" : { },
518
+ "fullScopeAllowed" : true,
519
+ "nodeReRegistrationTimeout" : -1,
520
+ "defaultClientScopes" : [ "web-origins", "acr", "roles", "profile", "email" ],
521
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
522
+ }, {
523
+ "id" : "44d5731d-be40-414c-9498-f7876d4bb65a",
524
+ "clientId" : "broker",
525
+ "name" : "${client_broker}",
526
+ "surrogateAuthRequired" : false,
527
+ "enabled" : true,
528
+ "alwaysDisplayInConsole" : false,
529
+ "clientAuthenticatorType" : "client-secret",
530
+ "redirectUris" : [ ],
531
+ "webOrigins" : [ ],
532
+ "notBefore" : 0,
533
+ "bearerOnly" : true,
534
+ "consentRequired" : false,
535
+ "standardFlowEnabled" : true,
536
+ "implicitFlowEnabled" : false,
537
+ "directAccessGrantsEnabled" : false,
538
+ "serviceAccountsEnabled" : false,
539
+ "publicClient" : false,
540
+ "frontchannelLogout" : false,
541
+ "protocol" : "openid-connect",
542
+ "attributes" : {
543
+ "post.logout.redirect.uris" : "+"
544
+ },
545
+ "authenticationFlowBindingOverrides" : { },
546
+ "fullScopeAllowed" : false,
547
+ "nodeReRegistrationTimeout" : 0,
548
+ "defaultClientScopes" : [ "web-origins", "acr", "roles", "profile", "email" ],
549
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
550
+ }, {
551
+ "id" : "bcae6818-c9ab-4df8-ba32-e4782ccc1284",
552
+ "clientId" : "realm-management",
553
+ "name" : "${client_realm-management}",
554
+ "surrogateAuthRequired" : false,
555
+ "enabled" : true,
556
+ "alwaysDisplayInConsole" : false,
557
+ "clientAuthenticatorType" : "client-secret",
558
+ "redirectUris" : [ ],
559
+ "webOrigins" : [ ],
560
+ "notBefore" : 0,
561
+ "bearerOnly" : true,
562
+ "consentRequired" : false,
563
+ "standardFlowEnabled" : true,
564
+ "implicitFlowEnabled" : false,
565
+ "directAccessGrantsEnabled" : false,
566
+ "serviceAccountsEnabled" : false,
567
+ "publicClient" : false,
568
+ "frontchannelLogout" : false,
569
+ "protocol" : "openid-connect",
570
+ "attributes" : {
571
+ "post.logout.redirect.uris" : "+"
572
+ },
573
+ "authenticationFlowBindingOverrides" : { },
574
+ "fullScopeAllowed" : false,
575
+ "nodeReRegistrationTimeout" : 0,
576
+ "defaultClientScopes" : [ "web-origins", "acr", "roles", "profile", "email" ],
577
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
578
+ }, {
579
+ "id" : "5d3dbd8d-5615-4325-9ef2-ceef3fa70ace",
580
+ "clientId" : "security-admin-console",
581
+ "name" : "${client_security-admin-console}",
582
+ "rootUrl" : "${authAdminUrl}",
583
+ "baseUrl" : "/admin/kcals/console/",
584
+ "surrogateAuthRequired" : false,
585
+ "enabled" : true,
586
+ "alwaysDisplayInConsole" : false,
587
+ "clientAuthenticatorType" : "client-secret",
588
+ "redirectUris" : [ "/admin/kcals/console/*" ],
589
+ "webOrigins" : [ "+" ],
590
+ "notBefore" : 0,
591
+ "bearerOnly" : false,
592
+ "consentRequired" : false,
593
+ "standardFlowEnabled" : true,
594
+ "implicitFlowEnabled" : false,
595
+ "directAccessGrantsEnabled" : false,
596
+ "serviceAccountsEnabled" : false,
597
+ "publicClient" : true,
598
+ "frontchannelLogout" : false,
599
+ "protocol" : "openid-connect",
600
+ "attributes" : {
601
+ "post.logout.redirect.uris" : "+",
602
+ "pkce.code.challenge.method" : "S256"
603
+ },
604
+ "authenticationFlowBindingOverrides" : { },
605
+ "fullScopeAllowed" : false,
606
+ "nodeReRegistrationTimeout" : 0,
607
+ "protocolMappers" : [ {
608
+ "id" : "23dc85a9-dca5-496b-af70-e908193753a2",
609
+ "name" : "locale",
610
+ "protocol" : "openid-connect",
611
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
612
+ "consentRequired" : false,
613
+ "config" : {
614
+ "introspection.token.claim" : "true",
615
+ "userinfo.token.claim" : "true",
616
+ "user.attribute" : "locale",
617
+ "id.token.claim" : "true",
618
+ "access.token.claim" : "true",
619
+ "claim.name" : "locale",
620
+ "jsonType.label" : "String"
621
+ }
622
+ } ],
623
+ "defaultClientScopes" : [ "web-origins", "acr", "roles", "profile", "email" ],
624
+ "optionalClientScopes" : [ "address", "phone", "offline_access", "microprofile-jwt" ]
625
+ } ],
626
+ "clientScopes" : [ {
627
+ "id" : "6c03c3f7-af91-4810-b5c5-548664d36adf",
628
+ "name" : "microprofile-jwt",
629
+ "description" : "Microprofile - JWT built-in scope",
630
+ "protocol" : "openid-connect",
631
+ "attributes" : {
632
+ "include.in.token.scope" : "true",
633
+ "display.on.consent.screen" : "false"
634
+ },
635
+ "protocolMappers" : [ {
636
+ "id" : "19769446-f799-406e-bdf1-63a92b0f7489",
637
+ "name" : "groups",
638
+ "protocol" : "openid-connect",
639
+ "protocolMapper" : "oidc-usermodel-realm-role-mapper",
640
+ "consentRequired" : false,
641
+ "config" : {
642
+ "introspection.token.claim" : "true",
643
+ "multivalued" : "true",
644
+ "userinfo.token.claim" : "true",
645
+ "user.attribute" : "foo",
646
+ "id.token.claim" : "true",
647
+ "access.token.claim" : "true",
648
+ "claim.name" : "groups",
649
+ "jsonType.label" : "String"
650
+ }
651
+ }, {
652
+ "id" : "3226824a-02c9-424b-830f-55f76b344562",
653
+ "name" : "upn",
654
+ "protocol" : "openid-connect",
655
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
656
+ "consentRequired" : false,
657
+ "config" : {
658
+ "introspection.token.claim" : "true",
659
+ "userinfo.token.claim" : "true",
660
+ "user.attribute" : "username",
661
+ "id.token.claim" : "true",
662
+ "access.token.claim" : "true",
663
+ "claim.name" : "upn",
664
+ "jsonType.label" : "String"
665
+ }
666
+ } ]
667
+ }, {
668
+ "id" : "797d47bf-aa60-4bed-8eaa-06ef1fa01245",
669
+ "name" : "phone",
670
+ "description" : "OpenID Connect built-in scope: phone",
671
+ "protocol" : "openid-connect",
672
+ "attributes" : {
673
+ "include.in.token.scope" : "true",
674
+ "display.on.consent.screen" : "true",
675
+ "consent.screen.text" : "${phoneScopeConsentText}"
676
+ },
677
+ "protocolMappers" : [ {
678
+ "id" : "d5837096-a92e-4241-a3f6-6dd80bc5db90",
679
+ "name" : "phone number verified",
680
+ "protocol" : "openid-connect",
681
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
682
+ "consentRequired" : false,
683
+ "config" : {
684
+ "introspection.token.claim" : "true",
685
+ "userinfo.token.claim" : "true",
686
+ "user.attribute" : "phoneNumberVerified",
687
+ "id.token.claim" : "true",
688
+ "access.token.claim" : "true",
689
+ "claim.name" : "phone_number_verified",
690
+ "jsonType.label" : "boolean"
691
+ }
692
+ }, {
693
+ "id" : "ec3cbaab-acd0-4e6c-8fb2-d63d8fbe48d6",
694
+ "name" : "phone number",
695
+ "protocol" : "openid-connect",
696
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
697
+ "consentRequired" : false,
698
+ "config" : {
699
+ "introspection.token.claim" : "true",
700
+ "userinfo.token.claim" : "true",
701
+ "user.attribute" : "phoneNumber",
702
+ "id.token.claim" : "true",
703
+ "access.token.claim" : "true",
704
+ "claim.name" : "phone_number",
705
+ "jsonType.label" : "String"
706
+ }
707
+ } ]
708
+ }, {
709
+ "id" : "4c61c2a0-072d-4f1c-b491-eae1cef5d854",
710
+ "name" : "web-origins",
711
+ "description" : "OpenID Connect scope for add allowed web origins to the access token",
712
+ "protocol" : "openid-connect",
713
+ "attributes" : {
714
+ "include.in.token.scope" : "false",
715
+ "display.on.consent.screen" : "false",
716
+ "consent.screen.text" : ""
717
+ },
718
+ "protocolMappers" : [ {
719
+ "id" : "f70ddcd5-0d3c-4435-94f4-794f741ae8c1",
720
+ "name" : "allowed web origins",
721
+ "protocol" : "openid-connect",
722
+ "protocolMapper" : "oidc-allowed-origins-mapper",
723
+ "consentRequired" : false,
724
+ "config" : {
725
+ "introspection.token.claim" : "true",
726
+ "access.token.claim" : "true"
727
+ }
728
+ } ]
729
+ }, {
730
+ "id" : "a9726697-7a0e-49b8-9aba-1129516b6fca",
731
+ "name" : "roles",
732
+ "description" : "OpenID Connect scope for add user roles to the access token",
733
+ "protocol" : "openid-connect",
734
+ "attributes" : {
735
+ "include.in.token.scope" : "false",
736
+ "display.on.consent.screen" : "true",
737
+ "consent.screen.text" : "${rolesScopeConsentText}"
738
+ },
739
+ "protocolMappers" : [ {
740
+ "id" : "685ce96f-5e2d-4e3f-8387-834472c1ae2f",
741
+ "name" : "client roles",
742
+ "protocol" : "openid-connect",
743
+ "protocolMapper" : "oidc-usermodel-client-role-mapper",
744
+ "consentRequired" : false,
745
+ "config" : {
746
+ "introspection.token.claim" : "true",
747
+ "multivalued" : "true",
748
+ "user.attribute" : "foo",
749
+ "access.token.claim" : "true",
750
+ "claim.name" : "resource_access.${client_id}.roles",
751
+ "jsonType.label" : "String"
752
+ }
753
+ }, {
754
+ "id" : "a7515961-de81-495f-bc6b-4b3a2f734e94",
755
+ "name" : "audience resolve",
756
+ "protocol" : "openid-connect",
757
+ "protocolMapper" : "oidc-audience-resolve-mapper",
758
+ "consentRequired" : false,
759
+ "config" : {
760
+ "introspection.token.claim" : "true",
761
+ "access.token.claim" : "true"
762
+ }
763
+ }, {
764
+ "id" : "4e040474-2064-4128-a37e-efc77fc20d02",
765
+ "name" : "realm roles",
766
+ "protocol" : "openid-connect",
767
+ "protocolMapper" : "oidc-usermodel-realm-role-mapper",
768
+ "consentRequired" : false,
769
+ "config" : {
770
+ "introspection.token.claim" : "true",
771
+ "multivalued" : "true",
772
+ "user.attribute" : "foo",
773
+ "access.token.claim" : "true",
774
+ "claim.name" : "realm_access.roles",
775
+ "jsonType.label" : "String"
776
+ }
777
+ } ]
778
+ }, {
779
+ "id" : "a7f9df03-18ca-46d8-8fa0-e5c871a25296",
780
+ "name" : "acr",
781
+ "description" : "OpenID Connect scope for add acr (authentication context class reference) to the token",
782
+ "protocol" : "openid-connect",
783
+ "attributes" : {
784
+ "include.in.token.scope" : "false",
785
+ "display.on.consent.screen" : "false"
786
+ },
787
+ "protocolMappers" : [ {
788
+ "id" : "b416af2e-5623-4a80-81ad-b758be1bb612",
789
+ "name" : "acr loa level",
790
+ "protocol" : "openid-connect",
791
+ "protocolMapper" : "oidc-acr-mapper",
792
+ "consentRequired" : false,
793
+ "config" : {
794
+ "id.token.claim" : "true",
795
+ "introspection.token.claim" : "true",
796
+ "access.token.claim" : "true",
797
+ "userinfo.token.claim" : "true"
798
+ }
799
+ } ]
800
+ }, {
801
+ "id" : "f603d63d-a605-47e7-86db-12c80d68a5eb",
802
+ "name" : "role_list",
803
+ "description" : "SAML role list",
804
+ "protocol" : "saml",
805
+ "attributes" : {
806
+ "consent.screen.text" : "${samlRoleListScopeConsentText}",
807
+ "display.on.consent.screen" : "true"
808
+ },
809
+ "protocolMappers" : [ {
810
+ "id" : "e7cbd449-628d-4fd7-adec-c04212e35da3",
811
+ "name" : "role list",
812
+ "protocol" : "saml",
813
+ "protocolMapper" : "saml-role-list-mapper",
814
+ "consentRequired" : false,
815
+ "config" : {
816
+ "single" : "false",
817
+ "attribute.nameformat" : "Basic",
818
+ "attribute.name" : "Role"
819
+ }
820
+ } ]
821
+ }, {
822
+ "id" : "bb6d0a38-48fe-422d-9de8-fb2b529dc07a",
823
+ "name" : "address",
824
+ "description" : "OpenID Connect built-in scope: address",
825
+ "protocol" : "openid-connect",
826
+ "attributes" : {
827
+ "include.in.token.scope" : "true",
828
+ "display.on.consent.screen" : "true",
829
+ "consent.screen.text" : "${addressScopeConsentText}"
830
+ },
831
+ "protocolMappers" : [ {
832
+ "id" : "c39bfc4b-4258-4a59-a577-f27471717eed",
833
+ "name" : "address",
834
+ "protocol" : "openid-connect",
835
+ "protocolMapper" : "oidc-address-mapper",
836
+ "consentRequired" : false,
837
+ "config" : {
838
+ "user.attribute.formatted" : "formatted",
839
+ "user.attribute.country" : "country",
840
+ "introspection.token.claim" : "true",
841
+ "user.attribute.postal_code" : "postal_code",
842
+ "userinfo.token.claim" : "true",
843
+ "user.attribute.street" : "street",
844
+ "id.token.claim" : "true",
845
+ "user.attribute.region" : "region",
846
+ "access.token.claim" : "true",
847
+ "user.attribute.locality" : "locality"
848
+ }
849
+ } ]
850
+ }, {
851
+ "id" : "aa71826f-b787-4de3-a32f-af175b6d02d1",
852
+ "name" : "profile",
853
+ "description" : "OpenID Connect built-in scope: profile",
854
+ "protocol" : "openid-connect",
855
+ "attributes" : {
856
+ "include.in.token.scope" : "true",
857
+ "display.on.consent.screen" : "true",
858
+ "consent.screen.text" : "${profileScopeConsentText}"
859
+ },
860
+ "protocolMappers" : [ {
861
+ "id" : "a456abf7-cf76-4703-a82e-ee4990feb18e",
862
+ "name" : "family name",
863
+ "protocol" : "openid-connect",
864
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
865
+ "consentRequired" : false,
866
+ "config" : {
867
+ "introspection.token.claim" : "true",
868
+ "userinfo.token.claim" : "true",
869
+ "user.attribute" : "lastName",
870
+ "id.token.claim" : "true",
871
+ "access.token.claim" : "true",
872
+ "claim.name" : "family_name",
873
+ "jsonType.label" : "String"
874
+ }
875
+ }, {
876
+ "id" : "05c474cd-5fab-4799-b5cc-9b87f07a9702",
877
+ "name" : "updated at",
878
+ "protocol" : "openid-connect",
879
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
880
+ "consentRequired" : false,
881
+ "config" : {
882
+ "introspection.token.claim" : "true",
883
+ "userinfo.token.claim" : "true",
884
+ "user.attribute" : "updatedAt",
885
+ "id.token.claim" : "true",
886
+ "access.token.claim" : "true",
887
+ "claim.name" : "updated_at",
888
+ "jsonType.label" : "long"
889
+ }
890
+ }, {
891
+ "id" : "81402565-57b6-4b25-8d39-696307da4c98",
892
+ "name" : "middle name",
893
+ "protocol" : "openid-connect",
894
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
895
+ "consentRequired" : false,
896
+ "config" : {
897
+ "introspection.token.claim" : "true",
898
+ "userinfo.token.claim" : "true",
899
+ "user.attribute" : "middleName",
900
+ "id.token.claim" : "true",
901
+ "access.token.claim" : "true",
902
+ "claim.name" : "middle_name",
903
+ "jsonType.label" : "String"
904
+ }
905
+ }, {
906
+ "id" : "80b610a9-61aa-4a2d-a41f-fb4ee730cbf7",
907
+ "name" : "website",
908
+ "protocol" : "openid-connect",
909
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
910
+ "consentRequired" : false,
911
+ "config" : {
912
+ "introspection.token.claim" : "true",
913
+ "userinfo.token.claim" : "true",
914
+ "user.attribute" : "website",
915
+ "id.token.claim" : "true",
916
+ "access.token.claim" : "true",
917
+ "claim.name" : "website",
918
+ "jsonType.label" : "String"
919
+ }
920
+ }, {
921
+ "id" : "e45627fa-0d69-4c6b-b256-fd2bc7586d9f",
922
+ "name" : "locale",
923
+ "protocol" : "openid-connect",
924
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
925
+ "consentRequired" : false,
926
+ "config" : {
927
+ "introspection.token.claim" : "true",
928
+ "userinfo.token.claim" : "true",
929
+ "user.attribute" : "locale",
930
+ "id.token.claim" : "true",
931
+ "access.token.claim" : "true",
932
+ "claim.name" : "locale",
933
+ "jsonType.label" : "String"
934
+ }
935
+ }, {
936
+ "id" : "884adf4b-7c1f-435a-837e-9106eb61c609",
937
+ "name" : "given name",
938
+ "protocol" : "openid-connect",
939
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
940
+ "consentRequired" : false,
941
+ "config" : {
942
+ "introspection.token.claim" : "true",
943
+ "userinfo.token.claim" : "true",
944
+ "user.attribute" : "firstName",
945
+ "id.token.claim" : "true",
946
+ "access.token.claim" : "true",
947
+ "claim.name" : "given_name",
948
+ "jsonType.label" : "String"
949
+ }
950
+ }, {
951
+ "id" : "5063804e-dd5c-4ac9-80ad-591e2040eb9d",
952
+ "name" : "picture",
953
+ "protocol" : "openid-connect",
954
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
955
+ "consentRequired" : false,
956
+ "config" : {
957
+ "introspection.token.claim" : "true",
958
+ "userinfo.token.claim" : "true",
959
+ "user.attribute" : "picture",
960
+ "id.token.claim" : "true",
961
+ "access.token.claim" : "true",
962
+ "claim.name" : "picture",
963
+ "jsonType.label" : "String"
964
+ }
965
+ }, {
966
+ "id" : "cc7615cb-51d3-42bb-a704-3fed1e16421b",
967
+ "name" : "profile",
968
+ "protocol" : "openid-connect",
969
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
970
+ "consentRequired" : false,
971
+ "config" : {
972
+ "introspection.token.claim" : "true",
973
+ "userinfo.token.claim" : "true",
974
+ "user.attribute" : "profile",
975
+ "id.token.claim" : "true",
976
+ "access.token.claim" : "true",
977
+ "claim.name" : "profile",
978
+ "jsonType.label" : "String"
979
+ }
980
+ }, {
981
+ "id" : "d41df961-e4bd-47f2-ae69-525b71384e31",
982
+ "name" : "birthdate",
983
+ "protocol" : "openid-connect",
984
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
985
+ "consentRequired" : false,
986
+ "config" : {
987
+ "introspection.token.claim" : "true",
988
+ "userinfo.token.claim" : "true",
989
+ "user.attribute" : "birthdate",
990
+ "id.token.claim" : "true",
991
+ "access.token.claim" : "true",
992
+ "claim.name" : "birthdate",
993
+ "jsonType.label" : "String"
994
+ }
995
+ }, {
996
+ "id" : "3bc42623-47fd-439e-a77c-d77ff4b1186f",
997
+ "name" : "full name",
998
+ "protocol" : "openid-connect",
999
+ "protocolMapper" : "oidc-full-name-mapper",
1000
+ "consentRequired" : false,
1001
+ "config" : {
1002
+ "id.token.claim" : "true",
1003
+ "introspection.token.claim" : "true",
1004
+ "access.token.claim" : "true",
1005
+ "userinfo.token.claim" : "true"
1006
+ }
1007
+ }, {
1008
+ "id" : "1a28f95a-eb64-482b-b0e4-c26b87c17ad0",
1009
+ "name" : "username",
1010
+ "protocol" : "openid-connect",
1011
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
1012
+ "consentRequired" : false,
1013
+ "config" : {
1014
+ "introspection.token.claim" : "true",
1015
+ "userinfo.token.claim" : "true",
1016
+ "user.attribute" : "username",
1017
+ "id.token.claim" : "true",
1018
+ "access.token.claim" : "true",
1019
+ "claim.name" : "preferred_username",
1020
+ "jsonType.label" : "String"
1021
+ }
1022
+ }, {
1023
+ "id" : "5a6304dc-f6cd-4808-86ba-5d30791ef524",
1024
+ "name" : "gender",
1025
+ "protocol" : "openid-connect",
1026
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
1027
+ "consentRequired" : false,
1028
+ "config" : {
1029
+ "introspection.token.claim" : "true",
1030
+ "userinfo.token.claim" : "true",
1031
+ "user.attribute" : "gender",
1032
+ "id.token.claim" : "true",
1033
+ "access.token.claim" : "true",
1034
+ "claim.name" : "gender",
1035
+ "jsonType.label" : "String"
1036
+ }
1037
+ }, {
1038
+ "id" : "3ac4ec4a-38b0-43d4-aef6-48a85137964e",
1039
+ "name" : "zoneinfo",
1040
+ "protocol" : "openid-connect",
1041
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
1042
+ "consentRequired" : false,
1043
+ "config" : {
1044
+ "introspection.token.claim" : "true",
1045
+ "userinfo.token.claim" : "true",
1046
+ "user.attribute" : "zoneinfo",
1047
+ "id.token.claim" : "true",
1048
+ "access.token.claim" : "true",
1049
+ "claim.name" : "zoneinfo",
1050
+ "jsonType.label" : "String"
1051
+ }
1052
+ }, {
1053
+ "id" : "8948afcc-85b9-49d6-ba6c-c6d86287b042",
1054
+ "name" : "nickname",
1055
+ "protocol" : "openid-connect",
1056
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
1057
+ "consentRequired" : false,
1058
+ "config" : {
1059
+ "introspection.token.claim" : "true",
1060
+ "userinfo.token.claim" : "true",
1061
+ "user.attribute" : "nickname",
1062
+ "id.token.claim" : "true",
1063
+ "access.token.claim" : "true",
1064
+ "claim.name" : "nickname",
1065
+ "jsonType.label" : "String"
1066
+ }
1067
+ } ]
1068
+ }, {
1069
+ "id" : "2c915081-a41c-4056-8663-defe10eb93d2",
1070
+ "name" : "offline_access",
1071
+ "description" : "OpenID Connect built-in scope: offline_access",
1072
+ "protocol" : "openid-connect",
1073
+ "attributes" : {
1074
+ "consent.screen.text" : "${offlineAccessScopeConsentText}",
1075
+ "display.on.consent.screen" : "true"
1076
+ }
1077
+ }, {
1078
+ "id" : "190e6634-ed11-4057-aeff-4fdcd13f702a",
1079
+ "name" : "email",
1080
+ "description" : "OpenID Connect built-in scope: email",
1081
+ "protocol" : "openid-connect",
1082
+ "attributes" : {
1083
+ "include.in.token.scope" : "true",
1084
+ "display.on.consent.screen" : "true",
1085
+ "consent.screen.text" : "${emailScopeConsentText}"
1086
+ },
1087
+ "protocolMappers" : [ {
1088
+ "id" : "6eca1028-eae0-4aca-a3e2-c1251c1477ea",
1089
+ "name" : "email",
1090
+ "protocol" : "openid-connect",
1091
+ "protocolMapper" : "oidc-usermodel-attribute-mapper",
1092
+ "consentRequired" : false,
1093
+ "config" : {
1094
+ "introspection.token.claim" : "true",
1095
+ "userinfo.token.claim" : "true",
1096
+ "user.attribute" : "email",
1097
+ "id.token.claim" : "true",
1098
+ "access.token.claim" : "true",
1099
+ "claim.name" : "email",
1100
+ "jsonType.label" : "String"
1101
+ }
1102
+ }, {
1103
+ "id" : "41f17b44-f09e-469d-b183-1a4ada06c07a",
1104
+ "name" : "email verified",
1105
+ "protocol" : "openid-connect",
1106
+ "protocolMapper" : "oidc-usermodel-property-mapper",
1107
+ "consentRequired" : false,
1108
+ "config" : {
1109
+ "introspection.token.claim" : "true",
1110
+ "userinfo.token.claim" : "true",
1111
+ "user.attribute" : "emailVerified",
1112
+ "id.token.claim" : "true",
1113
+ "access.token.claim" : "true",
1114
+ "claim.name" : "email_verified",
1115
+ "jsonType.label" : "boolean"
1116
+ }
1117
+ } ]
1118
+ } ],
1119
+ "defaultDefaultClientScopes" : [ "role_list", "profile", "email", "roles", "web-origins", "acr" ],
1120
+ "defaultOptionalClientScopes" : [ "offline_access", "address", "phone", "microprofile-jwt" ],
1121
+ "browserSecurityHeaders" : {
1122
+ "contentSecurityPolicyReportOnly" : "",
1123
+ "xContentTypeOptions" : "nosniff",
1124
+ "referrerPolicy" : "no-referrer",
1125
+ "xRobotsTag" : "none",
1126
+ "xFrameOptions" : "SAMEORIGIN",
1127
+ "contentSecurityPolicy" : "frame-src 'self'; frame-ancestors 'self'; object-src 'none';",
1128
+ "xXSSProtection" : "1; mode=block",
1129
+ "strictTransportSecurity" : "max-age=31536000; includeSubDomains"
1130
+ },
1131
+ "smtpServer" : { },
1132
+ "eventsEnabled" : false,
1133
+ "eventsListeners" : [ "jboss-logging" ],
1134
+ "enabledEventTypes" : [ ],
1135
+ "adminEventsEnabled" : false,
1136
+ "adminEventsDetailsEnabled" : false,
1137
+ "identityProviders" : [ ],
1138
+ "identityProviderMappers" : [ ],
1139
+ "components" : {
1140
+ "org.keycloak.services.clientregistration.policy.ClientRegistrationPolicy" : [ {
1141
+ "id" : "3b780ee5-a0ed-43b1-b5f7-186af73acb2f",
1142
+ "name" : "Allowed Client Scopes",
1143
+ "providerId" : "allowed-client-templates",
1144
+ "subType" : "authenticated",
1145
+ "subComponents" : { },
1146
+ "config" : {
1147
+ "allow-default-scopes" : [ "true" ]
1148
+ }
1149
+ }, {
1150
+ "id" : "26e8a27e-48bf-439a-9dad-fffefe49173c",
1151
+ "name" : "Trusted Hosts",
1152
+ "providerId" : "trusted-hosts",
1153
+ "subType" : "anonymous",
1154
+ "subComponents" : { },
1155
+ "config" : {
1156
+ "host-sending-registration-request-must-match" : [ "true" ],
1157
+ "client-uris-must-match" : [ "true" ]
1158
+ }
1159
+ }, {
1160
+ "id" : "d6ba776f-6964-4807-aae9-7e7ac8711a2d",
1161
+ "name" : "Consent Required",
1162
+ "providerId" : "consent-required",
1163
+ "subType" : "anonymous",
1164
+ "subComponents" : { },
1165
+ "config" : { }
1166
+ }, {
1167
+ "id" : "9508abdc-1844-4d2f-98f3-0478162b0e6c",
1168
+ "name" : "Full Scope Disabled",
1169
+ "providerId" : "scope",
1170
+ "subType" : "anonymous",
1171
+ "subComponents" : { },
1172
+ "config" : { }
1173
+ }, {
1174
+ "id" : "5a5ef903-283a-4823-b6ea-8f7abd4b4e96",
1175
+ "name" : "Max Clients Limit",
1176
+ "providerId" : "max-clients",
1177
+ "subType" : "anonymous",
1178
+ "subComponents" : { },
1179
+ "config" : {
1180
+ "max-clients" : [ "200" ]
1181
+ }
1182
+ }, {
1183
+ "id" : "be913f08-efea-4af4-8ee7-02b6e6d0ba1d",
1184
+ "name" : "Allowed Protocol Mapper Types",
1185
+ "providerId" : "allowed-protocol-mappers",
1186
+ "subType" : "anonymous",
1187
+ "subComponents" : { },
1188
+ "config" : {
1189
+ "allowed-protocol-mapper-types" : [ "oidc-usermodel-property-mapper", "saml-user-attribute-mapper", "oidc-address-mapper", "saml-user-property-mapper", "saml-role-list-mapper", "oidc-sha256-pairwise-sub-mapper", "oidc-full-name-mapper", "oidc-usermodel-attribute-mapper" ]
1190
+ }
1191
+ }, {
1192
+ "id" : "244abacc-ce60-410d-8843-e22000936c60",
1193
+ "name" : "Allowed Client Scopes",
1194
+ "providerId" : "allowed-client-templates",
1195
+ "subType" : "anonymous",
1196
+ "subComponents" : { },
1197
+ "config" : {
1198
+ "allow-default-scopes" : [ "true" ]
1199
+ }
1200
+ }, {
1201
+ "id" : "ad54acf2-3a61-4fbd-8070-1fefcc6f9856",
1202
+ "name" : "Allowed Protocol Mapper Types",
1203
+ "providerId" : "allowed-protocol-mappers",
1204
+ "subType" : "authenticated",
1205
+ "subComponents" : { },
1206
+ "config" : {
1207
+ "allowed-protocol-mapper-types" : [ "oidc-usermodel-attribute-mapper", "oidc-address-mapper", "oidc-full-name-mapper", "saml-user-attribute-mapper", "oidc-sha256-pairwise-sub-mapper", "oidc-usermodel-property-mapper", "saml-user-property-mapper", "saml-role-list-mapper" ]
1208
+ }
1209
+ } ],
1210
+ "org.keycloak.keys.KeyProvider" : [ {
1211
+ "id" : "62c90f1a-879a-4d9d-be34-0c0e2558ee59",
1212
+ "name" : "aes-generated",
1213
+ "providerId" : "aes-generated",
1214
+ "subComponents" : { },
1215
+ "config" : {
1216
+ "kid" : [ "66573234-8d55-4334-8a49-eb4d49a0f9a5" ],
1217
+ "secret" : [ "oUI1vqF2NgvV76Vrx7J_xg" ],
1218
+ "priority" : [ "100" ]
1219
+ }
1220
+ }, {
1221
+ "id" : "31ac59af-12ed-4d06-973a-2084b3a4f17c",
1222
+ "name" : "rsa-enc-generated",
1223
+ "providerId" : "rsa-enc-generated",
1224
+ "subComponents" : { },
1225
+ "config" : {
1226
+ "privateKey" : [ "MIIEogIBAAKCAQEAvVVx1YxdBRB3agp358vIhGGtG8dQ7n/Slb6+Ll9BEjKEPfwiRavsq7Lo9iFUPEUIs0hBrcc1qKCd02itu3dtTBxnfCQxmZbAMDQZoP/4WwlbNo0O9aajpTT2/oGDZo0EyDEWkPviu40wSMiSMd/vbCyIeA7lTTmuukzVeT0voq5mlRd2BMe5v05NRmN2kK/EphHzLCwC7rdNg9bei8y71J49rmgkbFDbIj7e614l9B1jf3+XHJgRR9kpH5lvDMbeA2idJBmR8N9aYJDAyeVlsQLJHyOLN3DOYpv8e+qGe0T353N+0vk7FLIBkcjZxeOIm3Eg9BS/B5HK1BMzB9TsrwIDAQABAoIBADKKeRE232vnKeFaOwja6sN/6Xx1V+Lap0XG/bCWR+IKLyf2wtVTYCGzaCGv4vMVwI1POA0iFO5XNdpF4r6c0kXTfUJzzPPBfLtBZSgHvG3c0Qb+X6Run9eNjHOC8icxdLnV9L6uJqfHOEDtna0HqLt5JdLasxZK1BwyP3gWP72Ol/axsH7Faucmf8M/VeZIpK3a1u134piFOeyx/okOuDy0vD5CRuR14dTnpZAe+We5zBs4bDo6lfq9TKmpOHi9AelxrdkKeKkb5YB4jIRIhEbiJ5GbyMr11xA7Au78uvKQm7RGMjCqS0Y8eLvH6M9bNk16zC7RVSRswdc6l5LdhBECgYEA5iqNm0povoHIgUKlXDXJgJLX+2EZAdBkfd1UUNK0M4EpEOIeqpyqM/3EdDwG+NoM6lxD1cZvZctUKR9UyDMj3XfjuSfRI2/TR1CKXEiNnJDOlu89lzCLi1e7pfRrhBuWE7gbGSpMmbLr+IvDTzj2m7czdLi3I7iPT6KLKwZHMrECgYEA0pWjZNJipPvuTu06X3zcyL8sWP81KEGZbn6g4oHBu0egkCZl1St8GGnl9NUwTYLodhQ75v4oX8jE1rEzFSuTUguO2fsBU312EXZTIQ5cvtNUXEaLlIjbrUN9r6NTdj/gjWl2X6lL5hHQeBmoQr+7Rc6l8GYaAmNjSldBtQeALV8CgYABrqfwTZ/sXIh5oWISBXaekPQxKymCoOJLJTX7jT6x7ay+KdjtiE2aKa2o59NpODbF87yvME8aIF1SG5+EAxOtB7ZLYSYfKy8RI16PhBw827YW1lLN6xXqA88kTGAIzCbRqBPSoEOFEBC3dVYNGy56PuGKZds40J2DiH2Z5+bXUQKBgH8oFjqqAyCmc1a7TnUcO2EIduniaKG/QruCwPkk6uuAK8b/OJxInq1LPKzjEkCrnFy4iRdJPu3fmGQfKb5Nyq5PBlo/g6R7bJDMxxN9zaj4iMcTXfM51JRB3aHx2FLd7WTWWsEWxBrPhPcQXxa3GYjkaDTKIkhw5SKdn7KFLfO3AoGAX/pFaRFl+TWouj6gr4xwfOYvWar5AWXCN/QIXFzEcyCx2zHmTkCL7r0GwwOogVGvg17VVgYKljbXpPtoZNSWLHX5+wIMpEca64mSLlf2Lb3kMlmzeZvPQuntTdlfD5BNMQj1l3cTNEtTw0ct2KLSA9DYnZ4kTLsRp4uBolzzkys=" ],
1227
+ "keyUse" : [ "ENC" ],
1228
+ "certificate" : [ "MIICmTCCAYECBgGN2tYFGDANBgkqhkiG9w0BAQsFADAQMQ4wDAYDVQQDDAVrY2FsczAeFw0yNDAyMjQxMTE2MTVaFw0zNDAyMjQxMTE3NTVaMBAxDjAMBgNVBAMMBWtjYWxzMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvVVx1YxdBRB3agp358vIhGGtG8dQ7n/Slb6+Ll9BEjKEPfwiRavsq7Lo9iFUPEUIs0hBrcc1qKCd02itu3dtTBxnfCQxmZbAMDQZoP/4WwlbNo0O9aajpTT2/oGDZo0EyDEWkPviu40wSMiSMd/vbCyIeA7lTTmuukzVeT0voq5mlRd2BMe5v05NRmN2kK/EphHzLCwC7rdNg9bei8y71J49rmgkbFDbIj7e614l9B1jf3+XHJgRR9kpH5lvDMbeA2idJBmR8N9aYJDAyeVlsQLJHyOLN3DOYpv8e+qGe0T353N+0vk7FLIBkcjZxeOIm3Eg9BS/B5HK1BMzB9TsrwIDAQABMA0GCSqGSIb3DQEBCwUAA4IBAQB8GjcxZ7mHb1nUn+tKre8lVol/I4uLXcVIHhDTeVJ2BwwabxkIXwzhIJ6lo3uv8RxcWKINj2fMUgdaeWtBGscRh8CZ+Z3YDLK0hR/TL5NU8ArYoerH+fQ4ZxXbOnmGmuX4ZwuYnTyndrCSBQxF4mWEhaa3esuZMLtckIyXjWqLg7r42s2tnNxQ2O/YF4popn/I5UiQrds4l9UPZla2NYu2NH0Km6VYCGDSAwz2+Nj1KZh6S+BNRClFDU86lA6ubiy2ZFFyuppWVjCO5mYzwKgdT6EBnuOmszCDkOe91YalKhS47ZUKrvnkKPoyrsvyOSFJ64/4Dx3lNGYnBz3YGRxv" ],
1229
+ "priority" : [ "100" ],
1230
+ "algorithm" : [ "RSA-OAEP" ]
1231
+ }
1232
+ }, {
1233
+ "id" : "e602bb72-291d-4936-8628-8120cae092e7",
1234
+ "name" : "rsa-generated",
1235
+ "providerId" : "rsa-generated",
1236
+ "subComponents" : { },
1237
+ "config" : {
1238
+ "privateKey" : [ "MIIEowIBAAKCAQEAnTVvcZms5Bf09DecXoMJ7TDjYLRFaCKRKeODpEcSxPZPFtEX+vr0QJoCckFh7O9z97iqs6NAZVLNOQXfhmYOWErftFfwIl8yiFiYiXIJw5ptlj0eUVn4xbZ1KOF5ys9z4vyT060bPh7qP6n2hFPVBb7A4X36pXL04QvBBdc6lNPW15il2+sQ/utp9l5GFc4W2Flq/HTAywQMh41nz9tZ1i/vWlHndKLwLU+a6MeYiOgMi1Me7xWC1Ut580A1mCmkOTc2S0jGZN0nQnqvLSA5mMa0a0A0shcK1nQFTRi6lnYEnxhFRn65dO+xwZZZMIRe4sM73ZvQyuGdLY870DRImQIDAQABAoIBAB52wSCKpsvxj4R2tUzESFtoDpvJ+ywtjKNJJRSjuDGmSFezz5mRYV0WaxRwcpU7JqYRqTST1VH9LGsZJgJRiwSVh8mXA9/pQi3VO0PhLx6yMXu8XsBldrV7gLMaFGOWdU6+YrgRcrbEP2D0YuKsKxrIpvBbXQOMJgNpJ2+mEEJQB87c2Vl4CGjfZNcCozRwZ41XnyQ0vJx9I4i8mj7lU1RIooybQcKE5i/oeE8tJcxZ/MWmAxO8CTnJaRnaStByzSp5unHp5CZI2C7zFHjXWJEjZ5JeTbDTtKi/2YBKcuzDs/VICctKob7r/xuCbS/FO+R8Jlj81b6fIaHxVJCIbA0CgYEA1LhxaZhOioQgr5aDtZvdw1LRPTkipjOE0v2z4uJGx7vCxjEHd/CQJChGLgdgGDq8vPgUQBcOGI8kOGB+YWruybeodoJmKlyaD0eqKLYSkiEx8SdI58y2EjDKXpcydVIT5qH/9Oh1qiLDDTjfIIiXxk/cRRSKO6OQwnwyPQTusd0CgYEAvTGo+jC0qWpIEgm1pBAtovlUlcLMj8ZqGANt3dByHH/+GrVQ+sLOe5f4LlABo4+99kIHYFfaUqCb7BAzpuWxOnZKn0b7JoNqsH5MkDPw/InpBLkCnN/yxgLtkCarMENrDDHRZuwhN+M8VHoXKe/NwuAyXOW9VUjCoA/o1JDnq+0CgYEAtcS53LJyArjuuTvTZh8/O0WMWFV3Py/swuJZkXkrZEcUI4kHybx9XvgvJ+vTeEDQwGT34OASgnfmSmph89qNGz9dq463wGEKoB3r0AftDINjCp84FCMAPcEFXBi03D17les+LUdqLCyyIZ1ERKeTkbjyDvGDQXz+GMJJp4yMbt0CgYAEiEYGCFirnlIvrG/fiEuvlc2C8PG5mAU+ogZlw/KX4DEULrfL6hLMPy3A3kXLx0vDtH08v54JULOrig/StbnzLpZHDopBt/A8XiozYispwZwFcvEvFOZZ/AP46hQ7ycGsvxzHHG0HS7hMRch8RrRlML3EH/TTMDUJZJgtT3NdWQKBgGpeeINerJh6hn99BAHFEaXWgg28UTSf4GMhsbbW3iW6wpc7Wm4/tMcpcgmat4HIuDqv29c7cp8mE16+mvMjFW27FzLw07z1TRs5Ru0H3bbutB2IqaiDhz3IHbXN5MvQiQ20G3sHgSqxQK3yVlqfoWbB7mijLVlmy7AaIF7322SK" ],
1239
+ "keyUse" : [ "SIG" ],
1240
+ "certificate" : [ "MIICmTCCAYECBgGN2tX/nzANBgkqhkiG9w0BAQsFADAQMQ4wDAYDVQQDDAVrY2FsczAeFw0yNDAyMjQxMTE2MTRaFw0zNDAyMjQxMTE3NTRaMBAxDjAMBgNVBAMMBWtjYWxzMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnTVvcZms5Bf09DecXoMJ7TDjYLRFaCKRKeODpEcSxPZPFtEX+vr0QJoCckFh7O9z97iqs6NAZVLNOQXfhmYOWErftFfwIl8yiFiYiXIJw5ptlj0eUVn4xbZ1KOF5ys9z4vyT060bPh7qP6n2hFPVBb7A4X36pXL04QvBBdc6lNPW15il2+sQ/utp9l5GFc4W2Flq/HTAywQMh41nz9tZ1i/vWlHndKLwLU+a6MeYiOgMi1Me7xWC1Ut580A1mCmkOTc2S0jGZN0nQnqvLSA5mMa0a0A0shcK1nQFTRi6lnYEnxhFRn65dO+xwZZZMIRe4sM73ZvQyuGdLY870DRImQIDAQABMA0GCSqGSIb3DQEBCwUAA4IBAQBsxRmHMV7l7U7TP8XrPo/Sfn3kagvQffN20cWQc0OoMmMue43p46tPWScmAD8rgkAE5TJFTj+vL8cdjA9WtONtjALAGZCAQG2zlQgiBXxRzzVpMVwFr+cmkdbpkq+1dRYNZptyaOZPCPz7HRAOcNe4q2vXAiyAnemryRy6kqKjWvvLvncq8+K1y6dqeyoS5hft5gOQSp+Xg27d9mBWNgl9C6CYtdSiNNcaiuWhgfG5vmHaTpNhRvSodW/HweGbBR/VTTG10GcMr7PkZTR30TEX55uUeqezS//DILMPRG79F2ebDNsi80QYmpG/HemtXAXjmiDdFDj1Jo3TYiY4dOj+" ],
1241
+ "priority" : [ "100" ]
1242
+ }
1243
+ }, {
1244
+ "id" : "76eb8e71-9028-4271-983e-f4a005de62b7",
1245
+ "name" : "hmac-generated",
1246
+ "providerId" : "hmac-generated",
1247
+ "subComponents" : { },
1248
+ "config" : {
1249
+ "kid" : [ "be9ace0e-f8ee-433f-93fe-aeebd99e199f" ],
1250
+ "secret" : [ "BVZEI5cIBu9PKVMUbm0Rw5kPzBig0Tqr8kGO97gOYo_KNsFCv-cxJVXBZb77lMOpZIVuqJIg5nMpBuekCF-TwA" ],
1251
+ "priority" : [ "100" ],
1252
+ "algorithm" : [ "HS256" ]
1253
+ }
1254
+ } ]
1255
+ },
1256
+ "internationalizationEnabled" : false,
1257
+ "supportedLocales" : [ ],
1258
+ "authenticationFlows" : [ {
1259
+ "id" : "a4faba8d-4a62-4949-acd2-e0e186f99215",
1260
+ "alias" : "Account verification options",
1261
+ "description" : "Method with which to verity the existing account",
1262
+ "providerId" : "basic-flow",
1263
+ "topLevel" : false,
1264
+ "builtIn" : true,
1265
+ "authenticationExecutions" : [ {
1266
+ "authenticator" : "idp-email-verification",
1267
+ "authenticatorFlow" : false,
1268
+ "requirement" : "ALTERNATIVE",
1269
+ "priority" : 10,
1270
+ "autheticatorFlow" : false,
1271
+ "userSetupAllowed" : false
1272
+ }, {
1273
+ "authenticatorFlow" : true,
1274
+ "requirement" : "ALTERNATIVE",
1275
+ "priority" : 20,
1276
+ "autheticatorFlow" : true,
1277
+ "flowAlias" : "Verify Existing Account by Re-authentication",
1278
+ "userSetupAllowed" : false
1279
+ } ]
1280
+ }, {
1281
+ "id" : "88d688fc-6e30-47d6-8290-c5b2956d11ae",
1282
+ "alias" : "Browser - Conditional OTP",
1283
+ "description" : "Flow to determine if the OTP is required for the authentication",
1284
+ "providerId" : "basic-flow",
1285
+ "topLevel" : false,
1286
+ "builtIn" : true,
1287
+ "authenticationExecutions" : [ {
1288
+ "authenticator" : "conditional-user-configured",
1289
+ "authenticatorFlow" : false,
1290
+ "requirement" : "REQUIRED",
1291
+ "priority" : 10,
1292
+ "autheticatorFlow" : false,
1293
+ "userSetupAllowed" : false
1294
+ }, {
1295
+ "authenticator" : "auth-otp-form",
1296
+ "authenticatorFlow" : false,
1297
+ "requirement" : "REQUIRED",
1298
+ "priority" : 20,
1299
+ "autheticatorFlow" : false,
1300
+ "userSetupAllowed" : false
1301
+ } ]
1302
+ }, {
1303
+ "id" : "22913a08-1026-4e82-84e9-fb502be2d539",
1304
+ "alias" : "Direct Grant - Conditional OTP",
1305
+ "description" : "Flow to determine if the OTP is required for the authentication",
1306
+ "providerId" : "basic-flow",
1307
+ "topLevel" : false,
1308
+ "builtIn" : true,
1309
+ "authenticationExecutions" : [ {
1310
+ "authenticator" : "conditional-user-configured",
1311
+ "authenticatorFlow" : false,
1312
+ "requirement" : "REQUIRED",
1313
+ "priority" : 10,
1314
+ "autheticatorFlow" : false,
1315
+ "userSetupAllowed" : false
1316
+ }, {
1317
+ "authenticator" : "direct-grant-validate-otp",
1318
+ "authenticatorFlow" : false,
1319
+ "requirement" : "REQUIRED",
1320
+ "priority" : 20,
1321
+ "autheticatorFlow" : false,
1322
+ "userSetupAllowed" : false
1323
+ } ]
1324
+ }, {
1325
+ "id" : "6a83988c-c43d-4dbd-be0e-d29b5b6e4ec0",
1326
+ "alias" : "First broker login - Conditional OTP",
1327
+ "description" : "Flow to determine if the OTP is required for the authentication",
1328
+ "providerId" : "basic-flow",
1329
+ "topLevel" : false,
1330
+ "builtIn" : true,
1331
+ "authenticationExecutions" : [ {
1332
+ "authenticator" : "conditional-user-configured",
1333
+ "authenticatorFlow" : false,
1334
+ "requirement" : "REQUIRED",
1335
+ "priority" : 10,
1336
+ "autheticatorFlow" : false,
1337
+ "userSetupAllowed" : false
1338
+ }, {
1339
+ "authenticator" : "auth-otp-form",
1340
+ "authenticatorFlow" : false,
1341
+ "requirement" : "REQUIRED",
1342
+ "priority" : 20,
1343
+ "autheticatorFlow" : false,
1344
+ "userSetupAllowed" : false
1345
+ } ]
1346
+ }, {
1347
+ "id" : "90c541a0-b1c2-4a50-9906-7c507ec71beb",
1348
+ "alias" : "Handle Existing Account",
1349
+ "description" : "Handle what to do if there is existing account with same email/username like authenticated identity provider",
1350
+ "providerId" : "basic-flow",
1351
+ "topLevel" : false,
1352
+ "builtIn" : true,
1353
+ "authenticationExecutions" : [ {
1354
+ "authenticator" : "idp-confirm-link",
1355
+ "authenticatorFlow" : false,
1356
+ "requirement" : "REQUIRED",
1357
+ "priority" : 10,
1358
+ "autheticatorFlow" : false,
1359
+ "userSetupAllowed" : false
1360
+ }, {
1361
+ "authenticatorFlow" : true,
1362
+ "requirement" : "REQUIRED",
1363
+ "priority" : 20,
1364
+ "autheticatorFlow" : true,
1365
+ "flowAlias" : "Account verification options",
1366
+ "userSetupAllowed" : false
1367
+ } ]
1368
+ }, {
1369
+ "id" : "45621dbd-fc03-4a7d-a4ad-25bb726dea59",
1370
+ "alias" : "Reset - Conditional OTP",
1371
+ "description" : "Flow to determine if the OTP should be reset or not. Set to REQUIRED to force.",
1372
+ "providerId" : "basic-flow",
1373
+ "topLevel" : false,
1374
+ "builtIn" : true,
1375
+ "authenticationExecutions" : [ {
1376
+ "authenticator" : "conditional-user-configured",
1377
+ "authenticatorFlow" : false,
1378
+ "requirement" : "REQUIRED",
1379
+ "priority" : 10,
1380
+ "autheticatorFlow" : false,
1381
+ "userSetupAllowed" : false
1382
+ }, {
1383
+ "authenticator" : "reset-otp",
1384
+ "authenticatorFlow" : false,
1385
+ "requirement" : "REQUIRED",
1386
+ "priority" : 20,
1387
+ "autheticatorFlow" : false,
1388
+ "userSetupAllowed" : false
1389
+ } ]
1390
+ }, {
1391
+ "id" : "165a9405-725b-4c74-b466-c7a6cc6929c7",
1392
+ "alias" : "User creation or linking",
1393
+ "description" : "Flow for the existing/non-existing user alternatives",
1394
+ "providerId" : "basic-flow",
1395
+ "topLevel" : false,
1396
+ "builtIn" : true,
1397
+ "authenticationExecutions" : [ {
1398
+ "authenticatorConfig" : "create unique user config",
1399
+ "authenticator" : "idp-create-user-if-unique",
1400
+ "authenticatorFlow" : false,
1401
+ "requirement" : "ALTERNATIVE",
1402
+ "priority" : 10,
1403
+ "autheticatorFlow" : false,
1404
+ "userSetupAllowed" : false
1405
+ }, {
1406
+ "authenticatorFlow" : true,
1407
+ "requirement" : "ALTERNATIVE",
1408
+ "priority" : 20,
1409
+ "autheticatorFlow" : true,
1410
+ "flowAlias" : "Handle Existing Account",
1411
+ "userSetupAllowed" : false
1412
+ } ]
1413
+ }, {
1414
+ "id" : "d563aae2-023e-42a7-93b5-c2d54127bd74",
1415
+ "alias" : "Verify Existing Account by Re-authentication",
1416
+ "description" : "Reauthentication of existing account",
1417
+ "providerId" : "basic-flow",
1418
+ "topLevel" : false,
1419
+ "builtIn" : true,
1420
+ "authenticationExecutions" : [ {
1421
+ "authenticator" : "idp-username-password-form",
1422
+ "authenticatorFlow" : false,
1423
+ "requirement" : "REQUIRED",
1424
+ "priority" : 10,
1425
+ "autheticatorFlow" : false,
1426
+ "userSetupAllowed" : false
1427
+ }, {
1428
+ "authenticatorFlow" : true,
1429
+ "requirement" : "CONDITIONAL",
1430
+ "priority" : 20,
1431
+ "autheticatorFlow" : true,
1432
+ "flowAlias" : "First broker login - Conditional OTP",
1433
+ "userSetupAllowed" : false
1434
+ } ]
1435
+ }, {
1436
+ "id" : "e5b3d25c-12dc-4348-982b-112269d57dc4",
1437
+ "alias" : "browser",
1438
+ "description" : "browser based authentication",
1439
+ "providerId" : "basic-flow",
1440
+ "topLevel" : true,
1441
+ "builtIn" : true,
1442
+ "authenticationExecutions" : [ {
1443
+ "authenticator" : "auth-cookie",
1444
+ "authenticatorFlow" : false,
1445
+ "requirement" : "ALTERNATIVE",
1446
+ "priority" : 10,
1447
+ "autheticatorFlow" : false,
1448
+ "userSetupAllowed" : false
1449
+ }, {
1450
+ "authenticator" : "auth-spnego",
1451
+ "authenticatorFlow" : false,
1452
+ "requirement" : "DISABLED",
1453
+ "priority" : 20,
1454
+ "autheticatorFlow" : false,
1455
+ "userSetupAllowed" : false
1456
+ }, {
1457
+ "authenticator" : "identity-provider-redirector",
1458
+ "authenticatorFlow" : false,
1459
+ "requirement" : "ALTERNATIVE",
1460
+ "priority" : 25,
1461
+ "autheticatorFlow" : false,
1462
+ "userSetupAllowed" : false
1463
+ }, {
1464
+ "authenticatorFlow" : true,
1465
+ "requirement" : "ALTERNATIVE",
1466
+ "priority" : 30,
1467
+ "autheticatorFlow" : true,
1468
+ "flowAlias" : "forms",
1469
+ "userSetupAllowed" : false
1470
+ } ]
1471
+ }, {
1472
+ "id" : "344309a0-2d25-41ab-9542-ade90eb5f049",
1473
+ "alias" : "clients",
1474
+ "description" : "Base authentication for clients",
1475
+ "providerId" : "client-flow",
1476
+ "topLevel" : true,
1477
+ "builtIn" : true,
1478
+ "authenticationExecutions" : [ {
1479
+ "authenticator" : "client-secret",
1480
+ "authenticatorFlow" : false,
1481
+ "requirement" : "ALTERNATIVE",
1482
+ "priority" : 10,
1483
+ "autheticatorFlow" : false,
1484
+ "userSetupAllowed" : false
1485
+ }, {
1486
+ "authenticator" : "client-jwt",
1487
+ "authenticatorFlow" : false,
1488
+ "requirement" : "ALTERNATIVE",
1489
+ "priority" : 20,
1490
+ "autheticatorFlow" : false,
1491
+ "userSetupAllowed" : false
1492
+ }, {
1493
+ "authenticator" : "client-secret-jwt",
1494
+ "authenticatorFlow" : false,
1495
+ "requirement" : "ALTERNATIVE",
1496
+ "priority" : 30,
1497
+ "autheticatorFlow" : false,
1498
+ "userSetupAllowed" : false
1499
+ }, {
1500
+ "authenticator" : "client-x509",
1501
+ "authenticatorFlow" : false,
1502
+ "requirement" : "ALTERNATIVE",
1503
+ "priority" : 40,
1504
+ "autheticatorFlow" : false,
1505
+ "userSetupAllowed" : false
1506
+ } ]
1507
+ }, {
1508
+ "id" : "9b112812-a988-4fa3-af95-a084235e76e6",
1509
+ "alias" : "direct grant",
1510
+ "description" : "OpenID Connect Resource Owner Grant",
1511
+ "providerId" : "basic-flow",
1512
+ "topLevel" : true,
1513
+ "builtIn" : true,
1514
+ "authenticationExecutions" : [ {
1515
+ "authenticator" : "direct-grant-validate-username",
1516
+ "authenticatorFlow" : false,
1517
+ "requirement" : "REQUIRED",
1518
+ "priority" : 10,
1519
+ "autheticatorFlow" : false,
1520
+ "userSetupAllowed" : false
1521
+ }, {
1522
+ "authenticator" : "direct-grant-validate-password",
1523
+ "authenticatorFlow" : false,
1524
+ "requirement" : "REQUIRED",
1525
+ "priority" : 20,
1526
+ "autheticatorFlow" : false,
1527
+ "userSetupAllowed" : false
1528
+ }, {
1529
+ "authenticatorFlow" : true,
1530
+ "requirement" : "CONDITIONAL",
1531
+ "priority" : 30,
1532
+ "autheticatorFlow" : true,
1533
+ "flowAlias" : "Direct Grant - Conditional OTP",
1534
+ "userSetupAllowed" : false
1535
+ } ]
1536
+ }, {
1537
+ "id" : "50631780-fdd0-470a-882f-51adb80375b3",
1538
+ "alias" : "docker auth",
1539
+ "description" : "Used by Docker clients to authenticate against the IDP",
1540
+ "providerId" : "basic-flow",
1541
+ "topLevel" : true,
1542
+ "builtIn" : true,
1543
+ "authenticationExecutions" : [ {
1544
+ "authenticator" : "docker-http-basic-authenticator",
1545
+ "authenticatorFlow" : false,
1546
+ "requirement" : "REQUIRED",
1547
+ "priority" : 10,
1548
+ "autheticatorFlow" : false,
1549
+ "userSetupAllowed" : false
1550
+ } ]
1551
+ }, {
1552
+ "id" : "495dcef2-702f-4a4d-ae6c-cdc3fb4d30da",
1553
+ "alias" : "first broker login",
1554
+ "description" : "Actions taken after first broker login with identity provider account, which is not yet linked to any Keycloak account",
1555
+ "providerId" : "basic-flow",
1556
+ "topLevel" : true,
1557
+ "builtIn" : true,
1558
+ "authenticationExecutions" : [ {
1559
+ "authenticatorConfig" : "review profile config",
1560
+ "authenticator" : "idp-review-profile",
1561
+ "authenticatorFlow" : false,
1562
+ "requirement" : "REQUIRED",
1563
+ "priority" : 10,
1564
+ "autheticatorFlow" : false,
1565
+ "userSetupAllowed" : false
1566
+ }, {
1567
+ "authenticatorFlow" : true,
1568
+ "requirement" : "REQUIRED",
1569
+ "priority" : 20,
1570
+ "autheticatorFlow" : true,
1571
+ "flowAlias" : "User creation or linking",
1572
+ "userSetupAllowed" : false
1573
+ } ]
1574
+ }, {
1575
+ "id" : "e8eb63cf-7f1c-4ff6-9f3f-c05d7fb45554",
1576
+ "alias" : "forms",
1577
+ "description" : "Username, password, otp and other auth forms.",
1578
+ "providerId" : "basic-flow",
1579
+ "topLevel" : false,
1580
+ "builtIn" : true,
1581
+ "authenticationExecutions" : [ {
1582
+ "authenticator" : "auth-username-password-form",
1583
+ "authenticatorFlow" : false,
1584
+ "requirement" : "REQUIRED",
1585
+ "priority" : 10,
1586
+ "autheticatorFlow" : false,
1587
+ "userSetupAllowed" : false
1588
+ }, {
1589
+ "authenticatorFlow" : true,
1590
+ "requirement" : "CONDITIONAL",
1591
+ "priority" : 20,
1592
+ "autheticatorFlow" : true,
1593
+ "flowAlias" : "Browser - Conditional OTP",
1594
+ "userSetupAllowed" : false
1595
+ } ]
1596
+ }, {
1597
+ "id" : "fbf25440-5944-4830-9d9e-2b44c0eb809b",
1598
+ "alias" : "registration",
1599
+ "description" : "registration flow",
1600
+ "providerId" : "basic-flow",
1601
+ "topLevel" : true,
1602
+ "builtIn" : true,
1603
+ "authenticationExecutions" : [ {
1604
+ "authenticator" : "registration-page-form",
1605
+ "authenticatorFlow" : true,
1606
+ "requirement" : "REQUIRED",
1607
+ "priority" : 10,
1608
+ "autheticatorFlow" : true,
1609
+ "flowAlias" : "registration form",
1610
+ "userSetupAllowed" : false
1611
+ } ]
1612
+ }, {
1613
+ "id" : "53e6adc3-82ec-400f-a53e-40539202e867",
1614
+ "alias" : "registration form",
1615
+ "description" : "registration form",
1616
+ "providerId" : "form-flow",
1617
+ "topLevel" : false,
1618
+ "builtIn" : true,
1619
+ "authenticationExecutions" : [ {
1620
+ "authenticator" : "registration-user-creation",
1621
+ "authenticatorFlow" : false,
1622
+ "requirement" : "REQUIRED",
1623
+ "priority" : 20,
1624
+ "autheticatorFlow" : false,
1625
+ "userSetupAllowed" : false
1626
+ }, {
1627
+ "authenticator" : "registration-password-action",
1628
+ "authenticatorFlow" : false,
1629
+ "requirement" : "REQUIRED",
1630
+ "priority" : 50,
1631
+ "autheticatorFlow" : false,
1632
+ "userSetupAllowed" : false
1633
+ }, {
1634
+ "authenticator" : "registration-recaptcha-action",
1635
+ "authenticatorFlow" : false,
1636
+ "requirement" : "DISABLED",
1637
+ "priority" : 60,
1638
+ "autheticatorFlow" : false,
1639
+ "userSetupAllowed" : false
1640
+ } ]
1641
+ }, {
1642
+ "id" : "3c13e250-2b19-4020-bbd7-d59f53e02435",
1643
+ "alias" : "reset credentials",
1644
+ "description" : "Reset credentials for a user if they forgot their password or something",
1645
+ "providerId" : "basic-flow",
1646
+ "topLevel" : true,
1647
+ "builtIn" : true,
1648
+ "authenticationExecutions" : [ {
1649
+ "authenticator" : "reset-credentials-choose-user",
1650
+ "authenticatorFlow" : false,
1651
+ "requirement" : "REQUIRED",
1652
+ "priority" : 10,
1653
+ "autheticatorFlow" : false,
1654
+ "userSetupAllowed" : false
1655
+ }, {
1656
+ "authenticator" : "reset-credential-email",
1657
+ "authenticatorFlow" : false,
1658
+ "requirement" : "REQUIRED",
1659
+ "priority" : 20,
1660
+ "autheticatorFlow" : false,
1661
+ "userSetupAllowed" : false
1662
+ }, {
1663
+ "authenticator" : "reset-password",
1664
+ "authenticatorFlow" : false,
1665
+ "requirement" : "REQUIRED",
1666
+ "priority" : 30,
1667
+ "autheticatorFlow" : false,
1668
+ "userSetupAllowed" : false
1669
+ }, {
1670
+ "authenticatorFlow" : true,
1671
+ "requirement" : "CONDITIONAL",
1672
+ "priority" : 40,
1673
+ "autheticatorFlow" : true,
1674
+ "flowAlias" : "Reset - Conditional OTP",
1675
+ "userSetupAllowed" : false
1676
+ } ]
1677
+ }, {
1678
+ "id" : "685298d8-862c-4047-9b16-47d4d40c381e",
1679
+ "alias" : "saml ecp",
1680
+ "description" : "SAML ECP Profile Authentication Flow",
1681
+ "providerId" : "basic-flow",
1682
+ "topLevel" : true,
1683
+ "builtIn" : true,
1684
+ "authenticationExecutions" : [ {
1685
+ "authenticator" : "http-basic-authenticator",
1686
+ "authenticatorFlow" : false,
1687
+ "requirement" : "REQUIRED",
1688
+ "priority" : 10,
1689
+ "autheticatorFlow" : false,
1690
+ "userSetupAllowed" : false
1691
+ } ]
1692
+ } ],
1693
+ "authenticatorConfig" : [ {
1694
+ "id" : "11ff34d7-34ef-47fa-b10b-65750810563f",
1695
+ "alias" : "create unique user config",
1696
+ "config" : {
1697
+ "require.password.update.after.registration" : "false"
1698
+ }
1699
+ }, {
1700
+ "id" : "305fe5ab-f5d3-48f8-9833-1b6cb518063d",
1701
+ "alias" : "review profile config",
1702
+ "config" : {
1703
+ "update.profile.on.first.login" : "missing"
1704
+ }
1705
+ } ],
1706
+ "requiredActions" : [ {
1707
+ "alias" : "CONFIGURE_TOTP",
1708
+ "name" : "Configure OTP",
1709
+ "providerId" : "CONFIGURE_TOTP",
1710
+ "enabled" : true,
1711
+ "defaultAction" : false,
1712
+ "priority" : 10,
1713
+ "config" : { }
1714
+ }, {
1715
+ "alias" : "TERMS_AND_CONDITIONS",
1716
+ "name" : "Terms and Conditions",
1717
+ "providerId" : "TERMS_AND_CONDITIONS",
1718
+ "enabled" : false,
1719
+ "defaultAction" : false,
1720
+ "priority" : 20,
1721
+ "config" : { }
1722
+ }, {
1723
+ "alias" : "UPDATE_PASSWORD",
1724
+ "name" : "Update Password",
1725
+ "providerId" : "UPDATE_PASSWORD",
1726
+ "enabled" : true,
1727
+ "defaultAction" : false,
1728
+ "priority" : 30,
1729
+ "config" : { }
1730
+ }, {
1731
+ "alias" : "UPDATE_PROFILE",
1732
+ "name" : "Update Profile",
1733
+ "providerId" : "UPDATE_PROFILE",
1734
+ "enabled" : true,
1735
+ "defaultAction" : false,
1736
+ "priority" : 40,
1737
+ "config" : { }
1738
+ }, {
1739
+ "alias" : "VERIFY_EMAIL",
1740
+ "name" : "Verify Email",
1741
+ "providerId" : "VERIFY_EMAIL",
1742
+ "enabled" : true,
1743
+ "defaultAction" : false,
1744
+ "priority" : 50,
1745
+ "config" : { }
1746
+ }, {
1747
+ "alias" : "delete_account",
1748
+ "name" : "Delete Account",
1749
+ "providerId" : "delete_account",
1750
+ "enabled" : false,
1751
+ "defaultAction" : false,
1752
+ "priority" : 60,
1753
+ "config" : { }
1754
+ }, {
1755
+ "alias" : "webauthn-register",
1756
+ "name" : "Webauthn Register",
1757
+ "providerId" : "webauthn-register",
1758
+ "enabled" : true,
1759
+ "defaultAction" : false,
1760
+ "priority" : 70,
1761
+ "config" : { }
1762
+ }, {
1763
+ "alias" : "webauthn-register-passwordless",
1764
+ "name" : "Webauthn Register Passwordless",
1765
+ "providerId" : "webauthn-register-passwordless",
1766
+ "enabled" : true,
1767
+ "defaultAction" : false,
1768
+ "priority" : 80,
1769
+ "config" : { }
1770
+ }, {
1771
+ "alias" : "update_user_locale",
1772
+ "name" : "Update User Locale",
1773
+ "providerId" : "update_user_locale",
1774
+ "enabled" : true,
1775
+ "defaultAction" : false,
1776
+ "priority" : 1000,
1777
+ "config" : { }
1778
+ } ],
1779
+ "browserFlow" : "browser",
1780
+ "registrationFlow" : "registration",
1781
+ "directGrantFlow" : "direct grant",
1782
+ "resetCredentialsFlow" : "reset credentials",
1783
+ "clientAuthenticationFlow" : "clients",
1784
+ "dockerAuthenticationFlow" : "docker auth",
1785
+ "attributes" : {
1786
+ "cibaBackchannelTokenDeliveryMode" : "poll",
1787
+ "cibaExpiresIn" : "120",
1788
+ "cibaAuthRequestedUserHint" : "login_hint",
1789
+ "oauth2DeviceCodeLifespan" : "600",
1790
+ "clientOfflineSessionMaxLifespan" : "0",
1791
+ "oauth2DevicePollingInterval" : "5",
1792
+ "clientSessionIdleTimeout" : "0",
1793
+ "parRequestUriLifespan" : "60",
1794
+ "clientSessionMaxLifespan" : "0",
1795
+ "clientOfflineSessionIdleTimeout" : "0",
1796
+ "cibaInterval" : "5",
1797
+ "realmReusableOtpCode" : "false"
1798
+ },
1799
+ "keycloakVersion" : "23.0.6",
1800
+ "userManagedAccessAllowed" : false,
1801
+ "clientProfiles" : {
1802
+ "profiles" : [ ]
1803
+ },
1804
+ "clientPolicies" : {
1805
+ "policies" : [ ]
1806
+ }
1807
+ }