/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
libs/internal-sdk/src/models/components/diffactionenum.ts
26 строк
562 B
Dima Grossman
chore(root): sdk gen version update for latest internal sdk changes (#10651)
10 апр 2026, 16:36
Не верифицирован
10 апр 2026, 16:36
b5e0674
Код
Авторство
О чём код?
/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Type of change */ export const DiffActionEnum = { Added: "added", Modified: "modified", Deleted: "deleted", Unchanged: "unchanged", Moved: "moved", } as const; /** * Type of change */ export type DiffActionEnum = ClosedEnum<typeof DiffActionEnum>; /** @internal */ export const DiffActionEnum$inboundSchema: z.ZodNativeEnum< typeof DiffActionEnum > = z.nativeEnum(DiffActionEnum);