@connectedxm/admin 6.5.13 → 6.5.15

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.cts CHANGED
@@ -4187,6 +4187,7 @@ interface BaseStreamInput {
4187
4187
  imageId: string | null;
4188
4188
  image: BaseImage | null;
4189
4189
  locale: string;
4190
+ webRTC: boolean;
4190
4191
  }
4191
4192
  interface StreamInput extends BaseStreamInput {
4192
4193
  eventId: string | null;
@@ -4197,6 +4198,8 @@ interface StreamInput extends BaseStreamInput {
4197
4198
  group: BaseGroup | null;
4198
4199
  meetingId: string | null;
4199
4200
  meeting: BaseMeeting | null;
4201
+ streamInputId: string | null;
4202
+ streamInput: BaseStreamInput | null;
4200
4203
  details?: StreamInputDetails;
4201
4204
  sortOrder: number;
4202
4205
  createdAt: string;
@@ -6683,10 +6686,12 @@ interface StreamInputCreateInputs {
6683
6686
  sessionId?: string | null;
6684
6687
  groupId?: string | null;
6685
6688
  meetingId?: string | null;
6689
+ streamInputId?: string | null;
6686
6690
  details?: object | null;
6687
6691
  imageId?: string | null;
6688
6692
  public?: boolean;
6689
6693
  locale?: string | null;
6694
+ webRTC?: boolean;
6690
6695
  }
6691
6696
  interface StreamInputUpdateInputs {
6692
6697
  name?: string;
@@ -6696,10 +6701,12 @@ interface StreamInputUpdateInputs {
6696
6701
  sessionId?: string | null;
6697
6702
  groupId?: string | null;
6698
6703
  meetingId?: string | null;
6704
+ streamInputId?: string | null;
6699
6705
  connected?: boolean;
6700
6706
  imageId?: string | null;
6701
6707
  public?: boolean;
6702
6708
  locale?: string | null;
6709
+ webRTC?: boolean;
6703
6710
  }
6704
6711
  interface StreamInputOutputCreateInputs {
6705
6712
  enabled: boolean;
package/dist/index.d.ts CHANGED
@@ -4187,6 +4187,7 @@ interface BaseStreamInput {
4187
4187
  imageId: string | null;
4188
4188
  image: BaseImage | null;
4189
4189
  locale: string;
4190
+ webRTC: boolean;
4190
4191
  }
4191
4192
  interface StreamInput extends BaseStreamInput {
4192
4193
  eventId: string | null;
@@ -4197,6 +4198,8 @@ interface StreamInput extends BaseStreamInput {
4197
4198
  group: BaseGroup | null;
4198
4199
  meetingId: string | null;
4199
4200
  meeting: BaseMeeting | null;
4201
+ streamInputId: string | null;
4202
+ streamInput: BaseStreamInput | null;
4200
4203
  details?: StreamInputDetails;
4201
4204
  sortOrder: number;
4202
4205
  createdAt: string;
@@ -6683,10 +6686,12 @@ interface StreamInputCreateInputs {
6683
6686
  sessionId?: string | null;
6684
6687
  groupId?: string | null;
6685
6688
  meetingId?: string | null;
6689
+ streamInputId?: string | null;
6686
6690
  details?: object | null;
6687
6691
  imageId?: string | null;
6688
6692
  public?: boolean;
6689
6693
  locale?: string | null;
6694
+ webRTC?: boolean;
6690
6695
  }
6691
6696
  interface StreamInputUpdateInputs {
6692
6697
  name?: string;
@@ -6696,10 +6701,12 @@ interface StreamInputUpdateInputs {
6696
6701
  sessionId?: string | null;
6697
6702
  groupId?: string | null;
6698
6703
  meetingId?: string | null;
6704
+ streamInputId?: string | null;
6699
6705
  connected?: boolean;
6700
6706
  imageId?: string | null;
6701
6707
  public?: boolean;
6702
6708
  locale?: string | null;
6709
+ webRTC?: boolean;
6703
6710
  }
6704
6711
  interface StreamInputOutputCreateInputs {
6705
6712
  enabled: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "6.5.13",
3
+ "version": "6.5.15",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",