construct-integration.interface.d.ts 659 B

12345678910111213141516171819
  1. import { ICredentials } from '../../entities/integration';
  2. import type { EnvironmentId } from '../../types';
  3. import { BuilderFieldType, BuilderGroupValues, FilterParts } from '../../types';
  4. export type ICredentialsDto = ICredentials;
  5. export interface IConstructIntegrationDto {
  6. name?: string;
  7. identifier?: string;
  8. _environmentId?: EnvironmentId;
  9. credentials?: ICredentialsDto;
  10. active?: boolean;
  11. check?: boolean;
  12. conditions?: {
  13. isNegated?: boolean;
  14. type?: BuilderFieldType;
  15. value?: BuilderGroupValues;
  16. children?: FilterParts[];
  17. }[];
  18. }
  19. //# sourceMappingURL=construct-integration.interface.d.ts.map