diff --git a/packages/grafana-data/src/types/data.ts b/packages/grafana-data/src/types/data.ts index be0d653f52d..0bdd1c1d129 100644 --- a/packages/grafana-data/src/types/data.ts +++ b/packages/grafana-data/src/types/data.ts @@ -6,6 +6,7 @@ export type KeyValue = Record; /** * Represent panel data loading state. + * @public */ export enum LoadingState { NotStarted = 'NotStarted', @@ -21,6 +22,9 @@ export enum DataTopic { export type PreferredVisualisationType = 'graph' | 'table' | 'logs' | 'trace'; +/** + * @public + */ export interface QueryResultMeta { /** DatasSource Specific Values */ custom?: Record; @@ -67,6 +71,7 @@ export interface QueryResultMetaStat extends FieldConfig { /** * QueryResultMetaNotice is a structure that provides user notices for query result data + * @public */ export interface QueryResultMetaNotice { /** @@ -91,6 +96,9 @@ export interface QueryResultMetaNotice { inspect?: 'meta' | 'error' | 'data' | 'stats'; } +/** + * @public + */ export interface QueryResultBase { /** * Matches the query target refId diff --git a/scripts/ci-reference-docs-lint.sh b/scripts/ci-reference-docs-lint.sh index 9df0d4b6bf9..2e67ae9144c 100755 --- a/scripts/ci-reference-docs-lint.sh +++ b/scripts/ci-reference-docs-lint.sh @@ -29,7 +29,7 @@ if [ ! -d "$REPORT_PATH" ]; then fi WARNINGS_COUNT="$(find "$REPORT_PATH" -type f -name \*.log -print0 | xargs -0 grep -o "Warning: " | wc -l | xargs)" -WARNINGS_COUNT_LIMIT=1077 +WARNINGS_COUNT_LIMIT=1075 if [ "$WARNINGS_COUNT" -gt $WARNINGS_COUNT_LIMIT ]; then echo -e "API Extractor warnings/errors $WARNINGS_COUNT exceeded $WARNINGS_COUNT_LIMIT so failing build.\n"