| 12345678910111213141516171819 | import { ICredentials } from '../../entities/integration';import type { EnvironmentId } from '../../types';import { BuilderFieldType, BuilderGroupValues, FilterParts } from '../../types';export type ICredentialsDto = ICredentials;export interface IConstructIntegrationDto {    name?: string;    identifier?: string;    _environmentId?: EnvironmentId;    credentials?: ICredentialsDto;    active?: boolean;    check?: boolean;    conditions?: {        isNegated?: boolean;        type?: BuilderFieldType;        value?: BuilderGroupValues;        children?: FilterParts[];    }[];}//# sourceMappingURL=construct-integration.interface.d.ts.map
 |