Files
grafana/apps/plugins/kinds/manifest.cue
Hugo Häggmark bd0140b6f0 GrafanaBootData: Deprecate config.apps (#115610)
* GrafanaBootData: decouple `config.apps` from boot data IV

* chore: changed to openfeature flags eval

* chore: updates after PR feedback

* chore: updates after PR feedback

* chore: copy types to runtime package

* chore: add code ownership

* chore: deprecate in interface too

* chore: add important notice to comments

* chore: deprecate the whole interface
2026-01-14 06:30:05 +01:00

22 lines
283 B
CUE

package plugins
manifest: {
appName: "plugins"
groupOverride: "plugins.grafana.app"
versions: {
"v0alpha1": v0alpha1Version
}
}
v0alpha1Version: {
served: true
codegen: {
ts: {enabled: true}
go: {enabled: true}
}
kinds: [
pluginV0Alpha1,
metaV0Alpha1,
]
}