impact-chatbot 2.3.90 → 2.3.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/delete-confirm-modal/index.d.ts +2 -0
- package/dist/components/rename-modal/index.d.ts +2 -0
- package/dist/hooks/useChatState.d.ts +10 -0
- package/dist/hooks/useConversationManagement.d.ts +4 -0
- package/dist/index.cjs.js +682 -250
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +685 -253
- package/dist/index.esm.js.map +1 -1
- package/dist/services/chatbot-services.d.ts +2 -0
- package/dist/services/conversation-service.d.ts +7 -0
- package/package.json +1 -1
|
@@ -3,6 +3,8 @@ export declare const fetchRelatedQuestions: (flowType: any, screen_name: any) =>
|
|
|
3
3
|
export declare const getSmartBotVisibilityData: () => any;
|
|
4
4
|
export declare const getAgentVisibilityData: () => any;
|
|
5
5
|
export declare const getHideNavbotData: (applicationCode: any) => Promise<any>;
|
|
6
|
+
export declare const getEnableMultiChatData: (applicationCode: any) => Promise<any>;
|
|
7
|
+
export declare const getMultiChatCfUrl: (applicationCode: any) => Promise<any>;
|
|
6
8
|
export declare const getAlanExceptionUserList: (applicationCode: any) => any;
|
|
7
9
|
export declare const getAgentExceptionUserList: (applicationCode: any) => any;
|
|
8
10
|
export declare const refreshAndUpdateUserManualApi: (body: any) => Promise<any>;
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
export declare const setChatHistoryBaseUrl: (url: any) => void;
|
|
2
|
+
export declare const fetchChatList: (userId: any, limit?: number) => Promise<any>;
|
|
3
|
+
export declare const updateChat: (chatId: any, { chatName, isPinned }?: {}) => Promise<any>;
|
|
4
|
+
export declare const deleteChat: (chatId: any) => Promise<any>;
|
|
5
|
+
export declare const fetchChatQuestions: (chatId: any) => Promise<any>;
|
|
6
|
+
export declare const updateQuestionFeedback: (sessionId: any, isLiked: any) => Promise<any>;
|
|
7
|
+
export declare const updateQuestionTiming: (sessionId: any, { startTime, endTime, duration }?: {}) => Promise<any>;
|
|
1
8
|
export declare const fetchConversations: (currentMode: any) => Promise<any>;
|
|
2
9
|
export declare const fetchConversationChats: (conversationId: any) => Promise<any>;
|
|
3
10
|
export declare const createConversation: (payload: any) => Promise<any>;
|