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>

35 lines 1.61 kB
import * as z from "zod/v3"; export type ListProjectConnectorConnectionsRequest = { /** * Vercel project ID. */ projectId: string; /** * Maximum number of connector connections to return. Defaults to 50. */ limit?: number | undefined; /** * Cursor from `pagination.next` on the previous response. */ cursor?: string | undefined; /** * The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected. */ teamId?: string | undefined; /** * The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected. */ slug?: string | undefined; }; /** @internal */ export type ListProjectConnectorConnectionsRequest$Outbound = { projectId: string; limit?: number | undefined; cursor?: string | undefined; teamId?: string | undefined; slug?: string | undefined; }; /** @internal */ export declare const ListProjectConnectorConnectionsRequest$outboundSchema: z.ZodType<ListProjectConnectorConnectionsRequest$Outbound, z.ZodTypeDef, ListProjectConnectorConnectionsRequest>; export declare function listProjectConnectorConnectionsRequestToJSON(listProjectConnectorConnectionsRequest: ListProjectConnectorConnectionsRequest): string; //# sourceMappingURL=listprojectconnectorconnectionsop.d.ts.map