cogito-client 1.0.68 → 1.0.69
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 +6 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export declare interface CogitoAgent {
|
|
|
4
4
|
id: string;
|
|
5
5
|
greeting?: CogitoMessage[];
|
|
6
6
|
prompt: string;
|
|
7
|
+
tts?: CogitoTTSConfig;
|
|
7
8
|
tools?: {
|
|
8
9
|
[k: string]: CogitoTool;
|
|
9
10
|
};
|
|
@@ -31,6 +32,10 @@ export declare interface CogitoApprovalCardSurface {
|
|
|
31
32
|
export declare interface CogitoAssistantMessage {
|
|
32
33
|
role: "assistant";
|
|
33
34
|
id?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The ID of the assistant that delivered this message
|
|
37
|
+
*/
|
|
38
|
+
assistantId?: string;
|
|
34
39
|
date?: string;
|
|
35
40
|
content: string;
|
|
36
41
|
/**
|
|
@@ -373,7 +378,7 @@ export declare interface CogitoHandoffTool {
|
|
|
373
378
|
*/
|
|
374
379
|
targetName?: string;
|
|
375
380
|
/**
|
|
376
|
-
* The message to say to the caller before putting them on hold during the transfer process
|
|
381
|
+
* The message to say to the caller before putting them on hold during the warm transfer process or before handing them to another agent
|
|
377
382
|
*/
|
|
378
383
|
messageToCaller?: string;
|
|
379
384
|
/**
|