@maxim_mazurok/gapi.client.analyticsadmin-v1alpha 0.0.20221012 → 0.0.20221017

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.
Files changed (3) hide show
  1. package/index.d.ts +65 -1
  2. package/package.json +1 -1
  3. package/tests.ts +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: 20221012
12
+ // Revision: 20221017
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -467,6 +467,8 @@ declare namespace gapi.client {
467
467
  displayVideo360AdvertiserLink?: GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink;
468
468
  /** A snapshot of a DisplayVideo360AdvertiserLinkProposal resource in change history. */
469
469
  displayVideo360AdvertiserLinkProposal?: GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal;
470
+ /** A snapshot of an ExpandedDataSet resource in change history. */
471
+ expandedDataSet?: GoogleAnalyticsAdminV1alphaExpandedDataSet;
470
472
  /** A snapshot of a FirebaseLink resource in change history. */
471
473
  firebaseLink?: GoogleAnalyticsAdminV1alphaFirebaseLink;
472
474
  /** A snapshot of a GoogleAdsLink resource in change history. */
@@ -682,6 +684,68 @@ declare namespace gapi.client {
682
684
  */
683
685
  validationEmail?: string;
684
686
  }
687
+ interface GoogleAnalyticsAdminV1alphaExpandedDataSet {
688
+ /** Output only. Time when expanded data set began (or will begin) collecing data. */
689
+ dataCollectionStartTime?: string;
690
+ /** Optional. The description of the ExpandedDataSet. Max 50 chars. */
691
+ description?: string;
692
+ /**
693
+ * Immutable. A logical expression of ExpandedDataSet filters applied to dimension included in the ExpandedDataSet. This filter is used to reduce the number of rows and thus the change
694
+ * of encountering `other row`.
695
+ */
696
+ dimensionFilterExpression?: GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression;
697
+ /**
698
+ * Immutable. The list of dimensions included in the ExpandedDataSet. See the [API
699
+ * Dimensions](https://developers.google.com/analytics/devguides/reporting/data/v1/api-schema#dimensions) for the list of dimension names.
700
+ */
701
+ dimensionNames?: string[];
702
+ /** Required. The display name of the ExpandedDataSet. Max 200 chars. */
703
+ displayName?: string;
704
+ /**
705
+ * Immutable. The list of metrics included in the ExpandedDataSet. See the [API Metrics](https://developers.google.com/analytics/devguides/reporting/data/v1/api-schema#metrics) for the
706
+ * list of dimension names.
707
+ */
708
+ metricNames?: string[];
709
+ /** Output only. The resource name for this ExpandedDataSet resource. Format: properties/{property_id}/expandedDataSets/{expanded_data_set} */
710
+ name?: string;
711
+ }
712
+ interface GoogleAnalyticsAdminV1alphaExpandedDataSetFilter {
713
+ /** Required. The dimension name to filter. */
714
+ fieldName?: string;
715
+ /** A filter for a string dimension that matches a particular list of options. */
716
+ inListFilter?: GoogleAnalyticsAdminV1alphaExpandedDataSetFilterInListFilter;
717
+ /** A filter for a string-type dimension that matches a particular pattern. */
718
+ stringFilter?: GoogleAnalyticsAdminV1alphaExpandedDataSetFilterStringFilter;
719
+ }
720
+ interface GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression {
721
+ /**
722
+ * A list of expressions to be AND’ed together. It must contain a ExpandedDataSetFilterExpression with either not_expression or dimension_filter. This must be set for the top level
723
+ * ExpandedDataSetFilterExpression.
724
+ */
725
+ andGroup?: GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpressionList;
726
+ /** A filter on a single dimension. This cannot be set on the top level ExpandedDataSetFilterExpression. */
727
+ filter?: GoogleAnalyticsAdminV1alphaExpandedDataSetFilter;
728
+ /** A filter expression to be NOT'ed (i.e., inverted, complemented). It must include a dimension_filter. This cannot be set on the top level ExpandedDataSetFilterExpression. */
729
+ notExpression?: GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression;
730
+ }
731
+ interface GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpressionList {
732
+ /** A list of ExpandedDataSet filter expressions. */
733
+ filterExpressions?: GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression[];
734
+ }
735
+ interface GoogleAnalyticsAdminV1alphaExpandedDataSetFilterInListFilter {
736
+ /** Optional. If true, the match is case-sensitive. If false, the match is case-insensitive. Must be true. */
737
+ caseSensitive?: boolean;
738
+ /** Required. The list of possible string values to match against. Must be non-empty. */
739
+ values?: string[];
740
+ }
741
+ interface GoogleAnalyticsAdminV1alphaExpandedDataSetFilterStringFilter {
742
+ /** Optional. If true, the match is case-sensitive. If false, the match is case-insensitive. Must be true when match_type is EXACT. Must be false when match_type is CONTAINS. */
743
+ caseSensitive?: boolean;
744
+ /** Required. The match type for the string filter. */
745
+ matchType?: string;
746
+ /** Required. The string value to be matched against. */
747
+ value?: string;
748
+ }
685
749
  interface GoogleAnalyticsAdminV1alphaFirebaseLink {
686
750
  /** Output only. Time when this FirebaseLink was originally created. */
687
751
  createTime?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.analyticsadmin-v1alpha",
3
- "version": "0.0.20221012",
3
+ "version": "0.0.20221017",
4
4
  "description": "TypeScript typings for Google Analytics Admin API v1alpha",
5
5
  "license": "MIT",
6
6
  "author": {
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: 20221012
6
+ // Revision: 20221017
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */