@4players/odin-common 8.0.3 → 8.0.4
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/package.json +1 -1
- package/plugin/api.d.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@4players/odin-common",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.4",
|
|
4
4
|
"description": "A collection of commonly used type definitions and utility functions across ODIN web projects",
|
|
5
5
|
"author": "Josho Bleicker <josho.bleicker@4players.io> (https://www.4players.io)",
|
|
6
6
|
"homepage": "https://www.4players.io",
|
package/plugin/api.d.ts
CHANGED
|
@@ -120,8 +120,9 @@ export declare namespace Backend {
|
|
|
120
120
|
audioCapture?: AudioCapture;
|
|
121
121
|
}
|
|
122
122
|
interface VideoPlayback extends Media {
|
|
123
|
-
readonly
|
|
123
|
+
readonly id: string;
|
|
124
124
|
readonly uid: UID;
|
|
125
|
+
readonly mediaStream?: MediaStream;
|
|
125
126
|
}
|
|
126
127
|
type PlaybackVolume = [number, number];
|
|
127
128
|
type CaptureVolume = 'muted' | number;
|