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

@embracesql/client

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@embracesql/client - npm Package Compare versions

Comparing version 0.0.13 to 0.0.14

6

package.json
{
"name": "@embracesql/client",
"version": "0.0.13",
"version": "0.0.14",
"description": "Connects to EmbraceSQL over HTTP/S from browser and node.",

@@ -13,5 +13,5 @@ "type": "module",

"dependencies": {
"@embracesql/shared": "^0.0.13"
"@embracesql/shared": "^0.0.14"
},
"gitHead": "448c86eec2b97e67e555867f7c3ca08459993d24"
"gitHead": "4f59f194e44a54194d5f8d1344a1c0adadfd4958"
}

@@ -45,7 +45,7 @@ import {

// will return a single row on a unique index
const parametersType = node.index.typescriptNamespacedName;
const parametersType = node.index.type.typescriptNamespacedName;
const resultType = node.index.unique
? `${node.index.table.type.typescriptNamespacedName} | undefined`
: `${node.index.table.type.typescriptNamespacedName}[] | undefined`;
const parametersPick = node.index.columns
const parametersPick = node.index.type.attributes
.map(

@@ -213,3 +213,3 @@ (c) =>

// will return a single row on a unique index
const parametersType = node.index.typescriptNamespacedName;
const parametersType = node.index.type.typescriptNamespacedName;
const valuesType = `Partial<${node.index.table.type.typescriptNamespacedName}>`;

@@ -219,3 +219,3 @@ const resultType = node.index.unique

: `${node.index.table.type.typescriptNamespacedName}[] | undefined`;
const parametersPick = node.index.columns
const parametersPick = node.index.type.attributes
.map(

@@ -222,0 +222,0 @@ (c) =>

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