@borealise/api 2.1.0-alpha.6 → 2.1.0-alpha.7
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/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -453,6 +453,7 @@ interface JoinMuteInfo {
|
|
|
453
453
|
interface RoomLiveStreamStatus {
|
|
454
454
|
status: 'offline' | 'starting' | 'live' | 'error';
|
|
455
455
|
hlsUrl?: string;
|
|
456
|
+
userId?: number;
|
|
456
457
|
startedAt?: number | null;
|
|
457
458
|
updatedAt?: number;
|
|
458
459
|
reason?: string;
|
|
@@ -476,6 +477,8 @@ interface RoomLiveStartResponse {
|
|
|
476
477
|
streamName: string;
|
|
477
478
|
hlsUrl: string;
|
|
478
479
|
streamKey: string;
|
|
480
|
+
userId: number;
|
|
481
|
+
startedAt?: number | null;
|
|
479
482
|
role: 'host' | 'cohost';
|
|
480
483
|
};
|
|
481
484
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -453,6 +453,7 @@ interface JoinMuteInfo {
|
|
|
453
453
|
interface RoomLiveStreamStatus {
|
|
454
454
|
status: 'offline' | 'starting' | 'live' | 'error';
|
|
455
455
|
hlsUrl?: string;
|
|
456
|
+
userId?: number;
|
|
456
457
|
startedAt?: number | null;
|
|
457
458
|
updatedAt?: number;
|
|
458
459
|
reason?: string;
|
|
@@ -476,6 +477,8 @@ interface RoomLiveStartResponse {
|
|
|
476
477
|
streamName: string;
|
|
477
478
|
hlsUrl: string;
|
|
478
479
|
streamKey: string;
|
|
480
|
+
userId: number;
|
|
481
|
+
startedAt?: number | null;
|
|
479
482
|
role: 'host' | 'cohost';
|
|
480
483
|
};
|
|
481
484
|
}
|