@wildix/wda-stream-client 1.0.52 → 1.0.53
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
|
|
445
|
+
* member: { // 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
|
*/
|
|
@@ -2008,6 +2015,12 @@ export interface ConferenceStartConsumeEvent {
|
|
|
2008
2015
|
service?: string | undefined;
|
|
2009
2016
|
data: ConferenceStartConsumeEventData;
|
|
2010
2017
|
}
|
|
2018
|
+
/**
|
|
2019
|
+
* @public
|
|
2020
|
+
*/
|
|
2021
|
+
export interface ConferenceStatsConsumeEventData {
|
|
2022
|
+
member?: ConferenceSpeakerTime | undefined;
|
|
2023
|
+
}
|
|
2011
2024
|
/**
|
|
2012
2025
|
* @public
|
|
2013
2026
|
*/
|
|
@@ -2016,6 +2029,7 @@ export interface ConferenceStatsConsumeEvent {
|
|
|
2016
2029
|
session: string;
|
|
2017
2030
|
time: number;
|
|
2018
2031
|
type: ConferenceConsumeEventType;
|
|
2032
|
+
data: ConferenceStatsConsumeEventData;
|
|
2019
2033
|
}
|
|
2020
2034
|
/**
|
|
2021
2035
|
* @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.53",
|
|
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",
|