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