@maxim_mazurok/gapi.client.dfareporting-v4 0.0.20220628 → 0.0.20220920

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 +18 -4
  2. package/package.json +1 -1
  3. package/tests.ts +145 -1
package/index.d.ts CHANGED
@@ -10,7 +10,7 @@
10
10
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
11
11
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
12
12
  // Generated from: https://dfareporting.googleapis.com/$discovery/rest?version=v4
13
- // Revision: 20220628
13
+ // Revision: 20220920
14
14
 
15
15
  /// <reference types="gapi.client" />
16
16
 
@@ -1651,7 +1651,7 @@ declare namespace gapi.client {
1651
1651
  interface Dimension {
1652
1652
  /** The kind of resource this is, in this case dfareporting#dimension. */
1653
1653
  kind?: string;
1654
- /** The dimension name, e.g. dfa:advertiser */
1654
+ /** The dimension name, e.g. advertiser */
1655
1655
  name?: string;
1656
1656
  }
1657
1657
  interface DimensionFilter {
@@ -1775,6 +1775,8 @@ declare namespace gapi.client {
1775
1775
  dimensionFilter?: PathReportDimensionValue;
1776
1776
  /** The kind of resource this is, in this case dfareporting#eventFilter. */
1777
1777
  kind?: string;
1778
+ /** Filter on a custom variable. */
1779
+ uvarFilter?: UvarFilter;
1778
1780
  }
1779
1781
  interface EventTag {
1780
1782
  /** Account ID of this event tag. This is a read-only field that can be left blank. */
@@ -3904,6 +3906,18 @@ declare namespace gapi.client {
3904
3906
  /** User role collection. */
3905
3907
  userRoles?: UserRole[];
3906
3908
  }
3909
+ interface UvarFilter {
3910
+ /** Return rows which don't match this filter. */
3911
+ complement?: boolean;
3912
+ /** Custom variable index the filter is applied to. */
3913
+ index?: string;
3914
+ /** The kind of resource this is, in this case dfareporting#uvarFilter. */
3915
+ kind?: string;
3916
+ /** Indicates how the filter should be matched to the values. */
3917
+ match?: string;
3918
+ /** Values to filter on. */
3919
+ values?: string[];
3920
+ }
3907
3921
  interface VideoFormat {
3908
3922
  /** File type of the video format. */
3909
3923
  fileType?: string;
@@ -11851,7 +11865,7 @@ declare namespace gapi.client {
11851
11865
  oauth_token?: string;
11852
11866
  /** Returns response with indentations and line breaks. */
11853
11867
  prettyPrint?: boolean;
11854
- /** The DFA user profile ID. */
11868
+ /** The Campaign Manager 360 user profile ID. */
11855
11869
  profileId: string;
11856
11870
  /** 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. */
11857
11871
  quotaUser?: string;
@@ -11881,7 +11895,7 @@ declare namespace gapi.client {
11881
11895
  oauth_token?: string;
11882
11896
  /** Returns response with indentations and line breaks. */
11883
11897
  prettyPrint?: boolean;
11884
- /** The DFA user profile ID. */
11898
+ /** The Campaign Manager 360 user profile ID. */
11885
11899
  profileId: string;
11886
11900
  /** 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. */
11887
11901
  quotaUser?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.dfareporting-v4",
3
- "version": "0.0.20220628",
3
+ "version": "0.0.20220920",
4
4
  "description": "TypeScript typings for Campaign Manager 360 API v4",
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: 20220628
6
+ // Revision: 20220920
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */
@@ -6181,6 +6181,15 @@ gapi.load('client', async () => {
6181
6181
  ],
6182
6182
  },
6183
6183
  kind: "Test string",
6184
+ uvarFilter: {
6185
+ complement: true,
6186
+ index: "Test string",
6187
+ kind: "Test string",
6188
+ match: "Test string",
6189
+ values: [
6190
+ "Test string"
6191
+ ],
6192
+ },
6184
6193
  }
6185
6194
  ],
6186
6195
  kind: "Test string",
@@ -6231,6 +6240,15 @@ gapi.load('client', async () => {
6231
6240
  ],
6232
6241
  },
6233
6242
  kind: "Test string",
6243
+ uvarFilter: {
6244
+ complement: true,
6245
+ index: "Test string",
6246
+ kind: "Test string",
6247
+ match: "Test string",
6248
+ values: [
6249
+ "Test string"
6250
+ ],
6251
+ },
6234
6252
  }
6235
6253
  ],
6236
6254
  kind: "Test string",
@@ -6271,6 +6289,15 @@ gapi.load('client', async () => {
6271
6289
  ],
6272
6290
  },
6273
6291
  kind: "Test string",
6292
+ uvarFilter: {
6293
+ complement: true,
6294
+ index: "Test string",
6295
+ kind: "Test string",
6296
+ match: "Test string",
6297
+ values: [
6298
+ "Test string"
6299
+ ],
6300
+ },
6274
6301
  }
6275
6302
  ],
