@webex/event-dictionary-ts 1.0.2210 → 1.0.2211
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.
|
@@ -8469,6 +8469,19 @@
|
|
|
8469
8469
|
"manual"
|
|
8470
8470
|
]
|
|
8471
8471
|
},
|
|
8472
|
+
"userActivation": {
|
|
8473
|
+
"type": "object",
|
|
8474
|
+
"description": "User activation state reported from the browser's navigator.userActivation API",
|
|
8475
|
+
"additionalProperties": true,
|
|
8476
|
+
"properties": {
|
|
8477
|
+
"hasBeenActive": {
|
|
8478
|
+
"type": "boolean"
|
|
8479
|
+
},
|
|
8480
|
+
"isActive": {
|
|
8481
|
+
"type": "boolean"
|
|
8482
|
+
}
|
|
8483
|
+
}
|
|
8484
|
+
},
|
|
8472
8485
|
"privacyAndSecurityPermission": {
|
|
8473
8486
|
"type": "object",
|
|
8474
8487
|
"description": "Map of device types to their permission status and reason when permission is not granted",
|
|
@@ -9103,6 +9103,19 @@
|
|
|
9103
9103
|
"manual"
|
|
9104
9104
|
]
|
|
9105
9105
|
},
|
|
9106
|
+
"userActivation": {
|
|
9107
|
+
"type": "object",
|
|
9108
|
+
"description": "User activation state reported from the browser's navigator.userActivation API",
|
|
9109
|
+
"additionalProperties": true,
|
|
9110
|
+
"properties": {
|
|
9111
|
+
"hasBeenActive": {
|
|
9112
|
+
"type": "boolean"
|
|
9113
|
+
},
|
|
9114
|
+
"isActive": {
|
|
9115
|
+
"type": "boolean"
|
|
9116
|
+
}
|
|
9117
|
+
}
|
|
9118
|
+
},
|
|
9106
9119
|
"privacyAndSecurityPermission": {
|
|
9107
9120
|
"type": "object",
|
|
9108
9121
|
"description": "Map of device types to their permission status and reason when permission is not granted",
|
|
@@ -4399,6 +4399,14 @@ export interface Event {
|
|
|
4399
4399
|
dialogType?: DialogType;
|
|
4400
4400
|
isAutomatedUser?: boolean;
|
|
4401
4401
|
telemetryOptOut?: "automatic" | "manual";
|
|
4402
|
+
/**
|
|
4403
|
+
* User activation state reported from the browser's navigator.userActivation API
|
|
4404
|
+
*/
|
|
4405
|
+
userActivation?: {
|
|
4406
|
+
hasBeenActive?: boolean;
|
|
4407
|
+
isActive?: boolean;
|
|
4408
|
+
additionalProperties?: never;
|
|
4409
|
+
};
|
|
4402
4410
|
/**
|
|
4403
4411
|
* Map of device types to their permission status and reason when permission is not granted
|
|
4404
4412
|
*/
|
|
@@ -21017,6 +21025,14 @@ export interface ClientEvent {
|
|
|
21017
21025
|
dialogType?: DialogType;
|
|
21018
21026
|
isAutomatedUser?: boolean;
|
|
21019
21027
|
telemetryOptOut?: "automatic" | "manual";
|
|
21028
|
+
/**
|
|
21029
|
+
* User activation state reported from the browser's navigator.userActivation API
|
|
21030
|
+
*/
|
|
21031
|
+
userActivation?: {
|
|
21032
|
+
hasBeenActive?: boolean;
|
|
21033
|
+
isActive?: boolean;
|
|
21034
|
+
additionalProperties?: never;
|
|
21035
|
+
};
|
|
21020
21036
|
/**
|
|
21021
21037
|
* Map of device types to their permission status and reason when permission is not granted
|
|
21022
21038
|
*/
|
package/package.json
CHANGED