@factorialco/f0-react 1.438.1 → 1.438.3

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.
@@ -784,10 +784,8 @@ declare module "@tiptap/core" {
784
784
 
785
785
  declare module "@tiptap/core" {
786
786
  interface Commands<ReturnType> {
787
- videoEmbed: {
788
- setVideoEmbed: (options: {
789
- src: string;
790
- }) => ReturnType;
787
+ transcript: {
788
+ insertTranscript: (data: TranscriptData) => ReturnType;
791
789
  };
792
790
  }
793
791
  }
@@ -795,8 +793,10 @@ declare module "@tiptap/core" {
795
793
 
796
794
  declare module "@tiptap/core" {
797
795
  interface Commands<ReturnType> {
798
- transcript: {
799
- insertTranscript: (data: TranscriptData) => ReturnType;
796
+ videoEmbed: {
797
+ setVideoEmbed: (options: {
798
+ src: string;
799
+ }) => ReturnType;
800
800
  };
801
801
  }
802
802
  }