@balena/abstract-sql-compiler
Advanced tools
Comparing version 7.0.0 to 7.0.1-improve-bind-node-typing-66723aba86dba67d25e3d79f28f38e258c2658c6
@@ -7,4 +7,8 @@ # Change Log | ||
## 7.0.0 - 2020-05-22 | ||
## 7.0.1 - 2020-07-10 | ||
* Improve `BindNode` typing [Pagan Gazzard] | ||
## 7.0.0 - 2020-05-21 | ||
* Allow adding to the FromTypeNode set [Pagan Gazzard] | ||
@@ -11,0 +15,0 @@ * Rename to @balena/abstract-sql-compiler [Pagan Gazzard] |
@@ -38,3 +38,3 @@ export declare const enum Engines { | ||
export declare type ReferencedFieldNode = ['ReferencedField', string, string]; | ||
export declare type BindNode = ['Bind', string, string?]; | ||
export declare type BindNode = ['Bind', number | string] | ['Bind', string, string]; | ||
export declare type CastNode = ['Cast', AbstractSqlType, string]; | ||
@@ -41,0 +41,0 @@ export declare type CoalesceNode = ['Cast', UnknownTypeNodes, UnknownTypeNodes, ...UnknownTypeNodes[]]; |
{ | ||
"name": "@balena/abstract-sql-compiler", | ||
"version": "7.0.0", | ||
"version": "7.0.1-improve-bind-node-typing-66723aba86dba67d25e3d79f28f38e258c2658c6", | ||
"description": "A translator for abstract sql into sql.", | ||
@@ -5,0 +5,0 @@ "main": "out/AbstractSQLCompiler.js", |
@@ -83,3 +83,3 @@ export const enum Engines { | ||
export type ReferencedFieldNode = ['ReferencedField', string, string]; | ||
export type BindNode = ['Bind', string, string?]; | ||
export type BindNode = ['Bind', number | string] | ['Bind', string, string]; | ||
export type CastNode = ['Cast', AbstractSqlType, string]; | ||
@@ -86,0 +86,0 @@ export type CoalesceNode = [ |
Sorry, the diff of this file is not supported yet
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
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
517111
2