@factorialco/f0-react 1.413.1 → 1.414.0
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/{F0AiChat-CMz8oLke.js → F0AiChat-CBy7rZCW.js} +5283 -4978
- package/dist/F0ChatDashboard.d.ts +6 -6
- package/dist/{F0HILActionConfirmation-MJSEogqB.js → F0HILActionConfirmation-BvAjbJKj.js} +129 -123
- package/dist/ai.d.ts +18 -6
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +12 -6
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +18 -6
- package/dist/f0.js +5 -5
- package/dist/i18n-provider-defaults.d.ts +12 -6
- package/dist/i18n-provider-defaults.js +6 -0
- package/dist/{index-Brt3Hz6G.js → index-C0vtKpW9.js} +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -346,8 +346,10 @@ declare module "@tiptap/core" {
|
|
|
346
346
|
|
|
347
347
|
declare module "@tiptap/core" {
|
|
348
348
|
interface Commands<ReturnType> {
|
|
349
|
-
|
|
350
|
-
|
|
349
|
+
videoEmbed: {
|
|
350
|
+
setVideoEmbed: (options: {
|
|
351
|
+
src: string;
|
|
352
|
+
}) => ReturnType;
|
|
351
353
|
};
|
|
352
354
|
}
|
|
353
355
|
}
|
|
@@ -355,10 +357,8 @@ declare module "@tiptap/core" {
|
|
|
355
357
|
|
|
356
358
|
declare module "@tiptap/core" {
|
|
357
359
|
interface Commands<ReturnType> {
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
src: string;
|
|
361
|
-
}) => ReturnType;
|
|
360
|
+
transcript: {
|
|
361
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
362
362
|
};
|
|
363
363
|
}
|
|
364
364
|
}
|