@factorialco/f0-react 2.2.0 → 2.3.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.
@@ -853,8 +853,8 @@ declare module "@tiptap/core" {
853
853
 
854
854
  declare module "@tiptap/core" {
855
855
  interface Commands<ReturnType> {
856
- transcript: {
857
- insertTranscript: (data: TranscriptData) => ReturnType;
856
+ moodTracker: {
857
+ insertMoodTracker: (data: MoodTrackerData) => ReturnType;
858
858
  };
859
859
  }
860
860
  }
@@ -862,10 +862,8 @@ declare module "@tiptap/core" {
862
862
 
863
863
  declare module "@tiptap/core" {
864
864
  interface Commands<ReturnType> {
865
- videoEmbed: {
866
- setVideoEmbed: (options: {
867
- src: string;
868
- }) => ReturnType;
865
+ transcript: {
866
+ insertTranscript: (data: TranscriptData) => ReturnType;
869
867
  };
870
868
  }
871
869
  }
@@ -873,8 +871,10 @@ declare module "@tiptap/core" {
873
871
 
874
872
  declare module "@tiptap/core" {
875
873
  interface Commands<ReturnType> {
876
- moodTracker: {
877
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
874
+ videoEmbed: {
875
+ setVideoEmbed: (options: {
876
+ src: string;
877
+ }) => ReturnType;
878
878
  };
879
879
  }
880
880
  }