@factorialco/f0-react 1.182.1 → 1.183.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.
package/dist/f0.d.ts CHANGED
@@ -2021,8 +2021,8 @@ declare global {
2021
2021
 
2022
2022
  declare module "@tiptap/core" {
2023
2023
  interface Commands<ReturnType> {
2024
- aiBlock: {
2025
- insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
2024
+ liveCompanion: {
2025
+ insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
2026
2026
  };
2027
2027
  }
2028
2028
  }
@@ -2030,8 +2030,8 @@ declare module "@tiptap/core" {
2030
2030
 
2031
2031
  declare module "@tiptap/core" {
2032
2032
  interface Commands<ReturnType> {
2033
- liveCompanion: {
2034
- insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
2033
+ aiBlock: {
2034
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
2035
2035
  };
2036
2036
  }
2037
2037
  }
@@ -2046,11 +2046,6 @@ declare module "@tiptap/core" {
2046
2046
  }
2047
2047
 
2048
2048
 
2049
- declare namespace Calendar {
2050
- var displayName: string;
2051
- }
2052
-
2053
-
2054
2049
  declare module "@tiptap/core" {
2055
2050
  interface Commands<ReturnType> {
2056
2051
  moodTracker: {
@@ -2058,3 +2053,8 @@ declare module "@tiptap/core" {
2058
2053
  };
2059
2054
  }
2060
2055
  }
2056
+
2057
+
2058
+ declare namespace Calendar {
2059
+ var displayName: string;
2060
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@factorialco/f0-react",
3
- "version": "1.182.1",
3
+ "version": "1.183.0",
4
4
  "main": "dist/f0.js",
5
5
  "typings": "dist/f0.d.ts",
6
6
  "private": false,