cogito-client 1.0.54 → 1.0.59

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +8 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -86,6 +86,11 @@ export declare interface CogitoCallCompletedWebhook {
86
86
  startTime?: string;
87
87
  endTime?: string;
88
88
  messages?: CogitoMessage[];
89
+ log?: {
90
+ message?: string;
91
+ date?: string;
92
+ [k: string]: unknown;
93
+ }[];
89
94
  callRecordings?: {
90
95
  uri?: string;
91
96
  fileName?: string;
@@ -194,6 +199,9 @@ export declare interface CogitoConfig {
194
199
  model?: string;
195
200
  voice?: string;
196
201
  language?: string;
202
+ pronunciation?: {
203
+ [k: string]: string;
204
+ };
197
205
  [k: string]: unknown;
198
206
  };
199
207
  llm?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cogito-client",
3
- "version": "1.0.54",
3
+ "version": "1.0.59",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"