@xpert-ai/chatkit-types 0.3.4 → 0.3.6
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.ts +17 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1441,8 +1441,12 @@ export declare type Row = {
|
|
|
1441
1441
|
id?: string;
|
|
1442
1442
|
} & BoxBaseProps;
|
|
1443
1443
|
|
|
1444
|
-
export declare type RuntimeCapabilitiesSelection = {
|
|
1444
|
+
export declare type RuntimeCapabilitiesSelection = RuntimeCapabilitiesSelectionSet & {
|
|
1445
1445
|
mode: 'allowlist';
|
|
1446
|
+
recommended?: RuntimeCapabilitiesSelectionSet;
|
|
1447
|
+
};
|
|
1448
|
+
|
|
1449
|
+
export declare type RuntimeCapabilitiesSelectionSet = {
|
|
1446
1450
|
skills: {
|
|
1447
1451
|
workspaceId?: string;
|
|
1448
1452
|
ids: string[];
|
|
@@ -1746,6 +1750,9 @@ export declare type TMessageContentComplex = (TMessageContentText | TMessageCont
|
|
|
1746
1750
|
id?: string;
|
|
1747
1751
|
xpertName?: string;
|
|
1748
1752
|
agentKey?: string;
|
|
1753
|
+
executionId?: string;
|
|
1754
|
+
parentExecutionId?: string;
|
|
1755
|
+
runId?: string;
|
|
1749
1756
|
created_date?: Date | string;
|
|
1750
1757
|
};
|
|
1751
1758
|
|
|
@@ -1758,6 +1765,9 @@ export declare type TMessageContentComponent<T extends object = object> = {
|
|
|
1758
1765
|
data: TMessageComponent<T>;
|
|
1759
1766
|
xpertName?: string;
|
|
1760
1767
|
agentKey?: string;
|
|
1768
|
+
executionId?: string;
|
|
1769
|
+
parentExecutionId?: string;
|
|
1770
|
+
runId?: string;
|
|
1761
1771
|
};
|
|
1762
1772
|
|
|
1763
1773
|
export declare type TMessageContentMemory = {
|
|
@@ -1771,6 +1781,9 @@ export declare type TMessageContentReasoning = {
|
|
|
1771
1781
|
id?: string;
|
|
1772
1782
|
xpertName?: string;
|
|
1773
1783
|
agentKey?: string;
|
|
1784
|
+
executionId?: string;
|
|
1785
|
+
parentExecutionId?: string;
|
|
1786
|
+
runId?: string;
|
|
1774
1787
|
type: 'reasoning';
|
|
1775
1788
|
text: string;
|
|
1776
1789
|
};
|
|
@@ -1779,6 +1792,9 @@ export declare type TMessageContentText = {
|
|
|
1779
1792
|
id?: string;
|
|
1780
1793
|
xpertName?: string;
|
|
1781
1794
|
agentKey?: string;
|
|
1795
|
+
executionId?: string;
|
|
1796
|
+
parentExecutionId?: string;
|
|
1797
|
+
runId?: string;
|
|
1782
1798
|
type: 'text';
|
|
1783
1799
|
text: string;
|
|
1784
1800
|
};
|