@webex/event-dictionary-ts 1.0.2130 → 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
  },
@@ -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
@@ -27,5 +27,5 @@
27
27
  "access": "public",
28
28
  "registry": "https://registry.npmjs.org"
29
29
  },
30
- "version": "1.0.2130"
30
+ "version": "1.0.2131"
31
31
  }