Skip to content
Merged
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: 2 additions & 0 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
export type { BotProps } from './components/Bot';
export type { BubbleProps } from './features/bubble/components/Bubble';
export type { FullProps } from './features/full/components/Full';
export type { BubbleTheme } from './features/bubble/types';
//# sourceMappingURL=index.d.ts.map
2 changes: 1 addition & 1 deletion dist/index.d.ts.map

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

4 changes: 2 additions & 2 deletions dist/web.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ declare const chatbot: {
onRequest?: ((request: RequestInit) => Promise<void>) | undefined;
chatflowConfig?: Record<string, unknown> | undefined;
observersConfig?: import("./components/Bot").observersConfigType | undefined;
theme?: import("./features/bubble/types").BubbleTheme | undefined;
theme?: import(".").BubbleTheme | undefined;
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This file (dist/web.d.ts) appears to be a generated declaration file. The corresponding sourcemap (dist/web.d.ts.map) indicates that src/web.ts is the source file. Changes should be made in the source file src/web.ts and not directly in the dist folder, as they will likely be overwritten by the build process. Please apply this change, and the similar one on line 18, to the source file.

} & {
id?: string | undefined;
}) => void;
Expand All @@ -15,7 +15,7 @@ declare const chatbot: {
onRequest?: ((request: RequestInit) => Promise<void>) | undefined;
chatflowConfig?: Record<string, unknown> | undefined;
observersConfig?: import("./components/Bot").observersConfigType | undefined;
theme?: import("./features/bubble/types").BubbleTheme | undefined;
theme?: import(".").BubbleTheme | undefined;
}) => void;
destroy: () => void;
};
Expand Down
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
export type { BotProps } from './components/Bot';
export type { BubbleProps } from './features/bubble/components/Bubble';
export type { FullProps } from './features/full/components/Full';
export type { BubbleTheme } from './features/bubble/types';