@webex/event-dictionary-ts 1.0.1605 → 1.0.1607
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.
|
@@ -17063,6 +17063,11 @@
|
|
|
17063
17063
|
"backgroundAugmentationModelVersion": {
|
|
17064
17064
|
"type": "string"
|
|
17065
17065
|
},
|
|
17066
|
+
"ladonModelGpuLoadTime": {
|
|
17067
|
+
"type": "number",
|
|
17068
|
+
"minimum": 0.0,
|
|
17069
|
+
"maximum": 9223372036854776000.0
|
|
17070
|
+
},
|
|
17066
17071
|
"isGestureDetectorOn": {
|
|
17067
17072
|
"type": "boolean"
|
|
17068
17073
|
},
|
|
@@ -4978,6 +4978,11 @@
|
|
|
4978
4978
|
"backgroundAugmentationModelVersion": {
|
|
4979
4979
|
"type": "string"
|
|
4980
4980
|
},
|
|
4981
|
+
"ladonModelGpuLoadTime": {
|
|
4982
|
+
"type": "number",
|
|
4983
|
+
"minimum": 0.0,
|
|
4984
|
+
"maximum": 9223372036854776000.0
|
|
4985
|
+
},
|
|
4981
4986
|
"isGestureDetectorOn": {
|
|
4982
4987
|
"type": "boolean"
|
|
4983
4988
|
},
|
|
@@ -7361,6 +7361,7 @@ export interface Event {
|
|
|
7361
7361
|
additionalProperties?: false;
|
|
7362
7362
|
};
|
|
7363
7363
|
backgroundAugmentationModelVersion?: string;
|
|
7364
|
+
ladonModelGpuLoadTime?: number;
|
|
7364
7365
|
isGestureDetectorOn?: boolean;
|
|
7365
7366
|
isRelightingOn?: boolean;
|
|
7366
7367
|
meanRelitPostProcessMillis?: number;
|
|
@@ -19270,6 +19271,7 @@ export interface MediaQualityEvent {
|
|
|
19270
19271
|
additionalProperties?: false;
|
|
19271
19272
|
};
|
|
19272
19273
|
backgroundAugmentationModelVersion?: string;
|
|
19274
|
+
ladonModelGpuLoadTime?: number;
|
|
19273
19275
|
isGestureDetectorOn?: boolean;
|
|
19274
19276
|
isRelightingOn?: boolean;
|
|
19275
19277
|
meanRelitPostProcessMillis?: number;
|
package/package.json
CHANGED