import { UltimateEntityRelationTypes } from "./ultimate-entity-relation-types"; export type UltimateEntityRelationDefaultValueMap = { [UltimateEntityRelationTypes.ONE_TO_ONE_RELATION_SELECT]: string; [UltimateEntityRelationTypes.ONE_TO_MANY_RELATION_SELECT]: string; [UltimateEntityRelationTypes.MANY_TO_ONE_RELATION_SELECT]: string[]; }; export type UltimateRelationWithType = { id: string; type: T; relationEntityId: string; relationEntityPropertyName?: string | undefined; group?: string; note?: string; name?: string; description?: string; }; export type UltimateEntityRelation = UltimateRelationWithType | UltimateRelationWithType | UltimateRelationWithType | UltimateRelationWithType;