Updates
This commit is contained in:
+4
-2
@@ -1172,7 +1172,7 @@ export type FetchDataParams = {
|
||||
};
|
||||
|
||||
export type AuthFetchQuery = ServerQueryParam & {
|
||||
[key: string]: string | number | { [key: string]: any };
|
||||
[key: string]: any;
|
||||
};
|
||||
|
||||
export type ServerQueryParamsJoin<
|
||||
@@ -1199,7 +1199,9 @@ export type ServerQueryParamsJoinMatchObject<
|
||||
/** Field name from the **Root Table** */
|
||||
source: string | ServerQueryParamsJoinMatchSourceTargetObject;
|
||||
/** Field name from the **Join Table** */
|
||||
target: keyof Field | ServerQueryParamsJoinMatchSourceTargetObject;
|
||||
target?: keyof Field | ServerQueryParamsJoinMatchSourceTargetObject;
|
||||
/** A literal value: No source and target Needed! */
|
||||
targetLiteral?: string;
|
||||
};
|
||||
|
||||
export type ServerQueryParamsJoinMatchSourceTargetObject = {
|
||||
|
||||
Reference in New Issue
Block a user