@apia/ai 4.0.14 → 4.0.15
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/index.d.ts +11 -2
- package/dist/index.js +724 -685
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
package/dist/index.d.ts
CHANGED
|
@@ -69,7 +69,6 @@ declare class ChatController2 {
|
|
|
69
69
|
private onMessageSubmit;
|
|
70
70
|
id: string;
|
|
71
71
|
currentIndex: number;
|
|
72
|
-
needsControlExtension: boolean;
|
|
73
72
|
state: TChatControllerState;
|
|
74
73
|
private internalAudioRecorder;
|
|
75
74
|
private internalCameraRecorder;
|
|
@@ -231,6 +230,16 @@ declare class SearchController {
|
|
|
231
230
|
protected setReferences(results: SemanticSearchReference[]): void;
|
|
232
231
|
}
|
|
233
232
|
|
|
233
|
+
declare class FloatingChatController extends ChatController2 {
|
|
234
|
+
constructor(props: Partial<TChatControllerState & {
|
|
235
|
+
isPhone: boolean;
|
|
236
|
+
}>, onMessageSubmit: MessageCallback, id: string);
|
|
237
|
+
open(): void;
|
|
238
|
+
Window: (() => react.JSX.Element) & {
|
|
239
|
+
displayName: string;
|
|
240
|
+
};
|
|
241
|
+
}
|
|
242
|
+
|
|
234
243
|
type TReference = {
|
|
235
244
|
title: string;
|
|
236
245
|
body: string;
|
|
@@ -430,5 +439,5 @@ declare const WindowDragger: react.ForwardRefExoticComponent<{
|
|
|
430
439
|
style?: ThemeUIStyleObject | undefined;
|
|
431
440
|
} & react.RefAttributes<HTMLElement>>;
|
|
432
441
|
|
|
433
|
-
export { AIFileContent, AIMessageAttachments, AutoscrollContainer, ChatController, ChatController2, ChatMessage, type ChatProcessingUnit, DashboardsRoutinesGeneration, type ISearchResultsController, type ISemanticSearchViewController, type ListingProcessingUnit, MultipleChoiceMessage, type ProcessingUnit, ResponseStream, RoutinesGeneration, SearchController, SemanticSearchReference as SemanticSearchResult, type TGenerateFromImage$1 as TGenerateFromImage, type TMessageType, type TMultipleChoiceMessageOption, type TPollRoutineResult, type TReference, type TResponseData, type TRoutineCompletion, type TSearchMode, type ISemanticSearchViewController as ViewController, ViewRendererContext, WindowDragger, getImageFromDisk, getImagesFromDisk, getImagesWithDescription };
|
|
442
|
+
export { AIFileContent, AIMessageAttachments, AutoscrollContainer, ChatController, ChatController2, ChatMessage, type ChatProcessingUnit, DashboardsRoutinesGeneration, FloatingChatController, type ISearchResultsController, type ISemanticSearchViewController, type ListingProcessingUnit, MultipleChoiceMessage, type ProcessingUnit, ResponseStream, RoutinesGeneration, SearchController, SemanticSearchReference as SemanticSearchResult, type TGenerateFromImage$1 as TGenerateFromImage, type TMessageType, type TMultipleChoiceMessageOption, type TPollRoutineResult, type TReference, type TResponseData, type TRoutineCompletion, type TSearchMode, type ISemanticSearchViewController as ViewController, ViewRendererContext, WindowDragger, getImageFromDisk, getImagesFromDisk, getImagesWithDescription };
|
|
434
443
|
//# sourceMappingURL=index.d.ts.map
|