/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * - AGENT_CONTEXT_TYPE_LINK_ANALYTICS: Building a link's analytics dashboard. context_id is the LINK id, not a * dashboard id — the dashboard does not exist yet while the user and the * assistant are still agreeing on what it should show. Once it exists, * editing it happens under AGENT_CONTEXT_TYPE_ANALYTICS_DASHBOARD instead. * - AGENT_CONTEXT_TYPE_LEAD_SCORE: A conversation about one visit and the lead score it produced. The context * id is the EVENT id, not the link id: two visits to the same link are two * different subjects, and sharing a thread between them lets one visitor's * details bleed into answers about another. * - AGENT_CONTEXT_TYPE_WORKSPACE: The workspace-wide assistant, with no resource selected. The context id is * the WORKSPACE id: this thread is not about any one link, dashboard or * design, and every capability the resource-scoped agents have is available * from it. One conversation per workspace, so it survives navigation. * @export */ export declare const AgentContextType: { readonly AgentContextTypeUnspecified: "AGENT_CONTEXT_TYPE_UNSPECIFIED"; readonly AgentContextTypeAnalyticsDashboard: "AGENT_CONTEXT_TYPE_ANALYTICS_DASHBOARD"; readonly AgentContextTypeWorkflow: "AGENT_CONTEXT_TYPE_WORKFLOW"; readonly AgentContextTypeLink: "AGENT_CONTEXT_TYPE_LINK"; readonly AgentContextTypeQrcodeDesign: "AGENT_CONTEXT_TYPE_QRCODE_DESIGN"; readonly AgentContextTypePageTheme: "AGENT_CONTEXT_TYPE_PAGE_THEME"; readonly AgentContextTypeLinkAnalytics: "AGENT_CONTEXT_TYPE_LINK_ANALYTICS"; readonly AgentContextTypeLeadScore: "AGENT_CONTEXT_TYPE_LEAD_SCORE"; readonly AgentContextTypeWorkspace: "AGENT_CONTEXT_TYPE_WORKSPACE"; }; export type AgentContextType = typeof AgentContextType[keyof typeof AgentContextType]; export declare function instanceOfAgentContextType(value: any): boolean; export declare function AgentContextTypeFromJSON(json: any): AgentContextType; export declare function AgentContextTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentContextType; export declare function AgentContextTypeToJSON(value?: AgentContextType | null): any; export declare function AgentContextTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): AgentContextType;