ApiLogicServer 15.0.14__py3-none-any.whl → 15.0.20__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 +4 -4
- api_logic_server_cli/api_logic_server_info.yaml +2 -2
- api_logic_server_cli/cli.py +44 -1
- api_logic_server_cli/create_from_model/__pycache__/api_logic_server_utils.cpython-312.pyc +0 -0
- api_logic_server_cli/create_from_model/api_logic_server_utils.py +14 -0
- api_logic_server_cli/genai/genai_admin_app copy.py +150 -0
- api_logic_server_cli/genai/genai_admin_app.py +162 -0
- api_logic_server_cli/genai/genai_svcs.py +49 -10
- api_logic_server_cli/logging.yml +5 -0
- api_logic_server_cli/prototypes/.DS_Store +0 -0
- api_logic_server_cli/prototypes/base/config/config.py +4 -3
- api_logic_server_cli/prototypes/base/docs/training/admin_app_1_context.prompt.md +3 -0
- api_logic_server_cli/prototypes/base/docs/training/admin_app_2_functionality.prompt.md +69 -0
- api_logic_server_cli/prototypes/base/docs/training/admin_app_3_architecture.prompt.md +29 -0
- api_logic_server_cli/prototypes/base/docs/training/admin_app_unused.md +156 -0
- api_logic_server_cli/prototypes/base/integration/mcp/mcp_client_executor.py +15 -12
- api_logic_server_cli/prototypes/basic_demo/customizations/docs/mcp_learning/mcp_discovery.json +108 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/app_learning/Admin-App-Learning-Prompt.md +170 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/app_learning/notes.md +7 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/.DS_Store +0 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/README.md +17 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/README_create_react_app.md +70 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/package-lock.json +18469 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/package.json +44 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/public/favicon.ico +0 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/public/index.html +43 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/public/logo192.png +0 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/public/logo512.png +0 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/public/manifest.json +25 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/public/robots.txt +3 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/src/App.css +38 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/src/App.js +25 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/src/App.test.js +8 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/src/dataProvider.js +110 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/src/index.css +13 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/src/index.js +17 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/src/logo.svg +1 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/src/reportWebVitals.js +13 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/src/setupTests.js +5 -0
- api_logic_server_cli/prototypes/nw/.DS_Store +0 -0
- api_logic_server_cli/prototypes/nw/ui/.DS_Store +0 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/.DS_Store +0 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/README.md +19 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/README_create_react_app.md +70 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/package-lock.json +18469 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/package.json +44 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/public/favicon.ico +0 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/public/index.html +43 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/public/logo192.png +0 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/public/logo512.png +0 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/public/manifest.json +25 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/public/robots.txt +3 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/App.css +38 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/App.js +58 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/App.test.js +8 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Category.js +82 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Customer.js +211 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/CustomerDemographic.js +57 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Department.js +98 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Employee.js +100 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/EmployeeAudit.js +106 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/EmployeeTerritory.js +98 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Location.js +87 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Order.js +98 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/OrderDetail.js +112 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Product.js +103 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Region.js +65 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/SampleDBVersion.js +73 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Shipper.js +67 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Supplier.js +87 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Territory.js +90 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Union.js +61 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/dataProvider.js +110 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/index.css +13 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/index.js +17 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/logo.svg +1 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/reportWebVitals.js +13 -0
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/setupTests.js +5 -0
- {apilogicserver-15.0.14.dist-info → apilogicserver-15.0.20.dist-info}/METADATA +1 -1
- {apilogicserver-15.0.14.dist-info → apilogicserver-15.0.20.dist-info}/RECORD +84 -16
- {apilogicserver-15.0.14.dist-info → apilogicserver-15.0.20.dist-info}/WHEEL +0 -0
- {apilogicserver-15.0.14.dist-info → apilogicserver-15.0.20.dist-info}/entry_points.txt +0 -0
- {apilogicserver-15.0.14.dist-info → apilogicserver-15.0.20.dist-info}/licenses/LICENSE +0 -0
- {apilogicserver-15.0.14.dist-info → apilogicserver-15.0.20.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import { fetchUtils } from 'react-admin';
|
|
2
|
+
|
|
3
|
+
const apiUrl = 'http://localhost:5656/api';
|
|
4
|
+
const httpClient = fetchUtils.fetchJson;
|
|
5
|
+
|
|
6
|
+
const convertId = (record) => ({
|
|
7
|
+
...record.attributes,
|
|
8
|
+
id: record.id,
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
export const dataProvider = {
|
|
12
|
+
getList: async (resource, params) => {
|
|
13
|
+
const { page, perPage } = params.pagination;
|
|
14
|
+
const { field, order } = params.sort;
|
|
15
|
+
const query = {
|
|
16
|
+
[`page[number]`]: page,
|
|
17
|
+
[`page[size]`]: perPage,
|
|
18
|
+
[`sort`]: order === 'ASC' ? field : `-${field}`,
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
// Filters (e.g. filter[name]=Alice)
|
|
22
|
+
Object.entries(params.filter || {}).forEach(([key, value]) => {
|
|
23
|
+
query[`filter[${key}]`] = value;
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
const url = `${apiUrl}/${resource}?${new URLSearchParams(query).toString()}`;
|
|
27
|
+
const { json } = await httpClient(url);
|
|
28
|
+
return {
|
|
29
|
+
data: json.data.map(convertId),
|
|
30
|
+
total: json.meta?.total || json.data.length,
|
|
31
|
+
};
|
|
32
|
+
},
|
|
33
|
+
|
|
34
|
+
getOne: async (resource, params) => {
|
|
35
|
+
const url = `${apiUrl}/${resource}/${params.id}`;
|
|
36
|
+
const { json } = await httpClient(url);
|
|
37
|
+
return {
|
|
38
|
+
data: convertId(json.data),
|
|
39
|
+
};
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
getMany: async (resource, params) => {
|
|
43
|
+
const promises = params.ids.map((id) =>
|
|
44
|
+
httpClient(`${apiUrl}/${resource}/${id}`).then(({ json }) => convertId(json.data))
|
|
45
|
+
);
|
|
46
|
+
const data = await Promise.all(promises);
|
|
47
|
+
return { data };
|
|
48
|
+
},
|
|
49
|
+
|
|
50
|
+
getManyReference: async (resource, params) => {
|
|
51
|
+
const { page, perPage } = params.pagination;
|
|
52
|
+
const { field, order } = params.sort;
|
|
53
|
+
const query = {
|
|
54
|
+
[`page[number]`]: page,
|
|
55
|
+
[`page[size]`]: perPage,
|
|
56
|
+
[`sort`]: order === 'ASC' ? field : `-${field}`,
|
|
57
|
+
[`filter[${params.target}]`]: params.id,
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
const url = `${apiUrl}/${resource}?${new URLSearchParams(query).toString()}`;
|
|
61
|
+
const { json } = await httpClient(url);
|
|
62
|
+
return {
|
|
63
|
+
data: json.data.map(convertId),
|
|
64
|
+
total: json.meta?.total || json.data.length,
|
|
65
|
+
};
|
|
66
|
+
},
|
|
67
|
+
|
|
68
|
+
create: async (resource, params) => {
|
|
69
|
+
const url = `${apiUrl}/${resource}`;
|
|
70
|
+
const body = {
|
|
71
|
+
data: {
|
|
72
|
+
type: resource,
|
|
73
|
+
attributes: params.data,
|
|
74
|
+
},
|
|
75
|
+
};
|
|
76
|
+
const { json } = await httpClient(url, {
|
|
77
|
+
method: 'POST',
|
|
78
|
+
body: JSON.stringify(body),
|
|
79
|
+
});
|
|
80
|
+
return {
|
|
81
|
+
data: convertId(json.data),
|
|
82
|
+
};
|
|
83
|
+
},
|
|
84
|
+
|
|
85
|
+
update: async (resource, params) => {
|
|
86
|
+
const url = `${apiUrl}/${resource}/${params.id}`;
|
|
87
|
+
const body = {
|
|
88
|
+
data: {
|
|
89
|
+
type: resource,
|
|
90
|
+
id: params.id,
|
|
91
|
+
attributes: params.data,
|
|
92
|
+
},
|
|
93
|
+
};
|
|
94
|
+
const { json } = await httpClient(url, {
|
|
95
|
+
method: 'PATCH',
|
|
96
|
+
body: JSON.stringify(body),
|
|
97
|
+
});
|
|
98
|
+
return {
|
|
99
|
+
data: convertId(json.data),
|
|
100
|
+
};
|
|
101
|
+
},
|
|
102
|
+
|
|
103
|
+
delete: async (resource, params) => {
|
|
104
|
+
const url = `${apiUrl}/${resource}/${params.id}`;
|
|
105
|
+
await httpClient(url, {
|
|
106
|
+
method: 'DELETE',
|
|
107
|
+
});
|
|
108
|
+
return { data: { id: params.id } };
|
|
109
|
+
},
|
|
110
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
body {
|
|
2
|
+
margin: 0;
|
|
3
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
4
|
+
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
5
|
+
sans-serif;
|
|
6
|
+
-webkit-font-smoothing: antialiased;
|
|
7
|
+
-moz-osx-font-smoothing: grayscale;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
code {
|
|
11
|
+
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
12
|
+
monospace;
|
|
13
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import ReactDOM from 'react-dom/client';
|
|
3
|
+
import './index.css';
|
|
4
|
+
import App from './App';
|
|
5
|
+
import reportWebVitals from './reportWebVitals';
|
|
6
|
+
|
|
7
|
+
const root = ReactDOM.createRoot(document.getElementById('root'));
|
|
8
|
+
root.render(
|
|
9
|
+
<React.StrictMode>
|
|
10
|
+
<App />
|
|
11
|
+
</React.StrictMode>
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
// If you want to start measuring performance in your app, pass a function
|
|
15
|
+
// to log results (for example: reportWebVitals(console.log))
|
|
16
|
+
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
|
17
|
+
reportWebVitals();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3"><g fill="#61DAFB"><path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/><circle cx="420.9" cy="296.5" r="45.7"/><path d="M520.5 78.1z"/></g></svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
const reportWebVitals = onPerfEntry => {
|
|
2
|
+
if (onPerfEntry && onPerfEntry instanceof Function) {
|
|
3
|
+
import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
|
|
4
|
+
getCLS(onPerfEntry);
|
|
5
|
+
getFID(onPerfEntry);
|
|
6
|
+
getFCP(onPerfEntry);
|
|
7
|
+
getLCP(onPerfEntry);
|
|
8
|
+
getTTFB(onPerfEntry);
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export default reportWebVitals;
|
|
@@ -1,17 +1,17 @@
|
|
|
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=odfTuoa5G1UhbXUX2w6ncwBoeTq8A3z2iIJaVjl3vJE,96357
|
|
3
|
+
api_logic_server_cli/api_logic_server_info.yaml,sha256=3gmA9nbJa0v4WDFNefQrtAd4XrM7-EuQ2F7F7KRkjRs,128
|
|
4
|
+
api_logic_server_cli/cli.py,sha256=bSc3sj9df94pIx0HyRYKOojOv3M360UNQgieJAgg9IM,85002
|
|
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
|
-
api_logic_server_cli/logging.yml,sha256=
|
|
8
|
+
api_logic_server_cli/logging.yml,sha256=HRChDsF_s03qnD47GCKIGlLDFcIGRwovHWR1wfwVpJs,1935
|
|
9
9
|
api_logic_server_cli/manager.py,sha256=9TIzFPpz-Ge6UaAw3Uxt0bzHoyzXIhX7NEPoek0oVek,11205
|
|
10
10
|
api_logic_server_cli/add_cust/add_cust.py,sha256=ZRmCr62ljocGuiMgplFhpLMFfLJrqsGo7KX0-zKZx-U,14046
|
|
11
11
|
api_logic_server_cli/create_from_model/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
|
12
12
|
api_logic_server_cli/create_from_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
api_logic_server_cli/create_from_model/api_expose_api_models_creator.py,sha256=V-u3Hm404doztw66YuD2A043RCFmtw5QF5tMioC_1b0,7900
|
|
14
|
-
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=NhaK9DyaZrCHoTR6KVtMpd6xfFOfYSv7dYjhFdCp8aI,27539
|
|
15
15
|
api_logic_server_cli/create_from_model/create_db_from_model.py,sha256=2H7slGnk39XOSnvL7vxrg6Ewx4bxeBJBgLo8fcXHTB4,4382
|
|
16
16
|
api_logic_server_cli/create_from_model/dbml.py,sha256=UKBIXUDGgm0yk0GefBB6Nu3FDwHf_daYV6qfPM0716U,11557
|
|
17
17
|
api_logic_server_cli/create_from_model/meta_model.py,sha256=ERf7tSgnSJSeRMVyggkdg-lvORQZSbfK0KMpL63qSEY,5837
|
|
@@ -22,7 +22,7 @@ api_logic_server_cli/create_from_model/ui_admin_creator.py,sha256=j1hZuHn70c4NA7
|
|
|
22
22
|
api_logic_server_cli/create_from_model/uri_info.py,sha256=WiDw7hRcidz9hasodQ6O2ZJnUMfhHeydueQ8HXzPXlc,2395
|
|
23
23
|
api_logic_server_cli/create_from_model/__pycache__/__init__.cpython-312.pyc,sha256=CsCx6kjrSUonIcVUGVJemwAdGUB8h4IF0cwnpTIU4C4,223
|
|
24
24
|
api_logic_server_cli/create_from_model/__pycache__/api_expose_api_models_creator.cpython-312.pyc,sha256=3wtCiVHOjOgIonZOgnCsF2p01zcXIapx1_Tq2LwzY6Q,6989
|
|
25
|
-
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=Y3Ry1U5mQC023zgJom1I4JSQDY4Z4UmTKo7ohMmXUNg,28904
|
|
26
26
|
api_logic_server_cli/create_from_model/__pycache__/create_db_from_model.cpython-312.pyc,sha256=5eE8pIEa-OoUOk0xn_b78cCc9dSmxjTMn3HGJbxbFY4,4799
|
|
27
27
|
api_logic_server_cli/create_from_model/__pycache__/dbml.cpython-312.pyc,sha256=gJsMCXlkMupUzNYYqecR5sX9prwmZfo3TpzqssSKh3Y,12671
|
|
28
28
|
api_logic_server_cli/create_from_model/__pycache__/meta_model.cpython-312.pyc,sha256=BH5Cflj8YKf0CVkHpIZ_3eBbHXhwIWbwsrzM7DsEikE,7098
|
|
@@ -475,10 +475,12 @@ api_logic_server_cli/fragments/ui_basic_web_app_runZZ.py,sha256=UllBIkKHlUE3nyDE
|
|
|
475
475
|
api_logic_server_cli/genai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
476
476
|
api_logic_server_cli/genai/client.py,sha256=36gyz-dqxj4dJj1SGtO9NZsy9-cfnf4d7uahHimwqHk,772
|
|
477
477
|
api_logic_server_cli/genai/genai.py,sha256=rt4XW_xmo-D5fLD8DQBHMjrU7Teflw43S8lR-tJd4KU,47014
|
|
478
|
+
api_logic_server_cli/genai/genai_admin_app copy.py,sha256=d1E6kNVhq-xqhUh2j52V4cOTJxEiZgWhja1_kLJXKX8,4665
|
|
479
|
+
api_logic_server_cli/genai/genai_admin_app.py,sha256=L_9vFXS1VqNiX2TOJGbYLPDoo5d-BxfF9Zky0jrZRc4,7607
|
|
478
480
|
api_logic_server_cli/genai/genai_fatal_excp.py,sha256=1FmDVcXVRqmG0JMVZ7l4KqMOdpff3KGZ2LPAGtw304Q,179
|
|
479
481
|
api_logic_server_cli/genai/genai_graphics.py,sha256=9ao0os6rUKY5u2caeLtgyDsNEuVQXq4KcKV575fNC58,20610
|
|
480
482
|
api_logic_server_cli/genai/genai_logic_builder.py,sha256=u_89UtrALIfcMtW6p0SZ78lCmwRqerA5igyY2hDvjlk,26150
|
|
481
|
-
api_logic_server_cli/genai/genai_svcs.py,sha256=
|
|
483
|
+
api_logic_server_cli/genai/genai_svcs.py,sha256=3nfh56w7TNqYCCE-8oPGLXrOqKLvwr0qj9Ljh5_geWU,50588
|
|
482
484
|
api_logic_server_cli/genai/genai_utils.py,sha256=DTlWTnW5_2pzX4q1VG1tWqoZPVObDHR97SVe0z8Z3rs,17102
|
|
483
485
|
api_logic_server_cli/genai/json2rules.py,sha256=ykoxxgZgqllzt8Ud06S-R_3QtumxXfmF5ksYC0Hh2Sk,2645
|
|
484
486
|
api_logic_server_cli/model_migrator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -494,7 +496,7 @@ api_logic_server_cli/model_migrator/util.py,sha256=O7CgsZlU--8IDy2NrDSfIwjbghgkP
|
|
|
494
496
|
api_logic_server_cli/model_migrator/system/free_sql.py,sha256=WaUeoSpcGezUJG5QYAZ8I0WLw92dnD89Op7nW9NeQBE,4436
|
|
495
497
|
api_logic_server_cli/model_migrator/system/javascript.py,sha256=Bxbqha-3g-lDZ2oI0tynRfe3Str-1zkR-IigHNeEqPw,1500
|
|
496
498
|
api_logic_server_cli/model_migrator/system/lac_endpoint.py,sha256=3rzyIZo8zPmXMvTYJ5ogiWFnNScY_TwobVjlULxP1Is,32168
|
|
497
|
-
api_logic_server_cli/prototypes/.DS_Store,sha256=
|
|
499
|
+
api_logic_server_cli/prototypes/.DS_Store,sha256=yBlDPury1UqZHqWV3Du07c2nk8x7PelUB_R-5oKC2fM,6148
|
|
498
500
|
api_logic_server_cli/prototypes/BudgetApp/README.md,sha256=NCDzJZmr7lZuwiw4pye-69S9Lz6NaFSPkwTm0-tGvhs,6602
|
|
499
501
|
api_logic_server_cli/prototypes/BudgetApp/api/customize_api.py,sha256=_FA98vD6kAVhaPdG7A8w9Q6boSHp8YvxK5NmDU0HeHY,3879
|
|
500
502
|
api_logic_server_cli/prototypes/BudgetApp/database/BudgetAppMySQL.sql,sha256=nPuw7duqzbbZ80wULrsZgEitkiXD8Hf19r1gOfz500A,5157
|
|
@@ -550,7 +552,7 @@ api_logic_server_cli/prototypes/base/api/system/opt_locking/opt_locking.py,sha25
|
|
|
550
552
|
api_logic_server_cli/prototypes/base/api/system/opt_locking/readme.md,sha256=Ja_-d-mxHAvOFslu6jlu18HQ3CSFaaSvphHMm3YM-Z8,6760
|
|
551
553
|
api_logic_server_cli/prototypes/base/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
552
554
|
api_logic_server_cli/prototypes/base/config/activate_logicbank.py,sha256=IuDe3uWcbQBtBzLAXsN45sr91sUYvM5OO5ggEk_XnRA,2198
|
|
553
|
-
api_logic_server_cli/prototypes/base/config/config.py,sha256=
|
|
555
|
+
api_logic_server_cli/prototypes/base/config/config.py,sha256=W3psyF6xehFjvPaSii_t4sLqj1cLaIJFdpzRnudm--I,30983
|
|
554
556
|
api_logic_server_cli/prototypes/base/config/default.env,sha256=-rjXJrjR4vjMr9YCVYVchaJw7qMBlbvQ3KfR_wri_XM,412
|
|
555
557
|
api_logic_server_cli/prototypes/base/config/logging-reduced.yml,sha256=N-BDIk0t5uAmw3Of_d_ueK4jx7pxNwlYbkiDd1wjRDs,2179
|
|
556
558
|
api_logic_server_cli/prototypes/base/config/logging.yml,sha256=Rj7lwLAQ1fiP5al5KZxL8f5CXuICpGJDuJiLJbqcQTE,2426
|
|
@@ -624,13 +626,17 @@ api_logic_server_cli/prototypes/base/devops/python-anywhere/python_anywhere_wsgi
|
|
|
624
626
|
api_logic_server_cli/prototypes/base/docs/graphics/readme.md,sha256=GaNOkrzT_nlcrIpmmwLQtoGC6aPZnM8bSGgmc5fM8yk,402
|
|
625
627
|
api_logic_server_cli/prototypes/base/docs/logic/readme.md,sha256=fIQypEQ7Ny7q385AhpwndYRBFquG6P6xpM41-zrIseE,871
|
|
626
628
|
api_logic_server_cli/prototypes/base/docs/logic_suggestions/readme_logic_suggestions.md,sha256=44ibQYGOy84J4zGFaChLCOf-GU9pOBrbgBbprujMtIs,184
|
|
629
|
+
api_logic_server_cli/prototypes/base/docs/training/admin_app_1_context.prompt.md,sha256=Vbo9pidg0FFkVEx64Ri8tjTCvg3noLopcDj3mgPVeSY,239
|
|
630
|
+
api_logic_server_cli/prototypes/base/docs/training/admin_app_2_functionality.prompt.md,sha256=iWMoAkETeQjWWPrNj1AcI4HFGLlgS0-HP9oBYXhdTNI,1705
|
|
631
|
+
api_logic_server_cli/prototypes/base/docs/training/admin_app_3_architecture.prompt.md,sha256=5KtRBihPbxTQEvLJ51w104Z0HfDGFEmQc3ysek6EsXA,925
|
|
632
|
+
api_logic_server_cli/prototypes/base/docs/training/admin_app_unused.md,sha256=sYzoNUccR4-jmEaVXj7UuA_yW2MsHP0IODCkMuvT7gU,3922
|
|
627
633
|
api_logic_server_cli/prototypes/base/docs/training/logic_bank_api.prompt,sha256=3zZu_AQLPskFzs_UL49-lk8Z6ck7YhQnj8wlz30Ib1k,14606
|
|
628
634
|
api_logic_server_cli/prototypes/base/docs/training/logic_example.py,sha256=yAot6uHy1gu94ufeYDx3f0iJ1_czsDywSAdm_yu4E2o,1325
|
|
629
635
|
api_logic_server_cli/prototypes/base/integration/kafka/kafka_consumer.py,sha256=2DOsFpYnsJ71gZzzfJweEmL-i99uCtEFU0hVwIKFGMw,1516
|
|
630
636
|
api_logic_server_cli/prototypes/base/integration/kafka/kafka_producer.py,sha256=g0nMAVfz1Y0iKJbbXfvRpdf-QUmyB4uUGZ6lyaVoXag,4470
|
|
631
637
|
api_logic_server_cli/prototypes/base/integration/kafka/kafka_readme.md,sha256=MlwykHWM2w41KzWh4vPuTnIodR8f-BQzrWpV4P1hrsI,161
|
|
632
638
|
api_logic_server_cli/prototypes/base/integration/mcp/.DS_Store,sha256=1lFlJ5EFymdzGAUAaI30vcaaLHt3F1LwpG7xILf9jsM,6148
|
|
633
|
-
api_logic_server_cli/prototypes/base/integration/mcp/mcp_client_executor.py,sha256
|
|
639
|
+
api_logic_server_cli/prototypes/base/integration/mcp/mcp_client_executor.py,sha256=IdHKs2rgXcotc3dcDCxgKyG5wKUDFluinEahe61tPyI,24092
|
|
634
640
|
api_logic_server_cli/prototypes/base/integration/mcp/mcp_server_discovery.json,sha256=TUyInb67AWoGw7XFE9iDZxmM8UEID-ahQmdmzpF9AmQ,188
|
|
635
641
|
api_logic_server_cli/prototypes/base/integration/mcp/examples/mcp_discovery_response.json,sha256=f1RP5kuTU8rkqxWsZoATBF8xdaVEgPTaB4MRoExIF-Q,3763
|
|
636
642
|
api_logic_server_cli/prototypes/base/integration/mcp/examples/mcp_request.prompt,sha256=vmt_fvwOK-C2fnI1LLUMe5WbLk6qxv2RdVJkBUTo9zM,2601
|
|
@@ -706,6 +712,7 @@ api_logic_server_cli/prototypes/basic_demo/customizations/config/default.env,sha
|
|
|
706
712
|
api_logic_server_cli/prototypes/basic_demo/customizations/database/db.sqlite,sha256=wfrMPS1h9bq5hT0u901p2FjlGIFZsKZkTy77tzrkzsM,28672
|
|
707
713
|
api_logic_server_cli/prototypes/basic_demo/customizations/database/models.py,sha256=sg-ihsH386778vf2DtW0edzf8oCqDVp1NCqhyWXAbLw,4895
|
|
708
714
|
api_logic_server_cli/prototypes/basic_demo/customizations/database/system/SAFRSBaseX.py,sha256=VeiUgXr9pkgvxchCf89lhRKNBlfj4_FYwAweu3NWj-M,5394
|
|
715
|
+
api_logic_server_cli/prototypes/basic_demo/customizations/docs/mcp_learning/mcp_discovery.json,sha256=juCiWJ_BEBgj-8JMXw-ewW6i8vL9ZkLQCd7Dkf_xWmc,3249
|
|
709
716
|
api_logic_server_cli/prototypes/basic_demo/customizations/logic/cocktail-napkin.jpg,sha256=5rNSy6wvcWSHPJQZqkf2DHs19QLWiyqMBNwxGqjstZU,133075
|
|
710
717
|
api_logic_server_cli/prototypes/basic_demo/customizations/logic/declare_logic.py,sha256=Yk-X017gZM1egx4MXSx_FGURj4KDqJfpq1NWVFrwfEY,4612
|
|
711
718
|
api_logic_server_cli/prototypes/basic_demo/customizations/logic/logic_discovery/email_request.py,sha256=3UnBUBpHSThHHRLLJuV-sgRAs6sS-UCzsTjBzf0onns,1851
|
|
@@ -1203,6 +1210,28 @@ api_logic_server_cli/prototypes/manager/system/app_model_editor/venv_setup/venv-
|
|
|
1203
1210
|
api_logic_server_cli/prototypes/manager/system/app_model_editor/venv_setup/venv.ps1,sha256=_-LfKkLw5HOkZsF59BGCqM9Zsk3n1oDIyDb4emy0O08,698
|
|
1204
1211
|
api_logic_server_cli/prototypes/manager/system/app_model_editor/venv_setup/venv.sh,sha256=aWX9fa8fe6aO9ifBIZEgGY5UGh4I0arOoCwBzDsxgU8,893
|
|
1205
1212
|
api_logic_server_cli/prototypes/manager/system/genai/.DS_Store,sha256=ndrcwHjeXXcVbvjdiQNuyCtmI6m-kvDLoEnr0fFJsuY,6148
|
|
1213
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/app_learning/Admin-App-Learning-Prompt.md,sha256=eDoJYVwWEOpIO8xFpXL0_1mNZqC5M1zneTWejqC9Yj4,4920
|
|
1214
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/app_learning/notes.md,sha256=0m0eGWrmznV8s6Z0pegSrceGHXs6pmdnMUK5gaHijVk,187
|
|
1215
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/.DS_Store,sha256=AnV79PLm6F_E6PkLoTv-GaJZpUGP_xdRkNEqrAYGYuE,6148
|
|
1216
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/README.md,sha256=XZWAqxnRWxZ1yVS65g3j6etrcdxX1QDf2TZSms67Yd0,489
|
|
1217
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/README_create_react_app.md,sha256=cOr7x6X9RmqjITtafhsqQTg8vl1Ob8X0WC78WL21CdE,3359
|
|
1218
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/package-lock.json,sha256=dG1s4WtUFp0ZhVWGwp_Ocv-Ii2c92Xb4FWqHFc0m7KU,698058
|
|
1219
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/package.json,sha256=-Xyjx9cCemvi7aHvmakLl-5Or95Q7qpGXw1KSnR64RE,1024
|
|
1220
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/public/favicon.ico,sha256=PRD32mxgMXg0AIFmjErFs66XQ8qaJiqw_NMS-7n0i90,3870
|
|
1221
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/public/index.html,sha256=IK_Be2NYv99ddFEyJc1Kc0Q_oL0VuUSvceFD9pSlz3w,1721
|
|
1222
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/public/logo192.png,sha256=w4Y5bscNs2CAdbX7-qxKscyqhroFpoqzk-xVHrZsPgA,5347
|
|
1223
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/public/logo512.png,sha256=nqT02nBQwMxAiSb2o5wlNiTpursdQ8eXfNghRFpgtGE,9664
|
|
1224
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/public/manifest.json,sha256=ULPYw5A68_eNhxuUVXqxT045yhkurKPSz6hjyGcnmhQ,492
|
|
1225
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/public/robots.txt,sha256=kNJLw79pisHhc3OVAimMzKcq3x9WT6sF9IS4xI0crdI,67
|
|
1226
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/src/App.css,sha256=xaxC5Wv4w063QddSvIeRRPGG18oKSPy7c7lnF396kkA,564
|
|
1227
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/src/App.js,sha256=4UQ6vsIP493EBI4NokLvZilWwr24rjnZyx55KcHkXTA,528
|
|
1228
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/src/App.test.js,sha256=93hGkxlLhlfRv3DDfqcPSi1pTEVm7EFVCo5lDrYAqqQ,246
|
|
1229
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/src/dataProvider.js,sha256=IImP6XdWjswfamiD4JmV_Cl8yEJTAM06ABXcn4NmzyQ,3289
|
|
1230
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/src/index.css,sha256=2vIsKWyAHT1TMIM2HMWfvcIuW_5SiqS60Zc7VMxUSKQ,366
|
|
1231
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/src/index.js,sha256=OfaJG-vOhWzmBOpFDwis4m-huTFBWYWIH7syP2O6Jvs,535
|
|
1232
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/src/logo.svg,sha256=YACw6bCwWz8RLeBPDQOXaKHbY1iP-bbvcJnb1xYy84M,2632
|
|
1233
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/src/reportWebVitals.js,sha256=cUhRZphWFSgGwon5qsYkC0FLusUMYO5PfmJH8x6sDBw,362
|
|
1234
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/src/setupTests.js,sha256=Ilg3WdAEX9-NYsnbCqy6n9i93eecZxqgjJfc_U6TDMY,241
|
|
1206
1235
|
api_logic_server_cli/prototypes/manager/system/genai/create_db_models_inserts/create_db_models_create_db.py,sha256=F9UMTYVDHVUo4lxRFDYTpLtTgHer4g65Kld-hrq8mMM,589
|
|
1207
1236
|
api_logic_server_cli/prototypes/manager/system/genai/create_db_models_inserts/create_db_models_imports.py,sha256=RhXYcL1MzTlYMhwX5jLv05Wqj185fpD940oRHenRxrw,967
|
|
1208
1237
|
api_logic_server_cli/prototypes/manager/system/genai/create_db_models_inserts/create_db_models_prefix.py,sha256=_rQsqDG2ieNxSsv28t7f9Z5Bs6IMASl8rVunVZIHyUk,301
|
|
@@ -1810,6 +1839,7 @@ api_logic_server_cli/prototypes/nginx_exp/docker-compose-dev-azure-nginx/etc/ssl
|
|
|
1810
1839
|
api_logic_server_cli/prototypes/nginx_exp/docker-compose-dev-azure-nginx/unused/unused-docker-compose.py,sha256=O1IF1XW93SS2mjOKIb9O5exIiBgfWAXXiREsAZVGeDk,3737
|
|
1811
1840
|
api_logic_server_cli/prototypes/nginx_exp/docker-compose-dev-azure-nginx/unused/unused-get_ip.py,sha256=lZjsDOKfCs2BIvTEahaWidT2TJEwu7e7pQFgtjZNeCw,742
|
|
1812
1841
|
api_logic_server_cli/prototypes/nginx_exp/docker-compose-dev-azure-nginx/unused/unused-requirements-slim.txt,sha256=tbSwU7qdwcp_5ILWgEcLLeS7frnLkLif9Gyf5r3Ou-E,14
|
|
1842
|
+
api_logic_server_cli/prototypes/nw/.DS_Store,sha256=XMHbsE_C3zE5kWGvbJxLXLEcm-1tQYgww6iV7toZ03M,6148
|
|
1813
1843
|
api_logic_server_cli/prototypes/nw/Tutorial.md,sha256=2ohG6joATpLXQaNT3_0lx1nBJ7Oz8A5JhCsqur7FXCg,16390
|
|
1814
1844
|
api_logic_server_cli/prototypes/nw/api/customize_api.py,sha256=_c1BwR8NtAdtp1KQz4cwt0NY50K9-b6S9lvoWUyRhLE,17637
|
|
1815
1845
|
api_logic_server_cli/prototypes/nw/api/api_discovery/sales_by_category.py,sha256=0iJQK0SNJfu5iTcpcYTe9KBwZKZDNEvhEU2c4FJHD_Q,1919
|
|
@@ -1872,6 +1902,7 @@ api_logic_server_cli/prototypes/nw/test/basic/results/GET_test_on_Order.log,sha2
|
|
|
1872
1902
|
api_logic_server_cli/prototypes/nw/test/basic/results/PATCH_-_low_credit.log,sha256=TGzu-B5tmpSWCj7v9fJPMk7-0h9Hw1o6UD5yVie9xSs,1381
|
|
1873
1903
|
api_logic_server_cli/prototypes/nw/test/basic/results/POST_test_-_Cust.log,sha256=bHmyjEXrh2GQu3zR7Atg-3AGmtyRr6rtgAf-84W9E4g,831
|
|
1874
1904
|
api_logic_server_cli/prototypes/nw/test/basic/results/PRUNE_test_-_ReqdDate.log,sha256=hwny441ngPqrNUMVOyotaOoZUJrwKTGCuUbJs2FQasU,2256
|
|
1905
|
+
api_logic_server_cli/prototypes/nw/ui/.DS_Store,sha256=zlF4yo6onvNmrkbxNjXk3ggyJfuq-9pQQ-m2fblvcHg,6148
|
|
1875
1906
|
api_logic_server_cli/prototypes/nw/ui/app_model_custom.yaml,sha256=Qtl2Gr_cQaTZuZMAHx3Upf1IBarW4KM-mv1dkhZr3tc,46017
|
|
1876
1907
|
api_logic_server_cli/prototypes/nw/ui/admin/admin.yaml,sha256=oL30V8ehn5SFXZPdMjM8nwSafv3A_LK6-eJCJ4P7V4Y,18030
|
|
1877
1908
|
api_logic_server_cli/prototypes/nw/ui/admin/home.js,sha256=nsd1uk96npfTAgfq8q-g1NCOXLG4txz0TRFYx47FkiI,4222
|
|
@@ -1893,6 +1924,43 @@ api_logic_server_cli/prototypes/nw/ui/images/Employee/king.jpg,sha256=wobxZZgqGm
|
|
|
1893
1924
|
api_logic_server_cli/prototypes/nw/ui/images/Employee/leverling.jpg,sha256=w02cBPLXEIg3YJnjx2oJ--4semxQemnqwj-Gk9uV_2g,3750
|
|
1894
1925
|
api_logic_server_cli/prototypes/nw/ui/images/Employee/peacock.jpg,sha256=UIfxEKOKruPKNW0w17bMebIaUsa1nD2vSVfFTk7uaCs,3862
|
|
1895
1926
|
api_logic_server_cli/prototypes/nw/ui/images/Employee/suyama.jpg,sha256=bp0xCJ-8EqQp_B7uR4glL6fVGxVlS10d5IHLNdw7rcA,4375
|
|
1927
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/.DS_Store,sha256=Dzh19CIrYqSm2ajtQxBlSUIGJP_6X8RFMJdxaPMAG30,6148
|
|
1928
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/README.md,sha256=ivWYXaLIFXLDxUMZxpgUHQL5EN-yfQ9gTE6hjtjKC_U,571
|
|
1929
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/README_create_react_app.md,sha256=cOr7x6X9RmqjITtafhsqQTg8vl1Ob8X0WC78WL21CdE,3359
|
|
1930
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/package-lock.json,sha256=dG1s4WtUFp0ZhVWGwp_Ocv-Ii2c92Xb4FWqHFc0m7KU,698058
|
|
1931
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/package.json,sha256=-Xyjx9cCemvi7aHvmakLl-5Or95Q7qpGXw1KSnR64RE,1024
|
|
1932
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/public/favicon.ico,sha256=PRD32mxgMXg0AIFmjErFs66XQ8qaJiqw_NMS-7n0i90,3870
|
|
1933
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/public/index.html,sha256=IK_Be2NYv99ddFEyJc1Kc0Q_oL0VuUSvceFD9pSlz3w,1721
|
|
1934
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/public/logo192.png,sha256=w4Y5bscNs2CAdbX7-qxKscyqhroFpoqzk-xVHrZsPgA,5347
|
|
1935
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/public/logo512.png,sha256=nqT02nBQwMxAiSb2o5wlNiTpursdQ8eXfNghRFpgtGE,9664
|
|
1936
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/public/manifest.json,sha256=ULPYw5A68_eNhxuUVXqxT045yhkurKPSz6hjyGcnmhQ,492
|
|
1937
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/public/robots.txt,sha256=kNJLw79pisHhc3OVAimMzKcq3x9WT6sF9IS4xI0crdI,67
|
|
1938
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/App.css,sha256=xaxC5Wv4w063QddSvIeRRPGG18oKSPy7c7lnF396kkA,564
|
|
1939
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/App.js,sha256=UwoUVUgjvb3FDonmU-o91Bk3DVZyF1DCb_GId-QqB4k,4308
|
|
1940
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/App.test.js,sha256=93hGkxlLhlfRv3DDfqcPSi1pTEVm7EFVCo5lDrYAqqQ,246
|
|
1941
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Category.js,sha256=DLWXTfqp0Ze9geRSbarg-0-0Zxu8RNiaE-N87dAjWUY,2135
|
|
1942
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Customer.js,sha256=cdQm_NqnQoD-0do0pjbLm4wACWj2yudHklsfHNxA7jQ,9085
|
|
1943
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/CustomerDemographic.js,sha256=-7ToLNK5gogCwGD6fa2yctImAFIRdFd6W0Dc3rvKAsY,1583
|
|
1944
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Department.js,sha256=o7oL5p0L04TTpnr5AqbLEYLf0XGIIyLrFbcbtAXaVMI,3212
|
|
1945
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Employee.js,sha256=jIU1FOjvvDdmmXLTJj-xdm7LP0FeDGQta0_eI6wL87g,4184
|
|
1946
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/EmployeeAudit.js,sha256=a2_-MDLhZV-f1MRVWFC2UvN8dd7Ah9g0Bd1lK-KnfM8,3860
|
|
1947
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/EmployeeTerritory.js,sha256=jMbwOFMByEKUX1h6fBx6NawSUpmQGnxnavlPdNnUr-I,3556
|
|
1948
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Location.js,sha256=cy7N914E_KqicGNeDaONC9ESonZr6ozCoAGJNfpI7Wk,2216
|
|
1949
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Order.js,sha256=S29biQs6oZEWHbh3r56NT7NY_sj7retHyzVHOIYrq8M,4419
|
|
1950
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/OrderDetail.js,sha256=Sq29nl_6drgLr88KBIq9qWkI7sORhdADi9xrKlcrAVw,3848
|
|
1951
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Product.js,sha256=taadlOLtGDaxweG0hdDbNiqV2UqLV4zXWGA_v2NiDO8,4290
|
|
1952
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Region.js,sha256=dveFiPaPscfQXiefGBtS0328_z9M_3ThVrRxFbd5r0E,1803
|
|
1953
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/SampleDBVersion.js,sha256=lNel24QmEhiNtdVGr_nSZwWrzqccBvvFYuzziFz7Ukg,1764
|
|
1954
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Shipper.js,sha256=JFItUh_hIDl7HXRctT9h0bZ_36FfPB9cfvrroYx7YnA,1685
|
|
1955
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Supplier.js,sha256=14R-b_nadHe-t-KhV6lNGlcKz2tXga0hfqv_Vy0Mtk0,3890
|
|
1956
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Territory.js,sha256=ImCr9cJ6X8Ex7zc04eo1-taZeX0f6l3XIJwUCzlxtKg,3012
|
|
1957
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Union.js,sha256=GPMBdQ-jn9kNUGo8oytLld2GwvSAVyahXx3jgBSSiAk,2004
|
|
1958
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/dataProvider.js,sha256=IImP6XdWjswfamiD4JmV_Cl8yEJTAM06ABXcn4NmzyQ,3289
|
|
1959
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/index.css,sha256=2vIsKWyAHT1TMIM2HMWfvcIuW_5SiqS60Zc7VMxUSKQ,366
|
|
1960
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/index.js,sha256=OfaJG-vOhWzmBOpFDwis4m-huTFBWYWIH7syP2O6Jvs,535
|
|
1961
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/logo.svg,sha256=YACw6bCwWz8RLeBPDQOXaKHbY1iP-bbvcJnb1xYy84M,2632
|
|
1962
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/reportWebVitals.js,sha256=cUhRZphWFSgGwon5qsYkC0FLusUMYO5PfmJH8x6sDBw,362
|
|
1963
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/setupTests.js,sha256=Ilg3WdAEX9-NYsnbCqy6n9i93eecZxqgjJfc_U6TDMY,241
|
|
1896
1964
|
api_logic_server_cli/prototypes/nw_no_cust/Tutorial.md,sha256=0reZHh31_29OiDoq2YjgcZBh7bFNF60TEjVG-cUzoZ8,16724
|
|
1897
1965
|
api_logic_server_cli/prototypes/nw_no_cust/.obsidian/app.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
|
|
1898
1966
|
api_logic_server_cli/prototypes/nw_no_cust/.obsidian/appearance.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
|
|
@@ -2188,9 +2256,9 @@ api_logic_server_cli/tools/mini_skel/database/system/SAFRSBaseX.py,sha256=p8C7AF
|
|
|
2188
2256
|
api_logic_server_cli/tools/mini_skel/database/system/TestDataBase.py,sha256=U02SYqThsbY5g3DX7XGaiMxjZBuOpzvtPS6RfI1WQFg,371
|
|
2189
2257
|
api_logic_server_cli/tools/mini_skel/logic/declare_logic.py,sha256=fTrlHyqMeZsw_TyEXFa1VlYBL7fzjZab5ONSXO7aApo,175
|
|
2190
2258
|
api_logic_server_cli/tools/mini_skel/logic/load_verify_rules.py,sha256=Rr5bySJpYCZmNPF2h-phcPJ53nAOPcT_ohZpCD93-a0,7530
|
|
2191
|
-
apilogicserver-15.0.
|
|
2192
|
-
apilogicserver-15.0.
|
|
2193
|
-
apilogicserver-15.0.
|
|
2194
|
-
apilogicserver-15.0.
|
|
2195
|
-
apilogicserver-15.0.
|
|
2196
|
-
apilogicserver-15.0.
|
|
2259
|
+
apilogicserver-15.0.20.dist-info/licenses/LICENSE,sha256=67BS7VC-Z8GpaR3wijngQJkHWV04qJrwQArVgn9ldoI,1485
|
|
2260
|
+
apilogicserver-15.0.20.dist-info/METADATA,sha256=ZkGCw_JHN9pPl5jbglZ0YqMpa8AtmD5cvblaO_GG-Gk,6553
|
|
2261
|
+
apilogicserver-15.0.20.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
2262
|
+
apilogicserver-15.0.20.dist-info/entry_points.txt,sha256=KiLloZJ3c_RW-nIDqBtoE0WEsQTnZ3dELwHLWi23LMA,103
|
|
2263
|
+
apilogicserver-15.0.20.dist-info/top_level.txt,sha256=-r0AT_GEApleihg-jIh0OMvzzc0BO1RuhhOpE91H5qI,21
|
|
2264
|
+
apilogicserver-15.0.20.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|