@webex/event-dictionary-ts 1.0.1435 → 1.0.1436

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.
@@ -16240,9 +16240,33 @@
16240
16240
  },
16241
16241
  "priority": {}
16242
16242
  }
16243
+ },
16244
+ "announcedView": {
16245
+ "type": "string",
16246
+ "description": "view type of a video stream",
16247
+ "enum": [
16248
+ "Default",
16249
+ "Speaker"
16250
+ ]
16243
16251
  }
16244
16252
  }
16245
16253
  }
16254
+ },
16255
+ "viewAnnouncements": {
16256
+ "type": "array",
16257
+ "items": {
16258
+ "type": "string",
16259
+ "description": "view type of a video stream",
16260
+ "enum": [
16261
+ "Default",
16262
+ "Speaker"
16263
+ ]
16264
+ }
16265
+ },
16266
+ "viewReconfigurations": {
16267
+ "type": "number",
16268
+ "minimum": -9223372036854776000.0,
16269
+ "maximum": 9223372036854776000.0
16246
16270
  }
16247
16271
  }
16248
16272
  }
@@ -18402,9 +18426,28 @@
18402
18426
  },
18403
18427
  "priority": {}
18404
18428
  }
18429
+ },
18430
+ "requestedView": {
18431
+ "type": "string",
18432
+ "description": "view type of a video stream",
18433
+ "enum": [
18434
+ "Default",
18435
+ "Speaker"
18436
+ ]
18405
18437
  }
18406
18438
  }
18407
18439
  }
18440
+ },
18441
+ "requestedViews": {
18442
+ "type": "array",
18443
+ "items": {
18444
+ "type": "string",
18445
+ "description": "view type of a video stream",
18446
+ "enum": [
18447
+ "Default",
18448
+ "Speaker"
18449
+ ]
18450
+ }
18408
18451
  }
18409
18452
  }
18410
18453
  }
@@ -4726,9 +4726,33 @@
4726
4726
  },
4727
4727
  "priority": {}
4728
4728
  }
4729
+ },
4730
+ "announcedView": {
4731
+ "type": "string",
4732
+ "description": "view type of a video stream",
4733
+ "enum": [
4734
+ "Default",
4735
+ "Speaker"
4736
+ ]
4729
4737
  }
4730
4738
  }
4731
4739
  }
4740
+ },
4741
+ "viewAnnouncements": {
4742
+ "type": "array",
4743
+ "items": {
4744
+ "type": "string",
4745
+ "description": "view type of a video stream",
4746
+ "enum": [
4747
+ "Default",
4748
+ "Speaker"
4749
+ ]
4750
+ }
4751
+ },
4752
+ "viewReconfigurations": {
4753
+ "type": "number",
4754
+ "minimum": -9223372036854776000.0,
4755
+ "maximum": 9223372036854776000.0
4732
4756
  }
4733
4757
  }
4734
4758
  }
@@ -6888,9 +6912,28 @@
6888
6912
  },
6889
6913
  "priority": {}
6890
6914
  }
6915
+ },
6916
+ "requestedView": {
6917
+ "type": "string",
6918
+ "description": "view type of a video stream",
6919
+ "enum": [
6920
+ "Default",
6921
+ "Speaker"
6922
+ ]
6891
6923
  }
6892
6924
  }
6893
6925
  }
6926
+ },
6927
+ "requestedViews": {
6928
+ "type": "array",
6929
+ "items": {
6930
+ "type": "string",
6931
+ "description": "view type of a video stream",
6932
+ "enum": [
6933
+ "Default",
6934
+ "Speaker"
6935
+ ]
6936
+ }
6894
6937
  }
6895
6938
  }
6896
6939
  }
@@ -6610,8 +6610,14 @@ export interface Event {
6610
6610
  priority?: {};
6611
6611
  additionalProperties?: false;
6612
6612
  };
6613
+ /**
6614
+ * view type of a video stream
6615
+ */
6616
+ announcedView?: "Default" | "Speaker";
6613
6617
  additionalProperties?: false;
6614
6618
  }[];
6619
+ viewAnnouncements?: ("Default" | "Speaker")[];
6620
+ viewReconfigurations?: number;
6615
6621
  additionalProperties?: false;
6616
6622
  }[];
6617
6623
  audioReceive: {
@@ -7541,8 +7547,13 @@ export interface Event {
7541
7547
  priority?: {};
7542
7548
  additionalProperties?: false;
7543
7549
  };
7550
+ /**
7551
+ * view type of a video stream
7552
+ */
7553
+ requestedView?: "Default" | "Speaker";
7544
7554
  additionalProperties?: false;
7545
7555
  }[];
7556
+ requestedViews?: ("Default" | "Speaker")[];
7546
7557
  additionalProperties?: false;
7547
7558
  }[];
7548
7559
  gamestateTransmit?: {
@@ -15860,8 +15871,14 @@ export interface MediaQualityEvent {
15860
15871
  priority?: {};
15861
15872
  additionalProperties?: false;
15862
15873
  };
15874
+ /**
15875
+ * view type of a video stream
15876
+ */
15877
+ announcedView?: "Default" | "Speaker";
15863
15878
  additionalProperties?: false;
15864
15879
  }[];
15880
+ viewAnnouncements?: ("Default" | "Speaker")[];
15881
+ viewReconfigurations?: number;
15865
15882
  additionalProperties?: false;
15866
15883
  }[];
15867
15884
  audioReceive: {
@@ -16786,8 +16803,13 @@ export interface MediaQualityEvent {
16786
16803
  priority?: {};
16787
16804
  additionalProperties?: false;
16788
16805
  };
16806
+ /**
16807
+ * view type of a video stream
16808
+ */
16809
+ requestedView?: "Default" | "Speaker";
16789
16810
  additionalProperties?: false;
16790
16811
  }[];
16812
+ requestedViews?: ("Default" | "Speaker")[];
16791
16813
  additionalProperties?: false;
16792
16814
  }[];
16793
16815
  gamestateTransmit?: {
package/package.json CHANGED
@@ -28,5 +28,5 @@
28
28
  "access": "public",
29
29
  "registry": "https://registry.npmjs.org"
30
30
  },
31
- "version": "1.0.1435"
31
+ "version": "1.0.1436"
32
32
  }