@factorialco/f0-react 1.317.1 → 1.318.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.
@@ -487,8 +487,8 @@ declare module "@tiptap/core" {
487
487
 
488
488
  declare module "@tiptap/core" {
489
489
  interface Commands<ReturnType> {
490
- transcript: {
491
- insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
490
+ liveCompanion: {
491
+ insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
492
492
  };
493
493
  }
494
494
  }
@@ -496,8 +496,8 @@ declare module "@tiptap/core" {
496
496
 
497
497
  declare module "@tiptap/core" {
498
498
  interface Commands<ReturnType> {
499
- liveCompanion: {
500
- insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
499
+ transcript: {
500
+ insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
501
501
  };
502
502
  }
503
503
  }