🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@newbility/postgres

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@newbility/postgres - npm Package Compare versions

Comparing version
0.2.18
to
0.2.20
+4
-1
build/src/PostgresProvider.d.ts

@@ -15,3 +15,6 @@ import { DatabaseProvider, ExecuteResult, IDatabaseClient } from '@newbility/database';

[key: string]: any;
}): Promise<ExecuteResult<TResult>>;
}): Promise<{
totalCount: number;
data: TResult[];
}>;
QueryOneAsync<TResult = any>(sql: string, ...args: any[]): Promise<TResult | undefined>;

@@ -18,0 +21,0 @@ protected GetConnPool(options: PostgresOptions): Pool;

+2
-2
{
"name": "@newbility/postgres",
"version": "0.2.18",
"version": "0.2.20",
"main": "build/index.js",

@@ -19,3 +19,3 @@ "author": "jameshu",

"dependencies": {
"@newbility/database": "^0.2.18",
"@newbility/database": "^0.2.20",
"pg": "^8.10.0"

@@ -22,0 +22,0 @@ },