@maxim_mazurok/gapi.client.analyticsadmin-v1alpha 0.2.20260608 → 0.2.20260615
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 +63 -1
- package/package.json +1 -1
- package/readme.md +7 -0
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://analyticsadmin.googleapis.com/$discovery/rest?version=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260615
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -8706,6 +8706,68 @@ declare namespace gapi.client {
|
|
|
8706
8706
|
},
|
|
8707
8707
|
body: GoogleAnalyticsAdminV1alphaGoogleSignalsSettings,
|
|
8708
8708
|
): Request<GoogleAnalyticsAdminV1alphaGoogleSignalsSettings>;
|
|
8709
|
+
/** Updates the reporting identity settings for this property. */
|
|
8710
|
+
updateReportingIdentitySettings(request: {
|
|
8711
|
+
/** V1 error format. */
|
|
8712
|
+
'$.xgafv'?: '1' | '2';
|
|
8713
|
+
/** OAuth access token. */
|
|
8714
|
+
access_token?: string;
|
|
8715
|
+
/** Data format for response. */
|
|
8716
|
+
alt?: 'json' | 'media' | 'proto';
|
|
8717
|
+
/** JSONP */
|
|
8718
|
+
callback?: string;
|
|
8719
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8720
|
+
fields?: string;
|
|
8721
|
+
/** 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. */
|
|
8722
|
+
key?: string;
|
|
8723
|
+
/** Output only. Identifier. Resource name for this reporting identity settings singleton resource. Format: properties/{property_id}/reportingIdentitySettings Example: "properties/1234/reportingIdentitySettings" */
|
|
8724
|
+
name: string;
|
|
8725
|
+
/** OAuth 2.0 token for the current user. */
|
|
8726
|
+
oauth_token?: string;
|
|
8727
|
+
/** Returns response with indentations and line breaks. */
|
|
8728
|
+
prettyPrint?: boolean;
|
|
8729
|
+
/** 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. */
|
|
8730
|
+
quotaUser?: string;
|
|
8731
|
+
/** Optional. The list of fields to be updated. Field names must be in snake case (for example, "field_to_update"). Omitted fields will not be updated. To replace the entire entity, use one path with the string "*" to match all fields. If omitted, the service will treat it as an implied field mask equivalent to all fields that are populated. */
|
|
8732
|
+
updateMask?: string;
|
|
8733
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8734
|
+
upload_protocol?: string;
|
|
8735
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8736
|
+
uploadType?: string;
|
|
8737
|
+
/** Request body */
|
|
8738
|
+
resource: GoogleAnalyticsAdminV1alphaReportingIdentitySettings;
|
|
8739
|
+
}): Request<GoogleAnalyticsAdminV1alphaReportingIdentitySettings>;
|
|
8740
|
+
updateReportingIdentitySettings(
|
|
8741
|
+
request: {
|
|
8742
|
+
/** V1 error format. */
|
|
8743
|
+
'$.xgafv'?: '1' | '2';
|
|
8744
|
+
/** OAuth access token. */
|
|
8745
|
+
access_token?: string;
|
|
8746
|
+
/** Data format for response. */
|
|
8747
|
+
alt?: 'json' | 'media' | 'proto';
|
|
8748
|
+
/** JSONP */
|
|
8749
|
+
callback?: string;
|
|
8750
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8751
|
+
fields?: string;
|
|
8752
|
+
/** 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. */
|
|
8753
|
+
key?: string;
|
|
8754
|
+
/** Output only. Identifier. Resource name for this reporting identity settings singleton resource. Format: properties/{property_id}/reportingIdentitySettings Example: "properties/1234/reportingIdentitySettings" */
|
|
8755
|
+
name: string;
|
|
8756
|
+
/** OAuth 2.0 token for the current user. */
|
|
8757
|
+
oauth_token?: string;
|
|
8758
|
+
/** Returns response with indentations and line breaks. */
|
|
8759
|
+
prettyPrint?: boolean;
|
|
8760
|
+
/** 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. */
|
|
8761
|
+
quotaUser?: string;
|
|
8762
|
+
/** Optional. The list of fields to be updated. Field names must be in snake case (for example, "field_to_update"). Omitted fields will not be updated. To replace the entire entity, use one path with the string "*" to match all fields. If omitted, the service will treat it as an implied field mask equivalent to all fields that are populated. */
|
|
8763
|
+
updateMask?: string;
|
|
8764
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8765
|
+
upload_protocol?: string;
|
|
8766
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8767
|
+
uploadType?: string;
|
|
8768
|
+
},
|
|
8769
|
+
body: GoogleAnalyticsAdminV1alphaReportingIdentitySettings,
|
|
8770
|
+
): Request<GoogleAnalyticsAdminV1alphaReportingIdentitySettings>;
|
|
8709
8771
|
accessBindings: AccessBindingsResource;
|
|
8710
8772
|
adSenseLinks: AdSenseLinksResource;
|
|
8711
8773
|
audiences: AudiencesResource;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -251,6 +251,13 @@ Updates Google Signals settings for a property.
|
|
|
251
251
|
await gapi.client.analyticsadmin.properties.updateGoogleSignalsSettings({
|
|
252
252
|
name: 'name',
|
|
253
253
|
});
|
|
254
|
+
|
|
255
|
+
/*
|
|
256
|
+
Updates the reporting identity settings for this property.
|
|
257
|
+
*/
|
|
258
|
+
await gapi.client.analyticsadmin.properties.updateReportingIdentitySettings({
|
|
259
|
+
name: 'name',
|
|
260
|
+
});
|
|
254
261
|
```
|
|
255
262
|
|
|
256
263
|
For provenance information see [Provenance section on NPM](https://www.npmjs.com/package/@maxim_mazurok/gapi.client.analyticsadmin-v1alpha#Provenance:~:text=none-,Provenance,-Built%20and%20signed)
|