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

polyfact

Package Overview
Dependencies
Maintainers
3
Versions
78
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

polyfact - npm Package Compare versions

Comparing version 0.1.77 to 0.1.78

11

kv.d.ts
import { InputClientOptions } from "./clientOpts";
export type KV = {
id?: string;
userId?: string;
key: string;
value: string;
createdAt?: string;
};
export declare function set(key: string, value: string, clientOptions?: InputClientOptions): Promise<void>;
export declare function get(key: string, clientOptions?: InputClientOptions): Promise<string>;
export declare function all(clientOptions?: InputClientOptions): Promise<string[]>;
export declare function all(clientOptions?: InputClientOptions): Promise<KV[]>;
export declare function del(key: string, clientOptions?: InputClientOptions): Promise<void>;

@@ -10,4 +17,4 @@ export type KVClient = {

del: (key: string) => Promise<void>;
all: () => Promise<string[]>;
all: () => Promise<KV[]>;
};
export default function client(clientOptions?: InputClientOptions): KVClient;

2

package.json
{
"name": "polyfact",
"version": "0.1.77",
"version": "0.1.78",
"main": "index.js",

@@ -5,0 +5,0 @@ "types": "index.d.ts",

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