@factorialco/f0-react 1.437.0 → 1.438.1
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-Cg05PVK9.js → F0AiChat-DqqfCgbK.js} +3565 -3556
- package/dist/{F0HILActionConfirmation-CMnMjtvP.js → F0HILActionConfirmation-BdjYxiC3.js} +1 -1
- package/dist/ai.d.ts +6 -6
- package/dist/ai.js +2 -2
- package/dist/experimental.d.ts +6 -6
- package/dist/experimental.js +4 -4
- package/dist/f0.d.ts +25 -9
- package/dist/f0.js +3737 -3706
- package/dist/i18n-provider-defaults.d.ts +6 -6
- package/dist/{index-CFs2gP7X.js → index-26YoN1Ks.js} +7654 -7651
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -784,8 +784,10 @@ declare module "@tiptap/core" {
|
|
|
784
784
|
|
|
785
785
|
declare module "@tiptap/core" {
|
|
786
786
|
interface Commands<ReturnType> {
|
|
787
|
-
|
|
788
|
-
|
|
787
|
+
videoEmbed: {
|
|
788
|
+
setVideoEmbed: (options: {
|
|
789
|
+
src: string;
|
|
790
|
+
}) => ReturnType;
|
|
789
791
|
};
|
|
790
792
|
}
|
|
791
793
|
}
|
|
@@ -793,10 +795,8 @@ declare module "@tiptap/core" {
|
|
|
793
795
|
|
|
794
796
|
declare module "@tiptap/core" {
|
|
795
797
|
interface Commands<ReturnType> {
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
src: string;
|
|
799
|
-
}) => ReturnType;
|
|
798
|
+
transcript: {
|
|
799
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
800
800
|
};
|
|
801
801
|
}
|
|
802
802
|
}
|