@dynatrace-sdk/client-query 1.10.1 → 1.11.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/README.md +153 -120
  3. package/cjs/index.js +496 -55
  4. package/docs/DOCS.md +113 -84
  5. package/dynatrace-metadata.json +2 -2
  6. package/esm/index.js +496 -55
  7. package/package.json +1 -1
  8. package/types/packages/client/query/src/lib/apis/query-assistance-api.d.ts +0 -3
  9. package/types/packages/client/query/src/lib/apis/query-execution-api.d.ts +0 -1
  10. package/types/packages/client/query/src/lib/models/dql-node-node-type.transformation.d.ts +1 -1
  11. package/types/packages/client/query/src/lib/models/execute-request.d.ts +2 -2
  12. package/types/packages/client/query/src/lib/models/field-type-type.transformation.d.ts +1 -1
  13. package/types/packages/client/query/src/lib/models/query-state.transformation.d.ts +1 -1
  14. package/types/packages/client/query/src/lib/models/result-record-value.d.ts +1 -1
  15. package/types/packages/client/query/src/lib/models/result-record-value.transformation.d.ts +1 -1
  16. package/types/packages/client/query/src/lib/models/token-type.transformation.d.ts +1 -1
  17. package/types/packages/client/query/src/lib/models/verify-request.d.ts +1 -0
  18. package/types/packages/client/query/src/lib/models/verify-request.transformation.d.ts +1 -0
  19. package/types/packages/client/query/src/lib/models/verify-response.d.ts +1 -0
  20. package/types/packages/client/query/src/lib/models/verify-response.transformation.d.ts +1 -0
  21. package/types/packages/client/query/src/lib/utils/url-helpers.d.ts +1 -1
  22. package/types/packages/http-client/src/index.d.ts +1 -1
  23. package/types/packages/http-client/src/lib/platform/abort-controller.d.ts +1 -1
  24. package/types/packages/http-client/src/lib/platform/abort-signal.d.ts +1 -1
  25. package/types/packages/http-client/src/lib/platform/decode-form-data.d.ts +48 -0
  26. package/types/packages/http-client/src/lib/platform/http-client.d.ts +19 -0
  27. package/types/packages/http-client/src/lib/platform/index.d.ts +1 -0
  28. package/types/packages/http-client/src/lib/platform/oauth-http-client.d.ts +41 -0
  29. package/types/packages/http-client/src/lib/types/data-types.d.ts +1 -1
  30. package/types/packages/http-client/src/lib/types/form-data-request-body.d.ts +2 -2
  31. package/types/packages/http-client/src/lib/types/form-data-response-body.d.ts +2 -2
  32. package/types/packages/http-client/src/lib/types/request-body-types.d.ts +1 -1
  33. package/types/packages/http-client/src/lib/types/response-body-types.d.ts +1 -1
  34. package/types/packages/platform/error-handlers/src/lib/types/global-dt-runtime-with-error-handlers.d.ts +1 -1
  35. package/types/packages/platform/error-handlers/src/lib/types/global-error-serializer.d.ts +1 -1
  36. package/types/packages/platform/error-handlers/src/lib/types/serialized-error.d.ts +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,27 @@
2
2
 
3
3
  @dynatrace-sdk/client-query
4
4
 
5
+ ## 1.11.1
6
+
7
+ ### Patch Changes
8
+
9
+ - Fix broken links in the readme file.
10
+
11
+ ## 1.11.0
12
+
13
+ ### Minor Changes
14
+
15
+ - Add `canonicalQuery` property to VerifyRequest
16
+ - Provide actual error code in the error message instead of wildcard. APPDEV-7744
17
+ - Add option to generate canonical query to `VerifyRequest`
18
+
19
+ ### Patch Changes
20
+
21
+ - Do not print empty fields in the default message of an error. APPDEV-7630
22
+ - Fix typo in the description of `defaultTimeframeStart`
23
+ - Remove `Authorization` header
24
+ - Update documentation. APPDEV-8154
25
+
5
26
  ## 1.10.1
6
27
 
7
28
  ### Patch Changes