@unkey/api
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@unkey/api* API.
25 lines • 846 B
TypeScript
import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type V2DeployDeploymentStep = {
/**
* Step status
*/
status?: string | undefined;
/**
* Step message
*/
message?: string | undefined;
/**
* Error message if step failed
*/
errorMessage?: string | undefined;
/**
* Unix timestamp in milliseconds
*/
createdAt?: number | undefined;
};
/** @internal */
export declare const V2DeployDeploymentStep$inboundSchema: z.ZodType<V2DeployDeploymentStep, z.ZodTypeDef, unknown>;
export declare function v2DeployDeploymentStepFromJSON(jsonString: string): SafeParseResult<V2DeployDeploymentStep, SDKValidationError>;
//# sourceMappingURL=v2deploydeploymentstep.d.ts.map