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

@dataform/sqlx

Package Overview
Dependencies
Maintainers
2
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dataform/sqlx - npm Package Compare versions

Comparing version 1.5.1 to 1.5.2

20

lexer.d.ts
/// <amd-module name="@dataform/sqlx/lexer" />
export interface ISyntaxTreeNode {
contentType: "sql" | "js" | "jsPlaceholder" | "sqlStatementSeparator" | "sqlComment";
contents: Array<string | ISyntaxTreeNode>;
export declare enum SyntaxTreeNodeType {
SQL = 0,
JAVASCRIPT = 1,
JAVASCRIPT_TEMPLATE_STRING_PLACEHOLDER = 2,
SQL_STATEMENT_SEPARATOR = 3,
SQL_COMMENT = 4
}
export declare function constructSyntaxTree(code: string): ISyntaxTreeNode;
export declare class SyntaxTreeNode {
readonly type: SyntaxTreeNodeType;
private allChildren;
static create(code: string): SyntaxTreeNode;
constructor(type: SyntaxTreeNodeType, allChildren?: Array<string | SyntaxTreeNode>);
children(): (string | SyntaxTreeNode)[];
concatenate(): string;
push(child: string | SyntaxTreeNode): this;
equals(other: SyntaxTreeNode): boolean;
}
export interface ISqlxParseResults {

@@ -8,0 +20,0 @@ config: string;

2

package.json
{
"version": "1.5.1",
"version": "1.5.2",
"homepage": "https://github.com/dataform-co/dataform",

@@ -4,0 +4,0 @@ "license": "MIT",

Sorry, the diff of this file is too big to display

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