Updates
This commit is contained in:
Vendored
+6
@@ -949,6 +949,7 @@ export type ServerQueryParam<T extends {
|
||||
[k: string]: any;
|
||||
}> = {
|
||||
selectFields?: string[];
|
||||
omitFields?: string[];
|
||||
query?: ServerQueryQueryObject<T>;
|
||||
limit?: number;
|
||||
page?: number;
|
||||
@@ -1003,6 +1004,11 @@ export type ServerQueryParamsJoin<Table extends string = string, Field extends o
|
||||
alias?: string;
|
||||
count?: boolean;
|
||||
})[];
|
||||
omitFields?: (keyof Field | {
|
||||
field: keyof Field;
|
||||
alias?: string;
|
||||
count?: boolean;
|
||||
})[];
|
||||
operator?: (typeof ServerQueryOperators)[number];
|
||||
};
|
||||
export type ServerQueryParamsJoinMatchObject<Field extends object = {
|
||||
|
||||
Reference in New Issue
Block a user