Variable AnalyticsContextSchemaConst
AnalyticsContextSchema: ZodObject<{
hostId: ZodString;
library: ZodEnum<["agent-play-server", "agent-play-client"]>;
sid: ZodOptional<ZodString>;
snapshotRev: ZodOptional<ZodNumber>;
}, "strip", ZodTypeAny, {
hostId: string;
library: "agent-play-server" | "agent-play-client";
sid?: string;
snapshotRev?: number;
}, {
hostId: string;
library: "agent-play-server" | "agent-play-client";
sid?: string;
snapshotRev?: number;
}> = ...