@maxim_mazurok/gapi.client.playdeveloperreporting-v1alpha1 0.0.20230301 → 0.0.20230304

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 +29 -1
  2. package/package.json +1 -1
  3. package/tests.ts +5 -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://playdeveloperreporting.googleapis.com/$discovery/rest?version=v1alpha1
12
- // Revision: 20230301
12
+ // Revision: 20230304
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -181,6 +181,13 @@ declare namespace gapi.client {
181
181
  * the default and only supported timezone is `America/Los_Angeles`.
182
182
  */
183
183
  timelineSpec?: GooglePlayDeveloperReportingV1alpha1TimelineSpec;
184
+ /**
185
+ * User view to select. The output data will correspond to the selected view. **Supported values:** * `OS_PUBLIC` To select data from all publicly released Android versions. This is
186
+ * the default. Supports all the above dimensions. * `APP_TESTERS` To select data from users who have opted in to be testers. Supports all the above dimensions. * `OS_BETA` To select
187
+ * data from beta android versions only, excluding data from released android versions. Only the following dimensions are supported: * `versionCode` (int64): version of the app that
188
+ * was running on the user's device. * `osBuild` (string): OS build of the user's device, e.g., "T1B2.220916.004".
189
+ */
190
+ userCohort?: string;
184
191
  }
185
192
  interface GooglePlayDeveloperReportingV1alpha1QueryAnrRateMetricSetResponse {
186
193
  /** Continuation token to fetch the next page of data. */
@@ -230,6 +237,13 @@ declare namespace gapi.client {
230
237
  * the default and only supported timezone is `America/Los_Angeles`.
231
238
  */
232
239
  timelineSpec?: GooglePlayDeveloperReportingV1alpha1TimelineSpec;
240
+ /**
241
+ * User view to select. The output data will correspond to the selected view. **Supported values:** * `OS_PUBLIC` To select data from all publicly released Android versions. This is
242
+ * the default. Supports all the above dimensions. * `APP_TESTERS` To select data from users who have opted in to be testers. Supports all the above dimensions. * `OS_BETA` To select
243
+ * data from beta android versions only, excluding data from released android versions. Only the following dimensions are supported: * `versionCode` (int64): version of the app that
244
+ * was running on the user's device. * `osBuild` (string): OS build of the user's device, e.g., "T1B2.220916.004".
245
+ */
246
+ userCohort?: string;
233
247
  }
234
248
  interface GooglePlayDeveloperReportingV1alpha1QueryCrashRateMetricSetResponse {
235
249
  /** Continuation token to fetch the next page of data. */
@@ -315,6 +329,13 @@ declare namespace gapi.client {
315
329
  * the only supported timezone is `America/Los_Angeles`.
316
330
  */
317
331
  timelineSpec?: GooglePlayDeveloperReportingV1alpha1TimelineSpec;
332
+ /**
333
+ * User view to select. The output data will correspond to the selected view. **Supported values:** * `OS_PUBLIC` To select data from all publicly released Android versions. This is
334
+ * the default. Supports all the above dimensions. * `APP_TESTERS` To select data from users who have opted in to be testers. Supports all the above dimensions. * `OS_BETA` To select
335
+ * data from beta android versions only, excluding data from released android versions. Only the following dimensions are supported: * `versionCode` (int64): version of the app that
336
+ * was running on the user's device. * `osBuild` (string): OS build of the user's device, e.g., "T1B2.220916.004".
337
+ */
338
+ userCohort?: string;
318
339
  }
319
340
  interface GooglePlayDeveloperReportingV1alpha1QueryExcessiveWakeupRateMetricSetResponse {
320
341
  /** Continuation token to fetch the next page of data. */
@@ -359,6 +380,13 @@ declare namespace gapi.client {
359
380
  * the only supported timezone is `America/Los_Angeles`.
360
381
  */
361
382
  timelineSpec?: GooglePlayDeveloperReportingV1alpha1TimelineSpec;
383
+ /**
384
+ * User view to select. The output data will correspond to the selected view. **Supported values:** * `OS_PUBLIC` To select data from all publicly released Android versions. This is
385
+ * the default. Supports all the above dimensions. * `APP_TESTERS` To select data from users who have opted in to be testers. Supports all the above dimensions. * `OS_BETA` To select
386
+ * data from beta android versions only, excluding data from released android versions. Only the following dimensions are supported: * `versionCode` (int64): version of the app that
387
+ * was running on the user's device. * `osBuild` (string): OS build of the user's device, e.g., "T1B2.220916.004".
388
+ */
389
+ userCohort?: string;
362
390
  }
363
391
  interface GooglePlayDeveloperReportingV1alpha1QueryStuckBackgroundWakelockRateMetricSetResponse {
364
392
  /** Continuation token to fetch the next page of data. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.playdeveloperreporting-v1alpha1",
3
- "version": "0.0.20230301",
3
+ "version": "0.0.20230304",
4
4
  "description": "TypeScript typings for Google Play Developer Reporting API v1alpha1",
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: 20230301
6
+ // Revision: 20230304
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */
@@ -84,6 +84,7 @@ gapi.load('client', async () => {
84
84
  year: 42,
85
85
  },
86
86
  },
87
+ userCohort: "Test string",
87
88
  });
88
89
  /** Describes the properties of the metric set. */
89
90
  await gapi.client.playdeveloperreporting.vitals.crashrate.get({
@@ -133,6 +134,7 @@ gapi.load('client', async () => {
133
134
  year: 42,
134
135
  },
135
136
  },
137
+ userCohort: "Test string",
136
138
  });
137
139
  /** Describes the properties of the metrics set. */
138
140
  await gapi.client.playdeveloperreporting.vitals.errors.counts.get({
@@ -285,6 +287,7 @@ gapi.load('client', async () => {
285
287
  year: 42,
286
288
  },
287
289
  },
290
+ userCohort: "Test string",
288
291
  });
289
292
  /** Describes the properties of the metric set. */
290
293
  await gapi.client.playdeveloperreporting.vitals.stuckbackgroundwakelockrate.get({
@@ -334,6 +337,7 @@ gapi.load('client', async () => {
334
337
  year: 42,
335
338
  },
336
339
  },
340
+ userCohort: "Test string",
337
341
  });
338
342
  }
339
343
  });