6276
6303
  kind: "Test string",
@@ -6321,6 +6348,15 @@ gapi.load('client', async () => {
6321
6348
  ],
6322
6349
  },
6323
6350
  kind: "Test string",
6351
+ uvarFilter: {
6352
+ complement: true,
6353
+ index: "Test string",
6354
+ kind: "Test string",
6355
+ match: "Test string",
6356
+ values: [
6357
+ "Test string"
6358
+ ],
6359
+ },
6324
6360
  }
6325
6361
  ],
6326
6362
  kind: "Test string",
@@ -6683,6 +6719,15 @@ gapi.load('client', async () => {
6683
6719
  ],
6684
6720
  },
6685
6721
  kind: "Test string",
6722
+ uvarFilter: {
6723
+ complement: true,
6724
+ index: "Test string",
6725
+ kind: "Test string",
6726
+ match: "Test string",
6727
+ values: [
6728
+ "Test string"
6729
+ ],
6730
+ },
6686
6731
  }
6687
6732
  ],
6688
6733
  kind: "Test string",
@@ -6733,6 +6778,15 @@ gapi.load('client', async () => {
6733
6778
  ],
6734
6779
  },
6735
6780
  kind: "Test string",
6781
+ uvarFilter: {
6782
+ complement: true,
6783
+ index: "Test string",
6784
+ kind: "Test string",
6785
+ match: "Test string",
6786
+ values: [
6787
+ "Test string"
6788
+ ],
6789
+ },
6736
6790
  }
6737
6791
  ],
6738
6792
  kind: "Test string",
@@ -6773,6 +6827,15 @@ gapi.load('client', async () => {
6773
6827
  ],
6774
6828
  },
6775
6829
  kind: "Test string",
6830
+ uvarFilter: {
6831
+ complement: true,
6832
+ index: "Test string",
6833
+ kind: "Test string",
6834
+ match: "Test string",
6835
+ values: [
6836
+ "Test string"
6837
+ ],
6838
+ },
6776
6839
  }
6777
6840
  ],
6778
6841
  kind: "Test string",
@@ -6823,6 +6886,15 @@ gapi.load('client', async () => {
6823
6886
  ],
6824
6887
  },
6825
6888
  kind: "Test string",
6889
+ uvarFilter: {
6890
+ complement: true,
6891
+ index: "Test string",
6892
+ kind: "Test string",
6893
+ match: "Test string",
6894
+ values: [
6895
+ "Test string"
6896
+ ],
6897
+ },
6826
6898
  }
6827
6899
  ],
6828
6900
  kind: "Test string",
@@ -7182,6 +7254,15 @@ gapi.load('client', async () => {
7182
7254
  ],
7183
7255
  },
7184
7256
  kind: "Test string",
