/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
apps/api/src/app/agents/conversation-runtime/reply/handle-plan-progress/handle-plan-progress.command.ts
20 строк
522 B
Adam Chmara
feat(framework,api-service): self-hosted tool approval consistency and remove plan cards fixes NV-8164 (#11768)
03 июл 2026, 18:20
Не верифицирован
03 июл 2026, 18:20
c80a191
Код
Авторство
О чём код?
import { IsNotEmpty, IsObject, IsString } from 'class-validator'; import { EnvironmentWithUserCommand } from '../../../../shared/commands/project.command'; import type { PlanProgressEvent } from '../../egress/plan-phase'; export class HandlePlanProgressCommand extends EnvironmentWithUserCommand { @IsString() @IsNotEmpty() conversationId: string; @IsString() @IsNotEmpty() agentIdentifier: string; @IsString() @IsNotEmpty() integrationIdentifier: string; @IsObject() event: PlanProgressEvent; }