cogito-client 1.0.49 → 1.0.50
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 +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -76,10 +76,12 @@ export declare type CogitoBuiltInSurface = CogitoApprovalCardSurface | CogitoDat
|
|
|
76
76
|
export declare interface CogitoCallCompletedWebhook {
|
|
77
77
|
type?: "call-completed";
|
|
78
78
|
conversationId: string;
|
|
79
|
+
callSid?: string;
|
|
79
80
|
from?: string;
|
|
80
81
|
to?: string;
|
|
81
82
|
startTime?: string;
|
|
82
83
|
endTime?: string;
|
|
84
|
+
messages?: CogitoMessage[];
|
|
83
85
|
}
|
|
84
86
|
|
|
85
87
|
export declare interface CogitoChartSurface {
|
|
@@ -199,6 +201,7 @@ export declare interface CogitoConversation {
|
|
|
199
201
|
configuration: CogitoConfig;
|
|
200
202
|
from?: string;
|
|
201
203
|
to?: string;
|
|
204
|
+
twilioCallSid?: string;
|
|
202
205
|
/**
|
|
203
206
|
* The URL to use to blind transfer calls
|
|
204
207
|
*/
|