@factorialco/f0-react 1.247.1 → 1.247.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.
@@ -5578,8 +5578,8 @@ declare global {
5578
5578
 
5579
5579
  declare module "@tiptap/core" {
5580
5580
  interface Commands<ReturnType> {
5581
- aiBlock: {
5582
- insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
5581
+ liveCompanion: {
5582
+ insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
5583
5583
  };
5584
5584
  }
5585
5585
  }
@@ -5587,8 +5587,8 @@ declare module "@tiptap/core" {
5587
5587
 
5588
5588
  declare module "@tiptap/core" {
5589
5589
  interface Commands<ReturnType> {
5590
- liveCompanion: {
5591
- insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
5590
+ aiBlock: {
5591
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
5592
5592
  };
5593
5593
  }
5594
5594
  }
@@ -5603,6 +5603,11 @@ declare module "@tiptap/core" {
5603
5603
  }
5604
5604
 
5605
5605
 
5606
+ declare namespace Calendar {
5607
+ var displayName: string;
5608
+ }
5609
+
5610
+
5606
5611
  declare module "@tiptap/core" {
5607
5612
  interface Commands<ReturnType> {
5608
5613
  moodTracker: {
@@ -5610,8 +5615,3 @@ declare module "@tiptap/core" {
5610
5615
  };
5611
5616
  }
5612
5617
  }
5613
-
5614
-
5615
- declare namespace Calendar {
5616
- var displayName: string;
5617
- }