Unverified Commit 976414b1 authored by guerler's avatar guerler Committed by mvdbeek
Browse files

Update schema

parent 36f456d4
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: {