pxengine 0.1.43 → 0.1.45

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/index.d.cts CHANGED
@@ -766,6 +766,7 @@ interface UIComponentSelectorMolecule extends BaseMolecule {
766
766
  display_name: string;
767
767
  description: string;
768
768
  category: string;
769
+ recommended?: boolean;
769
770
  }>;
770
771
  isLatestMessage?: boolean;
771
772
  }
@@ -798,12 +799,14 @@ interface MultiAgentUISelectorMolecule extends BaseMolecule {
798
799
  id: string;
799
800
  name: string;
800
801
  agent_name: string;
802
+ recommended_components?: string[];
801
803
  }>;
802
804
  components: Array<{
803
805
  name: string;
804
806
  display_name: string;
805
807
  description: string;
806
808
  category: string;
809
+ recommended?: boolean;
807
810
  }>;
808
811
  isLatestMessage?: boolean;
809
812
  }
package/dist/index.d.ts CHANGED
@@ -766,6 +766,7 @@ interface UIComponentSelectorMolecule extends BaseMolecule {
766
766
  display_name: string;
767
767
  description: string;
768
768
  category: string;
769
+ recommended?: boolean;
769
770
  }>;
770
771
  isLatestMessage?: boolean;
771
772
  }
@@ -798,12 +799,14 @@ interface MultiAgentUISelectorMolecule extends BaseMolecule {
798
799
  id: string;
799
800
  name: string;
800
801
  agent_name: string;
802
+ recommended_components?: string[];
801
803
  }>;
802
804
  components: Array<{
803
805
  name: string;
804
806
  display_name: string;
805
807
  description: string;
806
808
  category: string;
809
+ recommended?: boolean;
807
810
  }>;
808
811
  isLatestMessage?: boolean;
809
812
  }