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