@xpert-ai/chatkit-types 0.3.4 → 0.3.5
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 +5 -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[];
|