Skip to content

Commit 0d6025e

Browse files
feat(playdeveloperreporting): update the API
#### playdeveloperreporting:v1alpha1 The following keys were added: - schemas.GooglePlayDeveloperReportingV1alpha1ErrorIssue.properties.annotations.description - schemas.GooglePlayDeveloperReportingV1alpha1ErrorIssue.properties.annotations.items.$ref - schemas.GooglePlayDeveloperReportingV1alpha1ErrorIssue.properties.annotations.type - schemas.GooglePlayDeveloperReportingV1alpha1IssueAnnotation.description - schemas.GooglePlayDeveloperReportingV1alpha1IssueAnnotation.id - schemas.GooglePlayDeveloperReportingV1alpha1IssueAnnotation.properties.body.description - schemas.GooglePlayDeveloperReportingV1alpha1IssueAnnotation.properties.body.type - schemas.GooglePlayDeveloperReportingV1alpha1IssueAnnotation.properties.category.description - schemas.GooglePlayDeveloperReportingV1alpha1IssueAnnotation.properties.category.type - schemas.GooglePlayDeveloperReportingV1alpha1IssueAnnotation.properties.title.description - schemas.GooglePlayDeveloperReportingV1alpha1IssueAnnotation.properties.title.type - schemas.GooglePlayDeveloperReportingV1alpha1IssueAnnotation.type #### playdeveloperreporting:v1beta1 The following keys were added: - schemas.GooglePlayDeveloperReportingV1beta1ErrorIssue.properties.annotations.description - schemas.GooglePlayDeveloperReportingV1beta1ErrorIssue.properties.annotations.items.$ref - schemas.GooglePlayDeveloperReportingV1beta1ErrorIssue.properties.annotations.type - schemas.GooglePlayDeveloperReportingV1beta1IssueAnnotation.description - schemas.GooglePlayDeveloperReportingV1beta1IssueAnnotation.id - schemas.GooglePlayDeveloperReportingV1beta1IssueAnnotation.properties.body.description - schemas.GooglePlayDeveloperReportingV1beta1IssueAnnotation.properties.body.type - schemas.GooglePlayDeveloperReportingV1beta1IssueAnnotation.properties.category.description - schemas.GooglePlayDeveloperReportingV1beta1IssueAnnotation.properties.category.type - schemas.GooglePlayDeveloperReportingV1beta1IssueAnnotation.properties.title.description - schemas.GooglePlayDeveloperReportingV1beta1IssueAnnotation.properties.title.type - schemas.GooglePlayDeveloperReportingV1beta1IssueAnnotation.type
1 parent c8e58c5 commit 0d6025e

File tree

4 files changed

+96
-2
lines changed

4 files changed

+96
-2
lines changed

