@just-in/core
Version:
A TypeScript-first framework for building adaptive digital health interventions.
18 lines • 717 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NO_ID = exports.TASK_RESULTS = exports.DECISION_RULE_RESULTS = exports.ARCHIVED_EVENTS = exports.EVENT_QUEUE = exports.USERS = exports.DBType = void 0;
// DB types
var DBType;
(function (DBType) {
DBType["MONGO"] = " MONGO";
DBType["POSTGRES"] = " POSTGRES";
})(DBType || (exports.DBType = DBType = {}));
// COLLECTION/TABLE NAMES
exports.USERS = 'users';
exports.EVENT_QUEUE = "event_queue";
exports.ARCHIVED_EVENTS = "archived_events";
exports.DECISION_RULE_RESULTS = 'decision_rule_results';
exports.TASK_RESULTS = 'task_results';
// Placeholder
exports.NO_ID = 'NO_ID';
//# sourceMappingURL=data-manager.constants.js.map