This commit is contained in:
Benjamin Toby
2024-11-26 10:31:39 +01:00
parent 4b13c5264d
commit d13ba5057b
266 changed files with 702 additions and 426 deletions
+4 -2
View File
@@ -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 = {