import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { LabeledCountInfo } from "./labeledcountinfo.js"; import { PerUserAssistantInsight } from "./peruserassistantinsight.js"; export type AssistantInsightsResponse = { /** * Number of current Monthly Active Users, in the specified departments. */ monthlyActiveUsers?: number | undefined; /** * Number of current Weekly Active Users, in the specified departments. */ weeklyActiveUsers?: number | undefined; /** * Unix timestamp of the last update for the insights data in the response. */ lastUpdatedTs?: number | undefined; monthlyActiveUserTimeseries?: LabeledCountInfo | undefined; weeklyActiveUserTimeseries?: LabeledCountInfo | undefined; dailyActiveUserTimeseries?: LabeledCountInfo | undefined; /** * Number of current signed up employees in the specified departments, according to the Org Chart. */ totalSignups?: number | undefined; chatMessagesTimeseries?: LabeledCountInfo | undefined; summarizationsTimeseries?: LabeledCountInfo | undefined; aiAnswersTimeseries?: LabeledCountInfo | undefined; gleanbotInteractionsTimeseries?: LabeledCountInfo | undefined; perUserInsights?: Array | undefined; upvotesTimeseries?: LabeledCountInfo | undefined; downvotesTimeseries?: LabeledCountInfo | undefined; }; /** @internal */ export declare const AssistantInsightsResponse$inboundSchema: z.ZodType; export declare function assistantInsightsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=assistantinsightsresponse.d.ts.map