@factorialco/f0-react 1.255.1 → 1.256.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.
@@ -5668,8 +5668,8 @@ declare module "@tiptap/core" {
5668
5668
 
5669
5669
  declare module "@tiptap/core" {
5670
5670
  interface Commands<ReturnType> {
5671
- transcript: {
5672
- insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
5671
+ liveCompanion: {
5672
+ insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
5673
5673
  };
5674
5674
  }
5675
5675
  }
@@ -5677,13 +5677,18 @@ declare module "@tiptap/core" {
5677
5677
 
5678
5678
  declare module "@tiptap/core" {
5679
5679
  interface Commands<ReturnType> {
5680
- liveCompanion: {
5681
- insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
5680
+ transcript: {
5681
+ insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
5682
5682
  };
5683
5683
  }
5684
5684
  }
5685
5685
 
5686
5686
 
5687
+ declare namespace Calendar {
5688
+ var displayName: string;
5689
+ }
5690
+
5691
+
5687
5692
  declare module "@tiptap/core" {
5688
5693
  interface Commands<ReturnType> {
5689
5694
  moodTracker: {
@@ -5691,8 +5696,3 @@ declare module "@tiptap/core" {
5691
5696
  };
5692
5697
  }
5693
5698
  }
5694
-
5695
-
5696
- declare namespace Calendar {
5697
- var displayName: string;
5698
- }