@factorialco/f0-react 2.22.0 → 2.23.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.
@@ -838,6 +838,11 @@ declare module "gridstack" {
838
838
  }
839
839
 
840
840
 
841
+ declare namespace Calendar {
842
+ var displayName: string;
843
+ }
844
+
845
+
841
846
  declare module "@tiptap/core" {
842
847
  interface Commands<ReturnType> {
843
848
  aiBlock: {
@@ -869,10 +874,8 @@ declare module "@tiptap/core" {
869
874
 
870
875
  declare module "@tiptap/core" {
871
876
  interface Commands<ReturnType> {
872
- videoEmbed: {
873
- setVideoEmbed: (options: {
874
- src: string;
875
- }) => ReturnType;
877
+ transcript: {
878
+ insertTranscript: (data: TranscriptData) => ReturnType;
876
879
  };
877
880
  }
878
881
  }
@@ -880,18 +883,15 @@ declare module "@tiptap/core" {
880
883
 
881
884
  declare module "@tiptap/core" {
882
885
  interface Commands<ReturnType> {
883
- transcript: {
884
- insertTranscript: (data: TranscriptData) => ReturnType;
886
+ videoEmbed: {
887
+ setVideoEmbed: (options: {
888
+ src: string;
889
+ }) => ReturnType;
885
890
  };
886
891
  }
887
892
  }
888
893
 
889
894
 
890
- declare namespace Calendar {
891
- var displayName: string;
892
- }
893
-
894
-
895
895
  declare namespace F0GraphNodeWrapperInner {
896
896
  var displayName: string;
897
897
  }