typed-rest-client
Advanced tools
Comparing version 0.14.0 to 0.14.1
@@ -1,3 +0,3 @@ | ||
import VsoBaseInterfaces = require('../interfaces'); | ||
export declare class BasicCredentialHandler implements VsoBaseInterfaces.IRequestHandler { | ||
import ifm = require('../interfaces'); | ||
export declare class BasicCredentialHandler implements ifm.IRequestHandler { | ||
username: string; | ||
@@ -7,4 +7,4 @@ password: string; | ||
prepareRequest(options: any): void; | ||
canHandleAuthentication(res: VsoBaseInterfaces.IHttpResponse): boolean; | ||
canHandleAuthentication(res: ifm.IHttpResponse): boolean; | ||
handleAuthentication(httpClient: any, protocol: any, options: any, objs: any, finalCallback: any): void; | ||
} |
@@ -1,8 +0,8 @@ | ||
import VsoBaseInterfaces = require('../interfaces'); | ||
export declare class BearerCredentialHandler implements VsoBaseInterfaces.IRequestHandler { | ||
import ifm = require('../interfaces'); | ||
export declare class BearerCredentialHandler implements ifm.IRequestHandler { | ||
token: string; | ||
constructor(token: string); | ||
prepareRequest(options: any): void; | ||
canHandleAuthentication(res: VsoBaseInterfaces.IHttpResponse): boolean; | ||
canHandleAuthentication(res: ifm.IHttpResponse): boolean; | ||
handleAuthentication(httpClient: any, protocol: any, options: any, objs: any, finalCallback: any): void; | ||
} |
@@ -1,3 +0,3 @@ | ||
import VsoBaseInterfaces = require('../interfaces'); | ||
export declare class NtlmCredentialHandler implements VsoBaseInterfaces.IRequestHandler { | ||
import ifm = require('../interfaces'); | ||
export declare class NtlmCredentialHandler implements ifm.IRequestHandler { | ||
username: string; | ||
@@ -9,3 +9,3 @@ password: string; | ||
prepareRequest(options: any): void; | ||
canHandleAuthentication(res: VsoBaseInterfaces.IHttpResponse): boolean; | ||
canHandleAuthentication(res: ifm.IHttpResponse): boolean; | ||
handleAuthentication(httpClient: any, protocol: any, options: any, objs: any, finalCallback: any): void; | ||
@@ -12,0 +12,0 @@ private sendType1Message(httpClient, protocol, options, objs, keepaliveAgent, callback); |
@@ -1,8 +0,8 @@ | ||
import VsoBaseInterfaces = require('../interfaces'); | ||
export declare class PersonalAccessTokenCredentialHandler implements VsoBaseInterfaces.IRequestHandler { | ||
import ifm = require('../interfaces'); | ||
export declare class PersonalAccessTokenCredentialHandler implements ifm.IRequestHandler { | ||
token: string; | ||
constructor(token: string); | ||
prepareRequest(options: any): void; | ||
canHandleAuthentication(res: VsoBaseInterfaces.IHttpResponse): boolean; | ||
canHandleAuthentication(res: ifm.IHttpResponse): boolean; | ||
handleAuthentication(httpClient: any, protocol: any, options: any, objs: any, finalCallback: any): void; | ||
} |
{ | ||
"name": "typed-rest-client", | ||
"version": "0.14.0", | ||
"version": "0.14.1", | ||
"description": "Node Rest and Http Clients for use with TypeScript", | ||
@@ -5,0 +5,0 @@ "main": "./RestClient.js", |
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
60507