@maxim_mazurok/gapi.client.analyticsadmin-v1alpha 0.0.20240527 → 0.0.20240529
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 +66 -1
- 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://analyticsadmin.googleapis.com/$discovery/rest?version=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240529
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1175,6 +1175,10 @@ declare namespace gapi.client {
|
|
|
1175
1175
|
/** The param to be passed in the ToS link. */
|
|
1176
1176
|
accountTicketId?: string;
|
|
1177
1177
|
}
|
|
1178
|
+
interface GoogleAnalyticsAdminV1alphaReorderEventEditRulesRequest {
|
|
1179
|
+
/** Required. EventEditRule resource names for the specified data stream, in the needed processing order. All EventEditRules for the stream must be present in the list. */
|
|
1180
|
+
eventEditRules?: string[];
|
|
1181
|
+
}
|
|
1178
1182
|
interface GoogleAnalyticsAdminV1alphaRollupPropertySourceLink {
|
|
1179
1183
|
/** Output only. Resource name of this RollupPropertySourceLink. Format: 'properties/{property_id}/rollupPropertySourceLinks/{rollup_property_source_link}' Format: 'properties/123/rollupPropertySourceLinks/456' */
|
|
1180
1184
|
name?: string;
|
|
@@ -4266,6 +4270,66 @@ declare namespace gapi.client {
|
|
|
4266
4270
|
body: GoogleAnalyticsAdminV1alphaEventCreateRule
|
|
4267
4271
|
): Request<GoogleAnalyticsAdminV1alphaEventCreateRule>;
|
|
4268
4272
|
}
|
|
4273
|
+
interface EventEditRulesResource {
|
|
4274
|
+
/** Changes the processing order of event edit rules on the specified stream. */
|
|
4275
|
+
reorder(request: {
|
|
4276
|
+
/** V1 error format. */
|
|
4277
|
+
'$.xgafv'?: string;
|
|
4278
|
+
/** OAuth access token. */
|
|
4279
|
+
access_token?: string;
|
|
4280
|
+
/** Data format for response. */
|
|
4281
|
+
alt?: string;
|
|
4282
|
+
/** JSONP */
|
|
4283
|
+
callback?: string;
|
|
4284
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4285
|
+
fields?: string;
|
|
4286
|
+
/** 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. */
|
|
4287
|
+
key?: string;
|
|
4288
|
+
/** OAuth 2.0 token for the current user. */
|
|
4289
|
+
oauth_token?: string;
|
|
4290
|
+
/** Required. Example format: properties/123/dataStreams/456 */
|
|
4291
|
+
parent: string;
|
|
4292
|
+
/** Returns response with indentations and line breaks. */
|
|
4293
|
+
prettyPrint?: boolean;
|
|
4294
|
+
/** 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. */
|
|
4295
|
+
quotaUser?: string;
|
|
4296
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4297
|
+
upload_protocol?: string;
|
|
4298
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4299
|
+
uploadType?: string;
|
|
4300
|
+
/** Request body */
|
|
4301
|
+
resource: GoogleAnalyticsAdminV1alphaReorderEventEditRulesRequest;
|
|
4302
|
+
}): Request<{}>;
|
|
4303
|
+
reorder(
|
|
4304
|
+
request: {
|
|
4305
|
+
/** V1 error format. */
|
|
4306
|
+
'$.xgafv'?: string;
|
|
4307
|
+
/** OAuth access token. */
|
|
4308
|
+
access_token?: string;
|
|
4309
|
+
/** Data format for response. */
|
|
4310
|
+
alt?: string;
|
|
4311
|
+
/** JSONP */
|
|
4312
|
+
callback?: string;
|
|
4313
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4314
|
+
fields?: string;
|
|
4315
|
+
/** 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. */
|
|
4316
|
+
key?: string;
|
|
4317
|
+
/** OAuth 2.0 token for the current user. */
|
|
4318
|
+
oauth_token?: string;
|
|
4319
|
+
/** Required. Example format: properties/123/dataStreams/456 */
|
|
4320
|
+
parent: string;
|
|
4321
|
+
/** Returns response with indentations and line breaks. */
|
|
4322
|
+
prettyPrint?: boolean;
|
|
4323
|
+
/** 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. */
|
|
4324
|
+
quotaUser?: string;
|
|
4325
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4326
|
+
upload_protocol?: string;
|
|
4327
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4328
|
+
uploadType?: string;
|
|
4329
|
+
},
|
|
4330
|
+
body: GoogleAnalyticsAdminV1alphaReorderEventEditRulesRequest
|
|
4331
|
+
): Request<{}>;
|
|
4332
|
+
}
|
|
4269
4333
|
interface MeasurementProtocolSecretsResource {
|
|
4270
4334
|
/** Creates a measurement protocol secret. */
|
|
4271
4335
|
create(request: {
|
|
@@ -5092,6 +5156,7 @@ declare namespace gapi.client {
|
|
|
5092
5156
|
body: GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings
|
|
5093
5157
|
): Request<GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings>;
|
|
5094
5158
|
eventCreateRules: EventCreateRulesResource;
|
|
5159
|
+
eventEditRules: EventEditRulesResource;
|
|
5095
5160
|
measurementProtocolSecrets: MeasurementProtocolSecretsResource;
|
|
5096
5161
|
sKAdNetworkConversionValueSchema: SKAdNetworkConversionValueSchemaResource;
|
|
5097
5162
|
}
|