@embracesql/shared
Advanced tools
Comparing version 0.0.10 to 0.0.11
{ | ||
"name": "@embracesql/shared", | ||
"version": "0.0.10", | ||
"version": "0.0.11", | ||
"description": "EmbraceSQL shared types between browser and node.", | ||
@@ -17,3 +17,3 @@ "type": "module", | ||
}, | ||
"gitHead": "886b89469dfe29e7613e221577f897a68323ab81" | ||
"gitHead": "bcd2d7f0e7681e426b6017e798d6e6e83615564f" | ||
} |
@@ -659,2 +659,3 @@ import { | ||
public returnsMany: boolean, | ||
public returnsComposite: boolean, | ||
) { | ||
@@ -774,3 +775,3 @@ // always returnsMany | ||
// always returnsMany | ||
super(name, ASTKind.Script, parent, true); | ||
super(name, ASTKind.Script, parent, true, true); | ||
} | ||
@@ -801,5 +802,6 @@ } | ||
returnsMany: boolean, | ||
returnsComposite: boolean, | ||
public isPseudoType: boolean, | ||
) { | ||
super(name, ASTKind.Procedure, procedures, returnsMany); | ||
super(name, ASTKind.Procedure, procedures, returnsMany, returnsComposite); | ||
} | ||
@@ -806,0 +808,0 @@ |
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
38472
1315