@dynatrace-sdk/client-app-engine-edge-connect
Advanced tools
Comparing version 1.2.5 to 1.2.6
@@ -5,2 +5,8 @@ # AppEngine - EdgeConnect | ||
## 1.2.6 | ||
### Patch Changes | ||
- Updated boolean serialization handling. APPDEV-9047 | ||
## 1.2.5 | ||
@@ -7,0 +13,0 @@ |
@@ -7,3 +7,3 @@ { | ||
"name": "@dynatrace-sdk/template-typescript-client", | ||
"version": "0.19.1" | ||
"version": "0.20.1" | ||
} | ||
@@ -10,0 +10,0 @@ }, |
{ | ||
"name": "@dynatrace-sdk/client-app-engine-edge-connect", | ||
"version": "1.2.5", | ||
"version": "1.2.6", | ||
"dependencies": { | ||
@@ -5,0 +5,0 @@ "@dynatrace-sdk/error-handlers": "^1.2.0", |
# @dynatrace-sdk/client-app-engine-edge-connect | ||
[![npm](https://img.shields.io/badge/npm-v1.2.5-blue)](https://www.npmjs.com/package/@dynatrace-sdk/client-app-engine-edge-connect/v/1.2.5) | ||
[![npm](https://img.shields.io/badge/npm-v1.2.6-blue)](https://www.npmjs.com/package/@dynatrace-sdk/client-app-engine-edge-connect/v/1.2.6) | ||
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) | ||
@@ -5,0 +5,0 @@ |
/** | ||
* Represents a signal object that allows to communicate with the request and abort it using the `AbortController`. | ||
* @deprecated Will be removed from HttpClient. We encourage using native interface for AbortSignal. | ||
*/ | ||
export interface AbortSignal extends EventTarget { | ||
interface HttpClientAbortSignal extends EventTarget { | ||
readonly reason: any; | ||
@@ -16,1 +17,3 @@ throwIfAborted(): void; | ||
} | ||
export type AbortSignal = HttpClientAbortSignal | globalThis.AbortSignal; | ||
export {}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3456
157117
104