@maxim_mazurok/gapi.client.androidmanagement-v1 0.0.20250430 → 0.0.20250501

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.
Files changed (2) hide show
  1. package/index.d.ts +30 -2
  2. 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://androidmanagement.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20250430
12
+ // Revision: 20250501
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -296,10 +296,14 @@ declare namespace gapi.client {
296
296
  createTime?: string;
297
297
  /** The duration for which the command is valid. The command will expire if not executed by the device during this time. The default duration if unspecified is ten minutes. There is no maximum duration. */
298
298
  duration?: string;
299
- /** If the command failed, an error code explaining the failure. This is not set when the command is cancelled by the caller. */
299
+ /** If the command failed, an error code explaining the failure. This is not set when the command is cancelled by the caller. For reasoning about command errors, prefer fields in the following order (most preferred first): 1. Command-specific fields like clearAppsDataStatus, startLostModeStatus, or similar, if they exist. 2. This field, if set. 3. The generic error field in the Operation that wraps the command. */
300
300
  errorCode?: string;
301
301
  /** For commands of type RESET_PASSWORD, optionally specifies the new password. Note: The new password must be at least 6 characters long if it is numeric in case of Android 14 devices. Else the command will fail with INVALID_VALUE. */
302
302
  newPassword?: string;
303
+ /** Optional. Parameters for the REQUEST_DEVICE_INFO command to get device related information. If this is set, then it is suggested that type should not be set. In this case, the server automatically sets it to REQUEST_DEVICE_INFO . It is also acceptable to explicitly set type to REQUEST_DEVICE_INFO. */
304
+ requestDeviceInfoParams?: RequestDeviceInfoParams;
305
+ /** Output only. Status of the REQUEST_DEVICE_INFO command. */
306
+ requestDeviceInfoStatus?: RequestDeviceInfoStatus;
303
307
  /** For commands of type RESET_PASSWORD, optionally specifies flags. */
304
308
  resetPasswordFlags?: string[];
305
309
  /** Parameters for the START_LOST_MODE command to put the device into lost mode. See StartLostModeParams. If this is set, then it is suggested that type should not be set. In this case, the server automatically sets it to START_LOST_MODE. It is also acceptable to explicitly set type to START_LOST_MODE. */
@@ -543,6 +547,14 @@ declare namespace gapi.client {
543
547
  /** Output only. If this device was migrated from another DPC, this is its package name. Not populated otherwise. */
544
548
  previousDpc?: string;
545
549
  }
550
+ interface Eid {
551
+ /** Output only. The EID */
552
+ eid?: string;
553
+ }
554
+ interface EidInfo {
555
+ /** Output only. EID information for each eUICC chip. */
556
+ eids?: Eid[];
557
+ }
546
558
  interface Empty {}
547
559
  interface EnrollmentCompleteEvent {}
548
560
  interface EnrollmentToken {
@@ -603,6 +615,10 @@ declare namespace gapi.client {
603
615
  /** Output only. The upgrade state of the enterprise. */
604
616
  upgradeState?: string;
605
617
  }
618
+ interface EuiccChipInfo {
619
+ /** Output only. The Embedded Identity Document (EID) that identifies the eUICC chip for each eUICC chip on the device. This is available on company owned devices running Android 13 and above. */
620
+ eid?: string;
621
+ }
606
622
  interface ExtensionConfig {
607
623
  /** Fully qualified class name of the receiver service class for Android Device Policy to notify the extension app of any local command status updates. */
608
624
  notificationReceiver?: string;
@@ -658,6 +674,8 @@ declare namespace gapi.client {
658
674
  deviceBasebandVersion?: string;
659
675
  /** Output only. ID that uniquely identifies a personally-owned device in a particular organization. On the same physical device when enrolled with the same organization, this ID persists across setups and even factory resets. This ID is available on personally-owned devices with a work profile on devices running Android 12 and above. */
660
676
  enterpriseSpecificId?: string;
677
+ /** Output only. Information related to the eUICC chip. */
678
+ euiccChipInfo?: EuiccChipInfo[];
661
679
  /** GPU shutdown temperature thresholds in Celsius for each GPU on the device. */
662
680
  gpuShutdownTemperatures?: number[];
663
681
  /** GPU throttling temperature thresholds in Celsius for each GPU on the device. */
@@ -1305,6 +1323,16 @@ declare namespace gapi.client {
1305
1323
  /** User ID in which the change was requested in. */
1306
1324
  targetUserId?: number;
1307
1325
  }
1326
+ interface RequestDeviceInfoParams {
1327
+ /** Required. Type of device information to be requested. */
1328
+ deviceInfo?: string;
1329
+ }
1330
+ interface RequestDeviceInfoStatus {
1331
+ /** Information related to the EIDs of the device. */
1332
+ eidInfo?: EidInfo;
1333
+ /** Output only. Status of a REQUEST_DEVICE_INFO command. */
1334
+ status?: string;
1335
+ }
1308
1336
  interface ScreenBrightnessSettings {
1309
1337
  /** Optional. The screen brightness between 1 and 255 where 1 is the lowest and 255 is the highest brightness. A value of 0 (default) means no screen brightness set. Any other value is rejected. screenBrightnessMode must be either BRIGHTNESS_AUTOMATIC or BRIGHTNESS_FIXED to set this. Supported on Android 9 and above on fully managed devices. A NonComplianceDetail with API_LEVEL is reported if the Android version is less than 9. Supported on work profiles on company-owned devices on Android 15 and above. */
1310
1338
  screenBrightness?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.androidmanagement-v1",
3
- "version": "0.0.20250430",
3
+ "version": "0.0.20250501",
4
4
  "description": "TypeScript typings for Android Management API v1",
5
5
  "repository": {
6
6
  "type": "git",