From 05154b8d064bd611ef5c8eef014ef4f93c5172c0 Mon Sep 17 00:00:00 2001 From: Matthew Jacobson Date: Wed, 28 Jun 2023 15:47:35 -0400 Subject: [PATCH] Chore: run `make gen-cue` to fix CI (#70860) --- .../candlestick/panelcfg/x/CandlestickPanelCfg_types.gen.ts | 2 ++ public/app/plugins/panel/candlestick/panelcfg.gen.ts | 2 -- public/app/plugins/panel/candlestick/types.ts | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) 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, };