/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
libs/internal-sdk/src/models/components/updatecontextrequestdto.ts
34 строки
790 B
George Djabarov
feat(api-service): subscription polish (#9554)
08 дек 2025, 21:15
Не верифицирован
08 дек 2025, 21:15
7faa7cf
Код
Авторство
О чём код?
/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type UpdateContextRequestDto = { /** * Custom data to associate with this context. Replaces existing data. */ data: { [k: string]: any }; }; /** @internal */ export type UpdateContextRequestDto$Outbound = { data: { [k: string]: any }; }; /** @internal */ export const UpdateContextRequestDto$outboundSchema: z.ZodType< UpdateContextRequestDto$Outbound, z.ZodTypeDef, UpdateContextRequestDto > = z.object({ data: z.record(z.any()), }); export function updateContextRequestDtoToJSON( updateContextRequestDto: UpdateContextRequestDto, ): string { return JSON.stringify( UpdateContextRequestDto$outboundSchema.parse(updateContextRequestDto), ); }