From 0ba040e866e1493baf09551ae845e8e2666483b6 Mon Sep 17 00:00:00 2001 From: Selene Date: Thu, 23 Oct 2025 15:38:22 +0200 Subject: [PATCH] Return the correct model (#112858) --- pkg/api/dashboard.go | 2 +- public/api-merged.json | 19 +++++++++++++++---- public/openapi3.json | 19 +++++++++++++++---- 3 files changed, 31 insertions(+), 9 deletions(-) diff --git a/pkg/api/dashboard.go b/pkg/api/dashboard.go index aee2e869399..aedd222d94b 100644 --- a/pkg/api/dashboard.go +++ b/pkg/api/dashboard.go @@ -1262,7 +1262,7 @@ type GetHomeDashboardResponseBody struct { // swagger:response dashboardVersionsResponse type DashboardVersionsResponse struct { // in: body - Body []dashver.DashboardVersionMeta `json:"body"` + Body *dashver.DashboardVersionResponseMeta `json:"body"` } // swagger:response dashboardVersionResponse diff --git a/public/api-merged.json b/public/api-merged.json index 7fb2a644043..f6ca6d73502 100644 --- a/public/api-merged.json +++ b/public/api-merged.json @@ -15296,6 +15296,20 @@ } } }, + "DashboardVersionResponseMeta": { + "type": "object", + "properties": { + "continueToken": { + "type": "string" + }, + "versions": { + "type": "array", + "items": { + "$ref": "#/definitions/DashboardVersionMeta" + } + } + } + }, "DataLink": { "description": "DataLink define what", "type": "object", @@ -24520,10 +24534,7 @@ "dashboardVersionsResponse": { "description": "(empty)", "schema": { - "type": "array", - "items": { - "$ref": "#/definitions/DashboardVersionMeta" - } + "$ref": "#/definitions/DashboardVersionResponseMeta" } }, "deleteCorrelationResponse": { diff --git a/public/openapi3.json b/public/openapi3.json index ff6255565ae..aa277822fb0 100644 --- a/public/openapi3.json +++ b/public/openapi3.json @@ -454,10 +454,7 @@ "content": { "application/json": { "schema": { - "items": { - "$ref": "#/components/schemas/DashboardVersionMeta" - }, - "type": "array" + "$ref": "#/components/schemas/DashboardVersionResponseMeta" } } }, @@ -4806,6 +4803,20 @@ }, "type": "object" }, + "DashboardVersionResponseMeta": { + "properties": { + "continueToken": { + "type": "string" + }, + "versions": { + "items": { + "$ref": "#/components/schemas/DashboardVersionMeta" + }, + "type": "array" + } + }, + "type": "object" + }, "DataLink": { "description": "DataLink define what", "properties": {