@dynatrace-sdk/client-query 1.5.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +1 -1
- package/docs/DOCS.md +1 -1
- package/dynatrace-metadata.json +2 -2
- package/package.json +1 -1
- package/types/packages/client/query/src/lib/apis/query-assistance-api.d.ts +1 -1
- package/types/packages/client/query/src/lib/apis/query-execution-api.d.ts +1 -1
- package/types/packages/http-client/src/lib/platform/http-client-response-error.d.ts +4 -1
- package/types/packages/platform/error-handlers/src/lib/types/common-serialized-error.d.ts +2 -0
- package/types/packages/platform/error-handlers/src/lib/types/http-serialized-error.d.ts +3 -0
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @dynatrace-sdk/client-query
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@dynatrace-sdk/client-query/v/1.5.1)
|
|
4
4
|
[](https://opensource.org/licenses/Apache-2.0)
|
|
5
5
|
|
|
6
6
|
Exposes an API to fetch records stored in Grail
|
package/docs/DOCS.md
CHANGED
|
@@ -17,7 +17,7 @@ import NpmLogo from '@site/static/img/npm-logo.png';
|
|
|
17
17
|
</a>
|
|
18
18
|
</div>
|
|
19
19
|
<div class="col" style={{textAlign: 'right'}}>
|
|
20
|
-
<a href="https://www.npmjs.com/package/@dynatrace-sdk/client-query/v/1.5.
|
|
20
|
+
<a href="https://www.npmjs.com/package/@dynatrace-sdk/client-query/v/1.5.1">v1.5.1</a>
|
|
21
21
|
</div>
|
|
22
22
|
</div>
|
|
23
23
|
|
package/dynatrace-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@ export declare class QueryAssistanceClient {
|
|
|
13
13
|
/**
|
|
14
14
|
* @param {HttpClient} httpClientImplementation - You can provide custom http client as a parameter to constructor of a QueryAssistanceClient. Custom http client should implement {HttpClient} interface.
|
|
15
15
|
* @example
|
|
16
|
-
* const
|
|
16
|
+
* const queryAssistanceClientNodeJs = new QueryAssistanceClient(yourCustomImplementation);
|
|
17
17
|
*/
|
|
18
18
|
constructor(httpClientImplementation: HttpClient);
|
|
19
19
|
/**
|
|
@@ -10,7 +10,7 @@ export declare class QueryExecutionClient {
|
|
|
10
10
|
/**
|
|
11
11
|
* @param {HttpClient} httpClientImplementation - You can provide custom http client as a parameter to constructor of a QueryExecutionClient. Custom http client should implement {HttpClient} interface.
|
|
12
12
|
* @example
|
|
13
|
-
* const
|
|
13
|
+
* const queryExecutionClientNodeJs = new QueryExecutionClient(yourCustomImplementation);
|
|
14
14
|
*/
|
|
15
15
|
constructor(httpClientImplementation: HttpClient);
|
|
16
16
|
/**
|
|
@@ -4,5 +4,8 @@ import { BaseError } from './base-error';
|
|
|
4
4
|
export declare class HttpClientResponseError extends BaseError implements types.HttpClientResponseError {
|
|
5
5
|
readonly name = "ResponseError";
|
|
6
6
|
readonly response: HttpClientResponse;
|
|
7
|
-
|
|
7
|
+
readonly requestMethod?: string;
|
|
8
|
+
constructor(response: Response, data?: {
|
|
9
|
+
requestMethod?: string;
|
|
10
|
+
});
|
|
8
11
|
}
|