@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 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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@borealise/api",
3
- "version": "2.1.0-alpha.6",
3
+ "version": "2.1.0-alpha.8",
4
4
  "description": "Official API client for Borealise",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",