@maxim_mazurok/gapi.client.admin-directory_v1 0.0.20230711 → 0.0.20230724
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 +7 -1
- package/package.json +1 -1
- package/tests.ts +3 -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: 20230724
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -425,6 +425,9 @@ declare namespace gapi.client {
|
|
|
425
425
|
/** The unique ID of the Chrome device. */
|
|
426
426
|
deviceId?:
|
|
427
427
|
string;
|
|
428
|
+
/** Output only. Device license type. */
|
|
429
|
+
deviceLicenseType?:
|
|
430
|
+
string;
|
|
428
431
|
/** Reports of disk space and other info about mounted/connected volumes. */
|
|
429
432
|
diskVolumeReports?:
|
|
430
433
|
Array<{
|
|
@@ -3864,6 +3867,9 @@ declare namespace gapi.client {
|
|
|
3864
3867
|
/** The unique ID of the Chrome device. */
|
|
3865
3868
|
deviceId?:
|
|
3866
3869
|
string;
|
|
3870
|
+
/** Output only. Device license type. */
|
|
3871
|
+
deviceLicenseType?:
|
|
3872
|
+
string;
|
|
3867
3873
|
/** Reports of disk space and other info about mounted/connected volumes. */
|
|
3868
3874
|
diskVolumeReports?:
|
|
3869
3875
|
Array<{
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230724
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -406,6 +406,7 @@ gapi.load('client', async () => {
|
|
|
406
406
|
}
|
|
407
407
|
],
|
|
408
408
|
deviceId: "Test string",
|
|
409
|
+
deviceLicenseType: "Test string",
|
|
409
410
|
diskVolumeReports: [
|
|
410
411
|
{
|
|
411
412
|
volumeInfo: [
|
|
@@ -548,6 +549,7 @@ gapi.load('client', async () => {
|
|
|
548
549
|
}
|
|
549
550
|
],
|
|
550
551
|
deviceId: "Test string",
|
|
552
|
+
deviceLicenseType: "Test string",
|
|
551
553
|
diskVolumeReports: [
|
|
552
554
|
{
|
|
553
555
|
volumeInfo: [
|