ApiLogicServer 14.4.0__py3-none-any.whl → 14.5.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/add_cust/add_cust.py +283 -0
- api_logic_server_cli/api_logic_server.py +15 -237
- api_logic_server_cli/api_logic_server_info.yaml +3 -3
- api_logic_server_cli/cli.py +38 -28
- api_logic_server_cli/create_from_model/__pycache__/api_logic_server_utils.cpython-312.pyc +0 -0
- api_logic_server_cli/create_from_model/__pycache__/dbml.cpython-312.pyc +0 -0
- api_logic_server_cli/create_from_model/__pycache__/ont_build.cpython-312.pyc +0 -0
- api_logic_server_cli/create_from_model/__pycache__/ont_create.cpython-312.pyc +0 -0
- api_logic_server_cli/create_from_model/api_logic_server_utils.py +47 -0
- api_logic_server_cli/create_from_model/dbml.py +113 -58
- api_logic_server_cli/create_from_model/ont_build.py +83 -60
- api_logic_server_cli/create_from_model/ont_create.py +2 -1
- api_logic_server_cli/database/basic_demo.sqlite +0 -0
- api_logic_server_cli/database/basic_demo.txt +1 -0
- api_logic_server_cli/database/basic_demo_wg.sqlite +0 -0
- api_logic_server_cli/manager.py +3 -2
- api_logic_server_cli/prototypes/base/.vscode/launch.json +3 -2
- api_logic_server_cli/prototypes/base/config/config.py +66 -11
- api_logic_server_cli/prototypes/base/config/default.env +7 -1
- api_logic_server_cli/prototypes/base/database/test_data/readme.md +2 -1
- api_logic_server_cli/prototypes/base/integration/kafka/kafka_producer.py +5 -2
- api_logic_server_cli/prototypes/base/integration/n8n/n8n_producer.py +68 -21
- api_logic_server_cli/prototypes/base/integration/n8n/n8n_readme.md +19 -0
- api_logic_server_cli/prototypes/base/test/basic/server_test.py +1 -1
- api_logic_server_cli/prototypes/basic_demo/README.md +29 -52
- api_logic_server_cli/prototypes/basic_demo/customizations/api/.DS_Store +0 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/api/api_discovery/mcp_server_executor.py +138 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/api/api_discovery/openapi.py +92 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/api/api_discovery/proper_update_def.json +71 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/config/default.env +13 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/database/db.sqlite +0 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/database/models.py +131 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/.DS_Store +0 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/.DS_Store +0 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/1_langchain_loader.py +71 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/README_mcp.md +13 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/mcp_client_executor.py +295 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/mcp_schema.txt +47 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/mcp_server_discovery.json +9 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/multi_mcp_flow/multi_mcp_flow.png +0 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/multi_mcp_flow/multi_mcp_orchestration.yaml +49 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/multi_mcp_flow/wny mcp flows.png +0 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/natlang_to_api.py +73 -0
- api_logic_server_cli/prototypes/{nw_no_cust → basic_demo/customizations}/integration/mcp/resources/curl.txt +2 -1
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/images/MCP Overview.png +0 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/images/MCP_Arch.png +0 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/images/MCP_Overview_Executor.png +0 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/invoke_llm/1 - prompt_messages_array.json +10 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/invoke_llm/2 - completion_tool_context.json +12 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/llm_schema.txt +38 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/nw_swagger_2.yaml +17393 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/nw_swagger_3_relaxed.yaml +109 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/proxy_server.py +51 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/proxy_serverZ.py +72 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/validate_jsonapi.py +64 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/swagger_converter.py +65 -0
- api_logic_server_cli/prototypes/{nw_no_cust/integration/mcp → basic_demo/customizations/integration/mcp/z_old}/3_executor_test_agent.py +20 -6
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/3_executor_test_agent.py +52 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/README_functon.md +201 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/ai_plugin.json +17 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/nw-swagger_3.json +1731 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/snippets.txt +5 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/swagger_3 genai_demo_with_get.json +1731 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/swagger_3.json +1782 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/swagger_3_genai_demo.json +264 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/swagger_3_genai_demo_with_update.json +1782 -0
- api_logic_server_cli/prototypes/basic_demo/customizations/logic/declare_logic.py +62 -44
- api_logic_server_cli/prototypes/basic_demo/customizations/security/declare_security.py +11 -12
- api_logic_server_cli/prototypes/basic_demo/customizations/ui/admin/admin.yaml +166 -0
- api_logic_server_cli/prototypes/basic_demo/iteration/api/{customize_api.py → api_discovery/order_b2b.py} +17 -23
- api_logic_server_cli/prototypes/basic_demo/iteration/database/db.sqlite +0 -0
- api_logic_server_cli/prototypes/basic_demo/iteration/integration/row_dict_maps/OrderB2B.py +6 -5
- api_logic_server_cli/prototypes/basic_demo/iteration/integration/row_dict_maps/OrderShipping.py +4 -4
- api_logic_server_cli/prototypes/basic_demo/iteration/logic/declare_logic.py +69 -43
- api_logic_server_cli/prototypes/basic_demo/iteration/ui/admin/admin.yaml +125 -50
- api_logic_server_cli/prototypes/manager/README.md +4 -0
- api_logic_server_cli/prototypes/manager/README_X.md +663 -0
- api_logic_server_cli/prototypes/nw_no_cust/Tutorial.md +45 -26
- api_logic_server_cli/prototypes/nw_no_cust/api/api_discovery/openapi.py +130 -0
- api_logic_server_cli/prototypes/nw_no_cust/api/api_discovery/proper_update_def.json +71 -0
- api_logic_server_cli/prototypes/nw_no_cust/config/default.env +13 -0
- api_logic_server_cli/prototypes/ont_app/ontimize_seed/package-lock.json +9725 -1180
- api_logic_server_cli/prototypes/ont_app/ontimize_seed/package.json +3 -6
- api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/app/shared/app.services.config.ts +1 -1
- api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/css/app.scss +4 -0
- api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/i18n/en.json +1 -1
- api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/i18n/es.json +14 -12
- api_logic_server_cli/prototypes/ont_app/templates/app_config.jinja +1 -1
- api_logic_server_cli/prototypes/ont_app/templates/date_template.html +1 -1
- api_logic_server_cli/prototypes/ont_app/templates/textarea_template.html +1 -1
- api_logic_server_cli/prototypes/ont_app/templates/timestamp_template.html +1 -1
- api_logic_server_cli/prototypes/sample_ai/logic/declare_logic.py +30 -13
- {apilogicserver-14.4.0.dist-info → apilogicserver-14.5.0.dist-info}/METADATA +2 -2
- {apilogicserver-14.4.0.dist-info → apilogicserver-14.5.0.dist-info}/RECORD +101 -60
- {apilogicserver-14.4.0.dist-info → apilogicserver-14.5.0.dist-info}/WHEEL +1 -1
- api_logic_server_cli/prototypes/basic_demo/apply_customizations.ps1 +0 -17
- api_logic_server_cli/prototypes/basic_demo/apply_customizations.sh +0 -14
- api_logic_server_cli/prototypes/basic_demo/apply_iteration.ps1 +0 -20
- api_logic_server_cli/prototypes/basic_demo/apply_iteration.sh +0 -15
- api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/1_langchain_loader.py +0 -19
- api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/README.md +0 -17
- /api_logic_server_cli/prototypes/{nw_no_cust → basic_demo/customizations}/integration/mcp/2_gpt_mcp_prompt.txt +0 -0
- /api_logic_server_cli/prototypes/{nw_no_cust → basic_demo/customizations}/integration/mcp/resources/nw_swagger_3.yaml +0 -0
- /api_logic_server_cli/prototypes/{nw_no_cust → basic_demo/customizations}/integration/mcp/run_executor.py +0 -0
- {apilogicserver-14.4.0.dist-info → apilogicserver-14.5.0.dist-info}/entry_points.txt +0 -0
- {apilogicserver-14.4.0.dist-info → apilogicserver-14.5.0.dist-info}/licenses/LICENSE +0 -0
- {apilogicserver-14.4.0.dist-info → apilogicserver-14.5.0.dist-info}/top_level.txt +0 -0
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"@angular/router": "^15.2.10",
|
|
31
31
|
"@angular/service-worker": "^15.2.10",
|
|
32
32
|
"@angular/upgrade": "^15.2.10",
|
|
33
|
-
"ontimize-web-ngx": "15.6.0-next.
|
|
34
|
-
"ontimize-web-ngx-charts": "15.2.0-next.
|
|
33
|
+
"ontimize-web-ngx": "15.6.0-next.4",
|
|
34
|
+
"ontimize-web-ngx-charts": "15.2.0-next.3",
|
|
35
35
|
"ontimize-web-ngx-filemanager": "^15.1.0-next.0",
|
|
36
36
|
"ontimize-web-ngx-map": "15.0.0",
|
|
37
|
-
"ontimize-web-ngx-report": "15.1.0-next.
|
|
37
|
+
"ontimize-web-ngx-report": "15.1.0-next.3",
|
|
38
38
|
"ontimize-web-ngx-keycloak": "15.0.0",
|
|
39
39
|
"rxjs": "~7.8.0",
|
|
40
40
|
"tslib": "^2.3.0",
|
|
@@ -64,9 +64,6 @@
|
|
|
64
64
|
"karma-coverage": "~2.2.0",
|
|
65
65
|
"karma-jasmine": "~5.1.0",
|
|
66
66
|
"karma-jasmine-html-reporter": "~2.0.0",
|
|
67
|
-
"@typescript-eslint/eslint-plugin": "^5.43.0",
|
|
68
|
-
"@typescript-eslint/parser": "^5.43.0",
|
|
69
|
-
"eslint": "^8.28.0",
|
|
70
67
|
"typescript": "~4.9.5"
|
|
71
68
|
}
|
|
72
69
|
}
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
@use 'ontimize-web-ngx/theming/themes/ontimize.scss'as theme;
|
|
3
3
|
@use 'ontimize-web-ngx/theming/ontimize-style.scss';
|
|
4
4
|
@use '../../app/login/login.theme.scss'as login;
|
|
5
|
+
@use '../../app/main/main-theme.scss'as main;
|
|
5
6
|
|
|
6
7
|
// Include ontimize styles
|
|
7
8
|
@include ontimize-style.ontimize-theme-styles(theme.$theme);
|
|
@@ -9,8 +10,11 @@
|
|
|
9
10
|
// Propagate theme to screen styles definition.
|
|
10
11
|
@include login.login-theme(theme.$theme);
|
|
11
12
|
|
|
13
|
+
@include main.main-theme(theme.$theme);
|
|
12
14
|
|
|
13
15
|
//Include dark styles option
|
|
14
16
|
.o-dark {
|
|
15
17
|
@include ontimize-style.ontimize-theme-all-component-color(theme.$dark-theme);
|
|
18
|
+
@include login.login-theme(theme.$dark-theme);
|
|
19
|
+
@include main.main-theme(theme.$dark-theme);
|
|
16
20
|
}
|
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
{
|
|
2
|
-
"APP_TITLE": "
|
|
3
|
-
"VERSION": "Versión",
|
|
4
|
-
"EXAMPLE_LOGIN_INFO": "
|
|
2
|
+
"APP_TITLE": "Inicio rápido",
|
|
3
|
+
"VERSION": "Versión 1.0",
|
|
4
|
+
"EXAMPLE_LOGIN_INFO": "Use este usuario y contraseña para iniciar sesión",
|
|
5
5
|
"USERNAME": "Usuario",
|
|
6
6
|
"PASSWORD": "Contraseña",
|
|
7
|
-
"LOGIN": "
|
|
8
|
-
"LOGOUT": "
|
|
7
|
+
"LOGIN": "Iniciar sesión",
|
|
8
|
+
"LOGOUT": "Cerrar sesión",
|
|
9
9
|
"VIEW": "Vistas",
|
|
10
10
|
"HOME": "Inicio",
|
|
11
|
+
"ABOUT": "Acerca de",
|
|
12
|
+
"SETTINGS": "Configuración",
|
|
11
13
|
"LOGIN_TITLE": "Inicia sesión en tu cuenta",
|
|
12
|
-
"ERROR_REQUIRED_FIELD": "El campo es
|
|
13
|
-
"ERROR_MIN_LENGTH_REQUIRED": "
|
|
14
|
-
"ERROR_SESSION_EXPIRED": "
|
|
15
|
-
"ERROR_USER_REQUIRED": "
|
|
14
|
+
"ERROR_REQUIRED_FIELD": "El campo es obligatorio",
|
|
15
|
+
"ERROR_MIN_LENGTH_REQUIRED": "La longitud del valor ingresado debe ser de al menos 8 caracteres.",
|
|
16
|
+
"ERROR_SESSION_EXPIRED": "Sesión expirada",
|
|
17
|
+
"ERROR_USER_REQUIRED": "Usuario incorrecto",
|
|
16
18
|
"ERROR_PASS_REQUIRED": "Contraseña incorrecta",
|
|
17
|
-
"ERROR_USER_PASS_INCORRECT": "Usuario o contraseña
|
|
19
|
+
"ERROR_USER_PASS_INCORRECT": "Usuario o contraseña inválidos",
|
|
18
20
|
"REMEMBER_ME": "Recuérdame",
|
|
19
|
-
"FORGOT_PWD": "¿
|
|
21
|
+
"FORGOT_PWD": "¿Olvidaste tu contraseña?",
|
|
20
22
|
"FOOTER_CREATED_BY": "Creado por Imatia Innovation",
|
|
21
|
-
"FOOTER_RIGHTS": "Todos los derechos reservados",
|
|
23
|
+
"FOOTER_RIGHTS": "Todos los derechos reservados (c) 2024",
|
|
22
24
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<o-date-input #{{ attr }} attr="{{ attr }}" type="
|
|
1
|
+
<o-date-input #{{ attr }} attr="{{ attr }}" value-type="string" label="{{ label }}" enabled="{{ enabled }}" required="{{ required }}" format="YYYY-MM-DD" fxFlex="20%" class="form-field"></o-date-input>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<o-textarea-input #{{ attr }} attr="{{ attr }}" label="{{ label }}" enabled="true" read-only="false"></o-textarea-input>
|
|
1
|
+
<o-textarea-input #{{ attr }} attr="{{ attr }}" label="{{ label }}" enabled="true" read-only="false" fxFlex="50%"></o-textarea-input>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<o-date-input #{{ attr }} attr="{{ attr }}" type="
|
|
1
|
+
<o-date-input #{{ attr }} attr="{{ attr }}" value-type="string" label="{{ label }}" editable="{{ editable }}" required="{{ required }}" format="YYYY-MM-DD hh:mm:ss" fxFlex="20%" class="form-field"></o-date-input>
|
|
@@ -51,33 +51,50 @@ def declare_logic():
|
|
|
51
51
|
from_parent=models.Product.UnitPrice)
|
|
52
52
|
|
|
53
53
|
|
|
54
|
-
def handle_all(logic_row: LogicRow): #
|
|
54
|
+
def handle_all(logic_row: LogicRow): # #als: TIME / DATE STAMPING, OPTIMISTIC LOCKING
|
|
55
55
|
"""
|
|
56
56
|
This is generic - executed for all classes.
|
|
57
57
|
|
|
58
|
-
Invokes optimistic locking.
|
|
58
|
+
Invokes optimistic locking, and checks Grant permissions.
|
|
59
59
|
|
|
60
|
-
|
|
60
|
+
Also provides user/date stamping.
|
|
61
61
|
|
|
62
62
|
Args:
|
|
63
63
|
logic_row (LogicRow): from LogicBank - old/new row, state
|
|
64
64
|
"""
|
|
65
|
-
|
|
66
|
-
if
|
|
65
|
+
|
|
66
|
+
if os.getenv("APILOGICPROJECT_NO_FLASK") is not None:
|
|
67
|
+
print("\ndeclare_logic.py Using TestBase\n")
|
|
67
68
|
return # enables rules to be used outside of Flask, e.g., test data loading
|
|
68
69
|
|
|
69
|
-
|
|
70
|
+
if logic_row.is_updated() and logic_row.old_row is not None and logic_row.nest_level == 0:
|
|
70
71
|
opt_locking.opt_lock_patch(logic_row=logic_row)
|
|
71
|
-
|
|
72
|
-
|
|
72
|
+
|
|
73
|
+
Grant.process_updates(logic_row=logic_row)
|
|
74
|
+
|
|
75
|
+
did_stamping = False
|
|
76
|
+
if enable_stamping := False: # #als: DATE / USER STAMPING
|
|
73
77
|
row = logic_row.row
|
|
74
78
|
if logic_row.ins_upd_dlt == "ins" and hasattr(row, "CreatedOn"):
|
|
75
79
|
row.CreatedOn = datetime.datetime.now()
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
80
|
+
did_stamping = True
|
|
81
|
+
if logic_row.ins_upd_dlt == "ins" and hasattr(row, "CreatedBy"):
|
|
82
|
+
row.CreatedBy = Security.current_user().id
|
|
83
|
+
# if Config.SECURITY_ENABLED == True else 'public'
|
|
84
|
+
did_stamping = True
|
|
85
|
+
if logic_row.ins_upd_dlt == "upd" and hasattr(row, "UpdatedOn"):
|
|
86
|
+
row.UpdatedOn = datetime.datetime.now()
|
|
87
|
+
did_stamping = True
|
|
88
|
+
if logic_row.ins_upd_dlt == "upd" and hasattr(row, "UpdatedBy"):
|
|
89
|
+
row.UpdatedBy = Security.current_user().id \
|
|
90
|
+
if Config.SECURITY_ENABLED == True else 'public'
|
|
91
|
+
did_stamping = True
|
|
92
|
+
if did_stamping:
|
|
93
|
+
logic_row.log("early_row_event_all_classes - handle_all did stamping")
|
|
79
94
|
Rule.early_row_event_all_classes(early_row_event_all_classes=handle_all)
|
|
80
95
|
|
|
96
|
+
#als rules report
|
|
97
|
+
from api.system import api_utils
|
|
98
|
+
# api_utils.rules_report()
|
|
81
99
|
|
|
82
|
-
app_logger.debug("..logic/declare_logic.py (logic == rules + code)")
|
|
83
|
-
|
|
100
|
+
app_logger.debug("..logic/declare_logic.py (logic == rules + code)")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ApiLogicServer
|
|
3
|
-
Version: 14.
|
|
3
|
+
Version: 14.5.0
|
|
4
4
|
Author-email: Val Huber <apilogicserver@gmail.com>
|
|
5
5
|
License: BSD-3-Clause
|
|
6
6
|
Project-URL: Homepage, https://apilogicserver.github.io/Docs/
|
|
@@ -40,7 +40,7 @@ Requires-Dist: MarkupSafe==2.1.3
|
|
|
40
40
|
Requires-Dist: six==1.16.0
|
|
41
41
|
Requires-Dist: SQLAlchemy==2.0.15
|
|
42
42
|
Requires-Dist: Werkzeug==2.3.3
|
|
43
|
-
Requires-Dist: safrs>=3.1.
|
|
43
|
+
Requires-Dist: safrs>=3.1.7
|
|
44
44
|
Requires-Dist: Flask-Admin==1.5.7
|
|
45
45
|
Requires-Dist: Flask-JWT-Extended==4.4.4
|
|
46
46
|
Requires-Dist: Flask-Login==0.6.2
|
|
@@ -1,33 +1,34 @@
|
|
|
1
1
|
api_logic_server_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
api_logic_server_cli/api_logic_server.py,sha256=
|
|
3
|
-
api_logic_server_cli/api_logic_server_info.yaml,sha256=
|
|
4
|
-
api_logic_server_cli/cli.py,sha256
|
|
2
|
+
api_logic_server_cli/api_logic_server.py,sha256=66uqGCK9NnbKfJQgUSw-QXZpRZVx2809Jxvh4f2k0xY,103201
|
|
3
|
+
api_logic_server_cli/api_logic_server_info.yaml,sha256=d-QJp6ArXrxRp4fi-G2IaNJNzI5exp59VcZmidbrGIo,127
|
|
4
|
+
api_logic_server_cli/cli.py,sha256=AT1cWszOygHWIbpxDoXFhaTeSai3Tf5SbGoXvN4h510,83134
|
|
5
5
|
api_logic_server_cli/cli_args_base.py,sha256=lr27KkOB7_WpZwTs7LgiK8LKDIHMKQkoZCTnE99BFxw,3280
|
|
6
6
|
api_logic_server_cli/cli_args_project.py,sha256=I5no_fGRV_ZsK3SuttVDAaQYI4Q5zCjx6LojGkM024w,4645
|
|
7
7
|
api_logic_server_cli/extended_builder.py,sha256=EhtXGAt_RrDR2tCtgvc2U82we7fr-F6pP-e6HS6dQWQ,13867
|
|
8
8
|
api_logic_server_cli/logging.yml,sha256=isWhKviFwJwYgjIUejfhUxcMli2zEbZeQbEvVhNk_4Y,1812
|
|
9
|
-
api_logic_server_cli/manager.py,sha256=
|
|
9
|
+
api_logic_server_cli/manager.py,sha256=ITvz4DXt3PAW5Z5wmeKOWKPBnWHl-E7c_tElrx6QADM,10867
|
|
10
|
+
api_logic_server_cli/add_cust/add_cust.py,sha256=k-DpD7JqQ3gj4Mlhsdjl-L8jTNqJ3M7VMl1-K1jDh5Q,13928
|
|
10
11
|
api_logic_server_cli/create_from_model/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
|
11
12
|
api_logic_server_cli/create_from_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
13
|
api_logic_server_cli/create_from_model/api_expose_api_models_creator.py,sha256=V-u3Hm404doztw66YuD2A043RCFmtw5QF5tMioC_1b0,7900
|
|
13
|
-
api_logic_server_cli/create_from_model/api_logic_server_utils.py,sha256=
|
|
14
|
+
api_logic_server_cli/create_from_model/api_logic_server_utils.py,sha256=64rPLahX-FUu_1AhZlpHf4ljjWnQsYP0g-Ikhjd5pO8,25863
|
|
14
15
|
api_logic_server_cli/create_from_model/create_db_from_model.py,sha256=2H7slGnk39XOSnvL7vxrg6Ewx4bxeBJBgLo8fcXHTB4,4382
|
|
15
|
-
api_logic_server_cli/create_from_model/dbml.py,sha256=
|
|
16
|
+
api_logic_server_cli/create_from_model/dbml.py,sha256=fuNWpoRXh1V9VznUM4gLO6Wrs4Ul5jnta7cXMzrdnzI,10971
|
|
16
17
|
api_logic_server_cli/create_from_model/meta_model.py,sha256=ERf7tSgnSJSeRMVyggkdg-lvORQZSbfK0KMpL63qSEY,5837
|
|
17
18
|
api_logic_server_cli/create_from_model/model_creation_services.py,sha256=B86ljgUR98H_dCaxqiw-flrbvc05-XXtkC5It2BSezs,41479
|
|
18
|
-
api_logic_server_cli/create_from_model/ont_build.py,sha256=
|
|
19
|
-
api_logic_server_cli/create_from_model/ont_create.py,sha256=
|
|
19
|
+
api_logic_server_cli/create_from_model/ont_build.py,sha256=5BcmM0xW-0vjr9J_u1o0_3joLfKhcLeDWP31dcy5dzI,67028
|
|
20
|
+
api_logic_server_cli/create_from_model/ont_create.py,sha256=BU3RDPHEgFkmhUsDsIeZQtks5fOa-mhVhzkeVAJ8PSk,16292
|
|
20
21
|
api_logic_server_cli/create_from_model/ui_admin_creator.py,sha256=j1hZuHn70c4NA7l0zXH_PbcwH79FQPgkZh1qF_6sLyU,38071
|
|
21
22
|
api_logic_server_cli/create_from_model/uri_info.py,sha256=WiDw7hRcidz9hasodQ6O2ZJnUMfhHeydueQ8HXzPXlc,2395
|
|
22
23
|
api_logic_server_cli/create_from_model/__pycache__/__init__.cpython-312.pyc,sha256=CsCx6kjrSUonIcVUGVJemwAdGUB8h4IF0cwnpTIU4C4,223
|
|
23
24
|
api_logic_server_cli/create_from_model/__pycache__/api_expose_api_models_creator.cpython-312.pyc,sha256=3wtCiVHOjOgIonZOgnCsF2p01zcXIapx1_Tq2LwzY6Q,6989
|
|
24
|
-
api_logic_server_cli/create_from_model/__pycache__/api_logic_server_utils.cpython-312.pyc,sha256=
|
|
25
|
+
api_logic_server_cli/create_from_model/__pycache__/api_logic_server_utils.cpython-312.pyc,sha256=oaOOqBJogGZdW5nVn93zqOY552sumaX5fGANDN42eCQ,26691
|
|
25
26
|
api_logic_server_cli/create_from_model/__pycache__/create_db_from_model.cpython-312.pyc,sha256=5eE8pIEa-OoUOk0xn_b78cCc9dSmxjTMn3HGJbxbFY4,4799
|
|
26
|
-
api_logic_server_cli/create_from_model/__pycache__/dbml.cpython-312.pyc,sha256=
|
|
27
|
+
api_logic_server_cli/create_from_model/__pycache__/dbml.cpython-312.pyc,sha256=iPEPjHB7iSsSI5eAooWKp75ApOw-iN-MFJRpt0jGkZs,11925
|
|
27
28
|
api_logic_server_cli/create_from_model/__pycache__/meta_model.cpython-312.pyc,sha256=BH5Cflj8YKf0CVkHpIZ_3eBbHXhwIWbwsrzM7DsEikE,7098
|
|
28
29
|
api_logic_server_cli/create_from_model/__pycache__/model_creation_services.cpython-312.pyc,sha256=_pJPTvkJL22Eu1BWM48VfXcyapD366OnXBqHGn-wtO0,36462
|
|
29
|
-
api_logic_server_cli/create_from_model/__pycache__/ont_build.cpython-312.pyc,sha256=
|
|
30
|
-
api_logic_server_cli/create_from_model/__pycache__/ont_create.cpython-312.pyc,sha256=
|
|
30
|
+
api_logic_server_cli/create_from_model/__pycache__/ont_build.cpython-312.pyc,sha256=Xk4WiwbBTGbnGEFaGmxZ0WWGaitoNZBHj3fPDxQwxUI,74078
|
|
31
|
+
api_logic_server_cli/create_from_model/__pycache__/ont_create.cpython-312.pyc,sha256=wfaUqOrOUmCWGJlwz0HtN-wBckqp8w1nh4SrW2WHUnM,16283
|
|
31
32
|
api_logic_server_cli/create_from_model/__pycache__/ui_admin_creator.cpython-312.pyc,sha256=7lvvAHZDgxZcQWdf9oY4I8wyWPNZAv2leuVMsYmaNWY,38389
|
|
32
33
|
api_logic_server_cli/create_from_model/__pycache__/uri_info.cpython-312.pyc,sha256=oXtt-zINPCIGtb1xpwtaHwUQPt4AYo8tkIlN0Fe5EkI,2718
|
|
33
34
|
api_logic_server_cli/create_from_model/safrs-react-admin-npm-build/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
|
@@ -442,7 +443,9 @@ api_logic_server_cli/database/allocation.sqlite,sha256=9bH3HKgagCnzNTrj7whysop7r
|
|
|
442
443
|
api_logic_server_cli/database/authentication-unused.sqlite,sha256=hA71uBnrh2PVQw9YLc-YbsXjpxr2VyvfE-OhF_ssE6w,45056
|
|
443
444
|
api_logic_server_cli/database/authentication_doc-unused.sqlite,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
444
445
|
api_logic_server_cli/database/authentication_doc_unused.sqlite,sha256=U1PFfI_P2fQ0O68AkYD5orgfbDIxJnh-jn8i2hUcLrg,53248
|
|
445
|
-
api_logic_server_cli/database/basic_demo.sqlite,sha256=
|
|
446
|
+
api_logic_server_cli/database/basic_demo.sqlite,sha256=v6heXI3w2A0zWWcNXLTe3IJb5-NnAMr2xaLJ42ANlMQ,20480
|
|
447
|
+
api_logic_server_cli/database/basic_demo.txt,sha256=5si_qDHcyaOasTFgPqK-f4q0VRY3GA2Z-2OUaZ_Xgzg,50
|
|
448
|
+
api_logic_server_cli/database/basic_demo_wg.sqlite,sha256=ywpzn3Q5k-XTcMkB4-6Pks9XUB2Y4c_KUbAxwC5EFMU,28672
|
|
446
449
|
api_logic_server_cli/database/classicmodels.sqlite,sha256=9ob7iBwVLf8D10_d0SlAEHTGeig3fErP8Y6_s47LilY,413696
|
|
447
450
|
api_logic_server_cli/database/customize_models.py,sha256=9QyFDo9mHo-VpwsVP-cXxU5BvBtgYtj7NhxvKEpGDjU,122
|
|
448
451
|
api_logic_server_cli/database/model_using_numeric.py,sha256=PDQqndxION4LIlH9-3J9Ozc0JKbXVaITqQI2sGULkW4,1812
|
|
@@ -525,7 +528,7 @@ api_logic_server_cli/prototypes/base/.idea/runConfigurations/Run_Behave.xml,sha2
|
|
|
525
528
|
api_logic_server_cli/prototypes/base/.idea/runConfigurations/Windows_Run_Behave.xml,sha256=TMkGY8PMDhcGGkDw_tC-QljbmXLGT66ubsmRbMmfzi0,1205
|
|
526
529
|
api_logic_server_cli/prototypes/base/.idea/runConfigurations/run___No_Security.xml,sha256=BBK0h04vSC_hVSi7dKm_8Mo201jGivZRbx4ruFcqAEo,1193
|
|
527
530
|
api_logic_server_cli/prototypes/base/.idea/runConfigurations/run_docker.xml,sha256=oDHdZ8WEGU1MoWEQHH3jBvbPZt4hGlodUq4IeXv68co,2444
|
|
528
|
-
api_logic_server_cli/prototypes/base/.vscode/launch.json,sha256=
|
|
531
|
+
api_logic_server_cli/prototypes/base/.vscode/launch.json,sha256=HoSDdjv9Gi_o32Q-MzvGEWTOzokE1D2FENUf1XQTWoc,11113
|
|
529
532
|
api_logic_server_cli/prototypes/base/.vscode/settings.json,sha256=vS3gt0PpFbZ3fdGeiVGaE4v9PyRydjrrdGWb27w9UUo,470
|
|
530
533
|
api_logic_server_cli/prototypes/base/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
531
534
|
api_logic_server_cli/prototypes/base/api/customize_api.py,sha256=-_eoaIukB4v1dF1TXTOqRRyU_nLbXXEhphI43GPtdoI,2236
|
|
@@ -546,8 +549,8 @@ api_logic_server_cli/prototypes/base/api/system/opt_locking/opt_locking.py,sha25
|
|
|
546
549
|
api_logic_server_cli/prototypes/base/api/system/opt_locking/readme.md,sha256=Ja_-d-mxHAvOFslu6jlu18HQ3CSFaaSvphHMm3YM-Z8,6760
|
|
547
550
|
api_logic_server_cli/prototypes/base/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
548
551
|
api_logic_server_cli/prototypes/base/config/activate_logicbank.py,sha256=IuDe3uWcbQBtBzLAXsN45sr91sUYvM5OO5ggEk_XnRA,2198
|
|
549
|
-
api_logic_server_cli/prototypes/base/config/config.py,sha256=
|
|
550
|
-
api_logic_server_cli/prototypes/base/config/default.env,sha256
|
|
552
|
+
api_logic_server_cli/prototypes/base/config/config.py,sha256=SMkt_SmMFfQ1g9a9wG0bZNM7yUsRANxFCz2EFWs-WeY,30879
|
|
553
|
+
api_logic_server_cli/prototypes/base/config/default.env,sha256=-rjXJrjR4vjMr9YCVYVchaJw7qMBlbvQ3KfR_wri_XM,412
|
|
551
554
|
api_logic_server_cli/prototypes/base/config/logging-reduced.yml,sha256=N-BDIk0t5uAmw3Of_d_ueK4jx7pxNwlYbkiDd1wjRDs,2179
|
|
552
555
|
api_logic_server_cli/prototypes/base/config/logging.yml,sha256=qMPyWipCWukb2qFyf18E9QCgGirob9jNDcx64PNqAdI,2330
|
|
553
556
|
api_logic_server_cli/prototypes/base/config/mypy.ini,sha256=2jL3ZtXg9SmJZu6zVQS_hmvO8wyVF1a1JWcVZplXLEk,568
|
|
@@ -566,7 +569,7 @@ api_logic_server_cli/prototypes/base/database/database_discovery/auto_discovery.
|
|
|
566
569
|
api_logic_server_cli/prototypes/base/database/db_debug/db_debug.py,sha256=ctcwksnM89597LUAme5Sn044r-xgRh47wSSe3MioPH4,3259
|
|
567
570
|
api_logic_server_cli/prototypes/base/database/system/SAFRSBaseX.py,sha256=p8C7AF9r9a_oeO1GcltUqR6YSTbcevbWVm3vhfTT1h0,2540
|
|
568
571
|
api_logic_server_cli/prototypes/base/database/test_data/alp_init.py,sha256=C7yqHB7KoOgwvzRsI3DVk9O_QHPu4SYioChv0Jz5xXY,1203
|
|
569
|
-
api_logic_server_cli/prototypes/base/database/test_data/readme.md,sha256=
|
|
572
|
+
api_logic_server_cli/prototypes/base/database/test_data/readme.md,sha256=IDKVMagnjobf5IigYCkQkUMM_iLvBdhK9grMNImSOKg,694
|
|
570
573
|
api_logic_server_cli/prototypes/base/database/test_data/response2code.py,sha256=PTeAXHU-r6r0EBknSGXnbkdySAAzch_3gOuRlyUyVF8,4414
|
|
571
574
|
api_logic_server_cli/prototypes/base/database/test_data/test_data_preamble.py,sha256=zmGdhH-Lm_BLeTkDSAb_7jQd4OD10LivzEOisdHT_fU,2892
|
|
572
575
|
api_logic_server_cli/prototypes/base/devops/readme-devops.md,sha256=KxoCpgjKN3U8GZ48VF1yH2hF_i2kC7QViZacgP4iN8s,1340
|
|
@@ -622,11 +625,11 @@ api_logic_server_cli/prototypes/base/docs/logic_suggestions/readme_logic_suggest
|
|
|
622
625
|
api_logic_server_cli/prototypes/base/docs/training/logic_bank_api.prompt,sha256=3zZu_AQLPskFzs_UL49-lk8Z6ck7YhQnj8wlz30Ib1k,14606
|
|
623
626
|
api_logic_server_cli/prototypes/base/docs/training/logic_example.py,sha256=yAot6uHy1gu94ufeYDx3f0iJ1_czsDywSAdm_yu4E2o,1325
|
|
624
627
|
api_logic_server_cli/prototypes/base/integration/kafka/kafka_consumer.py,sha256=2DOsFpYnsJ71gZzzfJweEmL-i99uCtEFU0hVwIKFGMw,1516
|
|
625
|
-
api_logic_server_cli/prototypes/base/integration/kafka/kafka_producer.py,sha256=
|
|
628
|
+
api_logic_server_cli/prototypes/base/integration/kafka/kafka_producer.py,sha256=g0nMAVfz1Y0iKJbbXfvRpdf-QUmyB4uUGZ6lyaVoXag,4470
|
|
626
629
|
api_logic_server_cli/prototypes/base/integration/kafka/kafka_readme.md,sha256=MlwykHWM2w41KzWh4vPuTnIodR8f-BQzrWpV4P1hrsI,161
|
|
627
630
|
api_logic_server_cli/prototypes/base/integration/n8n/N8N_WebHook_from_ApiLogicServer.json,sha256=s9JuoF9gLiuNZAD0dTVdnwQpORQHe0TseyPNVDe048w,10606
|
|
628
|
-
api_logic_server_cli/prototypes/base/integration/n8n/n8n_producer.py,sha256=
|
|
629
|
-
api_logic_server_cli/prototypes/base/integration/n8n/n8n_readme.md,sha256=
|
|
631
|
+
api_logic_server_cli/prototypes/base/integration/n8n/n8n_producer.py,sha256=LuMec7HNwjaCsyMQSTTRpx9tW6l3OiV1StWrnahJBPA,7314
|
|
632
|
+
api_logic_server_cli/prototypes/base/integration/n8n/n8n_readme.md,sha256=8RisYrm8ORUbtu-Duis19DJTBMGW32LymWYZN9A0pF0,3130
|
|
630
633
|
api_logic_server_cli/prototypes/base/integration/row_dict_maps/row_dict_maps_readme.md,sha256=5tOPwErjkcCQONrNcaGsttEwybxCIq-5j45dkOcDh1Q,206
|
|
631
634
|
api_logic_server_cli/prototypes/base/integration/system/FlaskKafka.py,sha256=QK5In9vuYbng6vPpUfDQsQ7ECD5lCkLYrZcgNy7U0-s,3352
|
|
632
635
|
api_logic_server_cli/prototypes/base/integration/system/RowDictMapper.py,sha256=DSdmeAQZZ_wUWHHiSS_6ZgeTKIuEycNlgX140l3fnSE,19986
|
|
@@ -656,7 +659,7 @@ api_logic_server_cli/prototypes/base/test/api_logic_server_behave/logs/behave.lo
|
|
|
656
659
|
api_logic_server_cli/prototypes/base/test/api_logic_server_behave/reports/Behave Logic Report Intro micro.md,sha256=vWXV3FPIHirQrxFQg7DpQhtrrYeay0xjGNL3FmklB2I,147
|
|
657
660
|
api_logic_server_cli/prototypes/base/test/api_logic_server_behave/reports/Behave Logic Report Intro.md,sha256=UW_vCd4k2LwKPO4d9pXTsbvLPrXg7S42tbywVJlAbFU,3732
|
|
658
661
|
api_logic_server_cli/prototypes/base/test/api_logic_server_behave/reports/Behave Logic Report Sample.md,sha256=wVNGwhF3GhVVRv7YJLjqUd2WsjFZD_IpIzRZN3xEgkI,91494
|
|
659
|
-
api_logic_server_cli/prototypes/base/test/basic/server_test.py,sha256=
|
|
662
|
+
api_logic_server_cli/prototypes/base/test/basic/server_test.py,sha256=mmFF-TKEbUyMU1QfcDDNGu9sULD9nclnp-tyzNv9kEo,757
|
|
660
663
|
api_logic_server_cli/prototypes/base/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
661
664
|
api_logic_server_cli/prototypes/base/ui/admin/admin_loader.py,sha256=pg_5mcIkU_I57Mx368xXH4US77UXjdiTPnun6HOicHo,10322
|
|
662
665
|
api_logic_server_cli/prototypes/base/ui/admin/authentication_admin.yaml,sha256=Y2eVLzaV8Je6QRj2Dn2AM0FxN0oMjz6QdtZ4UAVsaNk,2261
|
|
@@ -686,21 +689,62 @@ api_logic_server_cli/prototypes/base/venv_setup/requirements-no-cli.txt,sha256=s
|
|
|
686
689
|
api_logic_server_cli/prototypes/base/venv_setup/venv-linux.sh,sha256=FDIxVyZ50CgLVLrAW942Kxnkv1n4WLR2UerzUnuhPwM,900
|
|
687
690
|
api_logic_server_cli/prototypes/base/venv_setup/venv.ps1,sha256=_-LfKkLw5HOkZsF59BGCqM9Zsk3n1oDIyDb4emy0O08,698
|
|
688
691
|
api_logic_server_cli/prototypes/base/venv_setup/venv.sh,sha256=aWX9fa8fe6aO9ifBIZEgGY5UGh4I0arOoCwBzDsxgU8,893
|
|
689
|
-
api_logic_server_cli/prototypes/basic_demo/README.md,sha256=
|
|
690
|
-
api_logic_server_cli/prototypes/basic_demo/
|
|
691
|
-
api_logic_server_cli/prototypes/basic_demo/
|
|
692
|
-
api_logic_server_cli/prototypes/basic_demo/
|
|
693
|
-
api_logic_server_cli/prototypes/basic_demo/
|
|
692
|
+
api_logic_server_cli/prototypes/basic_demo/README.md,sha256=COAWgXJGu0Xn6BHTeLyn9I39xcYHCKBslix7L2Xrodw,13487
|
|
693
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/api/.DS_Store,sha256=6F7pphfwiMhILhl_J6yVhDZFYXmar5V92iLCzSkfnyA,6148
|
|
694
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/api/api_discovery/mcp_server_executor.py,sha256=1tHuLToAJFCtJ7pb2H1sy8h3jQ_fALr0NPDA8CjrFDw,5552
|
|
695
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/api/api_discovery/openapi.py,sha256=kLQ7Fn1J7tzuNJHBXF2AiwtzvQ-0JxJ6z-MfFryAtLk,3887
|
|
696
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/api/api_discovery/proper_update_def.json,sha256=3wHSQ-uo3Qf0WVVMT3gA59B7OyOfQ4wPMHGzUTji3VM,1924
|
|
697
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/config/default.env,sha256=-rjXJrjR4vjMr9YCVYVchaJw7qMBlbvQ3KfR_wri_XM,412
|
|
698
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/database/db.sqlite,sha256=VAhzjdz9_LTQNE6lVprZuliyHBGjQOggulM099cinSQ,24576
|
|
699
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/database/models.py,sha256=Hi4m_ivLPE3i2HNfC-rXEADE_toWBHcLelYAQBzV_oA,4499
|
|
700
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/.DS_Store,sha256=nfyHG63vXNerWIrSwk76tTujqqB25mRZZZ04VJmxlCQ,6148
|
|
701
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/.DS_Store,sha256=HB6pvj-RSv9lpbdgc3AhOlu0XPC2iqu9kdAc0Wuxulk,6148
|
|
702
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/1_langchain_loader.py,sha256=GomQ06dJoe7j_-hy7Tlansf1cLEiIHwUshNm6w7te28,2431
|
|
703
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/2_gpt_mcp_prompt.txt,sha256=Tx9KWAgsLOyPSPnCI_wp-17vaFL9wGPGzmju4UJKH74,560
|
|
704
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/README_mcp.md,sha256=Fias_SyKSzIPso5kKAJZAj2-N7fzzKxCEBhTVxNUeqE,938
|
|
705
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/mcp_client_executor.py,sha256=yn4gXpgZdrtPyKttOtYA3oea7WyiTZSxJbhYYpZHCrU,12179
|
|
706
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/mcp_schema.txt,sha256=qmov7e0NdYiQTCxNJU2xzxf9HnYeXFej-c8GSB-y6MM,1143
|
|
707
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/mcp_server_discovery.json,sha256=TUyInb67AWoGw7XFE9iDZxmM8UEID-ahQmdmzpF9AmQ,188
|
|
708
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/natlang_to_api.py,sha256=7WEiH9MUe5hkmbCpx0KoEie-7VOsZJYLVukdvrNy2ck,2121
|
|
709
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/run_executor.py,sha256=SI9j1UvUS6Kq3Q20DACR-2dfRUZ9JgKYblRU3fAY0dE,489
|
|
710
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/swagger_converter.py,sha256=knhpXXBxT64vsDtsJ0TKztquElbOn7vNREFDocBJzXc,2067
|
|
711
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/multi_mcp_flow/multi_mcp_flow.png,sha256=GdFqe957YCWdwrHpOrT7iz_t0k8v3Dwp2IEoPJq8V5E,117701
|
|
712
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/multi_mcp_flow/multi_mcp_orchestration.yaml,sha256=JjWOCesi5PUAXYuwBDTjt7OR7qWmginj-N2C-8fqboU,1432
|
|
713
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/multi_mcp_flow/wny mcp flows.png,sha256=Zr2-fo-yaWjbmlcCNuhVjFO24aQO8Fo81P6xU5Ork0w,450429
|
|
714
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/curl.txt,sha256=V4FlbbG3_zXt8DCGLdE6OCu5FVuh5w06wyJE-ybXBnY,175
|
|
715
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/llm_schema.txt,sha256=NBhkTOSZh4oe4rR8eid6GzIRmHM1rjXb0Br5_n3Upuc,921
|
|
716
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/nw_swagger_2.yaml,sha256=qP89VLCQbfYkquXOWffdDKcM331AynxO0H6Nm5DNF9I,690268
|
|
717
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/nw_swagger_3.yaml,sha256=dGTlpgsNgS1N2eOu2glBtwayUmAeqCuqV_ToZnH7Y_M,482190
|
|
718
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/nw_swagger_3_relaxed.yaml,sha256=nFwUpTNb0NlJw1WIdCMeJuNHJcPMOzjtlEM-pbaUuUE,3653
|
|
719
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/proxy_server.py,sha256=9worE-VcGUOP_4BchqooQXmhtEJn2JU03Av1EFWxfLE,1785
|
|
720
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/proxy_serverZ.py,sha256=QKU9dZn6rg2VHC1x4YpaO5ZCCKwbXDd83fSq7wfePOg,2264
|
|
721
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/validate_jsonapi.py,sha256=o_WichQ2Xqft8W95mn67yETwgTUEZEKeSr2sLwqtoM0,2309
|
|
722
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/images/MCP Overview.png,sha256=dWIfJk9WG9Wz487Y7dgqxCiTiSI9Lx92JcB863o8yEA,1433329
|
|
723
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/images/MCP_Arch.png,sha256=1Qr7S1EF3C-rfj-TF4z3YHb0b-FPXPY82hYf1Kf6vJw,1342013
|
|
724
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/images/MCP_Overview_Executor.png,sha256=dwge9Zy-exnSDBAKt194P9mHaNS2Nvxqmr5iP1UiPbg,1330369
|
|
725
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/invoke_llm/1 - prompt_messages_array.json,sha256=E5Q0saEGGs-0OdhLDBaoL2D9mycm8WP_rciFEEMzNZM,1739
|
|
726
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/resources/invoke_llm/2 - completion_tool_context.json,sha256=U_s7-57G4S07nnJNm6_loBNflWw47_LddFjQaCT60Tg,279
|
|
727
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/mcp/z_old/3_executor_test_agent.py,sha256=vH-3wJvQE99LDt9ID3wWtVw1EOv8yJJNipPGgYINAus,1251
|
|
728
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/3_executor_test_agent.py,sha256=vH-3wJvQE99LDt9ID3wWtVw1EOv8yJJNipPGgYINAus,1251
|
|
729
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/README_functon.md,sha256=h-GPxsEy3wUnX4IcGzH8faBNrDvdV71btmhYq6J6zkY,6639
|
|
730
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/ai_plugin.json,sha256=-TcpPnKT6OESE4U97Sah9tCjaqMOlWY5fnKtjGO7vYM,561
|
|
731
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/nw-swagger_3.json,sha256=nYMUuLic6x3YaymUXDCevM-XeZ5DjnlgNFm0uXYNHkU,51728
|
|
732
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/snippets.txt,sha256=mUHFRZlXLOO8VVeVmFeZTcdetzsiKFW2ueIGIM0EcXk,132
|
|
733
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/swagger_3 genai_demo_with_get.json,sha256=qKiO5OwwMrFflYi-_m5Iuo6HgvV7Dt3oooRJ9bpMwIg,51695
|
|
734
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/swagger_3.json,sha256=arGkv02-QYkGp20l3o88kijV4XOdMi2HsxraVWhGd54,49478
|
|
735
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/swagger_3_genai_demo.json,sha256=EnHZqaqlcSiAeLXpX3c3L_PCQcWCPdD3eKiEwzDU-0g,6024
|
|
736
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/integration/openai_function/swagger_3_genai_demo_with_update.json,sha256=arGkv02-QYkGp20l3o88kijV4XOdMi2HsxraVWhGd54,49478
|
|
694
737
|
api_logic_server_cli/prototypes/basic_demo/customizations/logic/cocktail-napkin.jpg,sha256=5rNSy6wvcWSHPJQZqkf2DHs19QLWiyqMBNwxGqjstZU,133075
|
|
695
|
-
api_logic_server_cli/prototypes/basic_demo/customizations/logic/declare_logic.py,sha256
|
|
696
|
-
api_logic_server_cli/prototypes/basic_demo/customizations/security/declare_security.py,sha256=
|
|
697
|
-
api_logic_server_cli/prototypes/basic_demo/
|
|
698
|
-
api_logic_server_cli/prototypes/basic_demo/iteration/
|
|
738
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/logic/declare_logic.py,sha256=K_giXgDoi7C9ePIBVe0mCBLsOSUBL3JlroY11XRVGPY,4541
|
|
739
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/security/declare_security.py,sha256=gbdH29cPY656lgROPm_w20Q-g6AhlIMES3wiIrqBTdk,2439
|
|
740
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/ui/admin/admin.yaml,sha256=DWU-kbGAMbI1NBeK4MIgwGg7DRRNVDNr1vezWDzHoFk,3425
|
|
741
|
+
api_logic_server_cli/prototypes/basic_demo/iteration/api/api_discovery/order_b2b.py,sha256=hg9Bsz0_t-RjO9rFcW-YH3y26kq4IY5dd9FfVoYxB4w,3176
|
|
742
|
+
api_logic_server_cli/prototypes/basic_demo/iteration/database/db.sqlite,sha256=up0LBGiq9HiJIHD7eldIi1wRXC3rNYl6nQ98b_1RfEc,24576
|
|
699
743
|
api_logic_server_cli/prototypes/basic_demo/iteration/docs/er_diagram.png,sha256=-3aSv9ay7XeFqGU-cygRz5T5eYhY627BYmA6GXdUYH0,161072
|
|
700
|
-
api_logic_server_cli/prototypes/basic_demo/iteration/integration/row_dict_maps/OrderB2B.py,sha256=
|
|
701
|
-
api_logic_server_cli/prototypes/basic_demo/iteration/integration/row_dict_maps/OrderShipping.py,sha256=
|
|
702
|
-
api_logic_server_cli/prototypes/basic_demo/iteration/logic/declare_logic.py,sha256=
|
|
703
|
-
api_logic_server_cli/prototypes/basic_demo/iteration/ui/admin/admin.yaml,sha256=
|
|
744
|
+
api_logic_server_cli/prototypes/basic_demo/iteration/integration/row_dict_maps/OrderB2B.py,sha256=MGNSSOpqfHPaK8Yjm-h_x8ki-Uu_yU73C1l8ZXRipCo,1282
|
|
745
|
+
api_logic_server_cli/prototypes/basic_demo/iteration/integration/row_dict_maps/OrderShipping.py,sha256=pzrK57C1ppUUcSBVNICXGujsf9p1ZTRq0bpKacgcrV0,1213
|
|
746
|
+
api_logic_server_cli/prototypes/basic_demo/iteration/logic/declare_logic.py,sha256=nsHZdK4PQ2xifAI0atGCZUUiilSZ2-iHWp2_mE7RpW8,6502
|
|
747
|
+
api_logic_server_cli/prototypes/basic_demo/iteration/ui/admin/admin.yaml,sha256=zN1dtWgBYKqY2D7v173CGUs9n0T4-GjHmDYk0XJ4uvE,4220
|
|
704
748
|
api_logic_server_cli/prototypes/classicmodels/devops/docker-compose-dev-azure/docker-compose-dev-azure.yml,sha256=5qrlCzViJcYZ9uhWGBCJmnexi7bwQaYzQKMqGCnRzS0,1389
|
|
705
749
|
api_logic_server_cli/prototypes/classicmodels/devops/docker-compose-dev-local/docker-compose-dev-local.yml,sha256=WJu3CKusT1wju6CubOKi6T1pW3pbE8JrZraGTpC6HTY,1439
|
|
706
750
|
api_logic_server_cli/prototypes/classicmodels/devops/docker-compose-dev-local-nginx/docker-compose-dev-local-nginx.yml,sha256=QgsdxPfRYNUco0DcXZWo5_9FgDzrCmnWFoDjkrws5XU,2456
|
|
@@ -737,7 +781,8 @@ api_logic_server_cli/prototypes/genai_demo/logic/logic_discovery/auto_discovery.
|
|
|
737
781
|
api_logic_server_cli/prototypes/genai_demo/security/declare_security.py,sha256=L3AL1bgdqIWQxdkJZcFVDOQ0XRpmeLAKqwlAYChFWKo,2108
|
|
738
782
|
api_logic_server_cli/prototypes/genai_demo/ui/admin/admin.yaml,sha256=vMpr6to6g-h9gSuhxfpTeDMw5_R_eUKbV7qXzMEvIyk,3446
|
|
739
783
|
api_logic_server_cli/prototypes/manager/.gitignore,sha256=xfAjNQHokbo6GuN1ghx-eml8tQIzwUczLC_YVzElndI,195
|
|
740
|
-
api_logic_server_cli/prototypes/manager/README.md,sha256=
|
|
784
|
+
api_logic_server_cli/prototypes/manager/README.md,sha256=Z5lIaqu27J_pwX40fZdw3sIBwgbH3H6RegIMvJnZoKc,23265
|
|
785
|
+
api_logic_server_cli/prototypes/manager/README_X.md,sha256=Jh8BSH47xVf6Y2SYiUmb__aA6OOwX20Bw3mKVA5F83k,23060
|
|
741
786
|
api_logic_server_cli/prototypes/manager/run_sample.sh,sha256=eRA-p_Snr7Pwk14wUw5mja2usEcjAKisHVhHMeSaQ68,781
|
|
742
787
|
api_logic_server_cli/prototypes/manager/run_web_genai.sh,sha256=sgjB3vKhkao93Ny3VN0AQ-wonvdBcBIT3rTbyNTMoG8,136
|
|
743
788
|
api_logic_server_cli/prototypes/manager/settings.txt,sha256=_jjL30jomIMxG21edDfrXYRT9Zfgr_0EdUWvcEUOnFQ,368
|
|
@@ -5774,7 +5819,10 @@ api_logic_server_cli/prototypes/nw/ui/images/Employee/king.jpg,sha256=wobxZZgqGm
|
|
|
5774
5819
|
api_logic_server_cli/prototypes/nw/ui/images/Employee/leverling.jpg,sha256=w02cBPLXEIg3YJnjx2oJ--4semxQemnqwj-Gk9uV_2g,3750
|
|
5775
5820
|
api_logic_server_cli/prototypes/nw/ui/images/Employee/peacock.jpg,sha256=UIfxEKOKruPKNW0w17bMebIaUsa1nD2vSVfFTk7uaCs,3862
|
|
5776
5821
|
api_logic_server_cli/prototypes/nw/ui/images/Employee/suyama.jpg,sha256=bp0xCJ-8EqQp_B7uR4glL6fVGxVlS10d5IHLNdw7rcA,4375
|
|
5777
|
-
api_logic_server_cli/prototypes/nw_no_cust/Tutorial.md,sha256=
|
|
5822
|
+
api_logic_server_cli/prototypes/nw_no_cust/Tutorial.md,sha256=0reZHh31_29OiDoq2YjgcZBh7bFNF60TEjVG-cUzoZ8,16724
|
|
5823
|
+
api_logic_server_cli/prototypes/nw_no_cust/api/api_discovery/openapi.py,sha256=Un9qQvRCcuotyBi4WVWuXUcQhyvuYX-Zv1QHnAMvBhc,5557
|
|
5824
|
+
api_logic_server_cli/prototypes/nw_no_cust/api/api_discovery/proper_update_def.json,sha256=3wHSQ-uo3Qf0WVVMT3gA59B7OyOfQ4wPMHGzUTji3VM,1924
|
|
5825
|
+
api_logic_server_cli/prototypes/nw_no_cust/config/default.env,sha256=-rjXJrjR4vjMr9YCVYVchaJw7qMBlbvQ3KfR_wri_XM,412
|
|
5778
5826
|
api_logic_server_cli/prototypes/nw_no_cust/docs/graphics/count_orders_by_category.prompt,sha256=a8IZYviDfssu2PH8VfQKFywRUcbLJYwvUWXe-otzBJc,49
|
|
5779
5827
|
api_logic_server_cli/prototypes/nw_no_cust/docs/graphics/request copy.json,sha256=NEl_qRHlmsMP8PfKndkEdW9mNxzxJGygnlzZdNZF1DY,17803
|
|
5780
5828
|
api_logic_server_cli/prototypes/nw_no_cust/docs/graphics/request.json,sha256=3Y2SOxypg-GRUR2C6iWss7lqiBTEftvVdQwbpC271Zk,18789
|
|
@@ -5782,13 +5830,6 @@ api_logic_server_cli/prototypes/nw_no_cust/docs/graphics/response.json,sha256=4e
|
|
|
5782
5830
|
api_logic_server_cli/prototypes/nw_no_cust/docs/graphics/response.yaml,sha256=YulqKo9dUzmCiYQzguCAUeSYk-rCGAiA5xuWS29UqkI,2033
|
|
5783
5831
|
api_logic_server_cli/prototypes/nw_no_cust/docs/graphics/sales_by_category.prompt,sha256=iK_rWDSMt3Zmw9pKkCQqu4fysmKrUd4HmgHYEZzu_Sg,23
|
|
5784
5832
|
api_logic_server_cli/prototypes/nw_no_cust/docs/graphics/sales_by_employee.prompt,sha256=5FlUw1pXYMVa27i45lbikZ9Br76OjegHU5rH_XOII0g,38
|
|
5785
|
-
api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/1_langchain_loader.py,sha256=QfDgwIDWNF-wQxiGSj68rid7PUdJStoEnwn8-L-j94w,517
|
|
5786
|
-
api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/2_gpt_mcp_prompt.txt,sha256=Tx9KWAgsLOyPSPnCI_wp-17vaFL9wGPGzmju4UJKH74,560
|
|
5787
|
-
api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/3_executor_test_agent.py,sha256=XjWUOPGAZeLOtJavuCZkdspT0SXDsRPeeyMWOzkPejY,760
|
|
5788
|
-
api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/README.md,sha256=C3QUpxOVr0m3iCdPM7BkNjViLYwRVQ0h6f_ZCoKfzDE,991
|
|
5789
|
-
api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/run_executor.py,sha256=SI9j1UvUS6Kq3Q20DACR-2dfRUZ9JgKYblRU3fAY0dE,489
|
|
5790
|
-
api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/resources/curl.txt,sha256=0pBJEtLVhYwZUzkKxXIHoIdSDVf0H8UIhh86drOP-QE,173
|
|
5791
|
-
api_logic_server_cli/prototypes/nw_no_cust/integration/mcp/resources/nw_swagger_3.yaml,sha256=dGTlpgsNgS1N2eOu2glBtwayUmAeqCuqV_ToZnH7Y_M,482190
|
|
5792
5833
|
api_logic_server_cli/prototypes/nw_no_cust/venv_setup/system_note.txt,sha256=axb89FhqhxWGgnowLLyPZHZ0iC2jNLorjmqnuq63mJU,46
|
|
5793
5834
|
api_logic_server_cli/prototypes/nw_pa/$rebuild_pa.txt,sha256=kOyxrKzkzVPUmCeeD_CmX5yYVWmP9TtyvTLp4oRjM4I,1340
|
|
5794
5835
|
api_logic_server_cli/prototypes/nw_pa/admin_customer_nw_pa.yaml,sha256=rVpswwM3dVjhO8649MAamUipfLuSubLh7OCdHjhlYlM,11896
|
|
@@ -5807,8 +5848,8 @@ api_logic_server_cli/prototypes/ont_app/ontimize_seed/angular.json,sha256=yi89J5
|
|
|
5807
5848
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/docker-compose-ontimize.yml,sha256=gGi0bodFvlftdP1xrp0y0AKvFCtOdB-U5CdOK7a0SMI,1805
|
|
5808
5849
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/karma.conf.js,sha256=Q7cZOkcrjCTxX69D5MqQ3PI8eTP0nxV36fIDu_xGylM,1037
|
|
5809
5850
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/ngsw-config.json,sha256=glcgrz-2KB2haUlGFyjmobH1kKAq5ZWf1xoAOyOWJ9w,620
|
|
5810
|
-
api_logic_server_cli/prototypes/ont_app/ontimize_seed/package-lock.json,sha256=
|
|
5811
|
-
api_logic_server_cli/prototypes/ont_app/ontimize_seed/package.json,sha256=
|
|
5851
|
+
api_logic_server_cli/prototypes/ont_app/ontimize_seed/package-lock.json,sha256=G7q3FYtAH9VX1p8fMIJvC9Ot7hnOur980ersbTXnEss,577163
|
|
5852
|
+
api_logic_server_cli/prototypes/ont_app/ontimize_seed/package.json,sha256=nptz4uk0AI39NxWn3J35_y-CrCAjaOaiTfBLef-gkcM,2283
|
|
5812
5853
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/tsconfig.app.json,sha256=hyYKRbyu1xs_xaJGVOPu5jcEek2oP8DMIeKN5X6Yla0,272
|
|
5813
5854
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/tsconfig.json,sha256=gx_giKrzvilZmNVRkJ0LYQPBQCIgYbSIfQwQx5yXQbk,568
|
|
5814
5855
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/tsconfig.spec.json,sha256=vV38h43m3prBlu4Wm_e2ZSYh6eV1vZayMH6zeU8PTcM,270
|
|
@@ -5860,14 +5901,14 @@ api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/app/main/settings/sett
|
|
|
5860
5901
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/app/main/settings/settings.component.ts,sha256=La4OfNnHedak9c7nS7lzadA7dvRuM0TB7fX20VJ5ahY,1398
|
|
5861
5902
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/app/main/settings/settings.module.ts,sha256=CclMXeRBIBsitq0w5uY4D7dPvJaPrCNL1_Mdr5_UTO0,458
|
|
5862
5903
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/app/shared/app.menu.config.ts,sha256=LsrvmU0THsUk6oYNwg8ukiOC8cSUvzTnSSje5k0z6Wg,270
|
|
5863
|
-
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/app/shared/app.services.config.ts,sha256=
|
|
5904
|
+
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/app/shared/app.services.config.ts,sha256=9YA0Qw_G6ZLqhqIjQbJusWv-M6fTd62ghLFUTFh1Vds,37
|
|
5864
5905
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/app/shared/constant.ts,sha256=DhVJv1k0l5_npoQsd7I4tayGnXNWewDrI7Y6_UEcnaM,93
|
|
5865
5906
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/app/shared/shared.module.ts,sha256=5LIoHXVuhv82Muna3jjt5tZvsGRCwi4kT92jsw1VPP8,287
|
|
5866
5907
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5867
|
-
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/css/app.scss,sha256
|
|
5908
|
+
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/css/app.scss,sha256=Zyr00WhTiZ4FmY9y-iCxedQfHlqC6F4uzzlb5CCQ7e8,704
|
|
5868
5909
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/css/loader.css,sha256=bTXpkVzE1ZBk1Ve-6ANsXcWr0uDsP3lWflCfOvOWN9Y,3946
|
|
5869
|
-
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/i18n/en.json,sha256=
|
|
5870
|
-
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/i18n/es.json,sha256=
|
|
5910
|
+
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/i18n/en.json,sha256=zOK1wt-e_UiLXL7PJcicZcWV4u9URPgEIiornsj3Zuo,854
|
|
5911
|
+
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/i18n/es.json,sha256=dGtCBAplgzP-4dRbHjn_1WQrLlT8lgjFHCktuPJ7U98,963
|
|
5871
5912
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/icons/ontimize128.png,sha256=C3SLMnvDsWGtryzeUpAsxC2YkojrGMaszk0tPFZTAMA,3332
|
|
5872
5913
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/icons/ontimize16.png,sha256=VyNS2WGrO5JFyPzi1JSvxahGOTCS0u7GFHTvI8q6iu8,712
|
|
5873
5914
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/assets/icons/ontimize256.png,sha256=btad_2A3tQRexrRLSivU0rSswSLTqXDgdrFsUaT05l8,20116
|
|
@@ -5893,7 +5934,7 @@ api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/environments/environme
|
|
|
5893
5934
|
api_logic_server_cli/prototypes/ont_app/ontimize_seed/src/environments/environment.ts,sha256=hMAKX3vQ-7Oyi-IbCFs5vKMFbTi3g6lVZdwIgsXfJ6s,571
|
|
5894
5935
|
api_logic_server_cli/prototypes/ont_app/templates/app.menu.config.jinja,sha256=odc1PAyk4PVtXAZVViSIa49maDNUBOcXwLy2XaChc8Q,681
|
|
5895
5936
|
api_logic_server_cli/prototypes/ont_app/templates/app.module.jinja,sha256=5NPQvPY208HwyAXja_yDreonCzYFF8MlFaMNcv7l1I8,1782
|
|
5896
|
-
api_logic_server_cli/prototypes/ont_app/templates/app_config.jinja,sha256=
|
|
5937
|
+
api_logic_server_cli/prototypes/ont_app/templates/app_config.jinja,sha256=IZicfLkfvm9mqXdGwvQ7Kq3NHRaJlfGhw58F6Ftcn_M,1274
|
|
5897
5938
|
api_logic_server_cli/prototypes/ont_app/templates/app_menu_group.jinja,sha256=UyYTYNLHflY1ceY3RVHUYHsx1Mp227hzTSgm0aOQUro,203
|
|
5898
5939
|
api_logic_server_cli/prototypes/ont_app/templates/card.component.html,sha256=fQ_ZMQdOJNl_pBhPxDwsFypROYjkzcuDLgNMhdC4YAQ,47
|
|
5899
5940
|
api_logic_server_cli/prototypes/ont_app/templates/card.component.jinja,sha256=NCgTqJzGnq1lYkSK0CJ0gXb-6VI0Om-OcWSaLdvD9Co,381
|
|
@@ -5902,7 +5943,7 @@ api_logic_server_cli/prototypes/ont_app/templates/check_circle.html,sha256=WIeAJ
|
|
|
5902
5943
|
api_logic_server_cli/prototypes/ont_app/templates/combo-picker.html,sha256=8JitbFpVH-vLQTsbTTpCxpy4Lxmh1DoCj97bym_K1Ew,375
|
|
5903
5944
|
api_logic_server_cli/prototypes/ont_app/templates/component.scss,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5904
5945
|
api_logic_server_cli/prototypes/ont_app/templates/currency_template.html,sha256=_vyQ4ZTlt_Sv-CCZP445AarZCEkx4SjXLiEnucxzxlU,343
|
|
5905
|
-
api_logic_server_cli/prototypes/ont_app/templates/date_template.html,sha256=
|
|
5946
|
+
api_logic_server_cli/prototypes/ont_app/templates/date_template.html,sha256=La8Wu-nZn0OWT8D3qdsw0iL5gsF5kjIAyTndsyYeoto,201
|
|
5906
5947
|
api_logic_server_cli/prototypes/ont_app/templates/detail.scss,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5907
5948
|
api_logic_server_cli/prototypes/ont_app/templates/detail_component.jinja,sha256=V7sZhZgpsNy4TwaIiU7djBC9bQ893tHP43ikQsuiz4I,975
|
|
5908
5949
|
api_logic_server_cli/prototypes/ont_app/templates/detail_route_template.jinja,sha256=yQDDoLyk1ZlZmKT7ejceUouotsKM9t611c10VIC1GBg,264
|
|
@@ -5953,9 +5994,9 @@ api_logic_server_cli/prototypes/ont_app/templates/table_real_template.html,sha25
|
|
|
5953
5994
|
api_logic_server_cli/prototypes/ont_app/templates/table_text_template.html,sha256=imFQ1Vl_1y6JA6vVTlwDJAG7JuoHhFfVBA4nnGrXw_0,156
|
|
5954
5995
|
api_logic_server_cli/prototypes/ont_app/templates/table_textarea_template.html,sha256=xueM7w4abNnr4XlVOo_DasBFjtzGnjNj0dOdjFvun5c,120
|
|
5955
5996
|
api_logic_server_cli/prototypes/ont_app/templates/text_template.html,sha256=2D4genPRzZhze6tfRGtOP2DYKxrFtDM6EtSTdZDPt1o,161
|
|
5956
|
-
api_logic_server_cli/prototypes/ont_app/templates/textarea_template.html,sha256=
|
|
5997
|
+
api_logic_server_cli/prototypes/ont_app/templates/textarea_template.html,sha256=iqIZUq0Z9J3Yn0DW55Ky_2_jA4p_7NT4ZbKLQMPWaHk,134
|
|
5957
5998
|
api_logic_server_cli/prototypes/ont_app/templates/time_template.html,sha256=gVuyAEE91cqlt9qmeLvhviuvJ27vDyvXJxoRKhi0nuw,218
|
|
5958
|
-
api_logic_server_cli/prototypes/ont_app/templates/timestamp_template.html,sha256=
|
|
5999
|
+
api_logic_server_cli/prototypes/ont_app/templates/timestamp_template.html,sha256=diHBfBvHtzVVcALlgu_znIaY91VwIo2SnuocGJIAIWE,212
|
|
5959
6000
|
api_logic_server_cli/prototypes/ont_app/templates/tree_routing.jinja,sha256=c4O7LL3iL6308XnrJRZP6g5kTenBTKsotSujtyd9oqQ,1111
|
|
5960
6001
|
api_logic_server_cli/prototypes/oracle/database/db_debug/oracle_db_debug.py,sha256=y9DG5toVWuSrlAUHuKyFNs5DFtKayf--OyKMGLsbOEQ,3244
|
|
5961
6002
|
api_logic_server_cli/prototypes/postgres/devops/docker-compose-dev-azure/docker-compose-dev-azure.yml,sha256=U8wwxQU77YUu_TfUN2Nf3T0WKLT1ehvw60kcKhi_b30,1193
|
|
@@ -5969,7 +6010,7 @@ api_logic_server_cli/prototypes/sample_ai/database/chatgpt/sample_ai_items.sqlit
|
|
|
5969
6010
|
api_logic_server_cli/prototypes/sample_ai/database/chatgpt/sample_ai_models.py,sha256=EBu8nJt9bg-QJN1GG0eP4evsJeU7hvoOU8Aby17q1no,5567
|
|
5970
6011
|
api_logic_server_cli/prototypes/sample_ai/database/chatgpt/sample_ai_models.sqlite,sha256=xVXgtMoEsivbm0BrrMgsSh5t6V-3EKDRvHp0SobgmSk,20480
|
|
5971
6012
|
api_logic_server_cli/prototypes/sample_ai/logic/cocktail-napkin.jpg,sha256=5rNSy6wvcWSHPJQZqkf2DHs19QLWiyqMBNwxGqjstZU,133075
|
|
5972
|
-
api_logic_server_cli/prototypes/sample_ai/logic/declare_logic.py,sha256=
|
|
6013
|
+
api_logic_server_cli/prototypes/sample_ai/logic/declare_logic.py,sha256=PKO10DBQwqr_EILraeR4YIkWKk6JwoaAZ8MnkNZ4dpc,4199
|
|
5973
6014
|
api_logic_server_cli/prototypes/sample_ai/security/declare_security.py,sha256=L3AL1bgdqIWQxdkJZcFVDOQ0XRpmeLAKqwlAYChFWKo,2108
|
|
5974
6015
|
api_logic_server_cli/prototypes/sample_ai_iteration/api/customize_api.py,sha256=Pbqwj0FcLIOHEaiBPOpTBFGVOniAnaabB9-x0OvT4sI,7402
|
|
5975
6016
|
api_logic_server_cli/prototypes/sample_ai_iteration/database/db.sqlite,sha256=Fb5yOHnS_u5QNS6wAohXup26M6at_QVknX04plwuPQM,24576
|
|
@@ -6069,9 +6110,9 @@ api_logic_server_cli/tools/mini_skel/database/system/SAFRSBaseX.py,sha256=p8C7AF
|
|
|
6069
6110
|
api_logic_server_cli/tools/mini_skel/database/system/TestDataBase.py,sha256=U02SYqThsbY5g3DX7XGaiMxjZBuOpzvtPS6RfI1WQFg,371
|
|
6070
6111
|
api_logic_server_cli/tools/mini_skel/logic/declare_logic.py,sha256=fTrlHyqMeZsw_TyEXFa1VlYBL7fzjZab5ONSXO7aApo,175
|
|
6071
6112
|
api_logic_server_cli/tools/mini_skel/logic/load_verify_rules.py,sha256=Rr5bySJpYCZmNPF2h-phcPJ53nAOPcT_ohZpCD93-a0,7530
|
|
6072
|
-
apilogicserver-14.
|
|
6073
|
-
apilogicserver-14.
|
|
6074
|
-
apilogicserver-14.
|
|
6075
|
-
apilogicserver-14.
|
|
6076
|
-
apilogicserver-14.
|
|
6077
|
-
apilogicserver-14.
|
|
6113
|
+
apilogicserver-14.5.0.dist-info/licenses/LICENSE,sha256=67BS7VC-Z8GpaR3wijngQJkHWV04qJrwQArVgn9ldoI,1485
|
|
6114
|
+
apilogicserver-14.5.0.dist-info/METADATA,sha256=S6XdowdLi2gMDA7Y8YfN8f1aW_5DA2pErE5cxDnaxGA,2817
|
|
6115
|
+
apilogicserver-14.5.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
6116
|
+
apilogicserver-14.5.0.dist-info/entry_points.txt,sha256=KiLloZJ3c_RW-nIDqBtoE0WEsQTnZ3dELwHLWi23LMA,103
|
|
6117
|
+
apilogicserver-14.5.0.dist-info/top_level.txt,sha256=-r0AT_GEApleihg-jIh0OMvzzc0BO1RuhhOpE91H5qI,21
|
|
6118
|
+
apilogicserver-14.5.0.dist-info/RECORD,,
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
Write-Output " "
|
|
2
|
-
Write-Output "Simulate customizations"
|
|
3
|
-
Write-Output " "
|
|
4
|
-
|
|
5
|
-
$Ready= Read-Host -Prompt "Stop Server, and press RETURN to apply customizations, or Ctl-C > "
|
|
6
|
-
|
|
7
|
-
Set-PSDebug -Trace 1
|
|
8
|
-
|
|
9
|
-
ApiLogicServer add-auth --project_name=. --db_url=auth
|
|
10
|
-
|
|
11
|
-
cp -r -Force customizations/* .
|
|
12
|
-
|
|
13
|
-
Set-PSDebug -Trace 0
|
|
14
|
-
Write-Output " "
|
|
15
|
-
Write-Output "Customizations applied"
|
|
16
|
-
Write-Output " "
|
|
17
|
-
Write-Output " "
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/bin/bash
|
|
2
|
-
|
|
3
|
-
echo "\n Simulate customizations\n"
|
|
4
|
-
|
|
5
|
-
read -p "Stop Server, and press RETURN to apply customizations, or Ctl-C $1> "
|
|
6
|
-
|
|
7
|
-
set -x
|
|
8
|
-
|
|
9
|
-
ApiLogicServer add-auth --project_name=. --db_url=auth
|
|
10
|
-
|
|
11
|
-
cp -r customizations/ .
|
|
12
|
-
set +x
|
|
13
|
-
|
|
14
|
-
echo "\n Customizations applied\n\n"
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
Write-Output " "
|
|
2
|
-
Write-Output "Iteration"
|
|
3
|
-
Write-Output " "
|
|
4
|
-
|
|
5
|
-
$Ready = Read-Host -Prompt "Stop Server, and press RETURN to apply iteration, or Ctl-C > "
|
|
6
|
-
|
|
7
|
-
Set-PSDebug -Trace 1
|
|
8
|
-
|
|
9
|
-
# get database with Product.CarbonNeutral, rebuilt ui/admin/admin.yaml
|
|
10
|
-
cp -r -Force iteration/* .
|
|
11
|
-
|
|
12
|
-
cd .. # rebuild project from new database, preserving customizations
|
|
13
|
-
ApiLogicServer rebuild-from-database --project_name=basic_demo --db_url=sqlite:///basic_demo\database\db.sqlite
|
|
14
|
-
cd basic_demo
|
|
15
|
-
|
|
16
|
-
Set-PSDebug -Trace 0
|
|
17
|
-
Write-Output " "
|
|
18
|
-
Write-Output "\n Iteration applied"
|
|
19
|
-
Write-Output " "
|
|
20
|
-
Write-Output " "
|