@webex/event-dictionary-ts 1.0.1299 → 1.0.1301
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.
- package/generated/typescript/index.d.ts +190 -0
- package/package.json +1 -1
|
@@ -2703,6 +2703,59 @@ export interface Event {
|
|
|
2703
2703
|
cpuBitWidth: number;
|
|
2704
2704
|
additionalProperties?: false;
|
|
2705
2705
|
};
|
|
2706
|
+
/**
|
|
2707
|
+
* This object defines the device vendor provided battery info related fields that are tracked in media quality events and reports
|
|
2708
|
+
*/
|
|
2709
|
+
batteryInfo?: {
|
|
2710
|
+
/**
|
|
2711
|
+
* Provides insight into charge state on Apple devices. See https://developer.apple.com/documentation/uikit/uidevice/batterystate for more information.
|
|
2712
|
+
*/
|
|
2713
|
+
darwinBatteryState?: "unknown" | "unplugged" | "charging" | "full";
|
|
2714
|
+
/**
|
|
2715
|
+
* Indicates battery health on Android devices. See https://developer.android.com/reference/android/os/BatteryManager for more information.
|
|
2716
|
+
*/
|
|
2717
|
+
androidBatteryHealth?:
|
|
2718
|
+
| "cold"
|
|
2719
|
+
| "dead"
|
|
2720
|
+
| "good"
|
|
2721
|
+
| "overheat"
|
|
2722
|
+
| "overvoltage"
|
|
2723
|
+
| "unknown"
|
|
2724
|
+
| "unspecifiedfailure";
|
|
2725
|
+
/**
|
|
2726
|
+
* Provides visibility in charger type use in Android devices. See https://developer.android.com/reference/android/os/BatteryManager for more information.
|
|
2727
|
+
*/
|
|
2728
|
+
androidBatteryPlugged?: "ac" | "dock" | "usb" | "wireless";
|
|
2729
|
+
/**
|
|
2730
|
+
* Provides visibility into charging status on Android devices. See https://developer.android.com/reference/android/os/BatteryManager for more information.
|
|
2731
|
+
*/
|
|
2732
|
+
androidBatteryStatus?: "charging" | "discharging" | "full" | "notcharging" | "unknown";
|
|
2733
|
+
androidBatteryTemperature?: number;
|
|
2734
|
+
additionalProperties?: false;
|
|
2735
|
+
};
|
|
2736
|
+
/**
|
|
2737
|
+
* This object defines the device vendor provided thermal info related fields that are tracked in media quality events and reports
|
|
2738
|
+
*/
|
|
2739
|
+
thermalInfo?: {
|
|
2740
|
+
/**
|
|
2741
|
+
* Provides visibility of customer experience in limited thermal headroom environments on Apple devices. See https://developer.apple.com/documentation/foundation/processinfo/thermalstate for more information.
|
|
2742
|
+
*/
|
|
2743
|
+
darwinThermalState?: "nominal" | "fair" | "serious" | "critical";
|
|
2744
|
+
androidThermalHeadroom?: number;
|
|
2745
|
+
/**
|
|
2746
|
+
* Indicates thermal status on Android devices. See https://developer.android.com/ndk/reference/group/thermal for more information.
|
|
2747
|
+
*/
|
|
2748
|
+
androidThermalStatus?:
|
|
2749
|
+
| "error"
|
|
2750
|
+
| "none"
|
|
2751
|
+
| "light"
|
|
2752
|
+
| "moderate"
|
|
2753
|
+
| "severe"
|
|
2754
|
+
| "critical"
|
|
2755
|
+
| "emergency"
|
|
2756
|
+
| "shutdown";
|
|
2757
|
+
additionalProperties?: false;
|
|
2758
|
+
};
|
|
2706
2759
|
peripherals?: {
|
|
2707
2760
|
name: "camera" | "microphone" | "speaker";
|
|
2708
2761
|
information: string;
|
|
@@ -5547,6 +5600,59 @@ export interface Event {
|
|
|
5547
5600
|
cpuBitWidth: number;
|
|
5548
5601
|
additionalProperties?: false;
|
|
5549
5602
|
};
|
|
5603
|
+
/**
|
|
5604
|
+
* This object defines the device vendor provided battery info related fields that are tracked in media quality events and reports
|
|
5605
|
+
*/
|
|
5606
|
+
batteryInfo?: {
|
|
5607
|
+
/**
|
|
5608
|
+
* Provides insight into charge state on Apple devices. See https://developer.apple.com/documentation/uikit/uidevice/batterystate for more information.
|
|
5609
|
+
*/
|
|
5610
|
+
darwinBatteryState?: "unknown" | "unplugged" | "charging" | "full";
|
|
5611
|
+
/**
|
|
5612
|
+
* Indicates battery health on Android devices. See https://developer.android.com/reference/android/os/BatteryManager for more information.
|
|
5613
|
+
*/
|
|
5614
|
+
androidBatteryHealth?:
|
|
5615
|
+
| "cold"
|
|
5616
|
+
| "dead"
|
|
5617
|
+
| "good"
|
|
5618
|
+
| "overheat"
|
|
5619
|
+
| "overvoltage"
|
|
5620
|
+
| "unknown"
|
|
5621
|
+
| "unspecifiedfailure";
|
|
5622
|
+
/**
|
|
5623
|
+
* Provides visibility in charger type use in Android devices. See https://developer.android.com/reference/android/os/BatteryManager for more information.
|
|
5624
|
+
*/
|
|
5625
|
+
androidBatteryPlugged?: "ac" | "dock" | "usb" | "wireless";
|
|
5626
|
+
/**
|
|
5627
|
+
* Provides visibility into charging status on Android devices. See https://developer.android.com/reference/android/os/BatteryManager for more information.
|
|
5628
|
+
*/
|
|
5629
|
+
androidBatteryStatus?: "charging" | "discharging" | "full" | "notcharging" | "unknown";
|
|
5630
|
+
androidBatteryTemperature?: number;
|
|
5631
|
+
additionalProperties?: false;
|
|
5632
|
+
};
|
|
5633
|
+
/**
|
|
5634
|
+
* This object defines the device vendor provided thermal info related fields that are tracked in media quality events and reports
|
|
5635
|
+
*/
|
|
5636
|
+
thermalInfo?: {
|
|
5637
|
+
/**
|
|
5638
|
+
* Provides visibility of customer experience in limited thermal headroom environments on Apple devices. See https://developer.apple.com/documentation/foundation/processinfo/thermalstate for more information.
|
|
5639
|
+
*/
|
|
5640
|
+
darwinThermalState?: "nominal" | "fair" | "serious" | "critical";
|
|
5641
|
+
androidThermalHeadroom?: number;
|
|
5642
|
+
/**
|
|
5643
|
+
* Indicates thermal status on Android devices. See https://developer.android.com/ndk/reference/group/thermal for more information.
|
|
5644
|
+
*/
|
|
5645
|
+
androidThermalStatus?:
|
|
5646
|
+
| "error"
|
|
5647
|
+
| "none"
|
|
5648
|
+
| "light"
|
|
5649
|
+
| "moderate"
|
|
5650
|
+
| "severe"
|
|
5651
|
+
| "critical"
|
|
5652
|
+
| "emergency"
|
|
5653
|
+
| "shutdown";
|
|
5654
|
+
additionalProperties?: false;
|
|
5655
|
+
};
|
|
5550
5656
|
peripherals?: {
|
|
5551
5657
|
name: "camera" | "microphone" | "speaker";
|
|
5552
5658
|
information: string;
|
|
@@ -11635,6 +11741,44 @@ export interface ClientEvent {
|
|
|
11635
11741
|
cpuBitWidth: number;
|
|
11636
11742
|
additionalProperties?: false;
|
|
11637
11743
|
};
|
|
11744
|
+
/**
|
|
11745
|
+
* This object defines the device vendor provided battery info related fields that are tracked in media quality events and reports
|
|
11746
|
+
*/
|
|
11747
|
+
batteryInfo?: {
|
|
11748
|
+
/**
|
|
11749
|
+
* Provides insight into charge state on Apple devices. See https://developer.apple.com/documentation/uikit/uidevice/batterystate for more information.
|
|
11750
|
+
*/
|
|
11751
|
+
darwinBatteryState?: "unknown" | "unplugged" | "charging" | "full";
|
|
11752
|
+
/**
|
|
11753
|
+
* Indicates battery health on Android devices. See https://developer.android.com/reference/android/os/BatteryManager for more information.
|
|
11754
|
+
*/
|
|
11755
|
+
androidBatteryHealth?: "cold" | "dead" | "good" | "overheat" | "overvoltage" | "unknown" | "unspecifiedfailure";
|
|
11756
|
+
/**
|
|
11757
|
+
* Provides visibility in charger type use in Android devices. See https://developer.android.com/reference/android/os/BatteryManager for more information.
|
|
11758
|
+
*/
|
|
11759
|
+
androidBatteryPlugged?: "ac" | "dock" | "usb" | "wireless";
|
|
11760
|
+
/**
|
|
11761
|
+
* Provides visibility into charging status on Android devices. See https://developer.android.com/reference/android/os/BatteryManager for more information.
|
|
11762
|
+
*/
|
|
11763
|
+
androidBatteryStatus?: "charging" | "discharging" | "full" | "notcharging" | "unknown";
|
|
11764
|
+
androidBatteryTemperature?: number;
|
|
11765
|
+
additionalProperties?: false;
|
|
11766
|
+
};
|
|
11767
|
+
/**
|
|
11768
|
+
* This object defines the device vendor provided thermal info related fields that are tracked in media quality events and reports
|
|
11769
|
+
*/
|
|
11770
|
+
thermalInfo?: {
|
|
11771
|
+
/**
|
|
11772
|
+
* Provides visibility of customer experience in limited thermal headroom environments on Apple devices. See https://developer.apple.com/documentation/foundation/processinfo/thermalstate for more information.
|
|
11773
|
+
*/
|
|
11774
|
+
darwinThermalState?: "nominal" | "fair" | "serious" | "critical";
|
|
11775
|
+
androidThermalHeadroom?: number;
|
|
11776
|
+
/**
|
|
11777
|
+
* Indicates thermal status on Android devices. See https://developer.android.com/ndk/reference/group/thermal for more information.
|
|
11778
|
+
*/
|
|
11779
|
+
androidThermalStatus?: "error" | "none" | "light" | "moderate" | "severe" | "critical" | "emergency" | "shutdown";
|
|
11780
|
+
additionalProperties?: false;
|
|
11781
|
+
};
|
|
11638
11782
|
peripherals?: {
|
|
11639
11783
|
name: "camera" | "microphone" | "speaker";
|
|
11640
11784
|
information: string;
|
|
@@ -14355,6 +14499,52 @@ export interface MediaQualityEvent {
|
|
|
14355
14499
|
cpuBitWidth: number;
|
|
14356
14500
|
additionalProperties?: false;
|
|
14357
14501
|
};
|
|
14502
|
+
/**
|
|
14503
|
+
* This object defines the device vendor provided battery info related fields that are tracked in media quality events and reports
|
|
14504
|
+
*/
|
|
14505
|
+
batteryInfo?: {
|
|
14506
|
+
/**
|
|
14507
|
+
* Provides insight into charge state on Apple devices. See https://developer.apple.com/documentation/uikit/uidevice/batterystate for more information.
|
|
14508
|
+
*/
|
|
14509
|
+
darwinBatteryState?: "unknown" | "unplugged" | "charging" | "full";
|
|
14510
|
+
/**
|
|
14511
|
+
* Indicates battery health on Android devices. See https://developer.android.com/reference/android/os/BatteryManager for more information.
|
|
14512
|
+
*/
|
|
14513
|
+
androidBatteryHealth?: "cold" | "dead" | "good" | "overheat" | "overvoltage" | "unknown" | "unspecifiedfailure";
|
|
14514
|
+
/**
|
|
14515
|
+
* Provides visibility in charger type use in Android devices. See https://developer.android.com/reference/android/os/BatteryManager for more information.
|
|
14516
|
+
*/
|
|
14517
|
+
androidBatteryPlugged?: "ac" | "dock" | "usb" | "wireless";
|
|
14518
|
+
/**
|
|
14519
|
+
* Provides visibility into charging status on Android devices. See https://developer.android.com/reference/android/os/BatteryManager for more information.
|
|
14520
|
+
*/
|
|
14521
|
+
androidBatteryStatus?: "charging" | "discharging" | "full" | "notcharging" | "unknown";
|
|
14522
|
+
androidBatteryTemperature?: number;
|
|
14523
|
+
additionalProperties?: false;
|
|
14524
|
+
};
|
|
14525
|
+
/**
|
|
14526
|
+
* This object defines the device vendor provided thermal info related fields that are tracked in media quality events and reports
|
|
14527
|
+
*/
|
|
14528
|
+
thermalInfo?: {
|
|
14529
|
+
/**
|
|
14530
|
+
* Provides visibility of customer experience in limited thermal headroom environments on Apple devices. See https://developer.apple.com/documentation/foundation/processinfo/thermalstate for more information.
|
|
14531
|
+
*/
|
|
14532
|
+
darwinThermalState?: "nominal" | "fair" | "serious" | "critical";
|
|
14533
|
+
androidThermalHeadroom?: number;
|
|
14534
|
+
/**
|
|
14535
|
+
* Indicates thermal status on Android devices. See https://developer.android.com/ndk/reference/group/thermal for more information.
|
|
14536
|
+
*/
|
|
14537
|
+
androidThermalStatus?:
|
|
14538
|
+
| "error"
|
|
14539
|
+
| "none"
|
|
14540
|
+
| "light"
|
|
14541
|
+
| "moderate"
|
|
14542
|
+
| "severe"
|
|
14543
|
+
| "critical"
|
|
14544
|
+
| "emergency"
|
|
14545
|
+
| "shutdown";
|
|
14546
|
+
additionalProperties?: false;
|
|
14547
|
+
};
|
|
14358
14548
|
peripherals?: {
|
|
14359
14549
|
name: "camera" | "microphone" | "speaker";
|
|
14360
14550
|
information: string;
|
package/package.json
CHANGED