Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@neondatabase/serverless

Package Overview
Dependencies
Maintainers
2
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@neondatabase/serverless - npm Package Compare versions

Comparing version 0.4.19 to 0.4.20

14

index.d.ts

@@ -172,2 +172,9 @@

export interface NeonQueryFunction<ArrayMode extends boolean, FullResults extends boolean> {
(strings: TemplateStringsArray, ...params: any[]):
Promise<FullResults extends true ? FullQueryResults<ArrayMode> : QueryRows<ArrayMode>>;
(strings: string, params?: any[]):
Promise<FullResults extends true ? FullQueryResults<ArrayMode> : QueryRows<ArrayMode>>;
}
/**

@@ -177,3 +184,3 @@ * This experimental function returns an async tagged-template function that

* https. By default, it returns database rows directly. Types should match
* those returned by this driver over WebSockets.
* those returned by this driver (i.e. Pool or Client) over WebSockets.
*

@@ -219,6 +226,3 @@ * The returned function can also be called directly (i.e. not as a template

}
): (
strings: TemplateStringsArray | string,
...params: any[]
) => Promise<FullResults extends true ? FullQueryResults<ArrayMode> : QueryRows<ArrayMode>>;
): NeonQueryFunction<ArrayMode, FullResults>;
{
"name": "@neondatabase/serverless",
"version": "0.4.19",
"version": "0.4.20",
"author": "Neon",

@@ -5,0 +5,0 @@ "description": "node-postgres for serverless environments from neon.tech",

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