@webex/event-dictionary-ts 1.0.1448 → 1.0.1450

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.
@@ -2253,6 +2253,7 @@
2253
2253
  "client.login.start",
2254
2254
  "client.login.end",
2255
2255
  "client.switch.environment",
2256
+ "client.waiting.user-action",
2256
2257
  "client.warhol.downloaded",
2257
2258
  "client.webapp-download.start",
2258
2259
  "client.webapp-download.in-progress",
@@ -2729,6 +2729,7 @@
2729
2729
  "client.login.start",
2730
2730
  "client.login.end",
2731
2731
  "client.switch.environment",
2732
+ "client.waiting.user-action",
2732
2733
  "client.warhol.downloaded",
2733
2734
  "client.webapp-download.start",
2734
2735
  "client.webapp-download.in-progress",
@@ -18444,7 +18445,7 @@
18444
18445
  "priority": {}
18445
18446
  }
18446
18447
  },
18447
- "requestedView": {
18448
+ "receivedView": {
18448
18449
  "type": "string",
18449
18450
  "description": "view type of a video stream",
18450
18451
  "enum": [
@@ -18455,7 +18456,7 @@
18455
18456
  }
18456
18457
  }
18457
18458
  },
18458
- "requestedViews": {
18459
+ "receivedViews": {
18459
18460
  "type": "array",
18460
18461
  "items": {
18461
18462
  "type": "string",
@@ -6947,7 +6947,7 @@
6947
6947
  "priority": {}
6948
6948
  }
6949
6949
  },
6950
- "requestedView": {
6950
+ "receivedView": {
6951
6951
  "type": "string",
6952
6952
  "description": "view type of a video stream",
6953
6953
  "enum": [
@@ -6958,7 +6958,7 @@
6958
6958
  }
6959
6959
  }
6960
6960
  },
6961
- "requestedViews": {
6961
+ "receivedViews": {
6962
6962
  "type": "array",
6963
6963
  "items": {
6964
6964
  "type": "string",
@@ -1069,6 +1069,7 @@ export interface Event {
1069
1069
  | "client.login.start"
1070
1070
  | "client.login.end"
1071
1071
  | "client.switch.environment"
1072
+ | "client.waiting.user-action"
1072
1073
  | "client.warhol.downloaded"
1073
1074
  | "client.webapp-download.start"
1074
1075
  | "client.webapp-download.in-progress"
@@ -7544,10 +7545,10 @@ export interface Event {
7544
7545
  /**
7545
7546
  * view type of a video stream
7546
7547
  */
7547
- requestedView?: "Default" | "Speaker";
7548
+ receivedView?: "Default" | "Speaker";
7548
7549
  additionalProperties?: false;
7549
7550
  }[];
7550
- requestedViews?: ("Default" | "Speaker")[];
7551
+ receivedViews?: ("Default" | "Speaker")[];
7551
7552
  additionalProperties?: false;
7552
7553
  }[];
7553
7554
  gamestateTransmit?: {
@@ -11807,6 +11808,7 @@ export interface ClientEvent {
11807
11808
  | "client.login.start"
11808
11809
  | "client.login.end"
11809
11810
  | "client.switch.environment"
11811
+ | "client.waiting.user-action"
11810
11812
  | "client.warhol.downloaded"
11811
11813
  | "client.webapp-download.start"
11812
11814
  | "client.webapp-download.in-progress"
@@ -18121,10 +18123,10 @@ export interface MediaQualityEvent {
18121
18123
  /**
18122
18124
  * view type of a video stream
18123
18125
  */
18124
- requestedView?: "Default" | "Speaker";
18126
+ receivedView?: "Default" | "Speaker";
18125
18127
  additionalProperties?: false;
18126
18128
  }[];
18127
- requestedViews?: ("Default" | "Speaker")[];
18129
+ receivedViews?: ("Default" | "Speaker")[];
18128
18130
  additionalProperties?: false;
18129
18131
  }[];
18130
18132
  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.1448"
31
+ "version": "1.0.1450"
32
32
  }