@maxim_mazurok/gapi.client.androidmanagement-v1 0.0.20230724 → 0.0.20230731

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 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://androidmanagement.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20230724
12
+ // Revision: 20230731
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -773,6 +773,9 @@ declare namespace gapi.client {
773
773
  // tslint:disable-next-line:no-empty-interface
774
774
  interface Empty {
775
775
  }
776
+ // tslint:disable-next-line:no-empty-interface
777
+ interface EnrollmentCompleteEvent {
778
+ }
776
779
  interface EnrollmentToken {
777
780
  /**
778
781
  * Optional, arbitrary data associated with the enrollment token. This could contain, for example, the ID of an org unit the device is assigned to after enrollment. After a device
@@ -1854,7 +1857,7 @@ declare namespace gapi.client {
1854
1857
  /** The API level of the Android platform version running on the device. */
1855
1858
  apiLevel?:
1856
1859
  number;
1857
- /** Brand of the device. For example, Google. */
1860
+ /** The brand of the device. For example, Google. */
1858
1861
  brand?:
1859
1862
  string;
1860
1863
  /** The name of the enterprise in the form enterprises/{enterprise}. */
@@ -2176,6 +2179,9 @@ declare namespace gapi.client {
2176
2179
  /** A DNS lookup event was initiated through the standard network stack. Part of NETWORK_ACTIVITY_LOGS. */
2177
2180
  dnsEvent?:
2178
2181
  DnsEvent;
2182
+ /** Device has completed enrollment. Part of AMAPI_LOGS. */
2183
+ enrollmentCompleteEvent?:
2184
+ any;
2179
2185
  /** Unique id of the event. */
2180
2186
  eventId?:
2181
2187
  string;
@@ -4016,7 +4022,7 @@ declare namespace gapi.client {
4016
4022
  WebTokensResource;
4017
4023
  }
4018
4024
  interface ProvisioningInfoResource {
4019
- /** Get the device provisioning info by the identifier provided via the sign-in url. */
4025
+ /** Get the device provisioning information by the identifier provided in the sign-in url. */
4020
4026
  get(request?: {
4021
4027
  /** V1 error format. */
4022
4028
  "$.xgafv"?:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.androidmanagement-v1",
3
- "version": "0.0.20230724",
3
+ "version": "0.0.20230731",
4
4
  "description": "TypeScript typings for Android Management API v1",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -15,6 +15,6 @@
15
15
  "types": "index.d.ts",
16
16
  "dependencies": {
17
17
  "@types/gapi.client": "*",
18
- "@types/gapi.client.discovery": "*"
18
+ "@types/gapi.client.discovery-v1": "*"
19
19
  }
20
20
  }
package/readme.md CHANGED
@@ -92,7 +92,7 @@ Updates an enterprise. See also: SigninDetail
92
92
  await gapi.client.androidmanagement.enterprises.patch({ name: "name", });
93
93
 
94
94
  /*
95
- Get the device provisioning info by the identifier provided via the sign-in url.
95
+ Get the device provisioning information by the identifier provided in the sign-in url.
96
96
  */
97
97
  await gapi.client.androidmanagement.provisioningInfo.get({ name: "name", });
98
98
 
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: 20230724
6
+ // Revision: 20230731
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */
@@ -994,7 +994,7 @@ gapi.load('client', async () => {
994
994
  ],
995
995
  value: "Test string",
996
996
  });
997
- /** Get the device provisioning info by the identifier provided via the sign-in url. */
997
+ /** Get the device provisioning information by the identifier provided in the sign-in url. */
998
998
  await gapi.client.androidmanagement.provisioningInfo.get({
999
999
  name: "Test string",
1000
1000
  });