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

postgresql-client

Package Overview
Dependencies
Maintainers
1
Versions
106
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postgresql-client - npm Package Compare versions

Comparing version 1.7.1 to 1.8.0

4

dist/definitions.d.ts

@@ -127,2 +127,6 @@ /// <reference types="node" />

/**
* Contains row type
*/
rowType?: 'array' | 'object';
/**
* Time elapsed to execute command

@@ -129,0 +133,0 @@ */

@@ -186,2 +186,4 @@ "use strict";

current.executeTime = Date.now() - currentStart;
if (current.rows)
current.rowType = opts.objectRows && current.fields ? 'object' : 'array';
result.results.push(current);

@@ -188,0 +190,0 @@ if (cb)

@@ -142,2 +142,3 @@ "use strict";

result.command = 'SELECT';
result.rowType = options.objectRows ? 'object' : 'array';
const rows = result.rows = executeResult.rows;

@@ -144,0 +145,0 @@ const l = rows.length;

2

package.json
{
"name": "postgresql-client",
"description": "Professional PostgreSQL client for JavaScript and TypeScript",
"version": "1.7.1",
"version": "1.8.0",
"author": "Panates",

@@ -6,0 +6,0 @@ "contributors": [

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