@connectedxm/client 7.2.9 → 7.2.11

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +4 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -282,6 +282,7 @@ interface Activity extends BaseActivity {
282
282
  content: BaseContent | null;
283
283
  commented: BaseActivity | null;
284
284
  entities: BaseActivityEntity[] | null;
285
+ streams: BaseStreamInput[];
285
286
  updatedAt: string;
286
287
  likes?: {
287
288
  createdAt: string;
@@ -2502,12 +2503,15 @@ interface BaseStreamInput {
2502
2503
  image: BaseImage | null;
2503
2504
  locale: string;
2504
2505
  cloudflareId: string;
2506
+ webRTC: boolean;
2507
+ webRTCPlaybackUrl: string | null;
2505
2508
  }
2506
2509
  interface StreamInput extends BaseStreamInput {
2507
2510
  eventId: string | null;
2508
2511
  groupId: string | null;
2509
2512
  sessionId: string | null;
2510
2513
  meetingId: string | null;
2514
+ activityId: string | null;
2511
2515
  }
2512
2516
 
2513
2517
  interface ClientApiParams {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "7.2.9",
3
+ "version": "7.2.11",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",