add more crud operations to the mapper files

This commit is contained in:
2021-01-18 23:49:43 -07:00
parent 3282d6c722
commit 91cb2666c3
2 changed files with 117 additions and 11 deletions

View File

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