@factorialco/f0-react 1.374.2 → 1.375.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/{DataCollectionStorageProvider-CWC0VRoY.js → DataCollectionStorageProvider-DYikAZhp.js} +1081 -1081
- package/dist/{F0AiChat-DHTXU56n.js → F0AiChat-Bb12WR9x.js} +1 -1
- package/dist/{F0HILActionConfirmation-COzrRg8x.js → F0HILActionConfirmation-DqkMrDGj.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 +120 -47
- package/dist/f0.js +3444 -3272
- package/dist/i18n-provider-defaults.d.ts +6 -6
- package/package.json +1 -1
|
@@ -648,10 +648,8 @@ declare module "@tiptap/core" {
|
|
|
648
648
|
|
|
649
649
|
declare module "@tiptap/core" {
|
|
650
650
|
interface Commands<ReturnType> {
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
src: string;
|
|
654
|
-
}) => ReturnType;
|
|
651
|
+
transcript: {
|
|
652
|
+
insertTranscript: (data: TranscriptData) => ReturnType;
|
|
655
653
|
};
|
|
656
654
|
}
|
|
657
655
|
}
|
|
@@ -659,8 +657,10 @@ declare module "@tiptap/core" {
|
|
|
659
657
|
|
|
660
658
|
declare module "@tiptap/core" {
|
|
661
659
|
interface Commands<ReturnType> {
|
|
662
|
-
|
|
663
|
-
|
|
660
|
+
videoEmbed: {
|
|
661
|
+
setVideoEmbed: (options: {
|
|
662
|
+
src: string;
|
|
663
|
+
}) => ReturnType;
|
|
664
664
|
};
|
|
665
665
|
}
|
|
666
666
|
}
|