@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.
package/dist/f0.d.ts CHANGED
@@ -4346,6 +4346,33 @@ declare global {
4346
4346
  }
4347
4347
 
4348
4348
 
4349
+ declare module "@tiptap/core" {
4350
+ interface Commands<ReturnType> {
4351
+ aiBlock: {
4352
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
4353
+ };
4354
+ }
4355
+ }
4356
+
4357
+
4358
+ declare module "@tiptap/core" {
4359
+ interface Commands<ReturnType> {
4360
+ liveCompanion: {
4361
+ insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
4362
+ };
4363
+ }
4364
+ }
4365
+
4366
+
4367
+ declare module "@tiptap/core" {
4368
+ interface Commands<ReturnType> {
4369
+ transcript: {
4370
+ insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
4371
+ };
4372
+ }
4373
+ }
4374
+
4375
+
4349
4376
  declare module "gridstack" {
4350
4377
  interface GridStackWidget {
4351
4378
  id?: string;
@@ -4371,30 +4398,8 @@ declare module "gridstack" {
4371
4398
  }
4372
4399
 
4373
4400
 
4374
- declare module "@tiptap/core" {
4375
- interface Commands<ReturnType> {
4376
- aiBlock: {
4377
- insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
4378
- };
4379
- }
4380
- }
4381
-
4382
-
4383
- declare module "@tiptap/core" {
4384
- interface Commands<ReturnType> {
4385
- liveCompanion: {
4386
- insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
4387
- };
4388
- }
4389
- }
4390
-
4391
-
4392
- declare module "@tiptap/core" {
4393
- interface Commands<ReturnType> {
4394
- transcript: {
4395
- insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
4396
- };
4397
- }
4401
+ declare namespace Calendar {
4402
+ var displayName: string;
4398
4403
  }
4399
4404
 
4400
4405
 
@@ -4405,8 +4410,3 @@ declare module "@tiptap/core" {
4405
4410
  };
4406
4411
  }
4407
4412
  }
4408
-
4409
-
4410
- declare namespace Calendar {
4411
- var displayName: string;
4412
- }