/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
libs/internal-sdk/src/models/components/dependencyreasonenum.ts
23 строки
624 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"; /** * Reason for the dependency */ export const DependencyReasonEnum = { LayoutRequiredForWorkflow: "LAYOUT_REQUIRED_FOR_WORKFLOW", LayoutExistsInTarget: "LAYOUT_EXISTS_IN_TARGET", } as const; /** * Reason for the dependency */ export type DependencyReasonEnum = ClosedEnum<typeof DependencyReasonEnum>; /** @internal */ export const DependencyReasonEnum$inboundSchema: z.ZodNativeEnum< typeof DependencyReasonEnum > = z.nativeEnum(DependencyReasonEnum);