@wildix/wda-stream-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.
|
@@ -441,6 +441,12 @@ declare const ConsumeEventCommand_base: {
|
|
|
441
441
|
* session: "STRING_VALUE", // required
|
|
442
442
|
* time: Number("long"), // required
|
|
443
443
|
* type: "CONFERENCE.START" || "CONFERENCE.JOIN" || "CONFERENCE.RECORD_START" || "CONFERENCE.TRANSCRIPTION" || "CONFERENCE.LEAVE" || "CONFERENCE.RECORD_STOP" || "CONFERENCE.KEEP_ALIVE" || "CONFERENCE.TIMEFRAMES" || "CONFERENCE.END" || "CONFERENCE.STATS", // required
|
|
444
|
+
* data: [ // ConferenceStatsConsumeEventData // required
|
|
445
|
+
* { // ConferenceSpeakerTime
|
|
446
|
+
* jid: "STRING_VALUE", // required
|
|
447
|
+
* speakerTime: Number("int"), // required
|
|
448
|
+
* },
|
|
449
|
+
* ],
|
|
444
450
|
* },
|
|
445
451
|
* chatNew: { // ChatNewConsumeEvent
|
|
446
452
|
* type: "CHAT.NEW" || "CHAT.UPDATE", // required
|
|
@@ -1987,6 +1987,13 @@ export interface ConferenceRecordStopConsumeEvent {
|
|
|
1987
1987
|
type: ConferenceConsumeEventType;
|
|
1988
1988
|
data: ConferenceRecordStopConsumeEventData;
|
|
1989
1989
|
}
|
|
1990
|
+
/**
|
|
1991
|
+
* @public
|
|
1992
|
+
*/
|
|
1993
|
+
export interface ConferenceSpeakerTime {
|
|
1994
|
+
jid: string;
|
|
1995
|
+
speakerTime: number;
|
|
1996
|
+
}
|
|
1990
1997
|
/**
|
|
1991
1998
|
* @public
|
|
1992
1999
|
*/
|
|
@@ -2016,6 +2023,7 @@ export interface ConferenceStatsConsumeEvent {
|
|
|
2016
2023
|
session: string;
|
|
2017
2024
|
time: number;
|
|
2018
2025
|
type: ConferenceConsumeEventType;
|
|
2026
|
+
data: (ConferenceSpeakerTime)[];
|
|
2019
2027
|
}
|
|
2020
2028
|
/**
|
|
2021
2029
|
* @public
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wda-stream-client",
|
|
3
3
|
"description": "@wildix/wda-stream-client client",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.54",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|