Unverified Commit f8a85414 authored by Nicola Soranzo's avatar Nicola Soranzo
Browse files

Merge branch 'release_24.2' into release_25.0

parents f475c5af 78bb88c2
Loading
Loading
Loading
Loading
+14 −12
Original line number Diff line number Diff line
@@ -20797,15 +20797,6 @@ export interface components {
            entry_point: {
                [key: string]: unknown;
            };
            /**
             * Groups
             * @description The groups of the plugin.
             */
            groups?:
                | {
                      [key: string]: unknown;
                  }[]
                | null;
            /**
             * Href
             * @description The href of the plugin.
@@ -20830,9 +20821,11 @@ export interface components {
             * Settings
             * @description The settings of the plugin.
             */
            settings: {
            settings?:
                | {
                      [key: string]: unknown;
            }[];
                  }[]
                | null;
            /**
             * Specs
             * @description The specs of the plugin.
@@ -20850,6 +20843,15 @@ export interface components {
             * @description The title of the plugin.
             */
            title?: string | null;
            /**
             * Tracks
             * @description The tracks of the plugin.
             */
            tracks?:
                | {
                      [key: string]: unknown;
                  }[]
                | 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,