@factorialco/f0-react 1.413.1 → 1.414.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.
@@ -346,8 +346,10 @@ declare module "@tiptap/core" {
346
346
 
347
347
  declare module "@tiptap/core" {
348
348
  interface Commands<ReturnType> {
349
- transcript: {
350
- insertTranscript: (data: TranscriptData) => ReturnType;
349
+ videoEmbed: {
350
+ setVideoEmbed: (options: {
351
+ src: string;
352
+ }) => ReturnType;
351
353
  };
352
354
  }
353
355
  }
@@ -355,10 +357,8 @@ declare module "@tiptap/core" {
355
357
 
356
358
  declare module "@tiptap/core" {
357
359
  interface Commands<ReturnType> {
358
- videoEmbed: {
359
- setVideoEmbed: (options: {
360
- src: string;
361
- }) => ReturnType;
360
+ transcript: {
361
+ insertTranscript: (data: TranscriptData) => ReturnType;
362
362
  };
363
363
  }
364
364
  }