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