New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@borda/client

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@borda/client - npm Package Compare versions

Comparing version 0.0.8 to 0.0.9

2

package.json
{
"name": "@borda/client",
"version": "0.0.8",
"version": "0.0.9",
"files": [

@@ -5,0 +5,0 @@ "packages",

@@ -8,3 +8,8 @@ import { Document } from './types';

};
export declare function fetcher<T = Document>(url: string, options?: {
export interface FetchError {
data: string;
status: number;
[key: string]: unknown;
}
export declare function fetcher<T = Document, E = FetchError>(url: string, options?: {
method?: HttpMethod;

@@ -14,2 +19,3 @@ body?: Document | null;

direct?: boolean;
transform?: (response: unknown) => E;
}): Promise<FetchResponse<T>>;

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc