@webex/event-dictionary-ts 1.0.2016 → 1.0.2017
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.
|
@@ -7739,6 +7739,27 @@
|
|
|
7739
7739
|
},
|
|
7740
7740
|
"onboardingState": {
|
|
7741
7741
|
"type": "string"
|
|
7742
|
+
},
|
|
7743
|
+
"smartLauncher": {
|
|
7744
|
+
"type": "object",
|
|
7745
|
+
"description": "captures details of Smart Launcher Function in MJP (Meeting Join Page) that controls the type of client launched for meeting join",
|
|
7746
|
+
"additionalProperties": true,
|
|
7747
|
+
"properties": {
|
|
7748
|
+
"enabled": {
|
|
7749
|
+
"type": "boolean"
|
|
7750
|
+
},
|
|
7751
|
+
"launchStrategy": {
|
|
7752
|
+
"type": "string"
|
|
7753
|
+
},
|
|
7754
|
+
"launchMethod": {
|
|
7755
|
+
"enum": [
|
|
7756
|
+
"auto-launch-webapp",
|
|
7757
|
+
"detect-native-auto-launch-webapp",
|
|
7758
|
+
"detect-native"
|
|
7759
|
+
],
|
|
7760
|
+
"type": "string"
|
|
7761
|
+
}
|
|
7762
|
+
}
|
|
7742
7763
|
}
|
|
7743
7764
|
}
|
|
7744
7765
|
}
|
|
@@ -8293,6 +8293,27 @@
|
|
|
8293
8293
|
},
|
|
8294
8294
|
"onboardingState": {
|
|
8295
8295
|
"type": "string"
|
|
8296
|
+
},
|
|
8297
|
+
"smartLauncher": {
|
|
8298
|
+
"type": "object",
|
|
8299
|
+
"description": "captures details of Smart Launcher Function in MJP (Meeting Join Page) that controls the type of client launched for meeting join",
|
|
8300
|
+
"additionalProperties": true,
|
|
8301
|
+
"properties": {
|
|
8302
|
+
"enabled": {
|
|
8303
|
+
"type": "boolean"
|
|
8304
|
+
},
|
|
8305
|
+
"launchStrategy": {
|
|
8306
|
+
"type": "string"
|
|
8307
|
+
},
|
|
8308
|
+
"launchMethod": {
|
|
8309
|
+
"enum": [
|
|
8310
|
+
"auto-launch-webapp",
|
|
8311
|
+
"detect-native-auto-launch-webapp",
|
|
8312
|
+
"detect-native"
|
|
8313
|
+
],
|
|
8314
|
+
"type": "string"
|
|
8315
|
+
}
|
|
8316
|
+
}
|
|
8296
8317
|
}
|
|
8297
8318
|
}
|
|
8298
8319
|
},
|
|
@@ -3980,6 +3980,15 @@ export interface Event {
|
|
|
3980
3980
|
additionalProperties?: false;
|
|
3981
3981
|
};
|
|
3982
3982
|
onboardingState?: string;
|
|
3983
|
+
/**
|
|
3984
|
+
* captures details of Smart Launcher Function in MJP (Meeting Join Page) that controls the type of client launched for meeting join
|
|
3985
|
+
*/
|
|
3986
|
+
smartLauncher?: {
|
|
3987
|
+
enabled?: boolean;
|
|
3988
|
+
launchStrategy?: string;
|
|
3989
|
+
launchMethod?: "auto-launch-webapp" | "detect-native-auto-launch-webapp" | "detect-native";
|
|
3990
|
+
additionalProperties?: false;
|
|
3991
|
+
};
|
|
3983
3992
|
additionalProperties?: false;
|
|
3984
3993
|
}
|
|
3985
3994
|
| {
|
|
@@ -19236,6 +19245,15 @@ export interface ClientEvent {
|
|
|
19236
19245
|
additionalProperties?: false;
|
|
19237
19246
|
};
|
|
19238
19247
|
onboardingState?: string;
|
|
19248
|
+
/**
|
|
19249
|
+
* captures details of Smart Launcher Function in MJP (Meeting Join Page) that controls the type of client launched for meeting join
|
|
19250
|
+
*/
|
|
19251
|
+
smartLauncher?: {
|
|
19252
|
+
enabled?: boolean;
|
|
19253
|
+
launchStrategy?: string;
|
|
19254
|
+
launchMethod?: "auto-launch-webapp" | "detect-native-auto-launch-webapp" | "detect-native";
|
|
19255
|
+
additionalProperties?: false;
|
|
19256
|
+
};
|
|
19239
19257
|
additionalProperties?: false;
|
|
19240
19258
|
}
|
|
19241
19259
|
|
package/package.json
CHANGED