/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
libs/internal-sdk/src/models/components/diffenvironmentrequestdto.ts
34 строки
885 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"; export type DiffEnvironmentRequestDto = { /** * Source environment ID to compare from. Defaults to the Development environment if not provided. */ sourceEnvironmentId?: string | undefined; }; /** @internal */ export type DiffEnvironmentRequestDto$Outbound = { sourceEnvironmentId?: string | undefined; }; /** @internal */ export const DiffEnvironmentRequestDto$outboundSchema: z.ZodType< DiffEnvironmentRequestDto$Outbound, z.ZodTypeDef, DiffEnvironmentRequestDto > = z.object({ sourceEnvironmentId: z.string().optional(), }); export function diffEnvironmentRequestDtoToJSON( diffEnvironmentRequestDto: DiffEnvironmentRequestDto, ): string { return JSON.stringify( DiffEnvironmentRequestDto$outboundSchema.parse(diffEnvironmentRequestDto), ); }