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>

34 lines 1.3 kB
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./sdkvalidationerror.js"; export type DeleteTeamInviteCodeRequest = { /** * The Team invite code ID. */ inviteId: string; /** * The Team identifier to perform the request on behalf of. */ teamId: string; }; /** * Successfully deleted Team invite code. */ export type DeleteTeamInviteCodeResponseBody = { /** * ID of the team. */ id: string; }; /** @internal */ export type DeleteTeamInviteCodeRequest$Outbound = { inviteId: string; teamId: string; }; /** @internal */ export declare const DeleteTeamInviteCodeRequest$outboundSchema: z.ZodType<DeleteTeamInviteCodeRequest$Outbound, z.ZodTypeDef, DeleteTeamInviteCodeRequest>; export declare function deleteTeamInviteCodeRequestToJSON(deleteTeamInviteCodeRequest: DeleteTeamInviteCodeRequest): string; /** @internal */ export declare const DeleteTeamInviteCodeResponseBody$inboundSchema: z.ZodType<DeleteTeamInviteCodeResponseBody, z.ZodTypeDef, unknown>; export declare function deleteTeamInviteCodeResponseBodyFromJSON(jsonString: string): SafeParseResult<DeleteTeamInviteCodeResponseBody, SDKValidationError>; //# sourceMappingURL=deleteteaminvitecodeop.d.ts.map