Unverified Commit 78bb88c2 authored by Marius van den Beek's avatar Marius van den Beek Committed by GitHub
Browse files

Merge pull request #20627 from guerler/fix_visualization_plugin_schema

[24.2] Correct visualization response schema
parents 52507940 976414b1
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -17932,11 +17932,6 @@ export interface components {
             * @description The entry point of the plugin.
             */
            entry_point: Record<string, never>;
            /**
             * Groups
             * @description The groups of the plugin.
             */
            groups?: Record<string, never>[] | null;
            /**
             * Href
             * @description The href of the plugin.
@@ -17961,7 +17956,7 @@ export interface components {
             * Settings
             * @description The settings of the plugin.
             */
            settings: Record<string, never>[];
            settings?: Record<string, never>[] | null;
            /**
             * Specs
             * @description The specs of the plugin.
@@ -17977,6 +17972,11 @@ export interface components {
             * @description The title of the plugin.
             */
            title?: string | null;
            /**
             * Tracks
             * @description The tracks of the plugin.
             */
            tracks?: Record<string, never>[] | null;
        };
        /** VisualizationRevisionResponse */
        VisualizationRevisionResponse: {
+5 −5
Original line number Diff line number Diff line
@@ -180,15 +180,15 @@ class VisualizationPluginResponse(Model):
        title="Entry Point",
        description="The entry point of the plugin.",
    )
    settings: List[Dict] = Field(
        ...,
    settings: Optional[List[Dict]] = Field(
        None,
        title="Settings",
        description="The settings of the plugin.",
    )
    groups: Optional[List[Dict]] = Field(
    tracks: Optional[List[Dict]] = Field(
        None,
        title="Groups",
        description="The groups of the plugin.",
        title="Tracks",
        description="The tracks of the plugin.",
    )
    specs: Optional[Dict] = Field(
        None,