import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FacetResult } from "./facetresult.js"; import { FeedResult } from "./feedresult.js"; export type FeedResponse = { /** * List of experiment ids for the corresponding request. */ experimentIds?: Array | undefined; /** * An opaque token that represents this particular feed response. */ trackingToken?: string | undefined; /** * Server unix timestamp (in seconds since epoch UTC). */ serverTimestamp: number; results?: Array | undefined; /** * Map from category to the list of facets that can be used to filter the entry's content. */ facetResults?: { [k: string]: Array; } | undefined; /** * The time window (in hours) used for generating user mentions. */ mentionsTimeWindowInHours?: number | undefined; }; /** @internal */ export declare const FeedResponse$inboundSchema: z.ZodType; export declare function feedResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=feedresponse.d.ts.map