@maxim_mazurok/gapi.client.analyticsadmin-v1alpha 0.0.20230228 → 0.0.20230302
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 +7 -5
- package/package.json +1 -1
- package/tests.ts +2 -2
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: 20230302
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -484,6 +484,8 @@ declare namespace gapi.client {
|
|
|
484
484
|
exportStreams?: string[];
|
|
485
485
|
/** If set true, exported data will include advertising identifiers for mobile app streams. */
|
|
486
486
|
includeAdvertisingId?: boolean;
|
|
487
|
+
/** If set true, enables intraday export to the linked Google Cloud project. */
|
|
488
|
+
intradayExportEnabled?: boolean;
|
|
487
489
|
/** Output only. Resource name of this BigQuery link. Format: 'properties/{property_id}/bigQueryLinks/{bigquery_link_id}' Format: 'properties/1234/bigQueryLinks/abc567' */
|
|
488
490
|
name?: string;
|
|
489
491
|
/**
|
|
@@ -563,8 +565,8 @@ declare namespace gapi.client {
|
|
|
563
565
|
interface GoogleAnalyticsAdminV1alphaConnectedSiteTag {
|
|
564
566
|
/** Required. User-provided display name for the connected site tag. Must be less than 256 characters. */
|
|
565
567
|
displayName?: string;
|
|
566
|
-
/** Required.
|
|
567
|
-
|
|
568
|
+
/** Required. "Tag ID to forward events to. Also known as the Measurement ID, or the "G-ID" (For example: G-12345). */
|
|
569
|
+
tagId?: string;
|
|
568
570
|
}
|
|
569
571
|
interface GoogleAnalyticsAdminV1alphaConversionEvent {
|
|
570
572
|
/** Output only. Time when this conversion event was created in the property. */
|
|
@@ -707,13 +709,13 @@ declare namespace gapi.client {
|
|
|
707
709
|
name?: string;
|
|
708
710
|
}
|
|
709
711
|
interface GoogleAnalyticsAdminV1alphaDeleteConnectedSiteTagRequest {
|
|
710
|
-
/** The measurement ID of the tag to remove from the Universal Analytics property. Also known as "G-ID". Example: "G-12345" */
|
|
711
|
-
measurementId?: string;
|
|
712
712
|
/**
|
|
713
713
|
* The Universal Analytics property to delete connected site tags for. This API does not support GA4 properties. Format: properties/{universalAnalyticsPropertyId} Example:
|
|
714
714
|
* properties/1234
|
|
715
715
|
*/
|
|
716
716
|
property?: string;
|
|
717
|
+
/** Tag ID to forward events to. Also known as the Measurement ID, or the "G-ID" (For example: G-12345). */
|
|
718
|
+
tagId?: string;
|
|
717
719
|
}
|
|
718
720
|
interface GoogleAnalyticsAdminV1alphaDeleteUserLinkRequest {
|
|
719
721
|
/** Required. Example format: accounts/1234/userLinks/5678 */
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230302
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -453,8 +453,8 @@ gapi.load('client', async () => {
|
|
|
453
453
|
/** Deletes a connected site tag for a Universal Analytics property. Note: this has no effect on GA4 properties. */
|
|
454
454
|
await gapi.client.analyticsadmin.properties.deleteConnectedSiteTag({
|
|
455
455
|
}, {
|
|
456
|
-
measurementId: "Test string",
|
|
457
456
|
property: "Test string",
|
|
457
|
+
tagId: "Test string",
|
|
458
458
|
});
|
|
459
459
|
/** Fetches the opt out status for the automated GA4 setup process for a UA property. Note: this has no effect on GA4 property. */
|
|
460
460
|
await gapi.client.analyticsadmin.properties.fetchAutomatedGa4ConfigurationOptOut({
|