@factorialco/f0-react 1.277.0 → 1.278.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.
@@ -5887,6 +5887,33 @@ declare global {
5887
5887
  }
5888
5888
 
5889
5889
 
5890
+ declare module "@tiptap/core" {
5891
+ interface Commands<ReturnType> {
5892
+ aiBlock: {
5893
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
5894
+ };
5895
+ }
5896
+ }
5897
+
5898
+
5899
+ declare module "@tiptap/core" {
5900
+ interface Commands<ReturnType> {
5901
+ liveCompanion: {
5902
+ insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
5903
+ };
5904
+ }
5905
+ }
5906
+
5907
+
5908
+ declare module "@tiptap/core" {
5909
+ interface Commands<ReturnType> {
5910
+ transcript: {
5911
+ insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
5912
+ };
5913
+ }
5914
+ }
5915
+
5916
+
5890
5917
  declare module "gridstack" {
5891
5918
  interface GridStackWidget {
5892
5919
  id?: string;
@@ -5912,30 +5939,8 @@ declare module "gridstack" {
5912
5939
  }
5913
5940
 
5914
5941
 
5915
- declare module "@tiptap/core" {
5916
- interface Commands<ReturnType> {
5917
- aiBlock: {
5918
- insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
5919
- };
5920
- }
5921
- }
5922
-
5923
-
5924
- declare module "@tiptap/core" {
5925
- interface Commands<ReturnType> {
5926
- liveCompanion: {
5927
- insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
5928
- };
5929
- }
5930
- }
5931
-
5932
-
5933
- declare module "@tiptap/core" {
5934
- interface Commands<ReturnType> {
5935
- transcript: {
5936
- insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
5937
- };
5938
- }
5942
+ declare namespace Calendar {
5943
+ var displayName: string;
5939
5944
  }
5940
5945
 
5941
5946
 
@@ -5946,8 +5951,3 @@ declare module "@tiptap/core" {
5946
5951
  };
5947
5952
  }
5948
5953
  }
5949
-
5950
-
5951
- declare namespace Calendar {
5952
- var displayName: string;
5953
- }