Skip to content

Commit cc59194

Browse files
yoshi-automationsofisl
authored andcommitted
feat(searchconsole): update the API
#### searchconsole:v1 The following keys were added: - schemas.Metadata.id - schemas.Metadata.properties.firstIncompleteDate.type - schemas.Metadata.properties.firstIncompleteHour.type - schemas.Metadata.type - schemas.SearchAnalyticsQueryResponse.properties.metadata.$ref
1 parent 1e6ab1c commit cc59194

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

discovery/searchconsole-v1.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@
400400
}
401401
}
402402
},
403-
"revision": "20250409",
403+
"revision": "20250713",
404404
"rootUrl": "https://searchconsole.googleapis.com/",
405405
"schemas": {
406406
"AmpInspectionResult": {
@@ -872,6 +872,18 @@
872872
},
873873
"type": "object"
874874
},
875+
"Metadata": {
876+
"id": "Metadata",
877+
"properties": {
878+
"firstIncompleteDate": {
879+
"type": "string"
880+
},
881+
"firstIncompleteHour": {
882+
"type": "string"
883+
}
884+
},
885+
"type": "object"
886+
},
875887
"MobileFriendlyIssue": {
876888
"description": "Mobile-friendly issue.",
877889
"id": "MobileFriendlyIssue",
@@ -1238,6 +1250,9 @@
12381250
"description": "A list of rows, one per result, grouped by key. Metrics in each row are aggregated for all data grouped by that key either by page or property, as specified by the aggregation type parameter.",
12391251
"id": "SearchAnalyticsQueryResponse",
12401252
"properties": {
1253+
"metadata": {
1254+
"$ref": "Metadata"
1255+
},
12411256
"responseAggregationType": {
12421257
"description": "How the results were aggregated.",
12431258
"enum": [

src/apis/searchconsole/v1.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,10 @@ export namespace searchconsole_v1 {
327327
*/
328328
name?: string | null;
329329
}
330+
export interface Schema$Metadata {
331+
firstIncompleteDate?: string | null;
332+
firstIncompleteHour?: string | null;
333+
}
330334
/**
331335
* Mobile-friendly issue.
332336
*/
@@ -485,6 +489,7 @@ export namespace searchconsole_v1 {
485489
* A list of rows, one per result, grouped by key. Metrics in each row are aggregated for all data grouped by that key either by page or property, as specified by the aggregation type parameter.
486490
*/
487491
export interface Schema$SearchAnalyticsQueryResponse {
492+
metadata?: Schema$Metadata;
488493
/**
489494
* How the results were aggregated.
490495
*/
@@ -686,6 +691,7 @@ export namespace searchconsole_v1 {
686691
*
687692
* // Example response
688693
* // {
694+
* // "metadata": {},
689695
* // "responseAggregationType": "my_responseAggregationType",
690696
* // "rows": []
691697
* // }

0 commit comments

Comments
 (0)