import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SyncRenewGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type Lease = { /** * Unique identifier for the deployment. */ deploymentId: string; /** * False when this session no longer holds a live lease. */ renewed: boolean; leaseExpiresAt: Date | null; }; /** * Renewal processed. Inspect `leases` for per-deployment outcomes; a lost lease is reported there rather than failing the whole batch. */ export type SyncRenewResponse = { /** * True when every requested deployment was renewed. */ success: boolean; /** * Per-deployment renewal outcome. */ leases: Array; }; /** @internal */ export declare const Lease$inboundSchema: z.ZodType; export declare function leaseFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SyncRenewResponse$inboundSchema: z.ZodType; export declare function syncRenewResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=syncrenew.d.ts.map