feat(http): add support for new methods (#2054)
* feat(http): add patch request support (#2052) * feat(http): add "disableRedirect" support (#2022) * fix(http): remove obsolete "validateDomainName" function (#2053)
This commit is contained in:
parent
95daca166b
commit
d96d3eef07
@ -113,6 +113,13 @@ export class HTTP extends IonicNativePlugin {
|
|||||||
@Cordova({ sync: true })
|
@Cordova({ sync: true })
|
||||||
removeCookies(url: string, cb: () => void): void { }
|
removeCookies(url: string, cb: () => void): void { }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Disable following redirects automatically
|
||||||
|
* @param disable {boolean} Set to true to disable following redirects automatically
|
||||||
|
*/
|
||||||
|
@Cordova({ sync: true })
|
||||||
|
disableRedirect(disable: boolean): void { }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set request timeout
|
* Set request timeout
|
||||||
* @param timeout {number} The timeout in seconds. Default 60
|
* @param timeout {number} The timeout in seconds. Default 60
|
||||||
@ -140,14 +147,6 @@ export class HTTP extends IonicNativePlugin {
|
|||||||
@Cordova()
|
@Cordova()
|
||||||
acceptAllCerts(accept: boolean): Promise<void> { return; }
|
acceptAllCerts(accept: boolean): Promise<void> { return; }
|
||||||
|
|
||||||
/**
|
|
||||||
* Whether or not to validate the domain name in the certificate. This defaults to true.
|
|
||||||
* @param validate {boolean} Set to true to validate
|
|
||||||
* @returns {Promise<void>} returns a promise that will resolve on success, and reject on failure
|
|
||||||
*/
|
|
||||||
@Cordova()
|
|
||||||
validateDomainName(validate: boolean): Promise<void> { return; }
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Make a POST request
|
* Make a POST request
|
||||||
* @param url {string} The url to send the request to
|
* @param url {string} The url to send the request to
|
||||||
@ -178,6 +177,16 @@ export class HTTP extends IonicNativePlugin {
|
|||||||
@Cordova()
|
@Cordova()
|
||||||
put(url: string, body: any, headers: any): Promise<HTTPResponse> { return; }
|
put(url: string, body: any, headers: any): Promise<HTTPResponse> { return; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Make a PATCH request
|
||||||
|
* @param url {string} The url to send the request to
|
||||||
|
* @param body {Object} The body of the request
|
||||||
|
* @param headers {Object} The headers to set for this request
|
||||||
|
* @returns {Promise<HTTPResponse>} returns a promise that resolve on success, and reject on failure
|
||||||
|
*/
|
||||||
|
@Cordova()
|
||||||
|
patch(url: string, body: any, headers: any): Promise<HTTPResponse> { return; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Make a DELETE request
|
* Make a DELETE request
|
||||||
* @param url {string} The url to send the request to
|
* @param url {string} The url to send the request to
|
||||||
|
Loading…
x
Reference in New Issue
Block a user