@dynatrace-sdk/client-query 1.9.1 → 1.10.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 +20 -0
- package/README.md +1140 -4
- package/cjs/index.js +514 -376
- package/docs/DOCS.md +485 -323
- package/dynatrace-metadata.json +3 -3
- package/esm/index.js +514 -376
- package/package.json +2 -2
- package/types/packages/client/query/src/lib/models/autocomplete-request.d.ts +2 -0
- package/types/packages/client/query/src/lib/models/autocomplete-request.transformation.d.ts +2 -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/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/types/packages/client/query/src/lib/utils/url-helpers.d.ts +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
@dynatrace-sdk/client-query
|
|
4
4
|
|
|
5
|
+
## 1.10.1
|
|
6
|
+
|
|
7
|
+
### Patch Changes
|
|
8
|
+
|
|
9
|
+
- Fixed explode method of query parameters serialization.
|
|
10
|
+
- Sanitize links in the documentation
|
|
11
|
+
- Add API reference to the readme file
|
|
12
|
+
|
|
13
|
+
## 1.10.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- Add `QueryOptions` to `AutocompleteRequest`, `ExecuteRequest` and `ParseRequest`
|
|
18
|
+
- Add `shifted` parameter to `MetricMetadata`
|
|
19
|
+
- Add new token types to the `TokenType` enum
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Update http-client
|
|
24
|
+
|
|
5
25
|
## 1.9.1
|
|
6
26
|
|
|
7
27
|
### Patch Changes
|