@athenaintel/react 0.10.0 → 0.10.1
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.cjs +665 -107
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +8 -2
- package/dist/index.js +665 -107
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -575,6 +575,8 @@ export declare const DEFAULT_APP_URL: string;
|
|
|
575
575
|
|
|
576
576
|
export declare const DEFAULT_BACKEND_URL: string;
|
|
577
577
|
|
|
578
|
+
export declare const DescribeDatabaseToolUI: ToolCallMessagePartComponent;
|
|
579
|
+
|
|
578
580
|
export declare const EmailSearchToolUI: ToolCallMessagePartComponent;
|
|
579
581
|
|
|
580
582
|
export declare function ExpandableSection({ label, children, defaultOpen, }: {
|
|
@@ -613,6 +615,8 @@ export declare function getAssetInfo(assetId: string): {
|
|
|
613
615
|
icon: AssetIconType;
|
|
614
616
|
};
|
|
615
617
|
|
|
618
|
+
export declare const GetDatabaseTableSchemaToolUI: ToolCallMessagePartComponent;
|
|
619
|
+
|
|
616
620
|
export declare function getPostHogInstance<TClient = unknown>(): TClient | null;
|
|
617
621
|
|
|
618
622
|
export declare const isAthenaCitationUrl: ({ href, appUrl, }: {
|
|
@@ -625,6 +629,8 @@ declare interface ItemCache {
|
|
|
625
629
|
items: Map<string, MenuItem>;
|
|
626
630
|
}
|
|
627
631
|
|
|
632
|
+
export declare const ListDatabaseTablesToolUI: ToolCallMessagePartComponent;
|
|
633
|
+
|
|
628
634
|
declare interface MentionSuggestionsState {
|
|
629
635
|
registry: ScopeRegistry;
|
|
630
636
|
cache: ItemCache;
|
|
@@ -728,6 +734,8 @@ export declare function resetAssetAutoOpen(): void;
|
|
|
728
734
|
|
|
729
735
|
export declare const RunPythonCodeToolUI: ToolCallMessagePartComponent;
|
|
730
736
|
|
|
737
|
+
export declare const RunSqlToolUI: ToolCallMessagePartComponent;
|
|
738
|
+
|
|
731
739
|
declare interface ScopeRegistry {
|
|
732
740
|
entries: Map<MenuScope, ScopeRegistryEntry>;
|
|
733
741
|
}
|
|
@@ -1052,8 +1060,6 @@ export declare const Toolkits: {
|
|
|
1052
1060
|
readonly MARKETING: "marketing_toolkit";
|
|
1053
1061
|
/** FDE implementations and workflows. */
|
|
1054
1062
|
readonly FDE: "fde_toolkit";
|
|
1055
|
-
/** Code repository search via Greptile. */
|
|
1056
|
-
readonly GREPTILE: "greptile_toolkit";
|
|
1057
1063
|
/** SharePoint / Google Drive / workspace file access. */
|
|
1058
1064
|
readonly EXTERNAL_DRIVE: "external_drive_toolkit";
|
|
1059
1065
|
/** Reusable playbooks and prompts. */
|