@maxim_mazurok/gapi.client.chromemanagement-v1 0.0.20250522 → 0.0.20250526
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/index.d.ts +11 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://chromemanagement.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250526
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -874,6 +874,8 @@ declare namespace gapi.client {
|
|
|
874
874
|
name?: string;
|
|
875
875
|
/** Output only. Payload for network connection state change event. Present only when `event_type` is `NETWORK_STATE_CHANGE`. */
|
|
876
876
|
networkStateChangeEvent?: GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent;
|
|
877
|
+
/** Output only. Payload for OS crash event. Present only when `event_type` is `OS_CRASH`. */
|
|
878
|
+
osCrashEvent?: GoogleChromeManagementV1TelemetryOsCrashEvent;
|
|
877
879
|
/** Timestamp that represents when the event was reported. */
|
|
878
880
|
reportTime?: string;
|
|
879
881
|
/** Output only. Payload for usb peripherals event. Present only when the `event_type` field is either `USB_ADDED` or `USB_REMOVED`. */
|
|
@@ -929,6 +931,14 @@ declare namespace gapi.client {
|
|
|
929
931
|
/** If set, only sends notifications for telemetry data coming from devices owned by users in this org unit. */
|
|
930
932
|
userOrgUnitId?: string;
|
|
931
933
|
}
|
|
934
|
+
interface GoogleChromeManagementV1TelemetryOsCrashEvent {
|
|
935
|
+
/** Crash id. */
|
|
936
|
+
crashId?: string;
|
|
937
|
+
/** Crash type. */
|
|
938
|
+
crashType?: string;
|
|
939
|
+
/** Session type. */
|
|
940
|
+
sessionType?: string;
|
|
941
|
+
}
|
|
932
942
|
interface GoogleChromeManagementV1TelemetryUsbPeripheralsEvent {
|
|
933
943
|
/** List of usb devices that were either added or removed. */
|
|
934
944
|
usbPeripheralReport?: GoogleChromeManagementV1UsbPeripheralReport[];
|