20 lines
940 B
TypeScript
20 lines
940 B
TypeScript
export * from "./_baseSchema";
|
|
import { ActionAuth } from "../EntityDict";
|
|
export type Schema = ActionAuth["Schema"];
|
|
export type Action = ActionAuth["Action"];
|
|
export type Projection = ActionAuth["Projection"];
|
|
export type Filter = ActionAuth["Filter"];
|
|
export type SortNode = ActionAuth["SortNode"];
|
|
export type Sorter = ActionAuth["Sorter"];
|
|
export type Selection = ActionAuth["Selection"];
|
|
export type Aggregation = ActionAuth["Aggregation"];
|
|
export type CreateOperationData = ActionAuth["CreateOperationData"];
|
|
export type CreateSingle = ActionAuth["CreateSingle"];
|
|
export type CreateMulti = ActionAuth["CreateMulti"];
|
|
export type Create = ActionAuth["Create"];
|
|
export type UpdateOperationData = ActionAuth["UpdateOperationData"];
|
|
export type Update = ActionAuth["Update"];
|
|
export type RemoveOperationData = ActionAuth["RemoveOperationData"];
|
|
export type Remove = ActionAuth["Remove"];
|
|
export type Operation = ActionAuth["Operation"];
|