@factorialco/f0-react 4.52.0 → 4.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.
@@ -1040,11 +1040,9 @@ declare namespace Calendar {
1040
1040
 
1041
1041
  declare module "@tiptap/core" {
1042
1042
  interface Commands<ReturnType> {
1043
- enhanceHighlight: {
1044
- setEnhanceHighlight: (from: number, to: number, options?: {
1045
- placeholder?: string;
1046
- }) => ReturnType;
1047
- clearEnhanceHighlight: () => ReturnType;
1043
+ aiBlock: {
1044
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
1045
+ executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
1048
1046
  };
1049
1047
  }
1050
1048
  }
@@ -1052,8 +1050,11 @@ declare module "@tiptap/core" {
1052
1050
 
1053
1051
  declare module "@tiptap/core" {
1054
1052
  interface Commands<ReturnType> {
1055
- moodTracker: {
1056
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
1053
+ enhanceHighlight: {
1054
+ setEnhanceHighlight: (from: number, to: number, options?: {
1055
+ placeholder?: string;
1056
+ }) => ReturnType;
1057
+ clearEnhanceHighlight: () => ReturnType;
1057
1058
  };
1058
1059
  }
1059
1060
  }
@@ -1061,9 +1062,8 @@ declare module "@tiptap/core" {
1061
1062
 
1062
1063
  declare module "@tiptap/core" {
1063
1064
  interface Commands<ReturnType> {
1064
- aiBlock: {
1065
- insertAIBlock: (data: AIBlockData, config: AIBlockConfig) => ReturnType;
1066
- executeAIAction: (actionType: string, config: AIBlockConfig) => ReturnType;
1065
+ moodTracker: {
1066
+ insertMoodTracker: (data: MoodTrackerData) => ReturnType;
1067
1067
  };
1068
1068
  }
1069
1069
  }