UNPKG

@timescaledb/core

Version:

The `@timescaledb/core` package provides fundamental building blocks for working with TimescaleDB in TypeScript/JavaScript applications. It includes SQL query builders and utilities for managing hypertables, continuous aggregates, compression, and other T

19 lines 1.02 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CompressionErrors = exports.ExtensionErrors = exports.HypertableErrors = void 0; var HypertableErrors; (function (HypertableErrors) { HypertableErrors["NAME_REQUIRED"] = "Hypertable name is required"; HypertableErrors["OPTIONS_REQUIRED"] = "Hypertable options are required"; HypertableErrors["INVALID_OPTIONS"] = "Invalid hypertable options"; HypertableErrors["INVALID_NAME"] = "Invalid hypertable name"; })(HypertableErrors || (exports.HypertableErrors = HypertableErrors = {})); var ExtensionErrors; (function (ExtensionErrors) { ExtensionErrors["INVALID_OPTIONS"] = "Invalid extension options"; })(ExtensionErrors || (exports.ExtensionErrors = ExtensionErrors = {})); var CompressionErrors; (function (CompressionErrors) { CompressionErrors["INVALID_OPTIONS"] = "Invalid compression options"; })(CompressionErrors || (exports.CompressionErrors = CompressionErrors = {})); //# sourceMappingURL=errors.js.map