@webex/event-dictionary-ts 1.0.2082 → 1.0.2083
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.
|
@@ -2553,6 +2553,8 @@
|
|
|
2553
2553
|
"client.webexapp.launched",
|
|
2554
2554
|
"client.login.start",
|
|
2555
2555
|
"client.login.end",
|
|
2556
|
+
"client.startup.start",
|
|
2557
|
+
"client.startup.end",
|
|
2556
2558
|
"client.switch.environment",
|
|
2557
2559
|
"client.u2c.limited-catalog.request",
|
|
2558
2560
|
"client.u2c.limited-catalog.response",
|
|
@@ -7921,7 +7923,8 @@
|
|
|
7921
7923
|
"type": "string",
|
|
7922
7924
|
"description": "Type of dialog window displayed to user",
|
|
7923
7925
|
"enum": [
|
|
7924
|
-
"PREFER_WEB_JOIN_PROMPT"
|
|
7926
|
+
"PREFER_WEB_JOIN_PROMPT",
|
|
7927
|
+
"EULA"
|
|
7925
7928
|
]
|
|
7926
7929
|
}
|
|
7927
7930
|
}
|
|
@@ -3113,6 +3113,8 @@
|
|
|
3113
3113
|
"client.webexapp.launched",
|
|
3114
3114
|
"client.login.start",
|
|
3115
3115
|
"client.login.end",
|
|
3116
|
+
"client.startup.start",
|
|
3117
|
+
"client.startup.end",
|
|
3116
3118
|
"client.switch.environment",
|
|
3117
3119
|
"client.u2c.limited-catalog.request",
|
|
3118
3120
|
"client.u2c.limited-catalog.response",
|
|
@@ -8481,7 +8483,8 @@
|
|
|
8481
8483
|
"type": "string",
|
|
8482
8484
|
"description": "Type of dialog window displayed to user",
|
|
8483
8485
|
"enum": [
|
|
8484
|
-
"PREFER_WEB_JOIN_PROMPT"
|
|
8486
|
+
"PREFER_WEB_JOIN_PROMPT",
|
|
8487
|
+
"EULA"
|
|
8485
8488
|
]
|
|
8486
8489
|
}
|
|
8487
8490
|
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
/**
|
|
9
9
|
* Type of dialog window displayed to user
|
|
10
10
|
*/
|
|
11
|
-
export type DialogType = "PREFER_WEB_JOIN_PROMPT";
|
|
11
|
+
export type DialogType = "PREFER_WEB_JOIN_PROMPT" | "EULA";
|
|
12
12
|
|
|
13
13
|
export interface Event {
|
|
14
14
|
eventId?: string;
|
|
@@ -1373,6 +1373,8 @@ export interface Event {
|
|
|
1373
1373
|
| "client.webexapp.launched"
|
|
1374
1374
|
| "client.login.start"
|
|
1375
1375
|
| "client.login.end"
|
|
1376
|
+
| "client.startup.start"
|
|
1377
|
+
| "client.startup.end"
|
|
1376
1378
|
| "client.switch.environment"
|
|
1377
1379
|
| "client.u2c.limited-catalog.request"
|
|
1378
1380
|
| "client.u2c.limited-catalog.response"
|
|
@@ -15918,7 +15920,7 @@ export interface Event {
|
|
|
15918
15920
|
/**
|
|
15919
15921
|
* Type of dialog window displayed to user
|
|
15920
15922
|
*/
|
|
15921
|
-
export type DialogType = "PREFER_WEB_JOIN_PROMPT";
|
|
15923
|
+
export type DialogType = "PREFER_WEB_JOIN_PROMPT" | "EULA";
|
|
15922
15924
|
|
|
15923
15925
|
/**
|
|
15924
15926
|
* Events from clients
|
|
@@ -16970,6 +16972,8 @@ export interface ClientEvent {
|
|
|
16970
16972
|
| "client.webexapp.launched"
|
|
16971
16973
|
| "client.login.start"
|
|
16972
16974
|
| "client.login.end"
|
|
16975
|
+
| "client.startup.start"
|
|
16976
|
+
| "client.startup.end"
|
|
16973
16977
|
| "client.switch.environment"
|
|
16974
16978
|
| "client.u2c.limited-catalog.request"
|
|
16975
16979
|
| "client.u2c.limited-catalog.response"
|
package/package.json
CHANGED