@maxim_mazurok/gapi.client.playdeveloperreporting-v1beta1 0.0.20230228 → 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=v1beta1
12
- // Revision: 20230228
12
+ // Revision: 20230304
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -141,6 +141,13 @@ declare namespace gapi.client {
141
141
  * the default and only supported timezone is `America/Los_Angeles`.
142
142
  */
143
143
  timelineSpec?: GooglePlayDeveloperReportingV1beta1TimelineSpec;
144
+ /**
145
+ * 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
146
+ * 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
147
+ * 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
148
+ * was running on the user's device. * `osBuild` (string): OS build of the user's device, e.g., "T1B2.220916.004".
149
+ */
150
+ userCohort?: string;
144
151
  }
145
152
  interface GooglePlayDeveloperReportingV1beta1QueryAnrRateMetricSetResponse {
146
153
  /** Continuation token to fetch the next page of data. */
@@ -190,6 +197,13 @@ declare namespace gapi.client {
190
197
  * the default and only supported timezone is `America/Los_Angeles`.
191
198
  */
192
199
  timelineSpec?: GooglePlayDeveloperReportingV1beta1TimelineSpec;
200
+ /**
201
+ * 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
202
+ * 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
203
+ * 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
204
+ * was running on the user's device. * `osBuild` (string): OS build of the user's device, e.g., "T1B2.220916.004".
205
+ */
206
+ userCohort?: string;
193
207
  }
194
208
  interface GooglePlayDeveloperReportingV1beta1QueryCrashRateMetricSetResponse {
195
209
  /** Continuation token to fetch the next page of data. */
@@ -234,6 +248,13 @@ declare namespace gapi.client {
234
248
  * the only supported timezone is `America/Los_Angeles`.
235
249
  */
236
250
  timelineSpec?: GooglePlayDeveloperReportingV1beta1TimelineSpec;
251
+ /**
252
+ * 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
253
+ * 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
254
+ * 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
255
+ * was running on the user's device. * `osBuild` (string): OS build of the user's device, e.g., "T1B2.220916.004".
256
+ */
257
+ userCohort?: string;
237
258
  }
238
259
  interface GooglePlayDeveloperReportingV1beta1QueryExcessiveWakeupRateMetricSetResponse {
239
260
  /** Continuation token to fetch the next page of data. */
@@ -278,6 +299,13 @@ declare namespace gapi.client {
278
299
  * the only supported timezone is `America/Los_Angeles`.
279
300
  */
280
301
  timelineSpec?: GooglePlayDeveloperReportingV1beta1TimelineSpec;
302
+ /**
303
+ * 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
304
+ * 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
305
+ * 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
306
+ * was running on the user's device. * `osBuild` (string): OS build of the user's device, e.g., "T1B2.220916.004".
307
+ */
308
+ userCohort?: string;
281
309
  }
282
310
  interface GooglePlayDeveloperReportingV1beta1QueryStuckBackgroundWakelockRateMetricSetResponse {
283
311
  /** 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-v1beta1",
3
- "version": "0.0.20230228",
3
+ "version": "0.0.20230304",
4
4
  "description": "TypeScript typings for Google Play Developer Reporting API v1beta1",
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: 20230228
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 metric set. */
138
140
  await gapi.client.playdeveloperreporting.vitals.excessivewakeuprate.get({
@@ -182,6 +184,7 @@ gapi.load('client', async () => {
182
184
  year: 42,
183
185
  },
184
186
  },
187
+ userCohort: "Test string",
185
188
  });
186
189
  /** Describes the properties of the metric set. */
187
190
  await gapi.client.playdeveloperreporting.vitals.stuckbackgroundwakelockrate.get({
@@ -231,6 +234,7 @@ gapi.load('client', async () => {
231
234
  year: 42,
232
235
  },
233
236
  },
237
+ userCohort: "Test string",
234
238
  });
235
239
  }
236
240
  });