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