@maxim_mazurok/gapi.client.playdeveloperreporting-v1beta1 0.0.20241003 → 0.0.20241006
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 +11 -1
- package/package.json +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://playdeveloperreporting.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20241006
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -104,6 +104,8 @@ declare namespace gapi.client {
|
|
|
104
104
|
name?: string;
|
|
105
105
|
}
|
|
106
106
|
interface GooglePlayDeveloperReportingV1beta1ErrorIssue {
|
|
107
|
+
/** List of annotations for an issue. Annotations provide additional information that may help in diagnosing and fixing the issue. */
|
|
108
|
+
annotations?: GooglePlayDeveloperReportingV1beta1IssueAnnotation[];
|
|
107
109
|
/** Cause of the issue. Depending on the type this can be either: * APPLICATION_NOT_RESPONDING: the type of ANR that occurred, e.g., 'Input dispatching timed out'. * CRASH: for Java unhandled exception errors, the type of the innermost exception that was thrown, e.g., IllegalArgumentException. For signals in native code, the signal that was raised, e.g. SIGSEGV. */
|
|
108
110
|
cause?: string;
|
|
109
111
|
/** An estimate of the number of unique users who have experienced this issue (only considering occurrences matching the filters and within the requested time period). */
|
|
@@ -169,6 +171,14 @@ declare namespace gapi.client {
|
|
|
169
171
|
/** Latest end time for which data is available, for the aggregation period. The time is specified in the metric set's default timezone. *Note:* time ranges in TimelineSpec are represented as `start_time, end_time)`. For example, if the latest available timeline data point for a `DAILY` aggregation period is `2021-06-23 00:00:00 America/Los_Angeles`, the value of this field would be `2021-06-24 00:00:00 America/Los_Angeles` so it can be easily reused in [TimelineSpec.end_time. */
|
|
170
172
|
latestEndTime?: GoogleTypeDateTime;
|
|
171
173
|
}
|
|
174
|
+
interface GooglePlayDeveloperReportingV1beta1IssueAnnotation {
|
|
175
|
+
/** Contains the contents of the annotation message. */
|
|
176
|
+
body?: string;
|
|
177
|
+
/** Category that the annotation belongs to. An annotation will belong to a single category. Example categories: "Potential fix", "Insight". */
|
|
178
|
+
category?: string;
|
|
179
|
+
/** Title for the annotation. */
|
|
180
|
+
title?: string;
|
|
181
|
+
}
|
|
172
182
|
interface GooglePlayDeveloperReportingV1beta1ListAnomaliesResponse {
|
|
173
183
|
/** Anomalies that were found. */
|
|
174
184
|
anomalies?: GooglePlayDeveloperReportingV1beta1Anomaly[];
|
package/package.json
CHANGED