ApiLogicServer 15.0.19__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/genai/genai_admin_app.py +12 -5
- api_logic_server_cli/prototypes/.DS_Store +0 -0
- api_logic_server_cli/prototypes/manager/system/genai/app_templates/app_learning/Admin-App-Learning-Prompt.md +33 -17
- 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/src/App.js +30 -31
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Category.js +62 -62
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Customer.js +143 -48
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/CustomerDemographic.js +20 -37
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Department.js +38 -39
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Employee.js +85 -134
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/EmployeeAudit.js +89 -77
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/EmployeeTerritory.js +59 -59
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Location.js +45 -49
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Order.js +42 -60
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/OrderDetail.js +97 -106
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Product.js +60 -62
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Region.js +36 -41
- 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 +57 -54
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Supplier.js +71 -87
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Territory.js +47 -41
- api_logic_server_cli/prototypes/nw/ui/react_admin/src/Union.js +18 -34
- {apilogicserver-15.0.19.dist-info → apilogicserver-15.0.20.dist-info}/METADATA +1 -1
- {apilogicserver-15.0.19.dist-info → apilogicserver-15.0.20.dist-info}/RECORD +32 -29
- {apilogicserver-15.0.19.dist-info → apilogicserver-15.0.20.dist-info}/WHEEL +0 -0
- {apilogicserver-15.0.19.dist-info → apilogicserver-15.0.20.dist-info}/entry_points.txt +0 -0
- {apilogicserver-15.0.19.dist-info → apilogicserver-15.0.20.dist-info}/licenses/LICENSE +0 -0
- {apilogicserver-15.0.19.dist-info → apilogicserver-15.0.20.dist-info}/top_level.txt +0 -0
|
@@ -1,84 +1,90 @@
|
|
|
1
|
+
// src/Territory.js
|
|
1
2
|
import React from 'react';
|
|
2
3
|
import {
|
|
3
4
|
List,
|
|
5
|
+
Show,SelectInput,
|
|
4
6
|
Datagrid,
|
|
5
|
-
TextField,
|
|
6
|
-
NumberField,
|
|
7
|
-
NumberInput,
|
|
8
|
-
TextInput,
|
|
9
|
-
Show,
|
|
10
7
|
SimpleShowLayout,
|
|
11
8
|
TabbedShowLayout,
|
|
12
9
|
Tab,
|
|
10
|
+
TextField,
|
|
11
|
+
ReferenceField,
|
|
12
|
+
FunctionField,
|
|
13
|
+
TextInput,
|
|
14
|
+
ReferenceInput,
|
|
13
15
|
Create,
|
|
14
|
-
SimpleForm,
|
|
15
16
|
Edit,
|
|
16
|
-
|
|
17
|
-
ReferenceInput,
|
|
18
|
-
SelectInput,
|
|
17
|
+
SimpleForm,
|
|
19
18
|
Filter,
|
|
20
|
-
|
|
19
|
+
NumberField,
|
|
20
|
+
BooleanField,
|
|
21
|
+
ReferenceManyField,
|
|
21
22
|
} from 'react-admin';
|
|
22
23
|
|
|
23
|
-
//
|
|
24
|
+
// Filter component for the Territory list view
|
|
24
25
|
const TerritoryFilter = (props) => (
|
|
25
26
|
<Filter {...props}>
|
|
26
|
-
<TextInput label="Search" source="
|
|
27
|
-
<TextInput label="Region" source="RegionId" />
|
|
27
|
+
<TextInput label="Search by Description" source="q" alwaysOn />
|
|
28
28
|
</Filter>
|
|
29
29
|
);
|
|
30
30
|
|
|
31
|
-
//
|
|
32
|
-
export const TerritoryList = props => (
|
|
33
|
-
<List {...props} filters={<TerritoryFilter />}
|
|
34
|
-
sort={{ field: 'TerritoryDescription', order: 'ASC' }}>
|
|
31
|
+
// TerritoryList component for displaying a list of territories
|
|
32
|
+
export const TerritoryList = (props) => (
|
|
33
|
+
<List {...props} filters={<TerritoryFilter />}>
|
|
35
34
|
<Datagrid rowClick="show">
|
|
36
35
|
<TextField source="TerritoryDescription" label="Territory Description" />
|
|
37
|
-
<
|
|
38
|
-
<
|
|
36
|
+
<TextField source="Id" label="ID" />
|
|
37
|
+
<ReferenceField label="Region" source="RegionId" reference="Region">
|
|
38
|
+
<TextField source="RegionDescription" />
|
|
39
|
+
</ReferenceField>
|
|
39
40
|
</Datagrid>
|
|
40
41
|
</List>
|
|
41
42
|
);
|
|
42
43
|
|
|
43
|
-
//
|
|
44
|
-
export const TerritoryShow = props => (
|
|
44
|
+
// TerritoryShow component for displaying territory details
|
|
45
|
+
export const TerritoryShow = (props) => (
|
|
45
46
|
<Show {...props}>
|
|
46
47
|
<SimpleShowLayout>
|
|
47
48
|
<TextField source="TerritoryDescription" label="Territory Description" />
|
|
48
|
-
<
|
|
49
|
-
<
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
<
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
49
|
+
<TextField source="Id" label="ID" />
|
|
50
|
+
<ReferenceField label="Region" source="RegionId" reference="Region">
|
|
51
|
+
<TextField source="RegionDescription" />
|
|
52
|
+
</ReferenceField>
|
|
53
|
+
<ReferenceManyField
|
|
54
|
+
label="Employees in Territory"
|
|
55
|
+
reference="EmployeeTerritory"
|
|
56
|
+
target="TerritoryId"
|
|
57
|
+
>
|
|
58
|
+
<Datagrid rowClick="show">
|
|
59
|
+
<ReferenceField label="Employee" source="EmployeeId" reference="Employee">
|
|
60
|
+
<FunctionField render={(record) => `${record.FirstName} ${record.LastName}`} />
|
|
61
|
+
</ReferenceField>
|
|
62
|
+
</Datagrid>
|
|
63
|
+
</ReferenceManyField>
|
|
62
64
|
</SimpleShowLayout>
|
|
63
65
|
</Show>
|
|
64
66
|
);
|
|
65
67
|
|
|
66
|
-
//
|
|
67
|
-
export const TerritoryCreate = props => (
|
|
68
|
+
// TerritoryCreate component for creating new territories
|
|
69
|
+
export const TerritoryCreate = (props) => (
|
|
68
70
|
<Create {...props}>
|
|
69
71
|
<SimpleForm>
|
|
70
72
|
<TextInput source="TerritoryDescription" label="Territory Description" />
|
|
71
|
-
<
|
|
73
|
+
<ReferenceInput label="Region" source="RegionId" reference="Region">
|
|
74
|
+
<SelectInput optionText="RegionDescription" />
|
|
75
|
+
</ReferenceInput>
|
|
72
76
|
</SimpleForm>
|
|
73
77
|
</Create>
|
|
74
78
|
);
|
|
75
79
|
|
|
76
|
-
//
|
|
77
|
-
export const TerritoryEdit = props => (
|
|
80
|
+
// TerritoryEdit component for editing existing territories
|
|
81
|
+
export const TerritoryEdit = (props) => (
|
|
78
82
|
<Edit {...props}>
|
|
79
83
|
<SimpleForm>
|
|
80
84
|
<TextInput source="TerritoryDescription" label="Territory Description" />
|
|
81
|
-
<
|
|
85
|
+
<ReferenceInput label="Region" source="RegionId" reference="Region">
|
|
86
|
+
<SelectInput optionText="RegionDescription" />
|
|
87
|
+
</ReferenceInput>
|
|
82
88
|
</SimpleForm>
|
|
83
89
|
</Edit>
|
|
84
90
|
);
|
|
@@ -1,57 +1,38 @@
|
|
|
1
|
-
// Union.js - React Admin resource definitions and components for the Union entity.
|
|
2
1
|
import React from 'react';
|
|
3
|
-
import {
|
|
4
|
-
List,
|
|
5
|
-
Datagrid,
|
|
6
|
-
TextField,
|
|
7
|
-
NumberField,
|
|
8
|
-
Show,
|
|
9
|
-
SimpleShowLayout,
|
|
10
|
-
TabbedShowLayout,
|
|
11
|
-
Tab,
|
|
12
|
-
TextInput,
|
|
13
|
-
Create,
|
|
14
|
-
SimpleForm,
|
|
15
|
-
Edit,
|
|
16
|
-
ReferenceManyField,
|
|
17
|
-
EditButton,
|
|
18
|
-
ShowButton,
|
|
19
|
-
Pagination,
|
|
20
|
-
Filter,
|
|
21
|
-
} from 'react-admin';
|
|
2
|
+
import { List, Datagrid, TextField, NumberField, Show, SimpleShowLayout, ReferenceManyField, TabbedShowLayout, Tab, TextInput, Create, SimpleForm, Edit, ReferenceField, ReferenceInput, SelectInput, Filter, Pagination } from 'react-admin';
|
|
22
3
|
|
|
4
|
+
// Filter component to be used in List view
|
|
23
5
|
const UnionFilter = (props) => (
|
|
24
6
|
<Filter {...props}>
|
|
25
|
-
<TextInput label="Search by Name" source="
|
|
7
|
+
<TextInput label="Search by Name" source="q" alwaysOn />
|
|
26
8
|
</Filter>
|
|
27
9
|
);
|
|
28
10
|
|
|
11
|
+
// List view for Unions
|
|
29
12
|
export const UnionList = (props) => (
|
|
30
|
-
<List
|
|
31
|
-
{...props}
|
|
32
|
-
filters={<UnionFilter />}
|
|
33
|
-
pagination={<Pagination rowsPerPageOptions={[10, 25, 50]} />}
|
|
34
|
-
sort={{ field: 'Name', order: 'ASC' }}
|
|
35
|
-
>
|
|
13
|
+
<List {...props} filters={<UnionFilter />} pagination={<Pagination rowsPerPageOptions={[7, 14, 28]} />} perPage={7}>
|
|
36
14
|
<Datagrid rowClick="show">
|
|
37
15
|
<TextField source="Name" label="Union Name" />
|
|
38
|
-
<NumberField source="Id" label="ID" />
|
|
39
|
-
<ShowButton />
|
|
16
|
+
<NumberField source="Id" label="Union ID" />
|
|
40
17
|
</Datagrid>
|
|
41
18
|
</List>
|
|
42
19
|
);
|
|
43
20
|
|
|
21
|
+
// Show view for a Union
|
|
44
22
|
export const UnionShow = (props) => (
|
|
45
23
|
<Show {...props}>
|
|
46
24
|
<SimpleShowLayout>
|
|
47
25
|
<TextField source="Name" label="Union Name" />
|
|
26
|
+
<NumberField source="Id" label="Union ID" />
|
|
48
27
|
<TabbedShowLayout>
|
|
49
|
-
<Tab label="
|
|
50
|
-
<ReferenceManyField reference="Employee" target="UnionId"
|
|
28
|
+
<Tab label="Employees">
|
|
29
|
+
<ReferenceManyField reference="Employee" target="UnionId" addLabel={false}>
|
|
51
30
|
<Datagrid>
|
|
52
|
-
<TextField source="LastName"
|
|
53
|
-
<TextField source="FirstName"
|
|
54
|
-
<
|
|
31
|
+
<TextField source="LastName" />
|
|
32
|
+
<TextField source="FirstName" />
|
|
33
|
+
<ReferenceField source="WorksForDepartmentId" reference="Department">
|
|
34
|
+
<TextField source="DepartmentName" />
|
|
35
|
+
</ReferenceField>
|
|
55
36
|
</Datagrid>
|
|
56
37
|
</ReferenceManyField>
|
|
57
38
|
</Tab>
|
|
@@ -60,6 +41,7 @@ export const UnionShow = (props) => (
|
|
|
60
41
|
</Show>
|
|
61
42
|
);
|
|
62
43
|
|
|
44
|
+
// Create view for a new Union
|
|
63
45
|
export const UnionCreate = (props) => (
|
|
64
46
|
<Create {...props}>
|
|
65
47
|
<SimpleForm>
|
|
@@ -68,10 +50,12 @@ export const UnionCreate = (props) => (
|
|
|
68
50
|
</Create>
|
|
69
51
|
);
|
|
70
52
|
|
|
53
|
+
// Edit view for an existing Union
|
|
71
54
|
export const UnionEdit = (props) => (
|
|
72
55
|
<Edit {...props}>
|
|
73
56
|
<SimpleForm>
|
|
74
57
|
<TextInput source="Name" label="Union Name" />
|
|
58
|
+
<NumberField source="Id" label="Union ID" />
|
|
75
59
|
</SimpleForm>
|
|
76
60
|
</Edit>
|
|
77
61
|
);
|
|
@@ -1,6 +1,6 @@
|
|
|
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=
|
|
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
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
|
|
@@ -476,7 +476,7 @@ api_logic_server_cli/genai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
|
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
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=
|
|
479
|
+
api_logic_server_cli/genai/genai_admin_app.py,sha256=L_9vFXS1VqNiX2TOJGbYLPDoo5d-BxfF9Zky0jrZRc4,7607
|
|
480
480
|
api_logic_server_cli/genai/genai_fatal_excp.py,sha256=1FmDVcXVRqmG0JMVZ7l4KqMOdpff3KGZ2LPAGtw304Q,179
|
|
481
481
|
api_logic_server_cli/genai/genai_graphics.py,sha256=9ao0os6rUKY5u2caeLtgyDsNEuVQXq4KcKV575fNC58,20610
|
|
482
482
|
api_logic_server_cli/genai/genai_logic_builder.py,sha256=u_89UtrALIfcMtW6p0SZ78lCmwRqerA5igyY2hDvjlk,26150
|
|
@@ -496,7 +496,7 @@ api_logic_server_cli/model_migrator/util.py,sha256=O7CgsZlU--8IDy2NrDSfIwjbghgkP
|
|
|
496
496
|
api_logic_server_cli/model_migrator/system/free_sql.py,sha256=WaUeoSpcGezUJG5QYAZ8I0WLw92dnD89Op7nW9NeQBE,4436
|
|
497
497
|
api_logic_server_cli/model_migrator/system/javascript.py,sha256=Bxbqha-3g-lDZ2oI0tynRfe3Str-1zkR-IigHNeEqPw,1500
|
|
498
498
|
api_logic_server_cli/model_migrator/system/lac_endpoint.py,sha256=3rzyIZo8zPmXMvTYJ5ogiWFnNScY_TwobVjlULxP1Is,32168
|
|
499
|
-
api_logic_server_cli/prototypes/.DS_Store,sha256=
|
|
499
|
+
api_logic_server_cli/prototypes/.DS_Store,sha256=yBlDPury1UqZHqWV3Du07c2nk8x7PelUB_R-5oKC2fM,6148
|
|
500
500
|
api_logic_server_cli/prototypes/BudgetApp/README.md,sha256=NCDzJZmr7lZuwiw4pye-69S9Lz6NaFSPkwTm0-tGvhs,6602
|
|
501
501
|
api_logic_server_cli/prototypes/BudgetApp/api/customize_api.py,sha256=_FA98vD6kAVhaPdG7A8w9Q6boSHp8YvxK5NmDU0HeHY,3879
|
|
502
502
|
api_logic_server_cli/prototypes/BudgetApp/database/BudgetAppMySQL.sql,sha256=nPuw7duqzbbZ80wULrsZgEitkiXD8Hf19r1gOfz500A,5157
|
|
@@ -1210,7 +1210,7 @@ api_logic_server_cli/prototypes/manager/system/app_model_editor/venv_setup/venv-
|
|
|
1210
1210
|
api_logic_server_cli/prototypes/manager/system/app_model_editor/venv_setup/venv.ps1,sha256=_-LfKkLw5HOkZsF59BGCqM9Zsk3n1oDIyDb4emy0O08,698
|
|
1211
1211
|
api_logic_server_cli/prototypes/manager/system/app_model_editor/venv_setup/venv.sh,sha256=aWX9fa8fe6aO9ifBIZEgGY5UGh4I0arOoCwBzDsxgU8,893
|
|
1212
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=
|
|
1213
|
+
api_logic_server_cli/prototypes/manager/system/genai/app_templates/app_learning/Admin-App-Learning-Prompt.md,sha256=eDoJYVwWEOpIO8xFpXL0_1mNZqC5M1zneTWejqC9Yj4,4920
|
|
1214
1214
|
api_logic_server_cli/prototypes/manager/system/genai/app_templates/app_learning/notes.md,sha256=0m0eGWrmznV8s6Z0pegSrceGHXs6pmdnMUK5gaHijVk,187
|
|
1215
1215
|
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/.DS_Store,sha256=AnV79PLm6F_E6PkLoTv-GaJZpUGP_xdRkNEqrAYGYuE,6148
|
|
1216
1216
|
api_logic_server_cli/prototypes/manager/system/genai/app_templates/react-admin-template/README.md,sha256=XZWAqxnRWxZ1yVS65g3j6etrcdxX1QDf2TZSms67Yd0,489
|
|
@@ -1839,6 +1839,7 @@ api_logic_server_cli/prototypes/nginx_exp/docker-compose-dev-azure-nginx/etc/ssl
|
|
|
1839
1839
|
api_logic_server_cli/prototypes/nginx_exp/docker-compose-dev-azure-nginx/unused/unused-docker-compose.py,sha256=O1IF1XW93SS2mjOKIb9O5exIiBgfWAXXiREsAZVGeDk,3737
|
|
1840
1840
|
api_logic_server_cli/prototypes/nginx_exp/docker-compose-dev-azure-nginx/unused/unused-get_ip.py,sha256=lZjsDOKfCs2BIvTEahaWidT2TJEwu7e7pQFgtjZNeCw,742
|
|
1841
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
|
|
1842
1843
|
api_logic_server_cli/prototypes/nw/Tutorial.md,sha256=2ohG6joATpLXQaNT3_0lx1nBJ7Oz8A5JhCsqur7FXCg,16390
|
|
1843
1844
|
api_logic_server_cli/prototypes/nw/api/customize_api.py,sha256=_c1BwR8NtAdtp1KQz4cwt0NY50K9-b6S9lvoWUyRhLE,17637
|
|
1844
1845
|
api_logic_server_cli/prototypes/nw/api/api_discovery/sales_by_category.py,sha256=0iJQK0SNJfu5iTcpcYTe9KBwZKZDNEvhEU2c4FJHD_Q,1919
|
|
@@ -1901,6 +1902,7 @@ api_logic_server_cli/prototypes/nw/test/basic/results/GET_test_on_Order.log,sha2
|
|
|
1901
1902
|
api_logic_server_cli/prototypes/nw/test/basic/results/PATCH_-_low_credit.log,sha256=TGzu-B5tmpSWCj7v9fJPMk7-0h9Hw1o6UD5yVie9xSs,1381
|
|
1902
1903
|
api_logic_server_cli/prototypes/nw/test/basic/results/POST_test_-_Cust.log,sha256=bHmyjEXrh2GQu3zR7Atg-3AGmtyRr6rtgAf-84W9E4g,831
|
|
1903
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
|
|
1904
1906
|
api_logic_server_cli/prototypes/nw/ui/app_model_custom.yaml,sha256=Qtl2Gr_cQaTZuZMAHx3Upf1IBarW4KM-mv1dkhZr3tc,46017
|
|
1905
1907
|
api_logic_server_cli/prototypes/nw/ui/admin/admin.yaml,sha256=oL30V8ehn5SFXZPdMjM8nwSafv3A_LK6-eJCJ4P7V4Y,18030
|
|
1906
1908
|
api_logic_server_cli/prototypes/nw/ui/admin/home.js,sha256=nsd1uk96npfTAgfq8q-g1NCOXLG4txz0TRFYx47FkiI,4222
|
|
@@ -1922,7 +1924,7 @@ api_logic_server_cli/prototypes/nw/ui/images/Employee/king.jpg,sha256=wobxZZgqGm
|
|
|
1922
1924
|
api_logic_server_cli/prototypes/nw/ui/images/Employee/leverling.jpg,sha256=w02cBPLXEIg3YJnjx2oJ--4semxQemnqwj-Gk9uV_2g,3750
|
|
1923
1925
|
api_logic_server_cli/prototypes/nw/ui/images/Employee/peacock.jpg,sha256=UIfxEKOKruPKNW0w17bMebIaUsa1nD2vSVfFTk7uaCs,3862
|
|
1924
1926
|
api_logic_server_cli/prototypes/nw/ui/images/Employee/suyama.jpg,sha256=bp0xCJ-8EqQp_B7uR4glL6fVGxVlS10d5IHLNdw7rcA,4375
|
|
1925
|
-
api_logic_server_cli/prototypes/nw/ui/react_admin/.DS_Store,sha256=
|
|
1927
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/.DS_Store,sha256=Dzh19CIrYqSm2ajtQxBlSUIGJP_6X8RFMJdxaPMAG30,6148
|
|
1926
1928
|
api_logic_server_cli/prototypes/nw/ui/react_admin/README.md,sha256=ivWYXaLIFXLDxUMZxpgUHQL5EN-yfQ9gTE6hjtjKC_U,571
|
|
1927
1929
|
api_logic_server_cli/prototypes/nw/ui/react_admin/README_create_react_app.md,sha256=cOr7x6X9RmqjITtafhsqQTg8vl1Ob8X0WC78WL21CdE,3359
|
|
1928
1930
|
api_logic_server_cli/prototypes/nw/ui/react_admin/package-lock.json,sha256=dG1s4WtUFp0ZhVWGwp_Ocv-Ii2c92Xb4FWqHFc0m7KU,698058
|
|
@@ -1934,24 +1936,25 @@ api_logic_server_cli/prototypes/nw/ui/react_admin/public/logo512.png,sha256=nqT0
|
|
|
1934
1936
|
api_logic_server_cli/prototypes/nw/ui/react_admin/public/manifest.json,sha256=ULPYw5A68_eNhxuUVXqxT045yhkurKPSz6hjyGcnmhQ,492
|
|
1935
1937
|
api_logic_server_cli/prototypes/nw/ui/react_admin/public/robots.txt,sha256=kNJLw79pisHhc3OVAimMzKcq3x9WT6sF9IS4xI0crdI,67
|
|
1936
1938
|
api_logic_server_cli/prototypes/nw/ui/react_admin/src/App.css,sha256=xaxC5Wv4w063QddSvIeRRPGG18oKSPy7c7lnF396kkA,564
|
|
1937
|
-
api_logic_server_cli/prototypes/nw/ui/react_admin/src/App.js,sha256=
|
|
1939
|
+
api_logic_server_cli/prototypes/nw/ui/react_admin/src/App.js,sha256=UwoUVUgjvb3FDonmU-o91Bk3DVZyF1DCb_GId-QqB4k,4308
|
|
1938
1940
|
api_logic_server_cli/prototypes/nw/ui/react_admin/src/App.test.js,sha256=93hGkxlLhlfRv3DDfqcPSi1pTEVm7EFVCo5lDrYAqqQ,246
|
|
1939
|
-
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Category.js,sha256=
|
|
1940
|
-
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Customer.js,sha256=
|
|
1941
|
-
api_logic_server_cli/prototypes/nw/ui/react_admin/src/CustomerDemographic.js,sha256
|
|
1942
|
-
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Department.js,sha256=
|
|
1943
|
-
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Employee.js,sha256=
|
|
1944
|
-
api_logic_server_cli/prototypes/nw/ui/react_admin/src/EmployeeAudit.js,sha256=
|
|
1945
|
-
api_logic_server_cli/prototypes/nw/ui/react_admin/src/EmployeeTerritory.js,sha256=
|
|
1946
|
-
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Location.js,sha256=
|
|
1947
|
-
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Order.js,sha256=
|
|
1948
|
-
api_logic_server_cli/prototypes/nw/ui/react_admin/src/OrderDetail.js,sha256=
|
|
1949
|
-
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Product.js,sha256=
|
|
1950
|
-
api_logic_server_cli/prototypes/nw/ui/react_admin/src/Region.js,sha256=
|
|
1951
|
-
api_logic_server_cli/prototypes/nw/ui/react_admin/src/
|
|
1952
|
-
api_logic_server_cli/prototypes/nw/ui/react_admin/src/
|
|
1953
|
-
api_logic_server_cli/prototypes/nw/ui/react_admin/src/
|
|
1954
|
-
api_logic_server_cli/prototypes/nw/ui/react_admin/src/
|
|
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
|
|
1955
1958
|
api_logic_server_cli/prototypes/nw/ui/react_admin/src/dataProvider.js,sha256=IImP6XdWjswfamiD4JmV_Cl8yEJTAM06ABXcn4NmzyQ,3289
|
|
1956
1959
|
api_logic_server_cli/prototypes/nw/ui/react_admin/src/index.css,sha256=2vIsKWyAHT1TMIM2HMWfvcIuW_5SiqS60Zc7VMxUSKQ,366
|
|
1957
1960
|
api_logic_server_cli/prototypes/nw/ui/react_admin/src/index.js,sha256=OfaJG-vOhWzmBOpFDwis4m-huTFBWYWIH7syP2O6Jvs,535
|
|
@@ -2253,9 +2256,9 @@ api_logic_server_cli/tools/mini_skel/database/system/SAFRSBaseX.py,sha256=p8C7AF
|
|
|
2253
2256
|
api_logic_server_cli/tools/mini_skel/database/system/TestDataBase.py,sha256=U02SYqThsbY5g3DX7XGaiMxjZBuOpzvtPS6RfI1WQFg,371
|
|
2254
2257
|
api_logic_server_cli/tools/mini_skel/logic/declare_logic.py,sha256=fTrlHyqMeZsw_TyEXFa1VlYBL7fzjZab5ONSXO7aApo,175
|
|
2255
2258
|
api_logic_server_cli/tools/mini_skel/logic/load_verify_rules.py,sha256=Rr5bySJpYCZmNPF2h-phcPJ53nAOPcT_ohZpCD93-a0,7530
|
|
2256
|
-
apilogicserver-15.0.
|
|
2257
|
-
apilogicserver-15.0.
|
|
2258
|
-
apilogicserver-15.0.
|
|
2259
|
-
apilogicserver-15.0.
|
|
2260
|
-
apilogicserver-15.0.
|
|
2261
|
-
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
|