@closerplatform/spinner-openapi 0.12.1052 → 0.12.1054
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/api.d.ts +31 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -5685,6 +5685,12 @@ export interface RecordingSignedUrl {
|
|
|
5685
5685
|
* @memberof RecordingSignedUrl
|
|
5686
5686
|
*/
|
|
5687
5687
|
hasVideo: boolean;
|
|
5688
|
+
/**
|
|
5689
|
+
*
|
|
5690
|
+
* @type {Array<SpeechEvent>}
|
|
5691
|
+
* @memberof RecordingSignedUrl
|
|
5692
|
+
*/
|
|
5693
|
+
speechEvents: Array<SpeechEvent>;
|
|
5688
5694
|
}
|
|
5689
5695
|
/**
|
|
5690
5696
|
*
|
|
@@ -6017,6 +6023,31 @@ export declare enum SnoozedStatus {
|
|
|
6017
6023
|
Snoozed = "snoozed",
|
|
6018
6024
|
Unsnoozed = "unsnoozed"
|
|
6019
6025
|
}
|
|
6026
|
+
/**
|
|
6027
|
+
*
|
|
6028
|
+
* @export
|
|
6029
|
+
* @interface SpeechEvent
|
|
6030
|
+
*/
|
|
6031
|
+
export interface SpeechEvent {
|
|
6032
|
+
/**
|
|
6033
|
+
* Event time in seconds
|
|
6034
|
+
* @type {number}
|
|
6035
|
+
* @memberof SpeechEvent
|
|
6036
|
+
*/
|
|
6037
|
+
time: number;
|
|
6038
|
+
/**
|
|
6039
|
+
*
|
|
6040
|
+
* @type {string}
|
|
6041
|
+
* @memberof SpeechEvent
|
|
6042
|
+
*/
|
|
6043
|
+
userId: string;
|
|
6044
|
+
/**
|
|
6045
|
+
*
|
|
6046
|
+
* @type {boolean}
|
|
6047
|
+
* @memberof SpeechEvent
|
|
6048
|
+
*/
|
|
6049
|
+
isSpeaking: boolean;
|
|
6050
|
+
}
|
|
6020
6051
|
/**
|
|
6021
6052
|
*
|
|
6022
6053
|
* @export
|