/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
packages/shared/src/entities/execution-details/execution-details.interface.ts
31 строка
662 B
George Djabarov
feat(dashboard): see subscription and details in activity feed fixes NV-6972 (#9686)
18 дек 2025, 16:27
Не верифицирован
18 дек 2025, 16:27
cd4f45a
Код
Авторство
О чём код?
export enum ExecutionDetailsSourceEnum { CREDENTIALS = 'Credentials', INTERNAL = 'Internal', PAYLOAD = 'Payload', WEBHOOK = 'Webhook', } export enum ExecutionDetailsStatusEnum { SUCCESS = 'Success', WARNING = 'Warning', FAILED = 'Failed', PENDING = 'Pending', QUEUED = 'Queued', READ_CONFIRMATION = 'ReadConfirmation', } export interface IExecutionDetail { _id: string; _jobId: string; providerId: string; detail: string; source: ExecutionDetailsSourceEnum; status: ExecutionDetailsStatusEnum; isTest: boolean; isRetry: boolean; raw?: string; createdAt: string; updatedAt: string; eventType: string; id: string; }