@factorialco/f0-react 2.49.0 → 2.50.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.
@@ -869,16 +869,11 @@ declare module "gridstack" {
869
869
  }
870
870
 
871
871
 
872
- declare namespace Calendar {
873
- var displayName: string;
874
- }
875
-
876
-
877
872
  declare module "@tiptap/core" {
878
873
  interface Commands<ReturnType> {
879
- enhanceHighlight: {
880
- setEnhanceHighlight: (from: number, to: number) => ReturnType;
881
- clearEnhanceHighlight: () => ReturnType;
874
+ aiBlock: {
875
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
876
+ executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
882
877
  };
883
878
  }
884
879
  }
@@ -886,9 +881,9 @@ declare module "@tiptap/core" {
886
881
 
887
882
  declare module "@tiptap/core" {
888
883
  interface Commands<ReturnType> {
889
- aiBlock: {
890
- insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
891
- executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
884
+ enhanceHighlight: {
885
+ setEnhanceHighlight: (from: number, to: number) => ReturnType;
886
+ clearEnhanceHighlight: () => ReturnType;
892
887
  };
893
888
  }
894
889
  }
@@ -923,6 +918,11 @@ declare module "@tiptap/core" {
923
918
  }
924
919
 
925
920
 
921
+ declare namespace Calendar {
922
+ var displayName: string;
923
+ }
924
+
925
+
926
926
  declare namespace F0GraphNodeWrapperInner {
927
927
  var displayName: string;
928
928
  }