@maxim_mazurok/gapi.client.chromemanagement-v1 0.0.20250729 → 0.0.20250803

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 +76 -1
  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://chromemanagement.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20250729
12
+ // Revision: 20250803
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -1215,6 +1215,14 @@ declare namespace gapi.client {
1215
1215
  /** Total size represents an estimated number of resources returned. Not guaranteed to be accurate above 10k profiles. */
1216
1216
  totalSize?: string;
1217
1217
  }
1218
+ interface GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserRequest {
1219
+ /** Required. Destination organizational unit where the third party chrome profile user will be moved to. */
1220
+ destinationOrgUnit?: string;
1221
+ }
1222
+ interface GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserResponse {
1223
+ /** Output only. The moved third party profile user. */
1224
+ thirdPartyProfileUser?: GoogleChromeManagementVersionsV1ThirdPartyProfileUser;
1225
+ }
1218
1226
  interface GoogleChromeManagementVersionsV1ReportingData {
1219
1227
  /** Output only. Executable path of the installed Chrome browser. A valid path is included only in affiliated profiles. */
1220
1228
  browserExecutablePath?: string;
@@ -1285,6 +1293,12 @@ declare namespace gapi.client {
1285
1293
  /** Output only. The certificate provisioning process. The signature generated by the client will be available in the `signature` field of `CertificateProvisioningProcess`. */
1286
1294
  certificateProvisioningProcess?: GoogleChromeManagementVersionsV1CertificateProvisioningProcess;
1287
1295
  }
1296
+ interface GoogleChromeManagementVersionsV1ThirdPartyProfileUser {
1297
+ /** Identifier. Format: customers/{customer_id}/thirdPartyProfileUsers/{third_party_profile_user_id} */
1298
+ name?: string;
1299
+ /** Output only. The ID of the organizational unit assigned to the user. */
1300
+ orgUnitId?: string;
1301
+ }
1288
1302
  interface GoogleProtobufEmpty {}
1289
1303
  interface GoogleRpcStatus {
1290
1304
  /** The status code, which should be an enum value of google.rpc.Code. */
@@ -2385,11 +2399,72 @@ declare namespace gapi.client {
2385
2399
  notificationConfigs: NotificationConfigsResource;
2386
2400
  users: UsersResource;
2387
2401
  }
2402
+ interface ThirdPartyProfileUsersResource {
2403
+ /** Moves a third party chrome profile user to a destination OU. All profiles associated to that user will be moved to the destination OU. */
2404
+ move(request: {
2405
+ /** V1 error format. */
2406
+ '$.xgafv'?: string;
2407
+ /** OAuth access token. */
2408
+ access_token?: string;
2409
+ /** Data format for response. */
2410
+ alt?: string;
2411
+ /** JSONP */
2412
+ callback?: string;
2413
+ /** Selector specifying which fields to include in a partial response. */
2414
+ fields?: string;
2415
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2416
+ key?: string;
2417
+ /** Required. Format: customers/{customer_id}/thirdPartyProfileUsers/{third_party_profile_user_id} */
2418
+ name: string;
2419
+ /** OAuth 2.0 token for the current user. */
2420
+ oauth_token?: string;
2421
+ /** Returns response with indentations and line breaks. */
2422
+ prettyPrint?: boolean;
2423
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2424
+ quotaUser?: string;
2425
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2426
+ upload_protocol?: string;
2427
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2428
+ uploadType?: string;
2429
+ /** Request body */
2430
+ resource: GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserRequest;
2431
+ }): Request<GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserResponse>;
2432
+ move(
2433
+ request: {
2434
+ /** V1 error format. */
2435
+ '$.xgafv'?: string;
2436
+ /** OAuth access token. */
2437
+ access_token?: string;
2438
+ /** Data format for response. */
2439
+ alt?: string;
2440
+ /** JSONP */
2441
+ callback?: string;
2442
+ /** Selector specifying which fields to include in a partial response. */
2443
+ fields?: string;
2444
+ /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2445
+ key?: string;
2446
+ /** Required. Format: customers/{customer_id}/thirdPartyProfileUsers/{third_party_profile_user_id} */
2447
+ name: string;
2448
+ /** OAuth 2.0 token for the current user. */
2449
+ oauth_token?: string;
2450
+ /** Returns response with indentations and line breaks. */
2451
+ prettyPrint?: boolean;
2452
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
2453
+ quotaUser?: string;
2454
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2455
+ upload_protocol?: string;
2456
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2457
+ uploadType?: string;
2458
+ },
2459
+ body: GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserRequest,
2460
+ ): Request<GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserResponse>;
2461
+ }
2388
2462
  interface CustomersResource {
2389
2463
  apps: AppsResource;
2390
2464
  profiles: ProfilesResource;
2391
2465
  reports: ReportsResource;
2392
2466
  telemetry: TelemetryResource;
2467
+ thirdPartyProfileUsers: ThirdPartyProfileUsersResource;
2393
2468
  }
2394
2469
 
2395
2470
  const customers: CustomersResource;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.chromemanagement-v1",
3
- "version": "0.0.20250729",
3
+ "version": "0.0.20250803",
4
4
  "description": "TypeScript typings for Chrome Management API v1",
5
5
  "repository": {
6
6
  "type": "git",