@factorialco/f0-react 1.299.3 → 1.300.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.
@@ -449,6 +449,33 @@ declare global {
449
449
  }
450
450
 
451
451
 
452
+ declare module "@tiptap/core" {
453
+ interface Commands<ReturnType> {
454
+ aiBlock: {
455
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
456
+ };
457
+ }
458
+ }
459
+
460
+
461
+ declare module "@tiptap/core" {
462
+ interface Commands<ReturnType> {
463
+ transcript: {
464
+ insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
465
+ };
466
+ }
467
+ }
468
+
469
+
470
+ declare module "@tiptap/core" {
471
+ interface Commands<ReturnType> {
472
+ liveCompanion: {
473
+ insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
474
+ };
475
+ }
476
+ }
477
+
478
+
452
479
  declare module "gridstack" {
453
480
  interface GridStackWidget {
454
481
  id?: string;
@@ -476,26 +503,8 @@ declare module "gridstack" {
476
503
 
477
504
  declare module "@tiptap/core" {
478
505
  interface Commands<ReturnType> {
479
- aiBlock: {
480
- insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
481
- };
482
- }
483
- }
484
-
485
-
486
- declare module "@tiptap/core" {
487
- interface Commands<ReturnType> {
488
- liveCompanion: {
489
- insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
490
- };
491
- }
492
- }
493
-
494
-
495
- declare module "@tiptap/core" {
496
- interface Commands<ReturnType> {
497
- transcript: {
498
- insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
506
+ moodTracker: {
507
+ insertMoodTracker: (data: MoodTrackerData, config?: MoodTrackerConfig) => ReturnType;
499
508
  };
500
509
  }
501
510
  }
@@ -504,12 +513,3 @@ declare module "@tiptap/core" {
504
513
  declare namespace Calendar {
505
514
  var displayName: string;
506
515
  }
507
-
508
-
509
- declare module "@tiptap/core" {
510
- interface Commands<ReturnType> {
511
- moodTracker: {
512
- insertMoodTracker: (data: MoodTrackerData, config?: MoodTrackerConfig) => ReturnType;
513
- };
514
- }
515
- }