/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
libs/application-generic/src/usecases/select-integration/select-integration.command.ts
27 строк
572 B
Adam Chmara
chore(root): apply biome formatter & linter fixes NV-6436 (#8838)
31 июл 2025, 14:59
Не верифицирован
31 июл 2025, 14:59
855fb8f
Код
Авторство
О чём код?
import { ChannelTypeEnum, ITenantDefine, ProvidersIdEnum } from '@novu/shared'; import { IsDefined, IsMongoId, IsOptional } from 'class-validator'; import { EnvironmentCommand } from '../../commands/project.command'; export class SelectIntegrationCommand extends EnvironmentCommand { @IsOptional() @IsMongoId() id?: string; @IsOptional() identifier?: string; @IsDefined() channelType: ChannelTypeEnum; @IsOptional() providerId?: ProvidersIdEnum; @IsDefined() filterData: { tenant?: ITenantDefine; }; @IsOptional() userId?: string; }