import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ManagedServiceRecord, ManagedServiceRecord$Outbound } from "./managedservicerecord.js"; import { MemoryMount, MemoryMount$Outbound } from "./memorymount.js"; import { SandboxFeature } from "./sandboxfeature.js"; import { SandboxResourceClass } from "./sandboxresourceclass.js"; import { SandboxRuntimeProfile } from "./sandboxruntimeprofile.js"; import { SessionKind } from "./sessionkind.js"; import { SessionStatus } from "./sessionstatus.js"; export type SessionRecord = { sessionId: string; sessionKey?: string | null | undefined; userId: string; orgId?: string | null | undefined; teamId?: string | null | undefined; status?: SessionStatus | undefined; sessionKind?: SessionKind | undefined; resourceClass?: SandboxResourceClass | null | undefined; assignmentGeneration?: number | undefined; managedServices?: Array | undefined; ttlSeconds?: number | undefined; workspaceExpiresAt?: Date | null | undefined; sandboxFeatures?: Array | undefined; runtimeProfile?: SandboxRuntimeProfile | undefined; memoryMounts?: Array | undefined; apiKeyId?: string | null | undefined; permissions?: Array | undefined; sandboxMemoryMib?: number | undefined; createdAt?: Date | undefined; updatedAt?: Date | undefined; }; /** @internal */ export declare const SessionRecord$inboundSchema: z.ZodType; /** @internal */ export type SessionRecord$Outbound = { session_id: string; session_key?: string | null | undefined; user_id: string; org_id?: string | null | undefined; team_id?: string | null | undefined; status?: string | undefined; session_kind?: string | undefined; resource_class?: string | null | undefined; assignment_generation: number; managed_services?: Array | undefined; ttl_seconds: number; workspace_expires_at?: string | null | undefined; sandbox_features?: Array | undefined; runtime_profile?: string | undefined; memory_mounts?: Array | undefined; api_key_id?: string | null | undefined; permissions?: Array | undefined; sandbox_memory_mib: number; created_at?: string | undefined; updated_at?: string | undefined; }; /** @internal */ export declare const SessionRecord$outboundSchema: z.ZodType; export declare function sessionRecordToJSON(sessionRecord: SessionRecord): string; export declare function sessionRecordFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sessionrecord.d.ts.map