@decaf-ts/for-couchdb
Version:
decaf-ts couchdb wrappers
67 lines • 3.54 kB
JavaScript
;
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 });
exports.PACKAGE_NAME = exports.FULL_VERSION = exports.COMMIT = exports.VERSION = exports.generateIndexDoc = exports.testReservedAttributes = exports.wrapDocumentScope = exports.reAuth = void 0;
const decoration_1 = require("@decaf-ts/decoration");
__exportStar(require("./indexes/index.cjs"), exports);
__exportStar(require("./repository.cjs"), exports);
__exportStar(require("./adapter.cjs"), exports);
__exportStar(require("./constants.cjs"), exports);
__exportStar(require("./errors/index.cjs"), exports);
__exportStar(require("./metadata.cjs"), exports);
__exportStar(require("./decorators.cjs"), exports);
__exportStar(require("./types.cjs"), exports);
var utils_js_1 = require("./utils.cjs");
Object.defineProperty(exports, "reAuth", { enumerable: true, get: function () { return utils_js_1.reAuth; } });
Object.defineProperty(exports, "wrapDocumentScope", { enumerable: true, get: function () { return utils_js_1.wrapDocumentScope; } });
Object.defineProperty(exports, "testReservedAttributes", { enumerable: true, get: function () { return utils_js_1.testReservedAttributes; } });
Object.defineProperty(exports, "generateIndexDoc", { enumerable: true, get: function () { return utils_js_1.generateIndexDoc; } });
__exportStar(require("./query/index.cjs"), exports);
__exportStar(require("./views/index.cjs"), exports);
/**
* @description CouchDB adapter for Decaf.ts
* @summary A TypeScript adapter for CouchDB database operations, providing a seamless integration with the Decaf.ts framework. This module includes classes, interfaces, and utilities for working with CouchDB databases, including support for Mango queries, document operations, and sequence management.
* @module for-couchdb
*/
/**
* @description Stores the current package version
* @summary The version string of the for-couchdb package
* @const VERSION
*/
exports.VERSION = "0.14.4";
/**
* @description Represents the current commit hash of the module build.
* @summary Stores the current git commit hash for the package. The build replaces
* the placeholder with the actual commit hash at publish time.
* @const COMMIT
*/
exports.COMMIT = "80b9ad6";
/**
* @description Represents the full version string of the module.
* @summary Stores the semver version and commit hash for the package.
* The build replaces the placeholder with the actual `<version>-<commit>` value at publish time.
* @const FULL_VERSION
*/
exports.FULL_VERSION = "0.14.4-80b9ad6";
/**
* @description Stores the current package name
* @summary The version string of the for-couchdb package
* @const PACKAGE_NAME
*/
exports.PACKAGE_NAME = "@decaf-ts/for-couchdb";
decoration_1.Metadata.registerLibrary(exports.PACKAGE_NAME, exports.VERSION);
//# sourceMappingURL=index.js.map
//# sourceMappingURL=index.cjs.map