diff --git a/CHANGELOG.md b/CHANGELOG.md index cb08965..e69cf7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.3.10](https://github.com/nativescript-community/https/compare/v3.3.9...v3.3.10) (2022-01-19) + + +### Bug Fixes + +* typings fix ([3490469](https://github.com/nativescript-community/https/commit/3490469cdc019265ec321ff9db37b94100f94b49)) + + + + + ## [3.3.9](https://github.com/nativescript-community/https/compare/v3.3.8...v3.3.9) (2022-01-18) **Note:** Version bump only for package @nativescript-community/https diff --git a/lerna.json b/lerna.json index 9790526..3886dc6 100644 --- a/lerna.json +++ b/lerna.json @@ -2,7 +2,7 @@ "packages": [ "plugin" ], - "version": "3.3.9", + "version": "3.3.10", "command": { "publish": { "conventionalCommits": true diff --git a/plugin/CHANGELOG.md b/plugin/CHANGELOG.md index 739ebf6..60168c9 100644 --- a/plugin/CHANGELOG.md +++ b/plugin/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.3.10](https://github.com/nativescript-community/https/compare/v3.3.9...v3.3.10) (2022-01-19) + +**Note:** Version bump only for package @nativescript-community/https + + + + + ## [3.3.9](https://github.com/nativescript-community/https/compare/v3.3.8...v3.3.9) (2022-01-18) **Note:** Version bump only for package @nativescript-community/https diff --git a/plugin/package.json b/plugin/package.json index 00d9570..bb0726a 100644 --- a/plugin/package.json +++ b/plugin/package.json @@ -1,6 +1,6 @@ { "name": "@nativescript-community/https", - "version": "3.3.9", + "version": "3.3.10", "description": "Nativescript plugin for gestures", "main": "https", "sideEffects": false, diff --git a/src/https.d.ts b/src/https.d.ts index 177c3ba..aa899b9 100644 --- a/src/https.d.ts +++ b/src/https.d.ts @@ -4,7 +4,11 @@ export function enableSSLPinning(options: Https.HttpsSSLPinningOptions); export function disableSSLPinning(); -export function request(options: Https.HttpsRequestOptions, useLegacy?: U): U extends true ? Promise> : Promise>; +// export declare function request(options: Https.HttpsRequestOptions): Promise>>; +export declare function request( + options: Https.HttpsRequestOptions, + useLegacy?: U +): U extends true ? Promise>> : Promise>; export function setCache(options?: Https.CacheOptions); export function clearCache(); export function createRequest(opts: Https.HttpsRequestOptions): Https.HttpsRequest;