DataSourceWithSupplementaryQueriesSupport: remove @internal (#96901)

* DataSourceWithSupplementaryQueriesSupport: no longer internal

* Loki: update comments
This commit is contained in:
Matias Chomicki 2024-11-22 11:12:59 +00:00 committed by GitHub
parent 977184b878
commit 03b323cb61
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 3 deletions

View File

@ -235,7 +235,6 @@ export type LogsVolumeCustomMetaData = {
* Data sources that support supplementary queries in Explore.
* This will enable users to see additional data when running original queries.
* Supported supplementary queries are defined in SupplementaryQueryType enum.
* @internal
*/
export interface DataSourceWithSupplementaryQueriesSupport<TQuery extends DataQuery> {
/**

View File

@ -254,7 +254,7 @@ export class LokiDatasource
/**
* Private method used in the `getDataProvider` for DataSourceWithSupplementaryQueriesSupport, specifically for Logs volume queries.
* @returns An Observable of DataQueryResponse or undefined if no suitable queries are found.
* @returns A DataQueryRequest or undefined if no suitable queries are found.
*/
private getLogsVolumeDataProvider(
request: DataQueryRequest<LokiQuery>,
@ -274,7 +274,7 @@ export class LokiDatasource
/**
* Private method used in the `getDataProvider` for DataSourceWithSupplementaryQueriesSupport, specifically for Logs sample queries.
* @returns An Observable of DataQueryResponse or undefined if no suitable queries are found.
* @returns A DataQueryRequest or undefined if no suitable queries are found.
*/
private getLogsSampleDataProvider(
request: DataQueryRequest<LokiQuery>,