@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>
30 lines • 1.28 kB
TypeScript
import * as z from "zod/v3";
export type GetByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestRequest = {
/**
* Single Docker repository team slug component.
*/
teamSlug: string;
/**
* Single Docker repository project slug component.
*/
projectSlug: string;
/**
* Single Docker repository name component.
*/
repositoryName: string;
/**
* Content-addressable digest (algorithm:hex).
*/
digest: string;
};
/** @internal */
export type GetByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestRequest$Outbound = {
teamSlug: string;
projectSlug: string;
repositoryName: string;
digest: string;
};
/** @internal */
export declare const GetByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestRequest$outboundSchema: z.ZodType<GetByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestRequest$Outbound, z.ZodTypeDef, GetByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestRequest>;
export declare function getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestRequestToJSON(getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestRequest: GetByTeamSlugByProjectSlugByRepositoryNameBlobsByDigestRequest): string;
//# sourceMappingURL=getbyteamslugbyprojectslugbyrepositorynameblobsbydigestop.d.ts.map