/** * @public * @enum */ export declare const AssociationType: { readonly KNOWLEDGE_BASE: "KNOWLEDGE_BASE"; }; /** * @public */ export type AssociationType = (typeof AssociationType)[keyof typeof AssociationType]; /** * @public * @enum */ export declare const AssistantType: { readonly AGENT: "AGENT"; }; /** * @public */ export type AssistantType = (typeof AssistantType)[keyof typeof AssistantType]; /** * @public * @enum */ export declare const AssistantStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATE_FAILED: "CREATE_FAILED"; readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS"; readonly DELETED: "DELETED"; readonly DELETE_FAILED: "DELETE_FAILED"; readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS"; }; /** * @public */ export type AssistantStatus = (typeof AssistantStatus)[keyof typeof AssistantStatus]; /** * @public * @enum */ export declare const RelevanceLevel: { readonly HIGH: "HIGH"; readonly LOW: "LOW"; readonly MEDIUM: "MEDIUM"; }; /** * @public */ export type RelevanceLevel = (typeof RelevanceLevel)[keyof typeof RelevanceLevel]; /** * @public * @enum */ export declare const RecommendationType: { readonly KNOWLEDGE_CONTENT: "KNOWLEDGE_CONTENT"; }; /** * @public */ export type RecommendationType = (typeof RecommendationType)[keyof typeof RecommendationType]; /** * @public * @enum */ export declare const RecommendationSourceType: { readonly ISSUE_DETECTION: "ISSUE_DETECTION"; readonly OTHER: "OTHER"; readonly RULE_EVALUATION: "RULE_EVALUATION"; }; /** * @public */ export type RecommendationSourceType = (typeof RecommendationSourceType)[keyof typeof RecommendationSourceType]; /** * @public * @enum */ export declare const RecommendationTriggerType: { readonly QUERY: "QUERY"; }; /** * @public */ export type RecommendationTriggerType = (typeof RecommendationTriggerType)[keyof typeof RecommendationTriggerType]; /** * @public * @enum */ export declare const FilterField: { readonly NAME: "NAME"; }; /** * @public */ export type FilterField = (typeof FilterField)[keyof typeof FilterField]; /** * @public * @enum */ export declare const FilterOperator: { readonly EQUALS: "EQUALS"; }; /** * @public */ export type FilterOperator = (typeof FilterOperator)[keyof typeof FilterOperator]; /** * @public * @enum */ export declare const ContentStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATE_FAILED: "CREATE_FAILED"; readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS"; readonly DELETED: "DELETED"; readonly DELETE_FAILED: "DELETE_FAILED"; readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS"; readonly UPDATE_FAILED: "UPDATE_FAILED"; }; /** * @public */ export type ContentStatus = (typeof ContentStatus)[keyof typeof ContentStatus]; /** * @public * @enum */ export declare const KnowledgeBaseType: { readonly CUSTOM: "CUSTOM"; readonly EXTERNAL: "EXTERNAL"; readonly QUICK_RESPONSES: "QUICK_RESPONSES"; }; /** * @public */ export type KnowledgeBaseType = (typeof KnowledgeBaseType)[keyof typeof KnowledgeBaseType]; /** * @public * @enum */ export declare const KnowledgeBaseStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATE_FAILED: "CREATE_FAILED"; readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS"; readonly DELETED: "DELETED"; readonly DELETE_FAILED: "DELETE_FAILED"; readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS"; }; /** * @public */ export type KnowledgeBaseStatus = (typeof KnowledgeBaseStatus)[keyof typeof KnowledgeBaseStatus]; /** * @public * @enum */ export declare const QuickResponseStatus: { readonly CREATED: "CREATED"; readonly CREATE_FAILED: "CREATE_FAILED"; readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS"; readonly DELETED: "DELETED"; readonly DELETE_FAILED: "DELETE_FAILED"; readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS"; readonly UPDATE_FAILED: "UPDATE_FAILED"; readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS"; }; /** * @public */ export type QuickResponseStatus = (typeof QuickResponseStatus)[keyof typeof QuickResponseStatus]; /** * @public * @enum */ export declare const ExternalSource: { readonly AMAZON_CONNECT: "AMAZON_CONNECT"; }; /** * @public */ export type ExternalSource = (typeof ExternalSource)[keyof typeof ExternalSource]; /** * @public * @enum */ export declare const ImportJobType: { readonly QUICK_RESPONSES: "QUICK_RESPONSES"; }; /** * @public */ export type ImportJobType = (typeof ImportJobType)[keyof typeof ImportJobType]; /** * @public * @enum */ export declare const ImportJobStatus: { readonly COMPLETE: "COMPLETE"; readonly DELETED: "DELETED"; readonly DELETE_FAILED: "DELETE_FAILED"; readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS"; readonly FAILED: "FAILED"; readonly START_IN_PROGRESS: "START_IN_PROGRESS"; }; /** * @public */ export type ImportJobStatus = (typeof ImportJobStatus)[keyof typeof ImportJobStatus]; /** * @public * @enum */ export declare const QuickResponseFilterOperator: { readonly EQUALS: "EQUALS"; readonly PREFIX: "PREFIX"; }; /** * @public */ export type QuickResponseFilterOperator = (typeof QuickResponseFilterOperator)[keyof typeof QuickResponseFilterOperator]; /** * @public * @enum */ export declare const Order: { readonly ASC: "ASC"; readonly DESC: "DESC"; }; /** * @public */ export type Order = (typeof Order)[keyof typeof Order]; /** * @public * @enum */ export declare const QuickResponseQueryOperator: { readonly CONTAINS: "CONTAINS"; readonly CONTAINS_AND_PREFIX: "CONTAINS_AND_PREFIX"; }; /** * @public */ export type QuickResponseQueryOperator = (typeof QuickResponseQueryOperator)[keyof typeof QuickResponseQueryOperator]; /** * @public * @enum */ export declare const Priority: { readonly HIGH: "HIGH"; readonly LOW: "LOW"; readonly MEDIUM: "MEDIUM"; }; /** * @public */ export type Priority = (typeof Priority)[keyof typeof Priority];