@webex/event-dictionary-ts 1.0.1921 → 1.0.1922
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.
|
@@ -7427,6 +7427,12 @@
|
|
|
7427
7427
|
"type": "number",
|
|
7428
7428
|
"minimum": 0.0,
|
|
7429
7429
|
"maximum": 9223372036854776000.0
|
|
7430
|
+
},
|
|
7431
|
+
"audioPlaybackRestartTime": {
|
|
7432
|
+
"description": "Timestamp in milliseconds when audio playback restart algorithm is performed. The restart is triggered by client App if certain conditions are met.",
|
|
7433
|
+
"type": "number",
|
|
7434
|
+
"minimum": 0.0,
|
|
7435
|
+
"maximum": 9223372036854776000.0
|
|
7430
7436
|
}
|
|
7431
7437
|
}
|
|
7432
7438
|
},
|
|
@@ -7962,6 +7962,12 @@
|
|
|
7962
7962
|
"type": "number",
|
|
7963
7963
|
"minimum": 0.0,
|
|
7964
7964
|
"maximum": 9223372036854776000.0
|
|
7965
|
+
},
|
|
7966
|
+
"audioPlaybackRestartTime": {
|
|
7967
|
+
"description": "Timestamp in milliseconds when audio playback restart algorithm is performed. The restart is triggered by client App if certain conditions are met.",
|
|
7968
|
+
"type": "number",
|
|
7969
|
+
"minimum": 0.0,
|
|
7970
|
+
"maximum": 9223372036854776000.0
|
|
7965
7971
|
}
|
|
7966
7972
|
}
|
|
7967
7973
|
},
|
|
@@ -3784,6 +3784,10 @@ export interface Event {
|
|
|
3784
3784
|
* Timestamp in milliseconds when audio capture restart algorithm is performed. The restart is triggered by client App if certain conditions are met
|
|
3785
3785
|
*/
|
|
3786
3786
|
audioCaptureRestartTime?: number;
|
|
3787
|
+
/**
|
|
3788
|
+
* Timestamp in milliseconds when audio playback restart algorithm is performed. The restart is triggered by client App if certain conditions are met.
|
|
3789
|
+
*/
|
|
3790
|
+
audioPlaybackRestartTime?: number;
|
|
3787
3791
|
additionalProperties?: false;
|
|
3788
3792
|
};
|
|
3789
3793
|
/**
|
|
@@ -18418,6 +18422,10 @@ export interface ClientEvent {
|
|
|
18418
18422
|
* Timestamp in milliseconds when audio capture restart algorithm is performed. The restart is triggered by client App if certain conditions are met
|
|
18419
18423
|
*/
|
|
18420
18424
|
audioCaptureRestartTime?: number;
|
|
18425
|
+
/**
|
|
18426
|
+
* Timestamp in milliseconds when audio playback restart algorithm is performed. The restart is triggered by client App if certain conditions are met.
|
|
18427
|
+
*/
|
|
18428
|
+
audioPlaybackRestartTime?: number;
|
|
18421
18429
|
additionalProperties?: false;
|
|
18422
18430
|
};
|
|
18423
18431
|
/**
|
package/package.json
CHANGED