7257
+ uvarFilter: {
7258
+ complement: true,
7259
+ index: "Test string",
7260
+ kind: "Test string",
7261
+ match: "Test string",
7262
+ values: [
7263
+ "Test string"
7264
+ ],
7265
+ },
7185
7266
  }
7186
7267
  ],
7187
7268
  kind: "Test string",
@@ -7232,6 +7313,15 @@ gapi.load('client', async () => {
7232
7313
  ],
7233
7314
  },
7234
7315
  kind: "Test string",
7316
+ uvarFilter: {
7317
+ complement: true,
7318
+ index: "Test string",
7319
+ kind: "Test string",
7320
+ match: "Test string",
7321
+ values: [
7322
+ "Test string"
7323
+ ],
7324
+ },
7235
7325
  }
7236
7326
  ],
7237
7327
  kind: "Test string",
@@ -7272,6 +7362,15 @@ gapi.load('client', async () => {
7272
7362
  ],
7273
7363
  },
7274
7364
  kind: "Test string",
7365
+ uvarFilter: {
7366
+ complement: true,
7367
+ index: "Test string",
7368
+ kind: "Test string",
7369
+ match: "Test string",
7370
+ values: [
7371
+ "Test string"
7372
+ ],
7373
+ },
7275
7374
  }
7276
7375
  ],
7277
7376
  kind: "Test string",
@@ -7322,6 +7421,15 @@ gapi.load('client', async () => {
7322
7421
  ],
7323
7422
  },
7324
7423
  kind: "Test string",
7424
+ uvarFilter: {
7425
+ complement: true,
7426
+ index: "Test string",
7427
+ kind: "Test string",
7428
+ match: "Test string",
7429
+ values: [
7430
+ "Test string"
7431
+ ],
7432
+ },
7325
7433
  }
7326
7434
  ],
7327
7435
  kind: "Test string",
@@ -7674,6 +7782,15 @@ gapi.load('client', async () => {
7674
7782
  ],
7675
7783
  },
7676
7784
  kind: "Test string",
7785
+ uvarFilter: {
7786
+ complement: true,
7787
+ index: "Test string",
7788
+ kind: "Test string",
7789
+ match: "Test string",
7790
+ values: [
7791
+ "Test string"
7792
+ ],
7793
+ },
7677
7794
  }
7678
7795
  ],
7679
7796
  kind: "Test string",
@@ -7724,6 +7841,15 @@ gapi.load('client', async () => {
7724
7841
  ],
7725
7842
  },
7726
7843
  kind: "Test string",
7844
+ uvarFilter: {
7845
+ complement: true,
7846
+ index: "Test string",
7847
+ kind: "Test string",
7848
+ match: "Test string",
7849
+ values: [
7850
+ "Test string"
7851
+ ],
7852
+ },
7727
7853
  }
7728
7854
  ],
7729
7855
  kind: "Test string",
@@ -7764,6 +7890,15 @@ gapi.load('client', async () => {
7764
7890
  ],
7765
7891
  },
7766
7892
  kind: "Test string",
7893
+ uvarFilter: {
7894
+ complement: true,
7895
+ index: "Test string",
7896
+ kind: "Test string",
7897
+ match: "Test string",
7898
+ values: [
7899
+ "Test string"
7900
+ ],
7901
+ },
7767
7902
  }
7768
7903
  ],
7769
7904
  kind: "Test string",
@@ -7814,6 +7949,15 @@ gapi.load('client', async () => {
7814
7949
  ],
7815
7950
  },
7816
7951
  kind: "Test string",
7952
+ uvarFilter: {
7953
+ complement: true,
7954
+ index: "Test string",
7955
+ kind: "Test string",
7956
+ match: "Test string",
7957
+ values: [
7958
+ "Test string"
7959
+ ],
7960
+ },
7817
7961
  }
7818
7962
  ],
7819
7963
  kind: "Test string",