discovery/playdeveloperreporting-v1alpha1.json

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,7 @@
947947
}
948948
}
949949
},
950-
"revision": "20240926",
950+
"revision": "20241009",
951951
"rootUrl": "https://playdeveloperreporting.googleapis.com/",
952952
"schemas": {
953953
"GooglePlayDeveloperReportingV1alpha1Anomaly": {
@@ -1133,6 +1133,13 @@
11331133
"description": "A group of related ErrorReports received for an app. Similar error reports are grouped together into issues with a likely identical root cause. **Please note:** this resource is currently in Alpha. There could be changes to the issue grouping that would result in similar but more recent error reports being assigned to different issues. This could also cause some issues disappearing entirely and being replaced by new ones. **Required permissions**: to access this resource, the calling user needs the _View app information (read-only)_ permission for the app.",
11341134
"id": "GooglePlayDeveloperReportingV1alpha1ErrorIssue",
11351135
"properties": {
1136+
"annotations": {
1137+
"description": "List of annotations for an issue. Annotations provide additional information that may help in diagnosing and fixing the issue.",
1138+
"items": {
1139+
"$ref": "GooglePlayDeveloperReportingV1alpha1IssueAnnotation"
1140+
},
1141+
"type": "array"
1142+
},
11361143
"cause": {
11371144
"description": "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.",
11381145
"type": "string"
@@ -1323,6 +1330,25 @@
13231330
},
13241331
"type": "object"
13251332
},
1333+
"GooglePlayDeveloperReportingV1alpha1IssueAnnotation": {
1334+
"description": "Representation of an annotation message for an issue.",
1335+
"id": "GooglePlayDeveloperReportingV1alpha1IssueAnnotation",
1336+
"properties": {
1337+
"body": {
1338+
"description": "Contains the contents of the annotation message.",
1339+
"type": "string"
1340+
},
1341+
"category": {
1342+
"description": "Category that the annotation belongs to. An annotation will belong to a single category. Example categories: \"Potential fix\", \"Insight\".",
1343+
"type": "string"
1344+
},
1345+
"title": {
1346+
"description": "Title for the annotation.",
1347+
"type": "string"
1348+
}
1349+
},
1350+
"type": "object"
1351+
},
13261352
"GooglePlayDeveloperReportingV1alpha1ListAnomaliesResponse": {
13271353
"description": "Response with a list of anomalies in datasets.",
13281354
"id": "GooglePlayDeveloperReportingV1alpha1ListAnomaliesResponse",

discovery/playdeveloperreporting-v1beta1.json

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,7 @@
947947
}
948948
}
949949
},
950-
"revision": "20240926",
950+
"revision": "20241009",
951951
"rootUrl": "https://playdeveloperreporting.googleapis.com/",
952952
"schemas": {
953953
"GooglePlayDeveloperReportingV1beta1Anomaly": {
@@ -1133,6 +1133,13 @@
11331133
"description": "A group of related ErrorReports received for an app. Similar error reports are grouped together into issues with a likely identical root cause. **Please note:** this resource is currently in Alpha. There could be changes to the issue grouping that would result in similar but more recent error reports being assigned to different issues. This could also cause some issues disappearing entirely and being replaced by new ones. **Required permissions**: to access this resource, the calling user needs the _View app information (read-only)_ permission for the app.",
11341134
"id": "GooglePlayDeveloperReportingV1beta1ErrorIssue",
11351135
"properties": {
1136+
"annotations": {
1137+
"description": "List of annotations for an issue. Annotations provide additional information that may help in diagnosing and fixing the issue.",
1138+
"items": {
1139+
"$ref": "GooglePlayDeveloperReportingV1beta1IssueAnnotation"
1140+
},
1141+
"type": "array"
1142+
},
11361143
"cause": {
11371144
"description": "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.",
11381145
"type": "string"
@@ -1323,6 +1330,25 @@
13231330
},
13241331
"type": "object"
13251332
},
1333+
"GooglePlayDeveloperReportingV1beta1IssueAnnotation": {
1334+
"description": "Representation of an annotation message for an issue.",
1335+
"id": "GooglePlayDeveloperReportingV1beta1IssueAnnotation",
1336+
"properties": {
1337+
"body": {
1338+
"description": "Contains the contents of the annotation message.",
1339+
"type": "string"
1340+
},
1341+
"category": {
1342+
"description": "Category that the annotation belongs to. An annotation will belong to a single category. Example categories: \"Potential fix\", \"Insight\".",
1343+
"type": "string"
1344+
},
1345+
"title": {
1346+
"description": "Title for the annotation.",
1347+
"type": "string"
1348+
}
1349+
},
1350+
"type": "object"
1351+
},
13261352
"GooglePlayDeveloperReportingV1beta1ListAnomaliesResponse": {
13271353
"description": "Response with a list of anomalies in datasets.",
13281354
"id": "GooglePlayDeveloperReportingV1beta1ListAnomaliesResponse",

src/apis/playdeveloperreporting/v1alpha1.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,10 @@ export namespace playdeveloperreporting_v1alpha1 {
286286
* A group of related ErrorReports received for an app. Similar error reports are grouped together into issues with a likely identical root cause. **Please note:** this resource is currently in Alpha. There could be changes to the issue grouping that would result in similar but more recent error reports being assigned to different issues. This could also cause some issues disappearing entirely and being replaced by new ones. **Required permissions**: to access this resource, the calling user needs the _View app information (read-only)_ permission for the app.
287287
*/
288288
export interface Schema$GooglePlayDeveloperReportingV1alpha1ErrorIssue {
289+
/**
290+
* List of annotations for an issue. Annotations provide additional information that may help in diagnosing and fixing the issue.
291+
*/
292+
annotations?: Schema$GooglePlayDeveloperReportingV1alpha1IssueAnnotation[];
289293
/**
290294
* 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.
291295
*/
@@ -419,6 +423,23 @@ export namespace playdeveloperreporting_v1alpha1 {
419423
*/
420424
latestEndTime?: Schema$GoogleTypeDateTime;
421425
}
426+
/**
427+
* Representation of an annotation message for an issue.
428+
*/
429+
export interface Schema$GooglePlayDeveloperReportingV1alpha1IssueAnnotation {
430+
/**
431+
* Contains the contents of the annotation message.
432+
*/
433+
body?: string | null;
434+
/**
435+
* Category that the annotation belongs to. An annotation will belong to a single category. Example categories: "Potential fix", "Insight".
436+
*/
437+
category?: string | null;
438+
/**
439+
* Title for the annotation.
440+
*/
441+
title?: string | null;
442+
}
422443
/**
423444
* Response with a list of anomalies in datasets.
424445
*/

src/apis/playdeveloperreporting/v1beta1.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,10 @@ export namespace playdeveloperreporting_v1beta1 {
286286
* A group of related ErrorReports received for an app. Similar error reports are grouped together into issues with a likely identical root cause. **Please note:** this resource is currently in Alpha. There could be changes to the issue grouping that would result in similar but more recent error reports being assigned to different issues. This could also cause some issues disappearing entirely and being replaced by new ones. **Required permissions**: to access this resource, the calling user needs the _View app information (read-only)_ permission for the app.
287287
*/
288288
export interface Schema$GooglePlayDeveloperReportingV1beta1ErrorIssue {
289+
/**
290+
* List of annotations for an issue. Annotations provide additional information that may help in diagnosing and fixing the issue.
291+
*/
292+
annotations?: Schema$GooglePlayDeveloperReportingV1beta1IssueAnnotation[];
289293
/**
290294
* 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.
291295
*/
@@ -419,6 +423,23 @@ export namespace playdeveloperreporting_v1beta1 {
419423
*/
420424
latestEndTime?: Schema$GoogleTypeDateTime;
421425
}
426+
/**
427+
* Representation of an annotation message for an issue.
428+
*/
429+
export interface Schema$GooglePlayDeveloperReportingV1beta1IssueAnnotation {
430+
/**
431+
* Contains the contents of the annotation message.
432+
*/
433+
body?: string | null;
434+
/**
435+
* Category that the annotation belongs to. An annotation will belong to a single category. Example categories: "Potential fix", "Insight".
436+
*/
437+
category?: string | null;
438+
/**
439+
* Title for the annotation.
440+
*/
441+
title?: string | null;
442+
}
422443
/**
423444
* Response with a list of anomalies in datasets.
424445
*/

0 commit comments

Comments
 (0)