add support for all crud and list in the service files

This commit is contained in:
2021-01-23 01:14:04 -07:00
parent c176de3297
commit 17deed412a
5 changed files with 119 additions and 72 deletions

View File

@ -50,7 +50,7 @@ interface ComponentDef {
interface EndpointDef {
component: string;
table: string;
type: ('list' | 'count' | 'item' | 'distinct' | 'update' | 'create' | 'delete' | 'search');
type: ('list' | 'count' | 'item' | 'update' | 'create' | 'delete' | 'search');
columns: ColumnRef[];
values?: ValueDef[];
join?: JoinDef[];