🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@fiado/http-client

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fiado/http-client - npm Package Compare versions

Comparing version
1.0.9
to
1.0.10
+4
-4
bin/IHttpRequest.d.ts

@@ -10,15 +10,15 @@ import { AxiosRequestConfig } from "axios";

password: string;
}, enableTimeout?: boolean): Promise<T>;
}, enableTimeout?: boolean, extraConfig?: AxiosRequestConfig): Promise<T>;
put<T>(url: string, data?: any, headers?: Record<string, string>, basicAuth?: {
username: string;
password: string;
}, enableTimeout?: boolean): Promise<T>;
}, enableTimeout?: boolean, extraConfig?: AxiosRequestConfig): Promise<T>;
patch<T>(url: string, data?: any, headers?: Record<string, string>, basicAuth?: {
username: string;
password: string;
}, enableTimeout?: boolean): Promise<T>;
}, enableTimeout?: boolean, extraConfig?: AxiosRequestConfig): Promise<T>;
delete<T>(url: string, params?: Record<string, any>, headers?: Record<string, string>, basicAuth?: {
username: string;
password: string;
}, enableTimeout?: boolean): Promise<T>;
}, enableTimeout?: boolean, extraConfig?: AxiosRequestConfig): Promise<T>;
}
{
"name": "@fiado/http-client",
"version": "1.0.9",
"version": "1.0.10",
"description": "Herramienta para realizar solicitudes http",

@@ -5,0 +5,0 @@ "main": "bin/index.js",

@@ -19,3 +19,4 @@ import {AxiosRequestConfig} from "axios";

basicAuth?: { username: string; password: string },
enableTimeout?: boolean
enableTimeout?: boolean,
extraConfig?: AxiosRequestConfig,
): Promise<T>;

@@ -28,3 +29,4 @@

basicAuth?: { username: string; password: string },
enableTimeout?: boolean
enableTimeout?: boolean,
extraConfig?: AxiosRequestConfig,
): Promise<T>;

@@ -37,3 +39,4 @@

basicAuth?: { username: string; password: string },
enableTimeout?: boolean
enableTimeout?: boolean,
extraConfig?: AxiosRequestConfig,
): Promise<T>;

@@ -46,4 +49,5 @@

basicAuth?: { username: string; password: string },
enableTimeout?: boolean
enableTimeout?: boolean,
extraConfig?: AxiosRequestConfig,
): Promise<T>;
}