@factorialco/f0-react 1.299.4 → 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.
@@ -451,8 +451,8 @@ declare global {
451
451
 
452
452
  declare module "@tiptap/core" {
453
453
  interface Commands<ReturnType> {
454
- liveCompanion: {
455
- insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
454
+ aiBlock: {
455
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
456
456
  };
457
457
  }
458
458
  }
@@ -460,8 +460,8 @@ declare module "@tiptap/core" {
460
460
 
461
461
  declare module "@tiptap/core" {
462
462
  interface Commands<ReturnType> {
463
- aiBlock: {
464
- insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
463
+ transcript: {
464
+ insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
465
465
  };
466
466
  }
467
467
  }
@@ -469,8 +469,8 @@ declare module "@tiptap/core" {
469
469
 
470
470
  declare module "@tiptap/core" {
471
471
  interface Commands<ReturnType> {
472
- transcript: {
473
- insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
472
+ liveCompanion: {
473
+ insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
474
474
  };
475
475
  }
476
476
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@factorialco/f0-react",
3
- "version": "1.299.4",
3
+ "version": "1.300.0",
4
4
  "main": "dist/f0.js",
5
5
  "typings": "dist/f0.d.ts",
6
6
  "private": false,