@maxim_mazurok/gapi.client.analyticsadmin-v1alpha 0.0.20250716 → 0.0.20250723
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 +73 -1
- package/package.json +1 -1
- package/readme.md +5 -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: 20250723
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1308,6 +1308,20 @@ declare namespace gapi.client {
|
|
|
1308
1308
|
/** The conversion value settings for the second postback window. This field should only be configured if there is a need to define different conversion values for this postback window. If enable_postback_window_settings is set to false for this postback window, the values from postback_window_one will be used. */
|
|
1309
1309
|
postbackWindowTwo?: GoogleAnalyticsAdminV1alphaPostbackWindow;
|
|
1310
1310
|
}
|
|
1311
|
+
interface GoogleAnalyticsAdminV1alphaSubmitUserDeletionRequest {
|
|
1312
|
+
/** Firebase [application instance ID](https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.html#getAppInstanceId). */
|
|
1313
|
+
appInstanceId?: string;
|
|
1314
|
+
/** Google Analytics [client ID](https://support.google.com/analytics/answer/11593727). */
|
|
1315
|
+
clientId?: string;
|
|
1316
|
+
/** Google Analytics [user ID](https://firebase.google.com/docs/analytics/userid). */
|
|
1317
|
+
userId?: string;
|
|
1318
|
+
/** [User-provided data](https://support.google.com/analytics/answer/14077171). May contain either one email address or one phone number. Email addresses should be normalized as such: * lowercase * remove periods before @ for gmail.com/googlemail.com addresses * remove all spaces Phone numbers should be normalized as such: * remove all non digit characters * add + prefix */
|
|
1319
|
+
userProvidedData?: string;
|
|
1320
|
+
}
|
|
1321
|
+
interface GoogleAnalyticsAdminV1alphaSubmitUserDeletionResponse {
|
|
1322
|
+
/** Marks the moment for which all visitor data before this point should be deleted. This is set to the time at which the deletion request was received. */
|
|
1323
|
+
deletionRequestTime?: string;
|
|
1324
|
+
}
|
|
1311
1325
|
interface GoogleAnalyticsAdminV1alphaSubpropertyEventFilter {
|
|
1312
1326
|
/** Immutable. Resource name of the Subproperty that uses this filter. */
|
|
1313
1327
|
applyToProperty?: string;
|
|
@@ -8160,6 +8174,64 @@ declare namespace gapi.client {
|
|
|
8160
8174
|
},
|
|
8161
8175
|
body: GoogleAnalyticsAdminV1alphaRunAccessReportRequest,
|
|
8162
8176
|
): Request<GoogleAnalyticsAdminV1alphaRunAccessReportResponse>;
|
|
8177
|
+
/** Submits a request for user deletion for a property. */
|
|
8178
|
+
submitUserDeletion(request: {
|
|
8179
|
+
/** V1 error format. */
|
|
8180
|
+
'$.xgafv'?: string;
|
|
8181
|
+
/** OAuth access token. */
|
|
8182
|
+
access_token?: string;
|
|
8183
|
+
/** Data format for response. */
|
|
8184
|
+
alt?: string;
|
|
8185
|
+
/** JSONP */
|
|
8186
|
+
callback?: string;
|
|
8187
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8188
|
+
fields?: string;
|
|
8189
|
+
/** 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. */
|
|
8190
|
+
key?: string;
|
|
8191
|
+
/** Required. The name of the property to submit user deletion for. */
|
|
8192
|
+
name: string;
|
|
8193
|
+
/** OAuth 2.0 token for the current user. */
|
|
8194
|
+
oauth_token?: string;
|
|
8195
|
+
/** Returns response with indentations and line breaks. */
|
|
8196
|
+
prettyPrint?: boolean;
|
|
8197
|
+
/** 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. */
|
|
8198
|
+
quotaUser?: string;
|
|
8199
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8200
|
+
upload_protocol?: string;
|
|
8201
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8202
|
+
uploadType?: string;
|
|
8203
|
+
/** Request body */
|
|
8204
|
+
resource: GoogleAnalyticsAdminV1alphaSubmitUserDeletionRequest;
|
|
8205
|
+
}): Request<GoogleAnalyticsAdminV1alphaSubmitUserDeletionResponse>;
|
|
8206
|
+
submitUserDeletion(
|
|
8207
|
+
request: {
|
|
8208
|
+
/** V1 error format. */
|
|
8209
|
+
'$.xgafv'?: string;
|
|
8210
|
+
/** OAuth access token. */
|
|
8211
|
+
access_token?: string;
|
|
8212
|
+
/** Data format for response. */
|
|
8213
|
+
alt?: string;
|
|
8214
|
+
/** JSONP */
|
|
8215
|
+
callback?: string;
|
|
8216
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
8217
|
+
fields?: string;
|
|
8218
|
+
/** 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. */
|
|
8219
|
+
key?: string;
|
|
8220
|
+
/** Required. The name of the property to submit user deletion for. */
|
|
8221
|
+
name: string;
|
|
8222
|
+
/** OAuth 2.0 token for the current user. */
|
|
8223
|
+
oauth_token?: string;
|
|
8224
|
+
/** Returns response with indentations and line breaks. */
|
|
8225
|
+
prettyPrint?: boolean;
|
|
8226
|
+
/** 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. */
|
|
8227
|
+
quotaUser?: string;
|
|
8228
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
8229
|
+
upload_protocol?: string;
|
|
8230
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8231
|
+
uploadType?: string;
|
|
8232
|
+
},
|
|
8233
|
+
body: GoogleAnalyticsAdminV1alphaSubmitUserDeletionRequest,
|
|
8234
|
+
): Request<GoogleAnalyticsAdminV1alphaSubmitUserDeletionResponse>;
|
|
8163
8235
|
/** Updates attribution settings on a property. */
|
|
8164
8236
|
updateAttributionSettings(request: {
|
|
8165
8237
|
/** V1 error format. */
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -202,6 +202,11 @@ Returns a customized report of data access records. The report provides records
|
|
|
202
202
|
*/
|
|
203
203
|
await gapi.client.analyticsadmin.properties.runAccessReport({entity: 'entity'});
|
|
204
204
|
|
|
205
|
+
/*
|
|
206
|
+
Submits a request for user deletion for a property.
|
|
207
|
+
*/
|
|
208
|
+
await gapi.client.analyticsadmin.properties.submitUserDeletion({name: 'name'});
|
|
209
|
+
|
|
205
210
|
/*
|
|
206
211
|
Updates attribution settings on a property.
|
|
207
212
|
*/
|