UNPKG

@unkey/api

Version:

Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@unkey/api* API.

38 lines 1.07 kB
import * as z from "zod/v3"; /** * Optional git commit information */ export type V2DeployGitCommit = { /** * Git commit SHA */ commitSha?: string | undefined; /** * Git commit message */ commitMessage?: string | undefined; /** * Git author handle/username */ authorHandle?: string | undefined; /** * Git author avatar URL */ authorAvatarUrl?: string | undefined; /** * Commit timestamp in milliseconds */ timestamp?: number | undefined; }; /** @internal */ export type V2DeployGitCommit$Outbound = { commitSha?: string | undefined; commitMessage?: string | undefined; authorHandle?: string | undefined; authorAvatarUrl?: string | undefined; timestamp?: number | undefined; }; /** @internal */ export declare const V2DeployGitCommit$outboundSchema: z.ZodType<V2DeployGitCommit$Outbound, z.ZodTypeDef, V2DeployGitCommit>; export declare function v2DeployGitCommitToJSON(v2DeployGitCommit: V2DeployGitCommit): string; //# sourceMappingURL=v2deploygitcommit.d.ts.map