import { OrganizationType } from './organizationType'; import { IProject } from './project'; import { SortType } from './sortType'; export interface IIdentityProvider { id: string; identifier: string; project: Pick; typeOf: OrganizationType.Organization; } export interface ISearchConditions { limit?: number; page?: number; sort?: { identifier?: SortType; }; project?: { id?: { $eq?: string; }; }; id?: { $eq?: string; $in?: string[]; }; identifier?: { $eq?: string; $regex?: string; }; }