@vizzly/sqlbuilder-public
Advanced tools
Comparing version 0.1.17 to 0.1.19
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); |
{ | ||
"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", |
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
28850
5177
18
965