@factorialco/f0-react 1.286.0 → 1.287.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.
@@ -6170,15 +6170,6 @@ declare module "gridstack" {
6170
6170
  }
6171
6171
 
6172
6172
 
6173
- declare module "@tiptap/core" {
6174
- interface Commands<ReturnType> {
6175
- aiBlock: {
6176
- insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
6177
- };
6178
- }
6179
- }
6180
-
6181
-
6182
6173
  declare module "@tiptap/core" {
6183
6174
  interface Commands<ReturnType> {
6184
6175
  liveCompanion: {
@@ -6199,8 +6190,8 @@ declare module "@tiptap/core" {
6199
6190
 
6200
6191
  declare module "@tiptap/core" {
6201
6192
  interface Commands<ReturnType> {
6202
- moodTracker: {
6203
- insertMoodTracker: (data: MoodTrackerData, config?: MoodTrackerConfig) => ReturnType;
6193
+ aiBlock: {
6194
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
6204
6195
  };
6205
6196
  }
6206
6197
  }
@@ -6209,3 +6200,12 @@ declare module "@tiptap/core" {
6209
6200
  declare namespace Calendar {
6210
6201
  var displayName: string;
6211
6202
  }
6203
+
6204
+
6205
+ declare module "@tiptap/core" {
6206
+ interface Commands<ReturnType> {
6207
+ moodTracker: {
6208
+ insertMoodTracker: (data: MoodTrackerData, config?: MoodTrackerConfig) => ReturnType;
6209
+ };
6210
+ }
6211
+ }