@maxim_mazurok/gapi.client.analyticsadmin-v1beta 0.0.20240528 → 0.0.20240602
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=v1beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240602
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -513,6 +513,10 @@ declare namespace gapi.client {
|
|
|
513
513
|
/** The param to be passed in the ToS link. */
|
|
514
514
|
accountTicketId?: string;
|
|
515
515
|
}
|
|
516
|
+
interface GoogleAnalyticsAdminV1betaReorderEventEditRulesRequest {
|
|
517
|
+
/** 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. */
|
|
518
|
+
eventEditRules?: string[];
|
|
519
|
+
}
|
|
516
520
|
interface GoogleAnalyticsAdminV1betaRunAccessReportRequest {
|
|
517
521
|
/** Date ranges of access records to read. If multiple date ranges are requested, each response row will contain a zero based date range index. If two date ranges overlap, the access records for the overlapping days is included in the response rows for both date ranges. Requests are allowed up to 2 date ranges. */
|
|
518
522
|
dateRanges?: GoogleAnalyticsAdminV1betaAccessDateRange[];
|
|
@@ -1636,6 +1640,66 @@ declare namespace gapi.client {
|
|
|
1636
1640
|
body: GoogleAnalyticsAdminV1betaCustomMetric
|
|
1637
1641
|
): Request<GoogleAnalyticsAdminV1betaCustomMetric>;
|
|
1638
1642
|
}
|
|
1643
|
+
interface EventEditRulesResource {
|
|
1644
|
+
/** Changes the processing order of event edit rules on the specified stream. */
|
|
1645
|
+
reorder(request: {
|
|
1646
|
+
/** V1 error format. */
|
|
1647
|
+
'$.xgafv'?: string;
|
|
1648
|
+
/** OAuth access token. */
|
|
1649
|
+
access_token?: string;
|
|
1650
|
+
/** Data format for response. */
|
|
1651
|
+
alt?: string;
|
|
1652
|
+
/** JSONP */
|
|
1653
|
+
callback?: string;
|
|
1654
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1655
|
+
fields?: string;
|
|
1656
|
+
/** 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. */
|
|
1657
|
+
key?: string;
|
|
1658
|
+
/** OAuth 2.0 token for the current user. */
|
|
1659
|
+
oauth_token?: string;
|
|
1660
|
+
/** Required. Example format: properties/123/dataStreams/456 */
|
|
1661
|
+
parent: string;
|
|
1662
|
+
/** Returns response with indentations and line breaks. */
|
|
1663
|
+
prettyPrint?: boolean;
|
|
1664
|
+
/** 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. */
|
|
1665
|
+
quotaUser?: string;
|
|
1666
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1667
|
+
upload_protocol?: string;
|
|
1668
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1669
|
+
uploadType?: string;
|
|
1670
|
+
/** Request body */
|
|
1671
|
+
resource: GoogleAnalyticsAdminV1betaReorderEventEditRulesRequest;
|
|
1672
|
+
}): Request<{}>;
|
|
1673
|
+
reorder(
|
|
1674
|
+
request: {
|
|
1675
|
+
/** V1 error format. */
|
|
1676
|
+
'$.xgafv'?: string;
|
|
1677
|
+
/** OAuth access token. */
|
|
1678
|
+
access_token?: string;
|
|
1679
|
+
/** Data format for response. */
|
|
1680
|
+
alt?: string;
|
|
1681
|
+
/** JSONP */
|
|
1682
|
+
callback?: string;
|
|
1683
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1684
|
+
fields?: string;
|
|
1685
|
+
/** 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. */
|
|
1686
|
+
key?: string;
|
|
1687
|
+
/** OAuth 2.0 token for the current user. */
|
|
1688
|
+
oauth_token?: string;
|
|
1689
|
+
/** Required. Example format: properties/123/dataStreams/456 */
|
|
1690
|
+
parent: string;
|
|
1691
|
+
/** Returns response with indentations and line breaks. */
|
|
1692
|
+
prettyPrint?: boolean;
|
|
1693
|
+
/** 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. */
|
|
1694
|
+
quotaUser?: string;
|
|
1695
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1696
|
+
upload_protocol?: string;
|
|
1697
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1698
|
+
uploadType?: string;
|
|
1699
|
+
},
|
|
1700
|
+
body: GoogleAnalyticsAdminV1betaReorderEventEditRulesRequest
|
|
1701
|
+
): Request<{}>;
|
|
1702
|
+
}
|
|
1639
1703
|
interface MeasurementProtocolSecretsResource {
|
|
1640
1704
|
/** Creates a measurement protocol secret. */
|
|
1641
1705
|
create(request: {
|
|
@@ -2049,6 +2113,7 @@ declare namespace gapi.client {
|
|
|
2049
2113
|
},
|
|
2050
2114
|
body: GoogleAnalyticsAdminV1betaDataStream
|
|
2051
2115
|
): Request<GoogleAnalyticsAdminV1betaDataStream>;
|
|
2116
|
+
eventEditRules: EventEditRulesResource;
|
|
2052
2117
|
measurementProtocolSecrets: MeasurementProtocolSecretsResource;
|
|
2053
2118
|
}
|
|
2054
2119
|
interface FirebaseLinksResource {
|