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