@webex/event-dictionary-ts 1.0.1298 → 1.0.1300
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 +238 -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;
|
|
@@ -6507,6 +6613,14 @@ export interface Event {
|
|
|
6507
6613
|
* Avg of total processing time spent in all servers
|
|
6508
6614
|
*/
|
|
6509
6615
|
totalServerTraversalDelay?: number;
|
|
6616
|
+
/**
|
|
6617
|
+
* avg Time(MS) spent in receiver processing
|
|
6618
|
+
*/
|
|
6619
|
+
receiverTraversalDelay?: number;
|
|
6620
|
+
/**
|
|
6621
|
+
* Avg of RTT/2 between receiver client and server
|
|
6622
|
+
*/
|
|
6623
|
+
receiverTransmitDelay?: number;
|
|
6510
6624
|
additionalProperties?: false;
|
|
6511
6625
|
};
|
|
6512
6626
|
totalHops?: number;
|
|
@@ -6988,6 +7102,14 @@ export interface Event {
|
|
|
6988
7102
|
* Avg of total processing time spent in all servers
|
|
6989
7103
|
*/
|
|
6990
7104
|
totalServerTraversalDelay?: number;
|
|
7105
|
+
/**
|
|
7106
|
+
* avg Time(MS) spent in receiver processing
|
|
7107
|
+
*/
|
|
7108
|
+
receiverTraversalDelay?: number;
|
|
7109
|
+
/**
|
|
7110
|
+
* Avg of RTT/2 between receiver client and server
|
|
7111
|
+
*/
|
|
7112
|
+
receiverTransmitDelay?: number;
|
|
6991
7113
|
additionalProperties?: false;
|
|
6992
7114
|
};
|
|
6993
7115
|
totalHops?: number;
|
|
@@ -7469,6 +7591,14 @@ export interface Event {
|
|
|
7469
7591
|
* Avg of total processing time spent in all servers
|
|
7470
7592
|
*/
|
|
7471
7593
|
totalServerTraversalDelay?: number;
|
|
7594
|
+
/**
|
|
7595
|
+
* avg Time(MS) spent in receiver processing
|
|
7596
|
+
*/
|
|
7597
|
+
receiverTraversalDelay?: number;
|
|
7598
|
+
/**
|
|
7599
|
+
* Avg of RTT/2 between receiver client and server
|
|
7600
|
+
*/
|
|
7601
|
+
receiverTransmitDelay?: number;
|
|
7472
7602
|
additionalProperties?: false;
|
|
7473
7603
|
};
|
|
7474
7604
|
totalHops?: number;
|
|
@@ -11611,6 +11741,44 @@ export interface ClientEvent {
|
|
|
11611
11741
|
cpuBitWidth: number;
|
|
11612
11742
|
additionalProperties?: false;
|
|
11613
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
|
+
};
|
|
11614
11782
|
peripherals?: {
|
|
11615
11783
|
name: "camera" | "microphone" | "speaker";
|
|
11616
11784
|
information: string;
|
|
@@ -14331,6 +14499,52 @@ export interface MediaQualityEvent {
|
|
|
14331
14499
|
cpuBitWidth: number;
|
|
14332
14500
|
additionalProperties?: false;
|
|
14333
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
|
+
};
|
|
14334
14548
|
peripherals?: {
|
|
14335
14549
|
name: "camera" | "microphone" | "speaker";
|
|
14336
14550
|
information: string;
|
|
@@ -15288,6 +15502,14 @@ export interface MediaQualityEvent {
|
|
|
15288
15502
|
* Avg of total processing time spent in all servers
|
|
15289
15503
|
*/
|
|
15290
15504
|
totalServerTraversalDelay?: number;
|
|
15505
|
+
/**
|
|
15506
|
+
* avg Time(MS) spent in receiver processing
|
|
15507
|
+
*/
|
|
15508
|
+
receiverTraversalDelay?: number;
|
|
15509
|
+
/**
|
|
15510
|
+
* Avg of RTT/2 between receiver client and server
|
|
15511
|
+
*/
|
|
15512
|
+
receiverTransmitDelay?: number;
|
|
15291
15513
|
additionalProperties?: false;
|
|
15292
15514
|
};
|
|
15293
15515
|
totalHops?: number;
|
|
@@ -15769,6 +15991,14 @@ export interface MediaQualityEvent {
|
|
|
15769
15991
|
* Avg of total processing time spent in all servers
|
|
15770
15992
|
*/
|
|
15771
15993
|
totalServerTraversalDelay?: number;
|
|
15994
|
+
/**
|
|
15995
|
+
* avg Time(MS) spent in receiver processing
|
|
15996
|
+
*/
|
|
15997
|
+
receiverTraversalDelay?: number;
|
|
15998
|
+
/**
|
|
15999
|
+
* Avg of RTT/2 between receiver client and server
|
|
16000
|
+
*/
|
|
16001
|
+
receiverTransmitDelay?: number;
|
|
15772
16002
|
additionalProperties?: false;
|
|
15773
16003
|
};
|
|
15774
16004
|
totalHops?: number;
|
|
@@ -16250,6 +16480,14 @@ export interface MediaQualityEvent {
|
|
|
16250
16480
|
* Avg of total processing time spent in all servers
|
|
16251
16481
|
*/
|
|
16252
16482
|
totalServerTraversalDelay?: number;
|
|
16483
|
+
/**
|
|
16484
|
+
* avg Time(MS) spent in receiver processing
|
|
16485
|
+
*/
|
|
16486
|
+
receiverTraversalDelay?: number;
|
|
16487
|
+
/**
|
|
16488
|
+
* Avg of RTT/2 between receiver client and server
|
|
16489
|
+
*/
|
|
16490
|
+
receiverTransmitDelay?: number;
|
|
16253
16491
|
additionalProperties?: false;
|
|
16254
16492
|
};
|
|
16255
16493
|
totalHops?: number;
|
package/package.json
CHANGED