diff --git a/packages/grafana-schema/src/raw/composable/candlestick/panelcfg/x/CandlestickPanelCfg_types.gen.ts b/packages/grafana-schema/src/raw/composable/candlestick/panelcfg/x/CandlestickPanelCfg_types.gen.ts index c360a8a0e39..11c712486c6 100644 --- a/packages/grafana-schema/src/raw/composable/candlestick/panelcfg/x/CandlestickPanelCfg_types.gen.ts +++ b/packages/grafana-schema/src/raw/composable/candlestick/panelcfg/x/CandlestickPanelCfg_types.gen.ts @@ -11,6 +11,8 @@ import * as common from '@grafana/schema'; +export const pluginVersion = "10.0.2"; + export enum VizDisplayMode { Candles = 'candles', CandlesVolume = 'candles+volume', diff --git a/public/app/plugins/panel/candlestick/panelcfg.gen.ts b/public/app/plugins/panel/candlestick/panelcfg.gen.ts index 5fdf83724c6..8c704e366fe 100644 --- a/public/app/plugins/panel/candlestick/panelcfg.gen.ts +++ b/public/app/plugins/panel/candlestick/panelcfg.gen.ts @@ -10,8 +10,6 @@ import * as common from '@grafana/schema'; -export const PanelCfgModelVersion = Object.freeze([0, 0]); - export enum VizDisplayMode { Candles = 'candles', CandlesVolume = 'candles+volume', diff --git a/public/app/plugins/panel/candlestick/types.ts b/public/app/plugins/panel/candlestick/types.ts index 5dce27d67fa..81253afa1a5 100644 --- a/public/app/plugins/panel/candlestick/types.ts +++ b/public/app/plugins/panel/candlestick/types.ts @@ -10,7 +10,6 @@ import { VizDisplayMode, CandlestickFieldMap, FieldConfig, - PanelCfgModelVersion, } from './panelcfg.gen'; export const defaultOptions: Partial = { @@ -33,5 +32,4 @@ export { VizDisplayMode, CandlestickFieldMap, FieldConfig, - PanelCfgModelVersion, };