export type SessionObjectSource = "claude" | "codex" | "codewith" | "gemini" | "cursor" | "opencode" | "aicopilot"; export interface SessionSandboxIdentity { provider: string; allocationId: string; } export interface BuildObjectKeyInput { machineId: string; sandbox?: SessionSandboxIdentity; source: SessionObjectSource; agent?: string; sessionId: string; sha256: string; ext: string; } export declare function buildObjectKey(input: BuildObjectKeyInput): string; //# sourceMappingURL=object-key.d.ts.map