Updates
This commit is contained in:
@@ -2787,3 +2787,16 @@ export type APIConnectionOptions = {
|
||||
remoteHostPort?: number;
|
||||
isLocalhost?: boolean;
|
||||
};
|
||||
|
||||
export type CRUDAPIHandlerParams = {
|
||||
req: IncomingMessage;
|
||||
};
|
||||
|
||||
export type CrudQueryObject<
|
||||
P extends { [k: string]: any } = { [k: string]: any }
|
||||
> = {
|
||||
paths?: string[];
|
||||
query?: DsqlCrudQueryObject<P>;
|
||||
userKey?: string;
|
||||
crudParams?: Omit<DsqlCrudParam<P>, "action" | "table">;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user