@factorialco/f0-react 3.12.0 → 4.0.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.
@@ -871,6 +871,15 @@ declare module "@tiptap/core" {
871
871
  }
872
872
 
873
873
 
874
+ declare module "@tiptap/core" {
875
+ interface Commands<ReturnType> {
876
+ moodTracker: {
877
+ insertMoodTracker: (data: MoodTrackerData) => ReturnType;
878
+ };
879
+ }
880
+ }
881
+
882
+
874
883
  declare module "@tiptap/core" {
875
884
  interface Commands<ReturnType> {
876
885
  enhanceHighlight: {
@@ -885,8 +894,8 @@ declare module "@tiptap/core" {
885
894
 
886
895
  declare module "@tiptap/core" {
887
896
  interface Commands<ReturnType> {
888
- moodTracker: {
889
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
897
+ transcript: {
898
+ insertTranscript: (data: TranscriptData) => ReturnType;
890
899
  };
891
900
  }
892
901
  }
@@ -903,15 +912,6 @@ declare module "@tiptap/core" {
903
912
  }
904
913
 
905
914
 
906
- declare module "@tiptap/core" {
907
- interface Commands<ReturnType> {
908
- transcript: {
909
- insertTranscript: (data: TranscriptData) => ReturnType;
910
- };
911
- }
912
- }
913
-
914
-
915
915
  declare namespace F0GraphNodeWrapperInner {
916
916
  var displayName: string;
917
917
  }