@factorialco/f0-react 1.282.0 → 1.283.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.
@@ -6131,6 +6131,33 @@ declare global {
6131
6131
  }
6132
6132
 
6133
6133
 
6134
+ declare module "@tiptap/core" {
6135
+ interface Commands<ReturnType> {
6136
+ aiBlock: {
6137
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
6138
+ };
6139
+ }
6140
+ }
6141
+
6142
+
6143
+ declare module "@tiptap/core" {
6144
+ interface Commands<ReturnType> {
6145
+ liveCompanion: {
6146
+ insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
6147
+ };
6148
+ }
6149
+ }
6150
+
6151
+
6152
+ declare module "@tiptap/core" {
6153
+ interface Commands<ReturnType> {
6154
+ transcript: {
6155
+ insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
6156
+ };
6157
+ }
6158
+ }
6159
+
6160
+
6134
6161
  declare module "gridstack" {
6135
6162
  interface GridStackWidget {
6136
6163
  id?: string;
@@ -6156,30 +6183,8 @@ declare module "gridstack" {
6156
6183
  }
6157
6184
 
6158
6185
 
6159
- declare module "@tiptap/core" {
6160
- interface Commands<ReturnType> {
6161
- aiBlock: {
6162
- insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
6163
- };
6164
- }
6165
- }
6166
-
6167
-
6168
- declare module "@tiptap/core" {
6169
- interface Commands<ReturnType> {
6170
- liveCompanion: {
6171
- insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
6172
- };
6173
- }
6174
- }
6175
-
6176
-
6177
- declare module "@tiptap/core" {
6178
- interface Commands<ReturnType> {
6179
- transcript: {
6180
- insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
6181
- };
6182
- }
6186
+ declare namespace Calendar {
6187
+ var displayName: string;
6183
6188
  }
6184
6189
 
6185
6190
 
@@ -6190,8 +6195,3 @@ declare module "@tiptap/core" {
6190
6195
  };
6191
6196
  }
6192
6197
  }
6193
-
6194
-
6195
- declare namespace Calendar {
6196
- var displayName: string;
6197
- }