Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/components/Bot.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions dist/components/bubbles/BotBubble.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ type Props = {
renderHTML?: boolean;
handleActionClick: (elem: any, action: IAction | undefined | null) => void;
handleSourceDocumentsClick: (src: any) => void;
isTTSEnabled?: boolean;
isTTSLoading?: Record<string, boolean>;
isTTSPlaying?: Record<string, boolean>;
handleTTSClick?: (messageId: string, messageText: string) => void;
handleTTSStop?: (messageId: string) => void;
};
export declare const BotBubble: (props: Props) => import("solid-js").JSX.Element;
export {};
Expand Down
2 changes: 1 addition & 1 deletion dist/components/bubbles/BotBubble.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions dist/components/buttons/TTSButton.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
type Props = {
isLoading?: boolean;
isPlaying?: boolean;
feedbackColor?: string;
onClick: () => void;
class?: string;
};
export declare const TTSButton: (props: Props) => import("solid-js").JSX.Element;
export {};
//# sourceMappingURL=TTSButton.d.ts.map
1 change: 1 addition & 0 deletions dist/components/buttons/TTSButton.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions dist/components/icons/SquareStopIcon.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { JSX } from 'solid-js/jsx-runtime';
export declare const SquareStopIcon: (props: JSX.SvgSVGAttributes<SVGSVGElement>) => JSX.Element;
//# sourceMappingURL=SquareStopIcon.d.ts.map
1 change: 1 addition & 0 deletions dist/components/icons/SquareStopIcon.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions dist/components/icons/VolumeIcon.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { JSX } from 'solid-js/jsx-runtime';
export declare const VolumeIcon: (props: JSX.SvgSVGAttributes<SVGSVGElement>) => JSX.Element;
//# sourceMappingURL=VolumeIcon.d.ts.map
1 change: 1 addition & 0 deletions dist/components/icons/VolumeIcon.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions dist/components/icons/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ export * from './XIcon';
export * from './TickIcon';
export * from './AttachmentIcon';
export * from './SparklesIcon';
export * from './VolumeIcon';
export * from './SquareStopIcon';
//# sourceMappingURL=index.d.ts.map
2 changes: 1 addition & 1 deletion dist/components/icons/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions dist/queries/sendMessageQuery.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@ export type LeadCaptureInput = {
export type LeadCaptureRequest = BaseRequest & {
body: Partial<LeadCaptureInput>;
};
export type GenerateTTSRequest = BaseRequest & {
body: {
chatId: string;
chatflowId: string;
chatMessageId: string;
text: string;
};
signal?: AbortSignal;
};
export declare const sendFeedbackQuery: ({ chatflowid, apiHost, body, onRequest }: CreateFeedbackRequest) => Promise<{
data?: unknown;
error?: Error | undefined;
Expand Down Expand Up @@ -85,5 +94,6 @@ export declare const addLeadQuery: ({ apiHost, body, onRequest }: LeadCaptureReq
data?: any;
error?: Error | undefined;
}>;
export declare const generateTTSQuery: ({ apiHost, body, onRequest, signal }: GenerateTTSRequest) => Promise<Response>;
export {};
//# sourceMappingURL=sendMessageQuery.d.ts.map
2 changes: 1 addition & 1 deletion dist/queries/sendMessageQuery.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading