@webex/event-dictionary-ts 1.0.1619 → 1.0.1622
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.
|
@@ -8,8 +8,7 @@
|
|
|
8
8
|
"additionalProperties": true,
|
|
9
9
|
"required": [
|
|
10
10
|
"name",
|
|
11
|
-
"identifiers"
|
|
12
|
-
"canProceed"
|
|
11
|
+
"identifiers"
|
|
13
12
|
],
|
|
14
13
|
"properties": {
|
|
15
14
|
"canProceed": {
|
|
@@ -5747,6 +5746,14 @@
|
|
|
5747
5746
|
"isInstallWebView2": {
|
|
5748
5747
|
"type": "boolean"
|
|
5749
5748
|
},
|
|
5749
|
+
"launchType": {
|
|
5750
|
+
"type": "string",
|
|
5751
|
+
"enum": [
|
|
5752
|
+
"Cold",
|
|
5753
|
+
"Hot",
|
|
5754
|
+
"Warm"
|
|
5755
|
+
]
|
|
5756
|
+
},
|
|
5750
5757
|
"loginType": {
|
|
5751
5758
|
"type": "string",
|
|
5752
5759
|
"description": "",
|
|
@@ -512,8 +512,7 @@
|
|
|
512
512
|
"additionalProperties": true,
|
|
513
513
|
"required": [
|
|
514
514
|
"name",
|
|
515
|
-
"identifiers"
|
|
516
|
-
"canProceed"
|
|
515
|
+
"identifiers"
|
|
517
516
|
],
|
|
518
517
|
"properties": {
|
|
519
518
|
"canProceed": {
|
|
@@ -6251,6 +6250,14 @@
|
|
|
6251
6250
|
"isInstallWebView2": {
|
|
6252
6251
|
"type": "boolean"
|
|
6253
6252
|
},
|
|
6253
|
+
"launchType": {
|
|
6254
|
+
"type": "string",
|
|
6255
|
+
"enum": [
|
|
6256
|
+
"Cold",
|
|
6257
|
+
"Hot",
|
|
6258
|
+
"Warm"
|
|
6259
|
+
]
|
|
6260
|
+
},
|
|
6254
6261
|
"loginType": {
|
|
6255
6262
|
"type": "string",
|
|
6256
6263
|
"description": "",
|
|
@@ -7584,8 +7591,7 @@
|
|
|
7584
7591
|
"additionalProperties": true,
|
|
7585
7592
|
"required": [
|
|
7586
7593
|
"name",
|
|
7587
|
-
"identifiers"
|
|
7588
|
-
"canProceed"
|
|
7594
|
+
"identifiers"
|
|
7589
7595
|
],
|
|
7590
7596
|
"properties": {
|
|
7591
7597
|
"canProceed": {
|
|
@@ -12189,8 +12195,7 @@
|
|
|
12189
12195
|
"required": [
|
|
12190
12196
|
"name",
|
|
12191
12197
|
"identifiers",
|
|
12192
|
-
"intervals"
|
|
12193
|
-
"canProceed"
|
|
12198
|
+
"intervals"
|
|
12194
12199
|
],
|
|
12195
12200
|
"properties": {
|
|
12196
12201
|
"canProceed": {
|
|
@@ -21478,8 +21483,7 @@
|
|
|
21478
21483
|
"additionalProperties": true,
|
|
21479
21484
|
"required": [
|
|
21480
21485
|
"name",
|
|
21481
|
-
"identifiers"
|
|
21482
|
-
"canProceed"
|
|
21486
|
+
"identifiers"
|
|
21483
21487
|
],
|
|
21484
21488
|
"properties": {
|
|
21485
21489
|
"canProceed": {
|
|
@@ -25373,8 +25377,7 @@
|
|
|
25373
25377
|
"required": [
|
|
25374
25378
|
"edgeIntervals",
|
|
25375
25379
|
"name",
|
|
25376
|
-
"identifiers"
|
|
25377
|
-
"canProceed"
|
|
25380
|
+
"identifiers"
|
|
25378
25381
|
],
|
|
25379
25382
|
"properties": {
|
|
25380
25383
|
"canProceed": {
|
|
@@ -277,7 +277,7 @@ export interface Event {
|
|
|
277
277
|
isTest?: boolean;
|
|
278
278
|
event:
|
|
279
279
|
| {
|
|
280
|
-
canProceed
|
|
280
|
+
canProceed?: boolean;
|
|
281
281
|
state?: string;
|
|
282
282
|
mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
|
|
283
283
|
/**
|
|
@@ -2970,6 +2970,7 @@ export interface Event {
|
|
|
2970
2970
|
additionalProperties?: false;
|
|
2971
2971
|
};
|
|
2972
2972
|
isInstallWebView2?: boolean;
|
|
2973
|
+
launchType?: "Cold" | "Hot" | "Warm";
|
|
2973
2974
|
loginType?:
|
|
2974
2975
|
| "no-login"
|
|
2975
2976
|
| "login-page"
|
|
@@ -3622,7 +3623,7 @@ export interface Event {
|
|
|
3622
3623
|
additionalProperties?: false;
|
|
3623
3624
|
}
|
|
3624
3625
|
| {
|
|
3625
|
-
canProceed
|
|
3626
|
+
canProceed?: boolean;
|
|
3626
3627
|
state?: string;
|
|
3627
3628
|
mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
|
|
3628
3629
|
/**
|
|
@@ -5567,7 +5568,7 @@ export interface Event {
|
|
|
5567
5568
|
additionalProperties?: false;
|
|
5568
5569
|
}
|
|
5569
5570
|
| {
|
|
5570
|
-
canProceed
|
|
5571
|
+
canProceed?: boolean;
|
|
5571
5572
|
state?: string;
|
|
5572
5573
|
mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
|
|
5573
5574
|
/**
|
|
@@ -9147,7 +9148,7 @@ export interface Event {
|
|
|
9147
9148
|
additionalProperties?: false;
|
|
9148
9149
|
}
|
|
9149
9150
|
| {
|
|
9150
|
-
canProceed
|
|
9151
|
+
canProceed?: boolean;
|
|
9151
9152
|
state?: string;
|
|
9152
9153
|
mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
|
|
9153
9154
|
/**
|
|
@@ -10846,7 +10847,7 @@ export interface Event {
|
|
|
10846
10847
|
additionalProperties?: false;
|
|
10847
10848
|
}
|
|
10848
10849
|
| {
|
|
10849
|
-
canProceed
|
|
10850
|
+
canProceed?: boolean;
|
|
10850
10851
|
state?: string;
|
|
10851
10852
|
mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
|
|
10852
10853
|
/**
|
|
@@ -12527,7 +12528,7 @@ export interface Event {
|
|
|
12527
12528
|
* Events from clients
|
|
12528
12529
|
*/
|
|
12529
12530
|
export interface ClientEvent {
|
|
12530
|
-
canProceed
|
|
12531
|
+
canProceed?: boolean;
|
|
12531
12532
|
state?: string;
|
|
12532
12533
|
mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
|
|
12533
12534
|
/**
|
|
@@ -15220,6 +15221,7 @@ export interface ClientEvent {
|
|
|
15220
15221
|
additionalProperties?: false;
|
|
15221
15222
|
};
|
|
15222
15223
|
isInstallWebView2?: boolean;
|
|
15224
|
+
launchType?: "Cold" | "Hot" | "Warm";
|
|
15223
15225
|
loginType?:
|
|
15224
15226
|
| "no-login"
|
|
15225
15227
|
| "login-page"
|
|
@@ -15883,7 +15885,7 @@ export interface ClientEvent {
|
|
|
15883
15885
|
* Behavioural Events from Clients
|
|
15884
15886
|
*/
|
|
15885
15887
|
export interface FeatureEvent {
|
|
15886
|
-
canProceed
|
|
15888
|
+
canProceed?: boolean;
|
|
15887
15889
|
state?: string;
|
|
15888
15890
|
mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
|
|
15889
15891
|
/**
|
|
@@ -17593,7 +17595,7 @@ export interface FeatureEvent {
|
|
|
17593
17595
|
* Media Quality Events from media services (e.g. Linus, Edonus, Clients)
|
|
17594
17596
|
*/
|
|
17595
17597
|
export interface MediaQualityEvent {
|
|
17596
|
-
canProceed
|
|
17598
|
+
canProceed?: boolean;
|
|
17597
17599
|
state?: string;
|
|
17598
17600
|
mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
|
|
17599
17601
|
/**
|
package/package.json
CHANGED