Skip to content

Commit

Permalink
update api review
Browse files Browse the repository at this point in the history
  • Loading branch information
KarishmaGhiya committed Sep 4, 2021
1 parent 6b5ab13 commit 26a3440
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
7 changes: 3 additions & 4 deletions sdk/monitor/monitor-query/review/monitor-query.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@ export interface LogsQueryResult {
visualization?: Record<string, unknown>;
}

// @public
export type LogsQueryResultStatus = "Partial" | "Success" | "Failed";

// @public
export interface LogsTable {
columnDescriptors: LogsColumn[];
Expand Down Expand Up @@ -263,10 +266,6 @@ export interface TimeSeriesElement {
}


// Warnings were encountered during analysis:
//
// src/models/publicLogsModels.ts:135:5 - (ae-forgotten-export) The symbol "LogsQueryResultStatus" needs to be exported by the entry point index.d.ts

// (No @packageDocumentation comment for this package)

```
3 changes: 2 additions & 1 deletion sdk/monitor/monitor-query/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ export {
// TODO: design issues around this still pending.
// QueryStatistics,
LogsTable,
LogsColumn
LogsColumn,
LogsQueryResultStatus
} from "./models/publicLogsModels";
export {
MetricsQueryClient,
Expand Down

0 comments on commit 26a3440

Please sign in to comment.