Updates
This commit is contained in:
Vendored
+5
-1
@@ -1039,11 +1039,15 @@ export type ServerQueryParamsJoinMatchObject<Field extends object = {
|
||||
[key: string]: any;
|
||||
}> = {
|
||||
/** Field name from the **Root Table** */
|
||||
source: string | ServerQueryParamsJoinMatchSourceTargetObject;
|
||||
source?: string | ServerQueryParamsJoinMatchSourceTargetObject;
|
||||
/** Field name from the **Join Table** */
|
||||
target?: keyof Field | ServerQueryParamsJoinMatchSourceTargetObject;
|
||||
/** A literal value: No source and target Needed! */
|
||||
targetLiteral?: string;
|
||||
__batch?: {
|
||||
matches: Omit<ServerQueryParamsJoinMatchObject<Field>, "__batch">[];
|
||||
operator: "AND" | "OR";
|
||||
};
|
||||
};
|
||||
export type ServerQueryParamsJoinMatchSourceTargetObject = {
|
||||
tableName: string;
|
||||
|
||||
Reference in New Issue
Block a user