@maxim_mazurok/gapi.client.admin-directory_v1 0.0.20240429 → 0.0.20240507
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 +13 -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://admin.googleapis.com/$discovery/rest?version=directory_v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240507
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -358,6 +358,8 @@ declare namespace gapi.client {
|
|
|
358
358
|
extendedSupportEnabled?: boolean;
|
|
359
359
|
/** Output only. Date of the device when extended support policy for automatic updates starts. */
|
|
360
360
|
extendedSupportStart?: string;
|
|
361
|
+
/** Output only. Fan information for the device. */
|
|
362
|
+
fanInfo?: FanInfo[];
|
|
361
363
|
/** The Chrome device's firmware version. */
|
|
362
364
|
firmwareVersion?: string;
|
|
363
365
|
/** Date and time for the first time the device was enrolled. */
|
|
@@ -614,6 +616,10 @@ declare namespace gapi.client {
|
|
|
614
616
|
/** Id of a failed printer. */
|
|
615
617
|
printerId?: string;
|
|
616
618
|
}
|
|
619
|
+
interface FanInfo {
|
|
620
|
+
/** Output only. Fan speed in RPM. */
|
|
621
|
+
speedRpm?: number;
|
|
622
|
+
}
|
|
617
623
|
interface Feature {
|
|
618
624
|
/** ETag of the resource. */
|
|
619
625
|
etags?: string;
|
|
@@ -2736,6 +2742,8 @@ declare namespace gapi.client {
|
|
|
2736
2742
|
extendedSupportEnabled?: boolean;
|
|
2737
2743
|
/** Output only. Date of the device when extended support policy for automatic updates starts. */
|
|
2738
2744
|
extendedSupportStart?: string;
|
|
2745
|
+
/** Output only. Fan information for the device. */
|
|
2746
|
+
fanInfo?: FanInfo[];
|
|
2739
2747
|
/** The Chrome device's firmware version. */
|
|
2740
2748
|
firmwareVersion?: string;
|
|
2741
2749
|
/** Date and time for the first time the device was enrolled. */
|
|
@@ -2992,6 +3000,10 @@ declare namespace gapi.client {
|
|
|
2992
3000
|
/** Id of a failed printer. */
|
|
2993
3001
|
printerId?: string;
|
|
2994
3002
|
}
|
|
3003
|
+
interface FanInfo {
|
|
3004
|
+
/** Output only. Fan speed in RPM. */
|
|
3005
|
+
speedRpm?: number;
|
|
3006
|
+
}
|
|
2995
3007
|
interface Feature {
|
|
2996
3008
|
/** ETag of the resource. */
|
|
2997
3009
|
etags?: string;
|