cogito-client 1.0.52 → 1.0.54
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
|
@@ -33,6 +33,10 @@ export declare interface CogitoAssistantMessage {
|
|
|
33
33
|
id?: string;
|
|
34
34
|
date?: string;
|
|
35
35
|
content: string;
|
|
36
|
+
/**
|
|
37
|
+
* The target user name for this assistant message
|
|
38
|
+
*/
|
|
39
|
+
userName?: string;
|
|
36
40
|
}
|
|
37
41
|
|
|
38
42
|
export declare interface CogitoAudioSurface {
|
|
@@ -1070,7 +1074,7 @@ export declare interface CogitoToolMessage {
|
|
|
1070
1074
|
|
|
1071
1075
|
export declare interface CogitoUserMessage {
|
|
1072
1076
|
role: "user";
|
|
1073
|
-
|
|
1077
|
+
userName?: string;
|
|
1074
1078
|
id?: string;
|
|
1075
1079
|
date?: string;
|
|
1076
1080
|
content: string;
|