@factorialco/f0-react 4.55.0 → 4.56.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.
@@ -1071,8 +1071,10 @@ declare module "@tiptap/core" {
1071
1071
 
1072
1072
  declare module "@tiptap/core" {
1073
1073
  interface Commands<ReturnType> {
1074
- transcript: {
1075
- insertTranscript: (data: TranscriptData) => ReturnType;
1074
+ videoEmbed: {
1075
+ setVideoEmbed: (options: {
1076
+ src: string;
1077
+ }) => ReturnType;
1076
1078
  };
1077
1079
  }
1078
1080
  }
@@ -1080,10 +1082,8 @@ declare module "@tiptap/core" {
1080
1082
 
1081
1083
  declare module "@tiptap/core" {
1082
1084
  interface Commands<ReturnType> {
1083
- videoEmbed: {
1084
- setVideoEmbed: (options: {
1085
- src: string;
1086
- }) => ReturnType;
1085
+ transcript: {
1086
+ insertTranscript: (data: TranscriptData) => ReturnType;
1087
1087
  };
1088
1088
  }
1089
1089
  }