@factorialco/f0-react 2.51.0 → 2.53.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.
@@ -871,9 +871,9 @@ declare module "gridstack" {
871
871
 
872
872
  declare module "@tiptap/core" {
873
873
  interface Commands<ReturnType> {
874
- enhanceHighlight: {
875
- setEnhanceHighlight: (from: number, to: number) => ReturnType;
876
- clearEnhanceHighlight: () => ReturnType;
874
+ aiBlock: {
875
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
876
+ executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
877
877
  };
878
878
  }
879
879
  }
@@ -881,9 +881,9 @@ declare module "@tiptap/core" {
881
881
 
882
882
  declare module "@tiptap/core" {
883
883
  interface Commands<ReturnType> {
884
- aiBlock: {
885
- insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
886
- executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
884
+ enhanceHighlight: {
885
+ setEnhanceHighlight: (from: number, to: number) => ReturnType;
886
+ clearEnhanceHighlight: () => ReturnType;
887
887
  };
888
888
  }
889
889
  }