@dynatrace-sdk/client-query 1.8.1 → 1.10.0
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 +26 -0
- package/README.md +1 -1
- package/cjs/index.js +513 -375
- package/docs/DOCS.md +59 -47
- package/dynatrace-metadata.json +2 -2
- package/esm/index.js +513 -375
- package/package.json +2 -2
- package/types/packages/client/query/src/lib/models/autocomplete-request.d.ts +3 -0
- package/types/packages/client/query/src/lib/models/autocomplete-request.transformation.d.ts +3 -0
- package/types/packages/client/query/src/lib/models/error-response-details.d.ts +1 -0
- package/types/packages/client/query/src/lib/models/error-response-details.transformation.d.ts +1 -0
- package/types/packages/client/query/src/lib/models/execute-request.d.ts +2 -0
- package/types/packages/client/query/src/lib/models/execute-request.transformation.d.ts +2 -0
- package/types/packages/client/query/src/lib/models/grail-metadata.d.ts +1 -0
- package/types/packages/client/query/src/lib/models/grail-metadata.transformation.d.ts +1 -0
- package/types/packages/client/query/src/lib/models/index.d.ts +2 -0
- package/types/packages/client/query/src/lib/models/metric-metadata.d.ts +4 -0
- package/types/packages/client/query/src/lib/models/metric-metadata.transformation.d.ts +1 -0
- package/types/packages/client/query/src/lib/models/parse-request.d.ts +2 -0
- package/types/packages/client/query/src/lib/models/parse-request.transformation.d.ts +2 -0
- package/types/packages/client/query/src/lib/models/query-options.d.ts +6 -0
- package/types/packages/client/query/src/lib/models/query-options.transformation.d.ts +8 -0
- package/types/packages/client/query/src/lib/models/token-type.d.ts +9 -1
- package/types/packages/client/query/src/lib/models/verify-request.d.ts +2 -0
- package/types/packages/client/query/src/lib/models/verify-request.transformation.d.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
@dynatrace-sdk/client-query
|
|
4
4
|
|
|
5
|
+
## 1.10.0
|
|
6
|
+
|
|
7
|
+
### Minor Changes
|
|
8
|
+
|
|
9
|
+
- Add `QueryOptions` to `AutocompleteRequest`, `ExecuteRequest` and `ParseRequest`
|
|
10
|
+
- Add `shifted` parameter to `MetricMetadata`
|
|
11
|
+
- Add new token types to the `TokenType` enum
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Update http-client
|
|
16
|
+
|
|
17
|
+
## 1.9.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Update documentation
|
|
22
|
+
|
|
23
|
+
## 1.9.0
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- `queryId` was added to ErrorResponseDetails
|
|
28
|
+
- `scannedDataPoints` was added to GrailMetadata (datapoints that have been scanned during a timeseries query)
|
|
29
|
+
- `maxDataSuggestions` was added to AutocompleteRequest (max number of dynamic entries that should be returned e.g. metric keys, metric dimensions and custom fields)
|
|
30
|
+
|
|
5
31
|
## 1.8.1
|
|
6
32
|
|
|
7
33
|
### Patch Changes
|
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.10.0)
|
|
4
4
|
[](https://opensource.org/licenses/Apache-2.0)
|
|
5
5
|
|
|
6
6
|
Exposes an API to fetch records stored in Grail
|