@webex/event-dictionary-ts 1.0.2129 → 1.0.2131
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.
|
@@ -3939,6 +3939,20 @@
|
|
|
3939
3939
|
},
|
|
3940
3940
|
"staticPerformanceScore": {
|
|
3941
3941
|
"type": "integer"
|
|
3942
|
+
},
|
|
3943
|
+
"preInstalledTime": {
|
|
3944
|
+
"type": "string"
|
|
3945
|
+
},
|
|
3946
|
+
"preInstalledType": {
|
|
3947
|
+
"enum": [
|
|
3948
|
+
"app",
|
|
3949
|
+
"installer",
|
|
3950
|
+
"launcher"
|
|
3951
|
+
],
|
|
3952
|
+
"type": "string"
|
|
3953
|
+
},
|
|
3954
|
+
"preInstalledVersion": {
|
|
3955
|
+
"type": "string"
|
|
3942
3956
|
}
|
|
3943
3957
|
}
|
|
3944
3958
|
},
|
|
@@ -513,6 +513,20 @@
|
|
|
513
513
|
},
|
|
514
514
|
"staticPerformanceScore": {
|
|
515
515
|
"type": "integer"
|
|
516
|
+
},
|
|
517
|
+
"preInstalledTime": {
|
|
518
|
+
"type": "string"
|
|
519
|
+
},
|
|
520
|
+
"preInstalledType": {
|
|
521
|
+
"enum": [
|
|
522
|
+
"app",
|
|
523
|
+
"installer",
|
|
524
|
+
"launcher"
|
|
525
|
+
],
|
|
526
|
+
"type": "string"
|
|
527
|
+
},
|
|
528
|
+
"preInstalledVersion": {
|
|
529
|
+
"type": "string"
|
|
516
530
|
}
|
|
517
531
|
}
|
|
518
532
|
},
|
|
@@ -4501,6 +4515,20 @@
|
|
|
4501
4515
|
},
|
|
4502
4516
|
"staticPerformanceScore": {
|
|
4503
4517
|
"type": "integer"
|
|
4518
|
+
},
|
|
4519
|
+
"preInstalledTime": {
|
|
4520
|
+
"type": "string"
|
|
4521
|
+
},
|
|
4522
|
+
"preInstalledType": {
|
|
4523
|
+
"enum": [
|
|
4524
|
+
"app",
|
|
4525
|
+
"installer",
|
|
4526
|
+
"launcher"
|
|
4527
|
+
],
|
|
4528
|
+
"type": "string"
|
|
4529
|
+
},
|
|
4530
|
+
"preInstalledVersion": {
|
|
4531
|
+
"type": "string"
|
|
4504
4532
|
}
|
|
4505
4533
|
}
|
|
4506
4534
|
},
|
|
@@ -25856,11 +25884,11 @@
|
|
|
25856
25884
|
],
|
|
25857
25885
|
"properties": {
|
|
25858
25886
|
"stateType": {
|
|
25887
|
+
"type": "string",
|
|
25859
25888
|
"enum": [
|
|
25860
25889
|
"start",
|
|
25861
25890
|
"middle"
|
|
25862
|
-
]
|
|
25863
|
-
"type": "string"
|
|
25891
|
+
]
|
|
25864
25892
|
},
|
|
25865
25893
|
"duration": {
|
|
25866
25894
|
"type": "number",
|
|
@@ -11903,11 +11903,11 @@
|
|
|
11903
11903
|
],
|
|
11904
11904
|
"properties": {
|
|
11905
11905
|
"stateType": {
|
|
11906
|
+
"type": "string",
|
|
11906
11907
|
"enum": [
|
|
11907
11908
|
"start",
|
|
11908
11909
|
"middle"
|
|
11909
|
-
]
|
|
11910
|
-
"type": "string"
|
|
11910
|
+
]
|
|
11911
11911
|
},
|
|
11912
11912
|
"duration": {
|
|
11913
11913
|
"type": "number",
|
|
@@ -304,6 +304,9 @@ export interface Event {
|
|
|
304
304
|
vendorId?: string;
|
|
305
305
|
staticPerformanceLevel?: string;
|
|
306
306
|
staticPerformanceScore?: number;
|
|
307
|
+
preInstalledTime?: string;
|
|
308
|
+
preInstalledType?: "app" | "installer" | "launcher";
|
|
309
|
+
preInstalledVersion?: string;
|
|
307
310
|
additionalProperties?: false;
|
|
308
311
|
};
|
|
309
312
|
emmVendorId?: string;
|
|
@@ -2071,6 +2074,9 @@ export interface Event {
|
|
|
2071
2074
|
vendorId?: string;
|
|
2072
2075
|
staticPerformanceLevel?: string;
|
|
2073
2076
|
staticPerformanceScore?: number;
|
|
2077
|
+
preInstalledTime?: string;
|
|
2078
|
+
preInstalledType?: "app" | "installer" | "launcher";
|
|
2079
|
+
preInstalledVersion?: string;
|
|
2074
2080
|
additionalProperties?: false;
|
|
2075
2081
|
};
|
|
2076
2082
|
emmVendorId?: string;
|
|
@@ -18427,6 +18433,9 @@ export interface ClientEvent {
|
|
|
18427
18433
|
vendorId?: string;
|
|
18428
18434
|
staticPerformanceLevel?: string;
|
|
18429
18435
|
staticPerformanceScore?: number;
|
|
18436
|
+
preInstalledTime?: string;
|
|
18437
|
+
preInstalledType?: "app" | "installer" | "launcher";
|
|
18438
|
+
preInstalledVersion?: string;
|
|
18430
18439
|
additionalProperties?: false;
|
|
18431
18440
|
};
|
|
18432
18441
|
emmVendorId?: string;
|
package/package.json
CHANGED