Updates
This commit is contained in:
Vendored
+2
-1
@@ -1326,6 +1326,7 @@ export type DsqlCrudParam<T extends {
|
||||
deleteKeyValues?: SQLDeleteData[];
|
||||
deleteKeyValuesOperator?: "AND" | "OR";
|
||||
targetId?: string | number;
|
||||
targetIds?: (string | number)[];
|
||||
targetValue?: string | number;
|
||||
targetField?: keyof T;
|
||||
query?: DsqlCrudQueryObject<T, K>;
|
||||
@@ -2276,7 +2277,7 @@ export type APIPathsQuery<T extends {
|
||||
[k: string]: any;
|
||||
}> = {
|
||||
searchQuery?: DsqlCrudQueryObject<T>;
|
||||
crudParams?: Pick<DsqlCrudParam<T>, "count" | "countOnly" | "targetId" | "targetField" | "targetValue" | "tableSchema" | "onDuplicate">;
|
||||
crudParams?: Pick<DsqlCrudParam<T>, "count" | "countOnly" | "targetId" | "targetIds" | "targetField" | "targetValue" | "tableSchema" | "onDuplicate">;
|
||||
};
|
||||
export type APIPathsParamsGetMiddleware<T extends {
|
||||
[k: string]: any;
|
||||
|
||||
Reference in New Issue
Block a user