UNPKG

@vercel/sdk

Version:

<p align="center"> <a href="https://vercel.com"> <img src="https://assets.vercel.com/image/upload/v1588805858/repositories/vercel/logo.png" height="96"> <h3 align="center">Vercel</h3> </a> <p align="center">Develop. Preview. Ship.</p> </p>

32 lines 1.8 kB
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./sdkvalidationerror.js"; export type CreateSpeedInsightsToggleRequestBody = { value: boolean; }; export type CreateSpeedInsightsToggleRequest = { projectId: string; requestBody?: CreateSpeedInsightsToggleRequestBody | undefined; }; export type CreateSpeedInsightsToggleResponseBody = { value: boolean; }; /** @internal */ export type CreateSpeedInsightsToggleRequestBody$Outbound = { value: boolean; }; /** @internal */ export declare const CreateSpeedInsightsToggleRequestBody$outboundSchema: z.ZodType<CreateSpeedInsightsToggleRequestBody$Outbound, z.ZodTypeDef, CreateSpeedInsightsToggleRequestBody>; export declare function createSpeedInsightsToggleRequestBodyToJSON(createSpeedInsightsToggleRequestBody: CreateSpeedInsightsToggleRequestBody): string; /** @internal */ export type CreateSpeedInsightsToggleRequest$Outbound = { projectId: string; RequestBody?: CreateSpeedInsightsToggleRequestBody$Outbound | undefined; }; /** @internal */ export declare const CreateSpeedInsightsToggleRequest$outboundSchema: z.ZodType<CreateSpeedInsightsToggleRequest$Outbound, z.ZodTypeDef, CreateSpeedInsightsToggleRequest>; export declare function createSpeedInsightsToggleRequestToJSON(createSpeedInsightsToggleRequest: CreateSpeedInsightsToggleRequest): string; /** @internal */ export declare const CreateSpeedInsightsToggleResponseBody$inboundSchema: z.ZodType<CreateSpeedInsightsToggleResponseBody, z.ZodTypeDef, unknown>; export declare function createSpeedInsightsToggleResponseBodyFromJSON(jsonString: string): SafeParseResult<CreateSpeedInsightsToggleResponseBody, SDKValidationError>; //# sourceMappingURL=createspeedinsightstoggleop.d.ts.map