@factorialco/f0-react 1.195.0 → 1.196.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.
@@ -2746,6 +2746,10 @@ declare type MetadataItemValue_2 = {
2746
2746
  type: "dot-tag";
2747
2747
  label: string;
2748
2748
  color: NewColor;
2749
+ } | {
2750
+ type: "tag";
2751
+ label: string;
2752
+ icon?: IconType;
2749
2753
  };
2750
2754
 
2751
2755
  declare interface MetadataProps {
@@ -4801,8 +4805,8 @@ declare global {
4801
4805
 
4802
4806
  declare module "@tiptap/core" {
4803
4807
  interface Commands<ReturnType> {
4804
- aiBlock: {
4805
- insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
4808
+ liveCompanion: {
4809
+ insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
4806
4810
  };
4807
4811
  }
4808
4812
  }
@@ -4810,8 +4814,8 @@ declare module "@tiptap/core" {
4810
4814
 
4811
4815
  declare module "@tiptap/core" {
4812
4816
  interface Commands<ReturnType> {
4813
- liveCompanion: {
4814
- insertLiveCompanion: (data: LiveCompanionData, config?: LiveCompanionConfig) => ReturnType;
4817
+ transcript: {
4818
+ insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
4815
4819
  };
4816
4820
  }
4817
4821
  }
@@ -4819,8 +4823,8 @@ declare module "@tiptap/core" {
4819
4823
 
4820
4824
  declare module "@tiptap/core" {
4821
4825
  interface Commands<ReturnType> {
4822
- transcript: {
4823
- insertTranscript: (data: TranscriptData, config?: TranscriptConfig) => ReturnType;
4826
+ aiBlock: {
4827
+ insertAIBlock: (data: AIBlockData, config: AIBlockConfigWithLabels) => ReturnType;
4824
4828
  };
4825
4829
  }
4826
4830
  }