import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Person } from "./person.js"; export type PerUserInsight = { person?: Person | undefined; /** * Total number of searches by this user over the specified time period. */ numSearches?: number | undefined; /** * Total number of chats by this user over the specified time period. */ numChats?: number | undefined; /** * Total number of active sessions by this user in a Glean client over the specified time period. */ numActiveSessions?: number | undefined; /** * Total number of Gleanbot responses marked useful by this user over the specified time period. */ numGleanbotUsefulResponses?: number | undefined; /** * Total number of days this user was an Active User over the specified time period. */ numDaysActive?: number | undefined; /** * Total number of summarized items by this user over the specified time period. */ numSummarizations?: number | undefined; /** * Total number of AI Answers interacted with by this user over the specified time period. */ numAiAnswers?: number | undefined; /** * Total number of agent runs for this user over the specified time period. */ numAgentRuns?: number | undefined; }; /** @internal */ export declare const PerUserInsight$inboundSchema: z.ZodType; export declare function perUserInsightFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=peruserinsight.d.ts.map