@webex/event-dictionary-ts 1.0.1697 → 1.0.1699

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.
@@ -3264,7 +3264,8 @@
3264
3264
  "notification",
3265
3265
  "manual",
3266
3266
  "teams-cross-launch",
3267
- "mc-cross-launch"
3267
+ "mc-cross-launch",
3268
+ "cws"
3268
3269
  ],
3269
3270
  "type": "string"
3270
3271
  },
@@ -3739,6 +3740,9 @@
3739
3740
  "isFirstTimeUser": {
3740
3741
  "type": "boolean"
3741
3742
  },
3743
+ "isWebReturnUser": {
3744
+ "type": "boolean"
3745
+ },
3742
3746
  "responseCode": {
3743
3747
  "type": "integer"
3744
3748
  },
@@ -182,7 +182,8 @@
182
182
  "notification",
183
183
  "manual",
184
184
  "teams-cross-launch",
185
- "mc-cross-launch"
185
+ "mc-cross-launch",
186
+ "cws"
186
187
  ],
187
188
  "type": "string"
188
189
  },
@@ -3772,7 +3773,8 @@
3772
3773
  "notification",
3773
3774
  "manual",
3774
3775
  "teams-cross-launch",
3775
- "mc-cross-launch"
3776
+ "mc-cross-launch",
3777
+ "cws"
3776
3778
  ],
3777
3779
  "type": "string"
3778
3780
  },
@@ -4247,6 +4249,9 @@
4247
4249
  "isFirstTimeUser": {
4248
4250
  "type": "boolean"
4249
4251
  },
4252
+ "isWebReturnUser": {
4253
+ "type": "boolean"
4254
+ },
4250
4255
  "responseCode": {
4251
4256
  "type": "integer"
4252
4257
  },
@@ -111,7 +111,8 @@ export interface Event {
111
111
  | "notification"
112
112
  | "manual"
113
113
  | "teams-cross-launch"
114
- | "mc-cross-launch";
114
+ | "mc-cross-launch"
115
+ | "cws";
115
116
  browser?: string;
116
117
  browserVersion?: string;
117
118
  /**
@@ -1649,7 +1650,8 @@ export interface Event {
1649
1650
  | "notification"
1650
1651
  | "manual"
1651
1652
  | "teams-cross-launch"
1652
- | "mc-cross-launch";
1653
+ | "mc-cross-launch"
1654
+ | "cws";
1653
1655
  browser?: string;
1654
1656
  browserVersion?: string;
1655
1657
  /**
@@ -1848,6 +1850,7 @@ export interface Event {
1848
1850
  emailInput?: "none" | "new" | "current" | "changed";
1849
1851
  isRoapCallEnabled?: boolean;
1850
1852
  isFirstTimeUser?: boolean;
1853
+ isWebReturnUser?: boolean;
1851
1854
  responseCode?: number;
1852
1855
  /**
1853
1856
  * Join Meeting Time
@@ -15067,7 +15070,8 @@ export interface ClientEvent {
15067
15070
  | "notification"
15068
15071
  | "manual"
15069
15072
  | "teams-cross-launch"
15070
- | "mc-cross-launch";
15073
+ | "mc-cross-launch"
15074
+ | "cws";
15071
15075
  browser?: string;
15072
15076
  browserVersion?: string;
15073
15077
  /**
@@ -15266,6 +15270,7 @@ export interface ClientEvent {
15266
15270
  emailInput?: "none" | "new" | "current" | "changed";
15267
15271
  isRoapCallEnabled?: boolean;
15268
15272
  isFirstTimeUser?: boolean;
15273
+ isWebReturnUser?: boolean;
15269
15274
  responseCode?: number;
15270
15275
  /**
15271
15276
  * Join Meeting Time
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.1697"
31
+ "version": "1.0.1699"
32
32
  }