Updates
This commit is contained in:
@@ -2933,15 +2933,12 @@ export type APIPathsParamsCrudMiddleware<
|
||||
}) => Promise<APIPathsBody<T> | undefined>;
|
||||
|
||||
export type APIPathsPostResulstsFn<
|
||||
T extends { [k: string]: any } = { [k: string]: any },
|
||||
K extends string = string
|
||||
> = (params: {
|
||||
body?: APIPathsBody<T>;
|
||||
query?: DsqlCrudQueryObject<T>;
|
||||
table: K;
|
||||
targetId?: number | string;
|
||||
res?: APIResponseObject;
|
||||
}) => Promise<APIPathsBody<T> | undefined>;
|
||||
T extends { [k: string]: any } = { [k: string]: any }
|
||||
> = (
|
||||
params: APIPathsCrudParams<T> & {
|
||||
res?: APIResponseObject;
|
||||
}
|
||||
) => Promise<APIPathsBody<T> | undefined>;
|
||||
|
||||
export type APIPathsParamsAllowedTable = {
|
||||
table: string;
|
||||
|
||||
Reference in New Issue
Block a user