UNPKG

@decaf-ts/for-couchdb

Version:
45 lines 1.88 kB
import { Metadata } from "@decaf-ts/decoration"; export * from "./indexes/index.js"; export * from "./repository.js"; export * from "./adapter.js"; export * from "./constants.js"; export * from "./errors/index.js"; export * from "./metadata.js"; export * from "./decorators.js"; export * from "./types.js"; export { reAuth, wrapDocumentScope, testReservedAttributes, generateIndexDoc } from "./utils.js"; export * from "./query/index.js"; export * from "./views/index.js"; /** * @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 */ export const 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 */ export const 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 */ export const FULL_VERSION = "0.14.4-80b9ad6"; /** * @description Stores the current package name * @summary The version string of the for-couchdb package * @const PACKAGE_NAME */ export const PACKAGE_NAME = "@decaf-ts/for-couchdb"; Metadata.registerLibrary(PACKAGE_NAME, VERSION); //# sourceMappingURL=index.js.map