@maxim_mazurok/gapi.client.firebaseappcheck-v1 0.2.20260626 → 0.2.20260711

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 +18 -209
  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://firebaseappcheck.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20260626
12
+ // Revision: 20260711
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -60,10 +60,6 @@ declare namespace gapi.client {
60
60
  /** RecaptchaV3Configs retrieved. */
61
61
  configs?: GoogleFirebaseAppcheckV1RecaptchaV3Config[];
62
62
  }
63
- interface GoogleFirebaseAppcheckV1BatchGetSafetyNetConfigsResponse {
64
- /** SafetyNetConfigs retrieved. */
65
- configs?: GoogleFirebaseAppcheckV1SafetyNetConfig[];
66
- }
67
63
  interface GoogleFirebaseAppcheckV1BatchUpdateResourcePoliciesRequest {
68
64
  /** Required. The request messages specifying the ResourcePolicy objects to update. A maximum of 100 objects can be updated in a batch. */
69
65
  requests?: GoogleFirebaseAppcheckV1UpdateResourcePolicyRequest[];
@@ -91,7 +87,7 @@ declare namespace gapi.client {
91
87
  etag?: string;
92
88
  /** Required. The relative resource name of the debug token, in the format: ``` projects/{project_number}/apps/{app_id}/debugTokens/{debug_token_id} ``` */
93
89
  name?: string;
94
- /** Required. Input only. Immutable. The secret token itself. Must be provided during creation, and must be a UUID4, case insensitive. This field is immutable once set, and cannot be provided during an UpdateDebugToken request. You can, however, delete this debug token using DeleteDebugToken to revoke it. For security reasons, this field will never be populated in any response. */
90
+ /** Required. Input only. Immutable. The secret token itself. Must be provided during creation, and must be a UUID4, case insensitive. This field is immutable once set, and cannot be provided during a UpdateDebugToken request. You can, however, delete this debug token using DeleteDebugToken to revoke it. For security reasons, this field will never be populated in any response. */
95
91
  token?: string;
96
92
  /** Output only. Timestamp when this debug token was most recently updated. */
97
93
  updateTime?: string;
@@ -137,6 +133,8 @@ declare namespace gapi.client {
137
133
  interface GoogleFirebaseAppcheckV1ExchangeCustomTokenRequest {
138
134
  /** Required. A custom token signed using your project's Admin SDK service account credentials. */
139
135
  customToken?: string;
136
+ /** Optional. When `limited_use` is set to `true`, this field specifies the desired `jti` claim (Section 4.1.7 of RFC 7519) in the returned App Check token. *Limited use* App Check tokens with the same `jti` will be counted as the same token for the purposes of replay protection. An error is returned if this field is specified without setting `limited_use` to `true`. The size of this field is limited to 500 bytes. If specified, its length must be at least 16 bytes. If this field is omitted or is empty and `limited_use` is set to `true`, a randomly generated `jti` claim with length between 16 and 500 bytes (inclusive) will be used in the returned App Check token. Leaving this field empty is only recommended if your custom attestation provider itself is not vulnerable to replay attacks. When `limited_use` is set to `false`, the presence and the contents of the `jti` claim in the returned App Check token are unspecified. To ensure that the returned App Check token is eligible for limited-use functionality, set `limited_use` to `true`. */
137
+ jti?: string;
140
138
  /** Specifies whether this attestation is for use in a *limited use* (`true`) or *session based* (`false`) context. To enable this attestation to be used with the *replay protection* feature, set this to `true`. The default value is `false`. */
141
139
  limitedUse?: boolean;
142
140
  }
@@ -170,10 +168,6 @@ declare namespace gapi.client {
170
168
  /** Required. The reCAPTCHA token as returned by the [reCAPTCHA v3 JavaScript API](https://developers.google.com/recaptcha/docs/v3). */
171
169
  recaptchaV3Token?: string;
172
170
  }
173
- interface GoogleFirebaseAppcheckV1ExchangeSafetyNetTokenRequest {
174
- /** Required. The [SafetyNet attestation response](https://developer.android.com/training/safetynet/attestation#request-attestation-step) issued to your app. */
175
- safetyNetToken?: string;
176
- }
177
171
  interface GoogleFirebaseAppcheckV1GenerateAppAttestChallengeRequest {}
178
172
  interface GoogleFirebaseAppcheckV1GenerateAppAttestChallengeResponse {
179
173
  /** A one-time use challenge for the client to pass to the App Attest API. */
@@ -280,7 +274,7 @@ declare namespace gapi.client {
280
274
  tokenTtl?: string;
281
275
  }
282
276
  interface GoogleFirebaseAppcheckV1ResourcePolicy {
283
- /** Required. The App Check enforcement mode for this resource. This will override the App Check overall EnforcementMode setting on the service. */
277
+ /** Required. The baseline protection EnforcementMode for this resource. This will override the service-level baseline protection EnforcementMode. */
284
278
  enforcementMode?: 'OFF' | 'UNENFORCED' | 'ENFORCED';
285
279
  /** This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding. This etag is strongly validated as defined by RFC 7232. */
286
280
  etag?: string;
@@ -291,32 +285,26 @@ declare namespace gapi.client {
291
285
  /** Output only. Timestamp when this resource policy configuration object was most recently updated. */
292
286
  updateTime?: string;
293
287
  }
294
- interface GoogleFirebaseAppcheckV1SafetyNetConfig {
295
- /** Required. The relative resource name of the SafetyNet configuration object, in the format: ``` projects/{project_number}/apps/{app_id}/safetyNetConfig ``` */
296
- name?: string;
297
- /** Specifies the duration for which App Check tokens exchanged from SafetyNet tokens will be valid. If unset, a default value of 1 hour is assumed. Must be between 30 minutes and 7 days, inclusive. */
298
- tokenTtl?: string;
299
- }
300
288
  interface GoogleFirebaseAppcheckV1Service {
301
- /** Required. The App Check enforcement mode for this service. */
289
+ /** Required. The baseline protection EnforcementMode for this service. */
302
290
  enforcementMode?: 'OFF' | 'UNENFORCED' | 'ENFORCED';
303
291
  /** Optional. This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding. This etag is strongly validated as defined by RFC 7232. */
304
292
  etag?: string;
305
- /** Required. The relative resource name of the service configuration object, in the format: ``` projects/{project_number}/services/{service_id} ``` Note that the `service_id` element must be a supported service ID. Currently, the following service IDs are supported: * `firebasestorage.googleapis.com` (Cloud Storage for Firebase) * `firebasedatabase.googleapis.com` (Firebase Realtime Database) * `firestore.googleapis.com` (Cloud Firestore) * `oauth2.googleapis.com` (Google Identity for iOS) */
293
+ /** Required. The relative resource name of the service configuration object, in the format: ``` projects/{project_number}/services/{service_id} ``` Note that the `service_id` element must be a supported service ID. Currently, the following service IDs are supported. Firebase and Google Cloud services: * `identitytoolkit.googleapis.com` (Firebase Authentication) * `firebasedataconnect.googleapis.com` (Firebase SQL Connect) * `firestore.googleapis.com` (Cloud Firestore) * `firebasedatabase.googleapis.com` (Firebase Realtime Database) * `firebasestorage.googleapis.com` (Cloud Storage for Firebase) * `firebaseml.googleapis.com` (Firebase AI Logic) Google Maps Platform services: * `maps-backend.googleapis.com` (Maps JavaScript API) * `places.googleapis.com` (Places API (New)) Other supported Google services: * `oauth2.googleapis.com` (Google Identity for iOS) */
306
294
  name?: string;
307
- /** Optional. The replay protection enforcement mode for this service. Note that this field cannot be set to a level higher than the overall App Check enforcement mode. For example, if the overall App Check enforcement mode is set to `UNENFORCED`, this field cannot be set to `ENFORCED`. In order to enforce replay protection, you must first enforce App Check. An HTTP 400 error will be returned in this case. By default, this field is set to `OFF`. Setting this field to `UNENFORCED` or `ENFORCED` is considered opting into replay protection. Once opted in, requests to your protected services may experience higher latency. To opt out of replay protection after opting in, set this field to `OFF`. */
295
+ /** Optional. The replay protection EnforcementMode for this service. Note that this field cannot be set to a level higher than that of baseline protection. For example, if the enforcement mode for baseline protection is set to `UNENFORCED`, this field cannot be set to `ENFORCED`. In order to enforce replay protection, you must first enforce App Check's baseline protection. An HTTP 400 error will be returned in this case. By default, this field is set to `OFF`. Setting this field to `UNENFORCED` or `ENFORCED` is considered opting into replay protection. Opting in can impact your requests by adding some latency and sometimes cost (depending on your attestation provider). To opt out of replay protection after opting in, set this field to `OFF`. */
308
296
  replayProtection?: 'OFF' | 'UNENFORCED' | 'ENFORCED';
309
297
  /** Output only. Timestamp when this service configuration object was most recently updated. */
310
298
  updateTime?: string;
311
299
  }
312
300
  interface GoogleFirebaseAppcheckV1UpdateResourcePolicyRequest {
313
- /** Required. The ResourcePolicy to update. The ResourcePolicy's `name` field is used to identify the ResourcePolicy to be updated, in the format: ``` projects/{project_number}/services/{service_id}/resourcePolicies/{resource_policy_id} ``` Note that the `service_id` element must be a supported service ID. Currently, the following service IDs are supported: * `oauth2.googleapis.com` (Google Identity for iOS) */
301
+ /** Required. The ResourcePolicy to update. The ResourcePolicy's `name` field is used to identify the ResourcePolicy to be updated, in the format: ``` projects/{project_number}/services/{service_id}/resourcePolicies/{resource_policy_id} ``` Note that the `service_id` element must be a supported service ID. Consult the ResourcePolicy.name field for a list of supported service IDs. */
314
302
  resourcePolicy?: GoogleFirebaseAppcheckV1ResourcePolicy;
315
303
  /** Required. A comma-separated list of names of fields in the ResourcePolicy to update. Example: `enforcement_mode`. */
316
304
  updateMask?: string;
317
305
  }
318
306
  interface GoogleFirebaseAppcheckV1UpdateServiceRequest {
319
- /** Required. The Service to update. The Service's `name` field is used to identify the Service to be updated, in the format: ``` projects/{project_number}/services/{service_id} ``` Note that the `service_id` element must be a supported service ID. Currently, the following service IDs are supported: * `firebasestorage.googleapis.com` (Cloud Storage for Firebase) * `firebasedatabase.googleapis.com` (Firebase Realtime Database) * `firestore.googleapis.com` (Cloud Firestore) * `oauth2.googleapis.com` (Google Identity for iOS) */
307
+ /** Required. The Service to update. The Service's `name` field is used to identify the Service to be updated, in the format: ``` projects/{project_number}/services/{service_id} ``` Note that the `service_id` element must be a supported service ID. Consult the Service.name field for a list of supported service IDs. */
320
308
  service?: GoogleFirebaseAppcheckV1Service;
321
309
  /** Required. A comma-separated list of names of fields in the Service to update. Example: `enforcement_mode`. */
322
310
  updateMask?: string;
@@ -1331,7 +1319,7 @@ declare namespace gapi.client {
1331
1319
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1332
1320
  uploadType?: string;
1333
1321
  }): Request<GoogleFirebaseAppcheckV1RecaptchaV3Config>;
1334
- /** Updates the RecaptchaV3Config for the specified app. While this configuration is incomplete or invalid, the app will be unable to exchange reCAPTCHA V3 tokens for App Check tokens. For security reasons, the `site_secret` field is never populated in the response. */
1322
+ /** Updates the RecaptchaV3Config for the specified app. While this configuration is incomplete or invalid, the app will be unable to exchange reCAPTCHA v3 tokens for App Check tokens. For security reasons, the `site_secret` field is never populated in the response. */
1335
1323
  patch(request: {
1336
1324
  /** V1 error format. */
1337
1325
  '$.xgafv'?: '1' | '2';
@@ -1394,126 +1382,6 @@ declare namespace gapi.client {
1394
1382
  body: GoogleFirebaseAppcheckV1RecaptchaV3Config,
1395
1383
  ): Request<GoogleFirebaseAppcheckV1RecaptchaV3Config>;
1396
1384
  }
1397
- interface SafetyNetConfigResource {
1398
- /** Atomically gets the SafetyNetConfigs for the specified list of apps. */
1399
- batchGet(request?: {
1400
- /** V1 error format. */
1401
- '$.xgafv'?: '1' | '2';
1402
- /** OAuth access token. */
1403
- access_token?: string;
1404
- /** Data format for response. */
1405
- alt?: 'json' | 'media' | 'proto';
1406
- /** JSONP */
1407
- callback?: string;
1408
- /** Selector specifying which fields to include in a partial response. */
1409
- fields?: string;
1410
- /** 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. */
1411
- key?: string;
1412
- /** Required. The relative resource names of the SafetyNetConfigs to retrieve, in the format ``` projects/{project_number}/apps/{app_id}/safetyNetConfig ``` A maximum of 100 objects can be retrieved in a batch. */
1413
- names?: string | string[];
1414
- /** OAuth 2.0 token for the current user. */
1415
- oauth_token?: string;
1416
- /** Required. The parent project name shared by all SafetyNetConfigs being retrieved, in the format ``` projects/{project_number} ``` The parent collection in the `name` field of any resource being retrieved must match this field, or the entire batch fails. */
1417
- parent: string;
1418
- /** Returns response with indentations and line breaks. */
1419
- prettyPrint?: boolean;
1420
- /** 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. */
1421
- quotaUser?: string;
1422
- /** Upload protocol for media (e.g. "raw", "multipart"). */
1423
- upload_protocol?: string;
1424
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1425
- uploadType?: string;
1426
- }): Request<GoogleFirebaseAppcheckV1BatchGetSafetyNetConfigsResponse>;
1427
- /** Gets the SafetyNetConfig for the specified app. */
1428
- get(request?: {
1429
- /** V1 error format. */
1430
- '$.xgafv'?: '1' | '2';
1431
- /** OAuth access token. */
1432
- access_token?: string;
1433
- /** Data format for response. */
1434
- alt?: 'json' | 'media' | 'proto';
1435
- /** JSONP */
1436
- callback?: string;
1437
- /** Selector specifying which fields to include in a partial response. */
1438
- fields?: string;
1439
- /** 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. */
1440
- key?: string;
1441
- /** Required. The relative resource name of the SafetyNetConfig, in the format: ``` projects/{project_number}/apps/{app_id}/safetyNetConfig ``` */
1442
- name: string;
1443
- /** OAuth 2.0 token for the current user. */
1444
- oauth_token?: string;
1445
- /** Returns response with indentations and line breaks. */
1446
- prettyPrint?: boolean;
1447
- /** 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. */
1448
- quotaUser?: string;
1449
- /** Upload protocol for media (e.g. "raw", "multipart"). */
1450
- upload_protocol?: string;
1451
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1452
- uploadType?: string;
1453
- }): Request<GoogleFirebaseAppcheckV1SafetyNetConfig>;
1454
- /** Updates the SafetyNetConfig for the specified app. While this configuration is incomplete or invalid, the app will be unable to exchange SafetyNet tokens for App Check tokens. */
1455
- patch(request: {
1456
- /** V1 error format. */
1457
- '$.xgafv'?: '1' | '2';
1458
- /** OAuth access token. */
1459
- access_token?: string;
1460
- /** Data format for response. */
1461
- alt?: 'json' | 'media' | 'proto';
1462
- /** JSONP */
1463
- callback?: string;
1464
- /** Selector specifying which fields to include in a partial response. */
1465
- fields?: string;
1466
- /** 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. */
1467
- key?: string;
1468
- /** Required. The relative resource name of the SafetyNet configuration object, in the format: ``` projects/{project_number}/apps/{app_id}/safetyNetConfig ``` */
1469
- name: string;
1470
- /** OAuth 2.0 token for the current user. */
1471
- oauth_token?: string;
1472
- /** Returns response with indentations and line breaks. */
1473
- prettyPrint?: boolean;
1474
- /** 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. */
1475
- quotaUser?: string;
1476
- /** Required. A comma-separated list of names of fields in the SafetyNetConfig to update. Example: `token_ttl`. */
1477
- updateMask?: string;
1478
- /** Upload protocol for media (e.g. "raw", "multipart"). */
1479
- upload_protocol?: string;
1480
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1481
- uploadType?: string;
1482
- /** Request body */
1483
- resource: GoogleFirebaseAppcheckV1SafetyNetConfig;
1484
- }): Request<GoogleFirebaseAppcheckV1SafetyNetConfig>;
1485
- patch(
1486
- request: {
1487
- /** V1 error format. */
1488
- '$.xgafv'?: '1' | '2';
1489
- /** OAuth access token. */
1490
- access_token?: string;
1491
- /** Data format for response. */
1492
- alt?: 'json' | 'media' | 'proto';
1493
- /** JSONP */
1494
- callback?: string;
1495
- /** Selector specifying which fields to include in a partial response. */
1496
- fields?: string;
1497
- /** 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. */
1498
- key?: string;
1499
- /** Required. The relative resource name of the SafetyNet configuration object, in the format: ``` projects/{project_number}/apps/{app_id}/safetyNetConfig ``` */
1500
- name: string;
1501
- /** OAuth 2.0 token for the current user. */
1502
- oauth_token?: string;
1503
- /** Returns response with indentations and line breaks. */
1504
- prettyPrint?: boolean;
1505
- /** 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. */
1506
- quotaUser?: string;
1507
- /** Required. A comma-separated list of names of fields in the SafetyNetConfig to update. Example: `token_ttl`. */
1508
- updateMask?: string;
1509
- /** Upload protocol for media (e.g. "raw", "multipart"). */
1510
- upload_protocol?: string;
1511
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1512
- uploadType?: string;
1513
- },
1514
- body: GoogleFirebaseAppcheckV1SafetyNetConfig,
1515
- ): Request<GoogleFirebaseAppcheckV1SafetyNetConfig>;
1516
- }
1517
1385
  interface AppsResource {
1518
1386
  /** Accepts an App Attest assertion and an artifact previously obtained from ExchangeAppAttestAttestation and verifies those with Apple. If valid, returns an AppCheckToken. */
1519
1387
  exchangeAppAttestAssertion(request: {
@@ -1979,64 +1847,6 @@ declare namespace gapi.client {
1979
1847
  },
1980
1848
  body: GoogleFirebaseAppcheckV1ExchangeRecaptchaV3TokenRequest,
1981
1849
  ): Request<GoogleFirebaseAppcheckV1AppCheckToken>;
1982
- /** Validates a [SafetyNet token](https://developer.android.com/training/safetynet/attestation#request-attestation-step). If valid, returns an AppCheckToken. */
1983
- exchangeSafetyNetToken(request: {
1984
- /** V1 error format. */
1985
- '$.xgafv'?: '1' | '2';
1986
- /** OAuth access token. */
1987
- access_token?: string;
1988
- /** Data format for response. */
1989
- alt?: 'json' | 'media' | 'proto';
1990
- /** Required. The relative resource name of the Android app, in the format: ``` projects/{project_number}/apps/{app_id} ``` If necessary, the `project_number` element can be replaced with the project ID of the Firebase project. Learn more about using project identifiers in Google's [AIP 2510](https://google.aip.dev/cloud/2510) standard. */
1991
- app: string;
1992
- /** JSONP */
1993
- callback?: string;
1994
- /** Selector specifying which fields to include in a partial response. */
1995
- fields?: string;
1996
- /** 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. */
1997
- key?: string;
1998
- /** OAuth 2.0 token for the current user. */
1999
- oauth_token?: string;
2000
- /** Returns response with indentations and line breaks. */
2001
- prettyPrint?: boolean;
2002
- /** 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. */
2003
- quotaUser?: string;
2004
- /** Upload protocol for media (e.g. "raw", "multipart"). */
2005
- upload_protocol?: string;
2006
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2007
- uploadType?: string;
2008
- /** Request body */
2009
- resource: GoogleFirebaseAppcheckV1ExchangeSafetyNetTokenRequest;
2010
- }): Request<GoogleFirebaseAppcheckV1AppCheckToken>;
2011
- exchangeSafetyNetToken(
2012
- request: {
2013
- /** V1 error format. */
2014
- '$.xgafv'?: '1' | '2';
2015
- /** OAuth access token. */
2016
- access_token?: string;
2017
- /** Data format for response. */
2018
- alt?: 'json' | 'media' | 'proto';
2019
- /** Required. The relative resource name of the Android app, in the format: ``` projects/{project_number}/apps/{app_id} ``` If necessary, the `project_number` element can be replaced with the project ID of the Firebase project. Learn more about using project identifiers in Google's [AIP 2510](https://google.aip.dev/cloud/2510) standard. */
2020
- app: string;
2021
- /** JSONP */
2022
- callback?: string;
2023
- /** Selector specifying which fields to include in a partial response. */
2024
- fields?: string;
2025
- /** 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. */
2026
- key?: string;
2027
- /** OAuth 2.0 token for the current user. */
2028
- oauth_token?: string;
2029
- /** Returns response with indentations and line breaks. */
2030
- prettyPrint?: boolean;
2031
- /** 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. */
2032
- quotaUser?: string;
2033
- /** Upload protocol for media (e.g. "raw", "multipart"). */
2034
- upload_protocol?: string;
2035
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2036
- uploadType?: string;
2037
- },
2038
- body: GoogleFirebaseAppcheckV1ExchangeSafetyNetTokenRequest,
2039
- ): Request<GoogleFirebaseAppcheckV1AppCheckToken>;
2040
1850
  /** Generates a challenge that protects the integrity of an immediately following call to ExchangeAppAttestAttestation or ExchangeAppAttestAssertion. A challenge should not be reused for multiple calls. */
2041
1851
  generateAppAttestChallenge(request: {
2042
1852
  /** V1 error format. */
@@ -2159,7 +1969,6 @@ declare namespace gapi.client {
2159
1969
  playIntegrityConfig: PlayIntegrityConfigResource;
2160
1970
  recaptchaEnterpriseConfig: RecaptchaEnterpriseConfigResource;
2161
1971
  recaptchaV3Config: RecaptchaV3ConfigResource;
2162
- safetyNetConfig: SafetyNetConfigResource;
2163
1972
  }
2164
1973
  interface ResourcePoliciesResource {
2165
1974
  /** Atomically updates the specified ResourcePolicy configurations. */
@@ -2236,7 +2045,7 @@ declare namespace gapi.client {
2236
2045
  key?: string;
2237
2046
  /** OAuth 2.0 token for the current user. */
2238
2047
  oauth_token?: string;
2239
- /** Required. The relative resource name of the parent Service in which the specified ResourcePolicy will be created, in the format: ``` projects/{project_number}/services/{service_id} ``` Note that the `service_id` element must be a supported service ID. Currently, the following service IDs are supported: * `oauth2.googleapis.com` (Google Identity for iOS) */
2048
+ /** Required. The relative resource name of the parent Service in which the specified ResourcePolicy will be created, in the format: ``` projects/{project_number}/services/{service_id} ``` Note that the `service_id` element must be a supported service ID. Consult the ResourcePolicy.name field for a list of supported service IDs. */
2240
2049
  parent: string;
2241
2050
  /** Returns response with indentations and line breaks. */
2242
2051
  prettyPrint?: boolean;
@@ -2265,7 +2074,7 @@ declare namespace gapi.client {
2265
2074
  key?: string;
2266
2075
  /** OAuth 2.0 token for the current user. */
2267
2076
  oauth_token?: string;
2268
- /** Required. The relative resource name of the parent Service in which the specified ResourcePolicy will be created, in the format: ``` projects/{project_number}/services/{service_id} ``` Note that the `service_id` element must be a supported service ID. Currently, the following service IDs are supported: * `oauth2.googleapis.com` (Google Identity for iOS) */
2077
+ /** Required. The relative resource name of the parent Service in which the specified ResourcePolicy will be created, in the format: ``` projects/{project_number}/services/{service_id} ``` Note that the `service_id` element must be a supported service ID. Consult the ResourcePolicy.name field for a list of supported service IDs. */
2269
2078
  parent: string;
2270
2079
  /** Returns response with indentations and line breaks. */
2271
2080
  prettyPrint?: boolean;
@@ -2321,7 +2130,7 @@ declare namespace gapi.client {
2321
2130
  fields?: string;
2322
2131
  /** 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. */
2323
2132
  key?: string;
2324
- /** Required. The relative resource name of the ResourcePolicy to retrieve, in the format: ``` projects/{project_number}/services/{service_id}/resourcePolicies/{resource_policy_id} ``` Note that the `service_id` element must be a supported service ID. Currently, the following service IDs are supported: * `oauth2.googleapis.com` (Google Identity for iOS) */
2133
+ /** Required. The relative resource name of the ResourcePolicy to retrieve, in the format: ``` projects/{project_number}/services/{service_id}/resourcePolicies/{resource_policy_id} ``` Note that the `service_id` element must be a supported service ID. Consult the ResourcePolicy.name field for a list of supported service IDs. */
2325
2134
  name: string;
2326
2135
  /** OAuth 2.0 token for the current user. */
2327
2136
  oauth_token?: string;
@@ -2356,7 +2165,7 @@ declare namespace gapi.client {
2356
2165
  pageSize?: number;
2357
2166
  /** Token returned from a previous call to ListResourcePolicies indicating where in the set of ResourcePolicy objects to resume listing. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListResourcePolicies must match the call that provided the page token; if they do not match, the result is undefined. */
2358
2167
  pageToken?: string;
2359
- /** Required. The relative resource name of the parent Service for which to list each associated ResourcePolicy, in the format: ``` projects/{project_number}/services/{service_id} ``` Note that the `service_id` element must be a supported service ID. Currently, the following service IDs are supported: * `oauth2.googleapis.com` (Google Identity for iOS) */
2168
+ /** Required. The relative resource name of the parent Service for which to list each associated ResourcePolicy, in the format: ``` projects/{project_number}/services/{service_id} ``` Note that the `service_id` element must be a supported service ID. Consult the ResourcePolicy.name field for a list of supported service IDs. */
2360
2169
  parent: string;
2361
2170
  /** Returns response with indentations and line breaks. */
2362
2171
  prettyPrint?: boolean;
@@ -2503,7 +2312,7 @@ declare namespace gapi.client {
2503
2312
  fields?: string;
2504
2313
  /** 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. */
2505
2314
  key?: string;
2506
- /** Required. The relative resource name of the Service to retrieve, in the format: ``` projects/{project_number}/services/{service_id} ``` Note that the `service_id` element must be a supported service ID. Currently, the following service IDs are supported: * `firebasestorage.googleapis.com` (Cloud Storage for Firebase) * `firebasedatabase.googleapis.com` (Firebase Realtime Database) * `firestore.googleapis.com` (Cloud Firestore) * `oauth2.googleapis.com` (Google Identity for iOS) */
2315
+ /** Required. The relative resource name of the Service to retrieve, in the format: ``` projects/{project_number}/services/{service_id} ``` Note that the `service_id` element must be a supported service ID. Consult the Service.name field for a list of supported service IDs. */
2507
2316
  name: string;
2508
2317
  /** OAuth 2.0 token for the current user. */
2509
2318
  oauth_token?: string;
@@ -2561,7 +2370,7 @@ declare namespace gapi.client {
2561
2370
  fields?: string;
2562
2371
  /** 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. */
2563
2372
  key?: string;
2564
- /** Required. The relative resource name of the service configuration object, in the format: ``` projects/{project_number}/services/{service_id} ``` Note that the `service_id` element must be a supported service ID. Currently, the following service IDs are supported: * `firebasestorage.googleapis.com` (Cloud Storage for Firebase) * `firebasedatabase.googleapis.com` (Firebase Realtime Database) * `firestore.googleapis.com` (Cloud Firestore) * `oauth2.googleapis.com` (Google Identity for iOS) */
2373
+ /** Required. The relative resource name of the service configuration object, in the format: ``` projects/{project_number}/services/{service_id} ``` Note that the `service_id` element must be a supported service ID. Currently, the following service IDs are supported. Firebase and Google Cloud services: * `identitytoolkit.googleapis.com` (Firebase Authentication) * `firebasedataconnect.googleapis.com` (Firebase SQL Connect) * `firestore.googleapis.com` (Cloud Firestore) * `firebasedatabase.googleapis.com` (Firebase Realtime Database) * `firebasestorage.googleapis.com` (Cloud Storage for Firebase) * `firebaseml.googleapis.com` (Firebase AI Logic) Google Maps Platform services: * `maps-backend.googleapis.com` (Maps JavaScript API) * `places.googleapis.com` (Places API (New)) Other supported Google services: * `oauth2.googleapis.com` (Google Identity for iOS) */
2565
2374
  name: string;
2566
2375
  /** OAuth 2.0 token for the current user. */
2567
2376
  oauth_token?: string;
@@ -2592,7 +2401,7 @@ declare namespace gapi.client {
2592
2401
  fields?: string;
2593
2402
  /** 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. */
2594
2403
  key?: string;
2595
- /** Required. The relative resource name of the service configuration object, in the format: ``` projects/{project_number}/services/{service_id} ``` Note that the `service_id` element must be a supported service ID. Currently, the following service IDs are supported: * `firebasestorage.googleapis.com` (Cloud Storage for Firebase) * `firebasedatabase.googleapis.com` (Firebase Realtime Database) * `firestore.googleapis.com` (Cloud Firestore) * `oauth2.googleapis.com` (Google Identity for iOS) */
2404
+ /** Required. The relative resource name of the service configuration object, in the format: ``` projects/{project_number}/services/{service_id} ``` Note that the `service_id` element must be a supported service ID. Currently, the following service IDs are supported. Firebase and Google Cloud services: * `identitytoolkit.googleapis.com` (Firebase Authentication) * `firebasedataconnect.googleapis.com` (Firebase SQL Connect) * `firestore.googleapis.com` (Cloud Firestore) * `firebasedatabase.googleapis.com` (Firebase Realtime Database) * `firebasestorage.googleapis.com` (Cloud Storage for Firebase) * `firebaseml.googleapis.com` (Firebase AI Logic) Google Maps Platform services: * `maps-backend.googleapis.com` (Maps JavaScript API) * `places.googleapis.com` (Places API (New)) Other supported Google services: * `oauth2.googleapis.com` (Google Identity for iOS) */
2596
2405
  name: string;
2597
2406
  /** OAuth 2.0 token for the current user. */
2598
2407
  oauth_token?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.firebaseappcheck-v1",
3
- "version": "0.2.20260626",
3
+ "version": "0.2.20260711",
4
4
  "description": "TypeScript typings for Firebase App Check API v1",
5
5
  "repository": {
6
6
  "type": "git",