diff --git a/docusaurus/docs/reference/metadata.md b/docusaurus/docs/reference/metadata.md index b26dd9b7f..d4acb87f1 100644 --- a/docusaurus/docs/reference/metadata.md +++ b/docusaurus/docs/reference/metadata.md @@ -45,7 +45,6 @@ The `plugin.json` file is required for all plugins. When Grafana starts, it scan | `state` | string | No | Marks a plugin as a pre-release. Possible values are: `alpha`, `beta`. | | `streaming` | boolean | No | For data source plugins, if the plugin supports streaming. Used in Explore to start live streaming. | | `tracing` | boolean | No | For data source plugins, if the plugin supports tracing. Used for example to link logs (e.g. Loki logs) with tracing plugins. | -| `generated` | [object](#generated) | No | **Shouldn't be edited manually.** This property is automatically generated by our build configuration using the `@grafana/plugin-meta-extractor` package. The property should only be present in the build output (`dist/plugin.json`). | ## dependencies @@ -309,25 +308,3 @@ Parameters for the token authentication request. | `grant_type` | string | No | OAuth grant type | | `resource` | string | No | OAuth resource | -## generated - -**Shouldn't be edited manually.** This property is automatically generated by our build configuration using the `@grafana/plugin-meta-extractor` package. (The property should only be present in the build output (`dist/plugin.json`). - -### Properties - -| Property | Type | Required | Description | -| ------------ | ----------------------- | -------- | ------------------------------------------------- | -| `extensions` | [object](#extensions)[] | No | An array of extensions that the plugin registers. | - -### extensions - -An array of extensions that the plugin registers. - -#### Properties - -| Property | Type | Required | Description | -| ------------------ | ------ | -------- | ----------------------------------------- | -| `extensionPointId` | string | **Yes** | | -| `type` | string | **Yes** | Available values: `"link"`, `"component"` | -| `title` | string | No | | -| `description` | string | No | |