@maxim_mazurok/gapi.client.analyticsadmin-v1alpha 0.0.20250624 → 0.0.20250629
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 +36 -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: 20250629
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -471,6 +471,8 @@ declare namespace gapi.client {
|
|
|
471
471
|
property?: GoogleAnalyticsAdminV1alphaProperty;
|
|
472
472
|
/** A snapshot of a ReportingDataAnnotation resource in change history. */
|
|
473
473
|
reportingDataAnnotation?: GoogleAnalyticsAdminV1alphaReportingDataAnnotation;
|
|
474
|
+
/** A snapshot of a ReportingIdentitySettings resource in change history. */
|
|
475
|
+
reportingIdentitySettings?: GoogleAnalyticsAdminV1alphaReportingIdentitySettings;
|
|
474
476
|
/** A snapshot of a SearchAds360Link resource in change history. */
|
|
475
477
|
searchAds360Link?: GoogleAnalyticsAdminV1alphaSearchAds360Link;
|
|
476
478
|
/** A snapshot of SKAdNetworkConversionValueSchema resource in change history. */
|
|
@@ -1243,6 +1245,12 @@ declare namespace gapi.client {
|
|
|
1243
1245
|
/** Required. The start date for this range. Must be a valid date with year, month, and day set. The date may be in the past, present, or future. */
|
|
1244
1246
|
startDate?: GoogleTypeDate;
|
|
1245
1247
|
}
|
|
1248
|
+
interface GoogleAnalyticsAdminV1alphaReportingIdentitySettings {
|
|
1249
|
+
/** Output only. Identifier. Resource name for this reporting identity settings singleton resource. Format: properties/{property_id}/reportingIdentitySettings Example: "properties/1234/reportingIdentitySettings" */
|
|
1250
|
+
name?: string;
|
|
1251
|
+
/** The strategy used for identifying user identities in reports. */
|
|
1252
|
+
reportingIdentity?: string;
|
|
1253
|
+
}
|
|
1246
1254
|
interface GoogleAnalyticsAdminV1alphaRollupPropertySourceLink {
|
|
1247
1255
|
/** Output only. Resource name of this RollupPropertySourceLink. Format: 'properties/{property_id}/rollupPropertySourceLinks/{rollup_property_source_link}' Format: 'properties/123/rollupPropertySourceLinks/456' */
|
|
1248
1256
|
name?: string;
|
|
@@ -8153,6 +8161,33 @@ declare namespace gapi.client {
|
|
|
8153
8161
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8154
8162
|
uploadType?: string;
|
|
8155
8163
|
}): Request<GoogleAnalyticsAdminV1alphaGoogleSignalsSettings>;
|
|
8164
|
+
/** Returns the singleton data retention settings for this property. */
|
|
8165
|
+
getReportingIdentitySettings(request?: {
|
|
8166
|
+
/** V1 error format. */
|
|
8167
|
+
'$.xgafv'?: string;
|
|
8168
|
+
/** OAuth access token. */
|
|
8169
|
+
access_token?: string;
|
|
8170
|
+
/** Data format for response. */
|
|
8171
|
+
alt?: string;
|
|
8172
|
+
/** JSONP */
|
|
8173
|
+
callback?: string;
|
|
8174
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8175
|
+
fields?: string;
|
|
8176
|
+
/** 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. */
|
|
8177
|
+
key?: string;
|
|
8178
|
+
/** Required. The name of the settings to lookup. Format: properties/{property}/reportingIdentitySettings Example: "properties/1000/reportingIdentitySettings" */
|
|
8179
|
+
name: string;
|
|
8180
|
+
/** OAuth 2.0 token for the current user. */
|
|
8181
|
+
oauth_token?: string;
|
|
8182
|
+
/** Returns response with indentations and line breaks. */
|
|
8183
|
+
prettyPrint?: boolean;
|
|
8184
|
+
/** 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. */
|
|
8185
|
+
quotaUser?: string;
|
|
8186
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8187
|
+
upload_protocol?: string;
|
|
8188
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8189
|
+
uploadType?: string;
|
|
8190
|
+
}): Request<GoogleAnalyticsAdminV1alphaReportingIdentitySettings>;
|
|
8156
8191
|
/** Returns child Properties under the specified parent Account. Properties will be excluded if the caller does not have access. Soft-deleted (ie: "trashed") properties are excluded by default. Returns an empty list if no relevant properties are found. */
|
|
8157
8192
|
list(request?: {
|
|
8158
8193
|
/** V1 error format. */
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -197,6 +197,13 @@ await gapi.client.analyticsadmin.properties.getGoogleSignalsSettings({
|
|
|
197
197
|
name: 'name',
|
|
198
198
|
});
|
|
199
199
|
|
|
200
|
+
/*
|
|
201
|
+
Returns the singleton data retention settings for this property.
|
|
202
|
+
*/
|
|
203
|
+
await gapi.client.analyticsadmin.properties.getReportingIdentitySettings({
|
|
204
|
+
name: 'name',
|
|
205
|
+
});
|
|
206
|
+
|
|
200
207
|
/*
|
|
201
208
|
Returns child Properties under the specified parent Account. Properties will be excluded if the caller does not have access. Soft-deleted (ie: "trashed") properties are excluded by default. Returns an empty list if no relevant properties are found.
|
|
202
209
|
*/
|