import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FeedEntry } from "./feedentry.js"; /** * Category of the result, one of the requested categories in incoming request. */ export declare const FeedResultCategory: { readonly DocumentSuggestion: "DOCUMENT_SUGGESTION"; readonly DocumentSuggestionScenario: "DOCUMENT_SUGGESTION_SCENARIO"; readonly TrendingDocument: "TRENDING_DOCUMENT"; readonly UseCase: "USE_CASE"; readonly VerificationReminder: "VERIFICATION_REMINDER"; readonly Event: "EVENT"; readonly Announcement: "ANNOUNCEMENT"; readonly Mention: "MENTION"; readonly DatasourceAffinity: "DATASOURCE_AFFINITY"; readonly Recent: "RECENT"; readonly CompanyResource: "COMPANY_RESOURCE"; readonly Experimental: "EXPERIMENTAL"; readonly PeopleCelebrations: "PEOPLE_CELEBRATIONS"; readonly SocialLink: "SOCIAL_LINK"; readonly ExternalTasks: "EXTERNAL_TASKS"; readonly DisplayableList: "DISPLAYABLE_LIST"; readonly ZeroStateChatSuggestion: "ZERO_STATE_CHAT_SUGGESTION"; readonly ZeroStateChatToolSuggestion: "ZERO_STATE_CHAT_TOOL_SUGGESTION"; readonly ZeroStateWorkflowCreatedByMe: "ZERO_STATE_WORKFLOW_CREATED_BY_ME"; readonly ZeroStateWorkflowFavorites: "ZERO_STATE_WORKFLOW_FAVORITES"; readonly ZeroStateWorkflowPopular: "ZERO_STATE_WORKFLOW_POPULAR"; readonly ZeroStateWorkflowRecent: "ZERO_STATE_WORKFLOW_RECENT"; readonly ZeroStateWorkflowSuggestion: "ZERO_STATE_WORKFLOW_SUGGESTION"; readonly PersonalizedChatSuggestion: "PERSONALIZED_CHAT_SUGGESTION"; readonly DailyDigest: "DAILY_DIGEST"; readonly Task: "TASK"; readonly PlanMyDay: "PLAN_MY_DAY"; readonly EndMyDay: "END_MY_DAY"; readonly StarterKit: "STARTER_KIT"; readonly MidDayCatchUp: "MID_DAY_CATCH_UP"; readonly QuerySuggestion: "QUERY_SUGGESTION"; readonly WeeklyMeetings: "WEEKLY_MEETINGS"; readonly FollowUp: "FOLLOW_UP"; readonly MilestoneTimelineCheck: "MILESTONE_TIMELINE_CHECK"; readonly ProjectDiscussionDigest: "PROJECT_DISCUSSION_DIGEST"; readonly ProjectNextStep: "PROJECT_NEXT_STEP"; }; /** * Category of the result, one of the requested categories in incoming request. */ export type FeedResultCategory = OpenEnum; export type FeedResult = { /** * Category of the result, one of the requested categories in incoming request. */ category: FeedResultCategory; primaryEntry: FeedEntry; /** * Secondary entries for the result e.g. suggested docs for the calendar, carousel. */ secondaryEntries?: Array | undefined; /** * Rank of the result. Rank is suggested by server. Client side rank may differ. */ rank?: number | undefined; }; /** @internal */ export declare const FeedResultCategory$inboundSchema: z.ZodType; /** @internal */ export declare const FeedResult$inboundSchema: z.ZodType; export declare function feedResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=feedresult.d.ts.map