@dynatrace-sdk/client-query 1.10.0 → 1.11.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 +23 -0
- package/README.md +1169 -4
- package/cjs/index.js +80 -62
- package/docs/DOCS.md +509 -327
- package/dynatrace-metadata.json +3 -3
- package/esm/index.js +80 -62
- package/package.json +1 -1
- package/types/packages/client/query/src/lib/apis/query-assistance-api.d.ts +0 -3
- package/types/packages/client/query/src/lib/apis/query-execution-api.d.ts +0 -1
- package/types/packages/client/query/src/lib/models/execute-request.d.ts +2 -2
- package/types/packages/client/query/src/lib/models/verify-request.d.ts +1 -0
- package/types/packages/client/query/src/lib/models/verify-request.transformation.d.ts +1 -0
- package/types/packages/client/query/src/lib/models/verify-response.d.ts +1 -0
- package/types/packages/client/query/src/lib/models/verify-response.transformation.d.ts +1 -0
- package/types/packages/client/query/src/lib/utils/url-helpers.d.ts +4 -1
- package/types/packages/http-client/src/index.d.ts +1 -1
- package/types/packages/http-client/src/lib/platform/http-client.d.ts +11 -0
- package/types/packages/http-client/src/lib/platform/index.d.ts +1 -0
- package/types/packages/http-client/src/lib/platform/oauth-http-client.d.ts +41 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
@dynatrace-sdk/client-query
|
|
4
4
|
|
|
5
|
+
## 1.11.0
|
|
6
|
+
|
|
7
|
+
### Minor Changes
|
|
8
|
+
|
|
9
|
+
- Add `canonicalQuery` property to VerifyRequest
|
|
10
|
+
- Provide actual error code in the error message instead of wildcard. APPDEV-7744
|
|
11
|
+
- Add option to generate canonical query to `VerifyRequest`
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Do not print empty fields in the default message of an error. APPDEV-7630
|
|
16
|
+
- Fix typo in the description of `defaultTimeframeStart`
|
|
17
|
+
- Remove `Authorization` header
|
|
18
|
+
- Update documentation. APPDEV-8154
|
|
19
|
+
|
|
20
|
+
## 1.10.1
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Fixed explode method of query parameters serialization.
|
|
25
|
+
- Sanitize links in the documentation
|
|
26
|
+
- Add API reference to the readme file
|
|
27
|
+
|
|
5
28
|
## 1.10.0
|
|
6
29
|
|
|
7
30
|
### Minor Changes
|