@webex/event-dictionary-ts 1.0.2080 → 1.0.2082
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.
|
@@ -2365,6 +2365,9 @@
|
|
|
2365
2365
|
"client.daemon.wakeup-meeting-client",
|
|
2366
2366
|
"client.duplicate.join",
|
|
2367
2367
|
"client.device.resource-room.joined",
|
|
2368
|
+
"client.dialog-window.dismissed",
|
|
2369
|
+
"client.dialog-window.selected",
|
|
2370
|
+
"client.dialog-window.showed",
|
|
2368
2371
|
"client.e2ee.join.response",
|
|
2369
2372
|
"client.embedded-authorize-page.loaded",
|
|
2370
2373
|
"client.embedded-object-info",
|
|
@@ -7912,6 +7915,14 @@
|
|
|
7912
7915
|
"type": "string"
|
|
7913
7916
|
}
|
|
7914
7917
|
}
|
|
7918
|
+
},
|
|
7919
|
+
"dialogType": {
|
|
7920
|
+
"title": "DialogType",
|
|
7921
|
+
"type": "string",
|
|
7922
|
+
"description": "Type of dialog window displayed to user",
|
|
7923
|
+
"enum": [
|
|
7924
|
+
"PREFER_WEB_JOIN_PROMPT"
|
|
7925
|
+
]
|
|
7915
7926
|
}
|
|
7916
7927
|
}
|
|
7917
7928
|
}
|
|
@@ -2925,6 +2925,9 @@
|
|
|
2925
2925
|
"client.daemon.wakeup-meeting-client",
|
|
2926
2926
|
"client.duplicate.join",
|
|
2927
2927
|
"client.device.resource-room.joined",
|
|
2928
|
+
"client.dialog-window.dismissed",
|
|
2929
|
+
"client.dialog-window.selected",
|
|
2930
|
+
"client.dialog-window.showed",
|
|
2928
2931
|
"client.e2ee.join.response",
|
|
2929
2932
|
"client.embedded-authorize-page.loaded",
|
|
2930
2933
|
"client.embedded-object-info",
|
|
@@ -8472,6 +8475,14 @@
|
|
|
8472
8475
|
"type": "string"
|
|
8473
8476
|
}
|
|
8474
8477
|
}
|
|
8478
|
+
},
|
|
8479
|
+
"dialogType": {
|
|
8480
|
+
"title": "DialogType",
|
|
8481
|
+
"type": "string",
|
|
8482
|
+
"description": "Type of dialog window displayed to user",
|
|
8483
|
+
"enum": [
|
|
8484
|
+
"PREFER_WEB_JOIN_PROMPT"
|
|
8485
|
+
]
|
|
8475
8486
|
}
|
|
8476
8487
|
}
|
|
8477
8488
|
},
|
|
@@ -5,6 +5,11 @@
|
|
|
5
5
|
* and run json-schema-to-typescript to regenerate this file.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
+
/**
|
|
9
|
+
* Type of dialog window displayed to user
|
|
10
|
+
*/
|
|
11
|
+
export type DialogType = "PREFER_WEB_JOIN_PROMPT";
|
|
12
|
+
|
|
8
13
|
export interface Event {
|
|
9
14
|
eventId?: string;
|
|
10
15
|
version?: number;
|
|
@@ -1180,6 +1185,9 @@ export interface Event {
|
|
|
1180
1185
|
| "client.daemon.wakeup-meeting-client"
|
|
1181
1186
|
| "client.duplicate.join"
|
|
1182
1187
|
| "client.device.resource-room.joined"
|
|
1188
|
+
| "client.dialog-window.dismissed"
|
|
1189
|
+
| "client.dialog-window.selected"
|
|
1190
|
+
| "client.dialog-window.showed"
|
|
1183
1191
|
| "client.e2ee.join.response"
|
|
1184
1192
|
| "client.embedded-authorize-page.loaded"
|
|
1185
1193
|
| "client.embedded-object-info"
|
|
@@ -4076,6 +4084,7 @@ export interface Event {
|
|
|
4076
4084
|
launchMethod?: "auto-launch-webapp" | "detect-native-auto-launch-webapp" | "detect-native";
|
|
4077
4085
|
additionalProperties?: false;
|
|
4078
4086
|
};
|
|
4087
|
+
dialogType?: DialogType;
|
|
4079
4088
|
additionalProperties?: false;
|
|
4080
4089
|
}
|
|
4081
4090
|
| {
|
|
@@ -15906,6 +15915,11 @@ export interface Event {
|
|
|
15906
15915
|
* and run json-schema-to-typescript to regenerate this file.
|
|
15907
15916
|
*/
|
|
15908
15917
|
|
|
15918
|
+
/**
|
|
15919
|
+
* Type of dialog window displayed to user
|
|
15920
|
+
*/
|
|
15921
|
+
export type DialogType = "PREFER_WEB_JOIN_PROMPT";
|
|
15922
|
+
|
|
15909
15923
|
/**
|
|
15910
15924
|
* Events from clients
|
|
15911
15925
|
*/
|
|
@@ -16768,6 +16782,9 @@ export interface ClientEvent {
|
|
|
16768
16782
|
| "client.daemon.wakeup-meeting-client"
|
|
16769
16783
|
| "client.duplicate.join"
|
|
16770
16784
|
| "client.device.resource-room.joined"
|
|
16785
|
+
| "client.dialog-window.dismissed"
|
|
16786
|
+
| "client.dialog-window.selected"
|
|
16787
|
+
| "client.dialog-window.showed"
|
|
16771
16788
|
| "client.e2ee.join.response"
|
|
16772
16789
|
| "client.embedded-authorize-page.loaded"
|
|
16773
16790
|
| "client.embedded-object-info"
|
|
@@ -19664,6 +19681,7 @@ export interface ClientEvent {
|
|
|
19664
19681
|
launchMethod?: "auto-launch-webapp" | "detect-native-auto-launch-webapp" | "detect-native";
|
|
19665
19682
|
additionalProperties?: false;
|
|
19666
19683
|
};
|
|
19684
|
+
dialogType?: DialogType;
|
|
19667
19685
|
additionalProperties?: false;
|
|
19668
19686
|
}
|
|
19669
19687
|
|
package/package.json
CHANGED