@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>
34 lines • 1.5 kB
TypeScript
import * as z from "zod/v3";
export type InvalidateBySrcImagesRequestBody = {
srcImages: Array<string>;
};
export type InvalidateBySrcImagesRequest = {
projectIdOrName: string;
/**
* The Team identifier to perform the request on behalf of.
*/
teamId?: string | undefined;
/**
* The Team slug to perform the request on behalf of.
*/
slug?: string | undefined;
requestBody?: InvalidateBySrcImagesRequestBody | undefined;
};
/** @internal */
export type InvalidateBySrcImagesRequestBody$Outbound = {
srcImages: Array<string>;
};
/** @internal */
export declare const InvalidateBySrcImagesRequestBody$outboundSchema: z.ZodType<InvalidateBySrcImagesRequestBody$Outbound, z.ZodTypeDef, InvalidateBySrcImagesRequestBody>;
export declare function invalidateBySrcImagesRequestBodyToJSON(invalidateBySrcImagesRequestBody: InvalidateBySrcImagesRequestBody): string;
/** @internal */
export type InvalidateBySrcImagesRequest$Outbound = {
projectIdOrName: string;
teamId?: string | undefined;
slug?: string | undefined;
RequestBody?: InvalidateBySrcImagesRequestBody$Outbound | undefined;
};
/** @internal */
export declare const InvalidateBySrcImagesRequest$outboundSchema: z.ZodType<InvalidateBySrcImagesRequest$Outbound, z.ZodTypeDef, InvalidateBySrcImagesRequest>;
export declare function invalidateBySrcImagesRequestToJSON(invalidateBySrcImagesRequest: InvalidateBySrcImagesRequest): string;
//# sourceMappingURL=invalidatebysrcimagesop.d.ts.map