Ultimate Entity Relation
src/types/ultimate-entity-relation.ts
export type UltimateRelationWithType<T extends UltimateEntityRelationTypes> = {
id: string;
type: T;
relationEntityId: string;
relationEntityPropertyName: string;
group?: string;
note?: string;
name?: string;
description?: string;
};