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

@vizzly/sqlbuilder-public

Package Overview
Dependencies
Maintainers
0
Versions
86
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vizzly/sqlbuilder-public - npm Package Compare versions

Comparing version 0.1.17 to 0.1.19

dist/DataSet/index.d.ts

2

dist/index.d.ts
import { Client, NormalizedDataType } from "./types";
export * from "./nativeDataTypeDatabase";
export * from "./types";
export * as DataSet from "./DataSet";
export * as Errors from "./errors";
export declare const NORMALIZED_DATA_TYPES: Array<NormalizedDataType>;
export declare const DATE_MATHS_OPERATORS: string[];
export declare const getNativeDataTypesOfNormalizedType: (client: Client, normalizedDataType: NormalizedDataType) => string[];

@@ -13,10 +13,24 @@ "use strict";

}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.getNativeDataTypesOfNormalizedType = exports.DATE_MATHS_OPERATORS = exports.NORMALIZED_DATA_TYPES = void 0;
exports.getNativeDataTypesOfNormalizedType = exports.DATE_MATHS_OPERATORS = exports.NORMALIZED_DATA_TYPES = exports.Errors = exports.DataSet = void 0;
const nativeDataTypeDatabase_1 = require("./nativeDataTypeDatabase");
__exportStar(require("./nativeDataTypeDatabase"), exports);
__exportStar(require("./types"), exports);
exports.DataSet = __importStar(require("./DataSet"));
exports.Errors = __importStar(require("./errors"));
exports.NORMALIZED_DATA_TYPES = [

@@ -23,0 +37,0 @@ "number",

@@ -54,2 +54,5 @@ "use strict";

},
UNIQUEIDENTIFIER: {
normalizedType: "string",
},
CHAR: {

@@ -56,0 +59,0 @@ normalizedType: "string",

@@ -0,1 +1,3 @@

export * from "./DataSet/types";
export * from "./Query/types";
export type Client = "SQLite" | "microsoftSQLServer" | "mariadb" | "postgres" | "bigquery" | "snowflake" | "mysql" | "redshift";

@@ -2,0 +4,0 @@ export type NormalizedDataType = "number" | "boolean" | "string" | "date_time" | "string[]";

"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
__exportStar(require("./DataSet/types"), exports);
__exportStar(require("./Query/types"), exports);

2

package.json
{
"name": "@vizzly/sqlbuilder-public",
"version": "0.1.17",
"version": "0.1.19",
"source": "src/index.ts",

@@ -5,0 +5,0 @@ "types": "dist/index.d.ts",

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