diff --git a/models.gen.go b/models.gen.go index 5a02c0f..addd0ba 100644 --- a/models.gen.go +++ b/models.gen.go @@ -1956,6 +1956,9 @@ type PluginVersionDetails struct { // UIBaseURL Base URL for the plugin's UI. Only available for plugins with a UI and for logged in users. UIBaseURL *string `json:"ui_base_url,omitempty"` + + // UIID ID of the plugin's UI. + UIID *openapi_types.UUID `json:"ui_id,omitempty"` } // PluginVersionList CloudQuery Plugin Version diff --git a/spec.json b/spec.json index 14f0b38..7e9cbeb 100644 --- a/spec.json +++ b/spec.json @@ -7749,6 +7749,12 @@ "description" : "Base URL for the plugin's UI. Only available for plugins with a UI and for logged in users.", "type" : "string", "x-go-name" : "UIBaseURL" + }, + "ui_id" : { + "description" : "ID of the plugin's UI.", + "format" : "uuid", + "type" : "string", + "x-go-name" : "UIID" } }, "required" : [ "example_config" ]