@koredev/agentai-web-sdk 1.3.8-rc → 1.4.0-rc
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/aaWindow/aaWindow.d.ts +11 -1
- package/dist/components/common/constants/default.config.d.ts +116 -0
- package/dist/components/common/constants/events.cnst.d.ts +18 -2
- package/dist/components/common/constants/projConsts.d.ts +26 -0
- package/dist/components/common/constants/settingsConsts.d.ts +148 -0
- package/dist/components/common/services/localstorage.service.d.ts +41 -22
- package/dist/components/common/services/rootService.d.ts +41 -19
- package/dist/components/common/services/web-socket-service.d.ts +12 -0
- package/dist/components/common/templatemanager/base/aaContainer/aaContainer.d.ts +2 -0
- package/dist/components/common/templatemanager/tabs/ErrorBoundary/ErrorBoundary.d.ts +21 -0
- package/dist/components/common/templatemanager/tabs/ErrorBoundary/ErrorHandler.d.ts +5 -0
- package/dist/components/common/templatemanager/tabs/atom/actionButtons.d.ts +1 -0
- package/dist/components/common/templatemanager/tabs/automation/automation.d.ts +2 -0
- package/dist/components/common/templatemanager/tabs/feedback/feedback.d.ts +1 -1
- package/dist/components/common/templatemanager/tabs/mybot/mybot.d.ts +3 -0
- package/dist/components/common/utils/scrollUtils.d.ts +7 -0
- package/dist/esm/agentai-web-sdk.min.js +1 -1
- package/dist/umd/agentai-web-sdk-umd.min.js +1 -1
- package/dist/umd/agentai-web-sdk-umd.min.js.map +1 -1
- package/dist/umd/hot/hot-update.js +146 -2308
- package/dist/umd/hot/hot-update.js.map +1 -1
- package/package.json +1 -1
|
@@ -3,3 +3,4 @@ export declare function handleSendCopyButtonsForNodes(props: any): h.JSX.Element
|
|
|
3
3
|
export declare function handleSendCopyButtons(props: any): h.JSX.Element;
|
|
4
4
|
export declare function ActionButtonsSentText(props: any): h.JSX.Element;
|
|
5
5
|
export declare function HandleViewMoreLessButtons(props: any): h.JSX.Element;
|
|
6
|
+
export declare function NoTabsScreen(props: any): h.JSX.Element;
|
|
@@ -7,3 +7,5 @@ export declare function AskCustomer(props: any): h.JSX.Element;
|
|
|
7
7
|
export declare function TellCustomer(props: any): h.JSX.Element;
|
|
8
8
|
export declare function WelcomeMessage(props: any): h.JSX.Element;
|
|
9
9
|
export declare function AttachmentAskCustomer(props: any): h.JSX.Element;
|
|
10
|
+
export declare function ScrollUpArrowButtons(props: any): h.JSX.Element;
|
|
11
|
+
export declare function ScrollDownArrowButtons(props: any): h.JSX.Element;
|
|
@@ -1,2 +1,5 @@
|
|
|
1
1
|
import { h } from 'preact';
|
|
2
|
+
export declare function RenderEmptyMyBotScreen(props: any): h.JSX.Element;
|
|
3
|
+
export declare function RenderMybotHeaderLeftSections(props: any): h.JSX.Element;
|
|
4
|
+
export declare function RenderMybotHeaderRightSection(props: any): h.JSX.Element;
|
|
2
5
|
export declare function MyBot({ hostInstance }: any): h.JSX.Element;
|