UNPKG

attio-js

Version:

Developer-friendly & type-safe JS/TS SDK based on the official OpenAPI spec of Attio.

76 lines (67 loc) 2.02 kB
/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; import { safeParse } from "../../lib/schemas.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { List, List$inboundSchema, List$Outbound, List$outboundSchema, } from "../components/list.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Success */ export type GetV2ListsResponse = { data: Array<List>; }; /** @internal */ export const GetV2ListsResponse$inboundSchema: z.ZodType< GetV2ListsResponse, z.ZodTypeDef, unknown > = z.object({ data: z.array(List$inboundSchema), }); /** @internal */ export type GetV2ListsResponse$Outbound = { data: Array<List$Outbound>; }; /** @internal */ export const GetV2ListsResponse$outboundSchema: z.ZodType< GetV2ListsResponse$Outbound, z.ZodTypeDef, GetV2ListsResponse > = z.object({ data: z.array(List$outboundSchema), }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace GetV2ListsResponse$ { /** @deprecated use `GetV2ListsResponse$inboundSchema` instead. */ export const inboundSchema = GetV2ListsResponse$inboundSchema; /** @deprecated use `GetV2ListsResponse$outboundSchema` instead. */ export const outboundSchema = GetV2ListsResponse$outboundSchema; /** @deprecated use `GetV2ListsResponse$Outbound` instead. */ export type Outbound = GetV2ListsResponse$Outbound; } export function getV2ListsResponseToJSON( getV2ListsResponse: GetV2ListsResponse, ): string { return JSON.stringify( GetV2ListsResponse$outboundSchema.parse(getV2ListsResponse), ); } export function getV2ListsResponseFromJSON( jsonString: string, ): SafeParseResult<GetV2ListsResponse, SDKValidationError> { return safeParse( jsonString, (x) => GetV2ListsResponse$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetV2ListsResponse' from JSON`, ); }