/
dimamir
/
undb
Обзор
Документация
Войти
/
dimamir
/
undb
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/commands/src/update-webhook.command.ts
16 строк
488 B
nichenqin
feat: update webhook
31 май 2024, 08:00
31 май 2024, 08:00
60615b7
Код
Авторство
О чём код?
import { Command, type CommandProps } from "@undb/domain" import { updateWebhookDTO, type IUpdateWebhookDTO } from "@undb/webhook" import { z } from "@undb/zod" export const updateWebhookCommand = updateWebhookDTO export type IUpdateWebhookCommand = z.infer<typeof updateWebhookCommand> export class UpdateWebhookCommand extends Command { public readonly input: IUpdateWebhookDTO constructor(props: CommandProps<IUpdateWebhookDTO>) { super(props) this.input = props } }