/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
packages/shared/src/dto/integration/construct-integration.interface.ts
20 строк
568 B
Adam Chmara
feat(api,dashboard,web): add 'remove branding' toggle to org settings (#8405)
30 май 2025, 12:06
Не верифицирован
30 май 2025, 12:06
d8775e2
Код
Авторство
О чём код?
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[]; }[]; }