From 3dee17c99941cc13a43c082f75a7efdec8bde27a Mon Sep 17 00:00:00 2001 From: yoshi-automation Date: Tue, 9 Mar 2021 05:18:22 -0800 Subject: [PATCH] feat(toolresults): update the API #### toolresults:v1beta3 The following keys were added: - schemas.LogcatCollectionError.description - schemas.LogcatCollectionError.id - schemas.LogcatCollectionError.type The following keys were changed: - schemas.TestIssue.properties.type.enum - schemas.TestIssue.properties.type.enumDescriptions --- discovery/toolresults-v1beta3.json | 14 +++++++++++--- src/apis/toolresults/v1beta3.ts | 4 ++++ 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/discovery/toolresults-v1beta3.json b/discovery/toolresults-v1beta3.json index 441ea393818..175054dfb2d 100644 --- a/discovery/toolresults-v1beta3.json +++ b/discovery/toolresults-v1beta3.json @@ -1463,7 +1463,7 @@ } } }, - "revision": "20201102", + "revision": "20210308", "rootUrl": "https://toolresults.googleapis.com/", "schemas": { "ANR": { @@ -2501,6 +2501,12 @@ }, "type": "object" }, + "LogcatCollectionError": { + "description": "A warning that there were issues in logcat collection.", + "id": "LogcatCollectionError", + "properties": {}, + "type": "object" + }, "MatrixDimensionDefinition": { "description": "One dimension of the matrix of different runs of a step.", "id": "MatrixDimensionDefinition", @@ -3609,7 +3615,8 @@ "blankScreen", "overlappingUiElements", "unityException", - "deviceOutOfMemory" + "deviceOutOfMemory", + "logcatCollectionError" ], "enumDescriptions": [ "Default unspecified type. Do not use. For versioning only.", @@ -3641,7 +3648,8 @@ "Blank screen is found in the Robo crawl", "Overlapping UI elements are found in the Robo crawl", "An uncaught Unity exception was detected (these don't crash apps).", - "Device running out of memory was detected" + "Device running out of memory was detected", + "Problems detected while collecting logcat" ], "type": "string" }, diff --git a/src/apis/toolresults/v1beta3.ts b/src/apis/toolresults/v1beta3.ts index f585fcba303..496b96e34b7 100644 --- a/src/apis/toolresults/v1beta3.ts +++ b/src/apis/toolresults/v1beta3.ts @@ -840,6 +840,10 @@ export namespace toolresults_v1beta3 { */ testCases?: Schema$TestCase[]; } + /** + * A warning that there were issues in logcat collection. + */ + export interface Schema$LogcatCollectionError {} /** * One dimension of the matrix of different runs of a step. */