@webex/event-dictionary-ts 1.0.1620 → 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.
@@ -5746,6 +5746,14 @@
5746
5746
  "isInstallWebView2": {
5747
5747
  "type": "boolean"
5748
5748
  },
5749
+ "launchType": {
5750
+ "type": "string",
5751
+ "enum": [
5752
+ "Cold",
5753
+ "Hot",
5754
+ "Warm"
5755
+ ]
5756
+ },
5749
5757
  "loginType": {
5750
5758
  "type": "string",
5751
5759
  "description": "",
@@ -6250,6 +6250,14 @@
6250
6250
  "isInstallWebView2": {
6251
6251
  "type": "boolean"
6252
6252
  },
6253
+ "launchType": {
6254
+ "type": "string",
6255
+ "enum": [
6256
+ "Cold",
6257
+ "Hot",
6258
+ "Warm"
6259
+ ]
6260
+ },
6253
6261
  "loginType": {
6254
6262
  "type": "string",
6255
6263
  "description": "",
@@ -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"
@@ -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"
package/package.json CHANGED
@@ -28,5 +28,5 @@
28
28
  "access": "public",
29
29
  "registry": "https://registry.npmjs.org"
30
30
  },
31
- "version": "1.0.1620"
31
+ "version": "1.0.1622"
32
32
  }