@webex/event-dictionary-ts 1.0.2157 → 1.0.2159

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.
@@ -3526,6 +3526,10 @@
3526
3526
  "type": "string",
3527
3527
  "description": "Will be used as a label for client software status"
3528
3528
  },
3529
+ "upgradeSource": {
3530
+ "type": "string",
3531
+ "description": "(e.g. slowchannel, pinned release or an UUID). If the value is not known use NULL, or if its default channel 'system'"
3532
+ },
3529
3533
  "instanceId": {
3530
3534
  "type": "string",
3531
3535
  "description": "Identifier for a particular instance of a service, such as a particular linus"
@@ -4163,6 +4167,7 @@
4163
4167
  "IN_MEETING"
4164
4168
  ]
4165
4169
  },
4170
+ "iceResult": {},
4166
4171
  "userType": {
4167
4172
  "enum": [
4168
4173
  "host",
@@ -97,6 +97,10 @@
97
97
  "type": "string",
98
98
  "description": "Will be used as a label for client software status"
99
99
  },
100
+ "upgradeSource": {
101
+ "type": "string",
102
+ "description": "(e.g. slowchannel, pinned release or an UUID). If the value is not known use NULL, or if its default channel 'system'"
103
+ },
100
104
  "instanceId": {
101
105
  "type": "string",
102
106
  "description": "Identifier for a particular instance of a service, such as a particular linus"
@@ -4103,6 +4107,10 @@
4103
4107
  "type": "string",
4104
4108
  "description": "Will be used as a label for client software status"
4105
4109
  },
4110
+ "upgradeSource": {
4111
+ "type": "string",
4112
+ "description": "(e.g. slowchannel, pinned release or an UUID). If the value is not known use NULL, or if its default channel 'system'"
4113
+ },
4106
4114
  "instanceId": {
4107
4115
  "type": "string",
4108
4116
  "description": "Identifier for a particular instance of a service, such as a particular linus"
@@ -4740,6 +4748,7 @@
4740
4748
  "IN_MEETING"
4741
4749
  ]
4742
4750
  },
4751
+ "iceResult": {},
4743
4752
  "userType": {
4744
4753
  "enum": [
4745
4754
  "host",
@@ -71,6 +71,10 @@ export interface Event {
71
71
  * Will be used as a label for client software status
72
72
  */
73
73
  upgradeChannel?: string;
74
+ /**
75
+ * (e.g. slowchannel, pinned release or an UUID). If the value is not known use NULL, or if its default channel 'system'
76
+ */
77
+ upgradeSource?: string;
74
78
  /**
75
79
  * Identifier for a particular instance of a service, such as a particular linus
76
80
  */
@@ -1842,6 +1846,10 @@ export interface Event {
1842
1846
  * Will be used as a label for client software status
1843
1847
  */
1844
1848
  upgradeChannel?: string;
1849
+ /**
1850
+ * (e.g. slowchannel, pinned release or an UUID). If the value is not known use NULL, or if its default channel 'system'
1851
+ */
1852
+ upgradeSource?: string;
1845
1853
  /**
1846
1854
  * Identifier for a particular instance of a service, such as a particular linus
1847
1855
  */
@@ -2135,6 +2143,7 @@ export interface Event {
2135
2143
  additionalProperties?: never;
2136
2144
  };
2137
2145
  icePhase?: "JOIN_MEETING_FINAL" | "JOIN_MEETING_RETRY" | "IN_MEETING";
2146
+ iceResult?: {};
2138
2147
  userType?: "host" | "attendee" | "cohost" | "panelist";
2139
2148
  updateType?: "new-user" | "update-user" | "return-user";
2140
2149
  userNameInput?: "new" | "current" | "changed";
@@ -18247,6 +18256,10 @@ export interface ClientEvent {
18247
18256
  * Will be used as a label for client software status
18248
18257
  */
18249
18258
  upgradeChannel?: string;
18259
+ /**
18260
+ * (e.g. slowchannel, pinned release or an UUID). If the value is not known use NULL, or if its default channel 'system'
18261
+ */
18262
+ upgradeSource?: string;
18250
18263
  /**
18251
18264
  * Identifier for a particular instance of a service, such as a particular linus
18252
18265
  */
@@ -18540,6 +18553,7 @@ export interface ClientEvent {
18540
18553
  additionalProperties?: never;
18541
18554
  };
18542
18555
  icePhase?: "JOIN_MEETING_FINAL" | "JOIN_MEETING_RETRY" | "IN_MEETING";
18556
+ iceResult?: {};
18543
18557
  userType?: "host" | "attendee" | "cohost" | "panelist";
18544
18558
  updateType?: "new-user" | "update-user" | "return-user";
18545
18559
  userNameInput?: "new" | "current" | "changed";
package/package.json CHANGED
@@ -32,5 +32,5 @@
32
32
  "access": "public",
33
33
  "registry": "https://registry.npmjs.org"
34
34
  },
35
- "version": "1.0.2157"
35
+ "version": "1.0.2159"
36
36
  }