@embracesql/client
Advanced tools
Comparing version 0.0.13 to 0.0.14
{ | ||
"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) => |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11477
+ Added@embracesql/shared@0.0.14(transitive)
- Removed@embracesql/shared@0.0.13(transitive)
Updated@embracesql/shared@^0.0.14