diff --git a/dist/es/plugins/replication-graphql/graphql-schema-from-rx-schema.js b/dist/es/plugins/replication-graphql/graphql-schema-from-rx-schema.js index ca7c1f3c15f..6fa7d5858aa 100644 --- a/dist/es/plugins/replication-graphql/graphql-schema-from-rx-schema.js +++ b/dist/es/plugins/replication-graphql/graphql-schema-from-rx-schema.js @@ -63,8 +63,18 @@ export function graphQLSchemaFromRxSchema(input) { var mutationString = mutationName + '(' + collectionName + ': ' + collectionNameInput + '): ' + ucCollectionName; ret.mutations.push(SPACING + mutationString); // subscription + var subscriptionParamsString = ''; + + if (collectionSettings.subscriptionParams && Object.keys(collectionSettings.subscriptionParams).length > 0) { + subscriptionParamsString = '(' + Object.entries(collectionSettings.subscriptionParams).map(function (_ref2) { + var name = _ref2[0], + type = _ref2[1]; + return name + ': ' + type; + }).join(', ') + ')'; + } + var subscriptionName = prefixes.changed + ucCollectionName; - var subscriptionString = subscriptionName + ': ' + ucCollectionName; + var subscriptionString = subscriptionName + subscriptionParamsString + ': ' + ucCollectionName; ret.subscriptions.push(SPACING + subscriptionString); }); // build full string diff --git a/dist/es/plugins/replication-graphql/index.js b/dist/es/plugins/replication-graphql/index.js index 54903e0ccd0..92195438e25 100644 --- a/dist/es/plugins/replication-graphql/index.js +++ b/dist/es/plugins/replication-graphql/index.js @@ -58,6 +58,7 @@ export var RxGraphQLReplicationState = /*#__PURE__*/function () { this.active$ = undefined; this.collection = collection; this.url = url; + this.headers = headers; this.pull = pull; this.push = push; this.deletedFlag = deletedFlag; diff --git a/dist/es/rx-document.js b/dist/es/rx-document.js index 1649e040bb9..2ffca334625 100644 --- a/dist/es/rx-document.js +++ b/dist/es/rx-document.js @@ -1,9 +1,11 @@ +import _regeneratorRuntime from "@babel/runtime/regenerator"; +import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator"; import objectPath from 'object-path'; import { BehaviorSubject } from 'rxjs'; import { distinctUntilChanged, map } from 'rxjs/operators'; -import { clone, trimDots, getHeightOfRevision, toPromise, pluginMissing, now } from './util'; +import { clone, trimDots, getHeightOfRevision, toPromise, pluginMissing, now, nextTick } from './util'; import { createUpdateEvent, createDeleteEvent } from './rx-change-event'; -import { newRxError, newRxTypeError } from './rx-error'; +import { newRxError, newRxTypeError, isPouchdbConflictError } from './rx-error'; import { runPluginHooks } from './hooks'; export var basePrototype = { /** @@ -281,29 +283,100 @@ export var basePrototype = { /** * runs an atomic update over the document - * @param fun that takes the document-data and returns a new data-object + * @param function that takes the document-data and returns a new data-object */ atomicUpdate: function atomicUpdate(fun) { var _this2 = this; - this._atomicQueue = this._atomicQueue.then(function () { - var oldData = _this2._dataSync$.getValue(); - - var ret = fun(clone(_this2._dataSync$.getValue()), _this2); - var retPromise = toPromise(ret); - return retPromise.then(function (newData) { - // collection does not exist on local documents - if (_this2.collection) { - newData = _this2.collection.schema.fillObjectWithDefaults(newData); + this._atomicQueue = this._atomicQueue.then( /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee() { + var done, oldData, ret, newData; + return _regeneratorRuntime.wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + done = false; // we need a hacky while loop to stay incide the chain-link of _atomicQueue + // while still having the option to run a retry on conflicts + + case 1: + if (done) { + _context.next = 24; + break; + } + + oldData = _this2._dataSync$.getValue(); + ret = fun(clone(_this2._dataSync$.getValue()), _this2); + _context.next = 6; + return toPromise(ret); + + case 6: + newData = _context.sent; + + if (_this2.collection) { + newData = _this2.collection.schema.fillObjectWithDefaults(newData); + } + + _context.prev = 8; + _context.next = 11; + return _this2._saveData(newData, oldData); + + case 11: + done = true; + _context.next = 22; + break; + + case 14: + _context.prev = 14; + _context.t0 = _context["catch"](8); + + if (!isPouchdbConflictError(_context.t0)) { + _context.next = 21; + break; + } + + _context.next = 19; + return nextTick(); + + case 19: + _context.next = 22; + break; + + case 21: + throw _context.t0; + + case 22: + _context.next = 1; + break; + + case 24: + case "end": + return _context.stop(); + } } - - return _this2._saveData(newData, oldData); - }); - }); + }, _callee, null, [[8, 14]]); + }))); return this._atomicQueue.then(function () { return _this2; }); }, + + /** + * patches the given properties + */ + atomicPatch: function atomicPatch(patch) { + return this.atomicUpdate(function (docData) { + Object.entries(patch).forEach(function (_ref2) { + var k = _ref2[0], + v = _ref2[1]; + docData[k] = v; + }); + return docData; + }); + }, + + /** + * @deprecated use atomicPatch instead because it is better typed + * and does not allow any keys and values + */ atomicSet: function atomicSet(key, value) { return this.atomicUpdate(function (docData) { objectPath.set(docData, key, value); diff --git a/dist/es/rx-error.js b/dist/es/rx-error.js index 3e8cf9563ce..236bf6b4c7d 100644 --- a/dist/es/rx-error.js +++ b/dist/es/rx-error.js @@ -113,4 +113,11 @@ export function newRxError(code, parameters) { export function newRxTypeError(code, parameters) { return new RxTypeError(code, overwritable.tunnelErrorMessage(code), parameters); } +export function isPouchdbConflictError(err) { + if (err.parameters && err.parameters.pouchDbError && err.parameters.pouchDbError.status === 409) { + return true; + } else { + return false; + } +} //# sourceMappingURL=rx-error.js.map \ No newline at end of file diff --git a/dist/lib/plugins/replication-graphql/graphql-schema-from-rx-schema.js b/dist/lib/plugins/replication-graphql/graphql-schema-from-rx-schema.js index ec09e97dd1e..1501c8de15a 100644 --- a/dist/lib/plugins/replication-graphql/graphql-schema-from-rx-schema.js +++ b/dist/lib/plugins/replication-graphql/graphql-schema-from-rx-schema.js @@ -78,8 +78,18 @@ function graphQLSchemaFromRxSchema(input) { var mutationString = mutationName + '(' + collectionName + ': ' + collectionNameInput + '): ' + ucCollectionName; ret.mutations.push(SPACING + mutationString); // subscription + var subscriptionParamsString = ''; + + if (collectionSettings.subscriptionParams && Object.keys(collectionSettings.subscriptionParams).length > 0) { + subscriptionParamsString = '(' + Object.entries(collectionSettings.subscriptionParams).map(function (_ref2) { + var name = _ref2[0], + type = _ref2[1]; + return name + ': ' + type; + }).join(', ') + ')'; + } + var subscriptionName = prefixes.changed + ucCollectionName; - var subscriptionString = subscriptionName + ': ' + ucCollectionName; + var subscriptionString = subscriptionName + subscriptionParamsString + ': ' + ucCollectionName; ret.subscriptions.push(SPACING + subscriptionString); }); // build full string diff --git a/dist/lib/plugins/replication-graphql/index.js b/dist/lib/plugins/replication-graphql/index.js index 756b8e7a3a6..d94dab853d9 100644 --- a/dist/lib/plugins/replication-graphql/index.js +++ b/dist/lib/plugins/replication-graphql/index.js @@ -135,6 +135,7 @@ var RxGraphQLReplicationState = /*#__PURE__*/function () { this.active$ = undefined; this.collection = collection; this.url = url; + this.headers = headers; this.pull = pull; this.push = push; this.deletedFlag = deletedFlag; diff --git a/dist/lib/rx-document.js b/dist/lib/rx-document.js index 8bd866d7bb6..8311589e356 100644 --- a/dist/lib/rx-document.js +++ b/dist/lib/rx-document.js @@ -11,6 +11,10 @@ exports.createWithConstructor = createWithConstructor; exports.isInstanceOf = isInstanceOf; exports.basePrototype = void 0; +var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator")); + +var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator")); + var _objectPath = _interopRequireDefault(require("object-path")); var _rxjs = require("rxjs"); @@ -304,29 +308,100 @@ var basePrototype = { /** * runs an atomic update over the document - * @param fun that takes the document-data and returns a new data-object + * @param function that takes the document-data and returns a new data-object */ atomicUpdate: function atomicUpdate(fun) { var _this2 = this; - this._atomicQueue = this._atomicQueue.then(function () { - var oldData = _this2._dataSync$.getValue(); - - var ret = fun((0, _util.clone)(_this2._dataSync$.getValue()), _this2); - var retPromise = (0, _util.toPromise)(ret); - return retPromise.then(function (newData) { - // collection does not exist on local documents - if (_this2.collection) { - newData = _this2.collection.schema.fillObjectWithDefaults(newData); + this._atomicQueue = this._atomicQueue.then( /*#__PURE__*/(0, _asyncToGenerator2["default"])( /*#__PURE__*/_regenerator["default"].mark(function _callee() { + var done, oldData, ret, newData; + return _regenerator["default"].wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + done = false; // we need a hacky while loop to stay incide the chain-link of _atomicQueue + // while still having the option to run a retry on conflicts + + case 1: + if (done) { + _context.next = 24; + break; + } + + oldData = _this2._dataSync$.getValue(); + ret = fun((0, _util.clone)(_this2._dataSync$.getValue()), _this2); + _context.next = 6; + return (0, _util.toPromise)(ret); + + case 6: + newData = _context.sent; + + if (_this2.collection) { + newData = _this2.collection.schema.fillObjectWithDefaults(newData); + } + + _context.prev = 8; + _context.next = 11; + return _this2._saveData(newData, oldData); + + case 11: + done = true; + _context.next = 22; + break; + + case 14: + _context.prev = 14; + _context.t0 = _context["catch"](8); + + if (!(0, _rxError.isPouchdbConflictError)(_context.t0)) { + _context.next = 21; + break; + } + + _context.next = 19; + return (0, _util.nextTick)(); + + case 19: + _context.next = 22; + break; + + case 21: + throw _context.t0; + + case 22: + _context.next = 1; + break; + + case 24: + case "end": + return _context.stop(); + } } - - return _this2._saveData(newData, oldData); - }); - }); + }, _callee, null, [[8, 14]]); + }))); return this._atomicQueue.then(function () { return _this2; }); }, + + /** + * patches the given properties + */ + atomicPatch: function atomicPatch(patch) { + return this.atomicUpdate(function (docData) { + Object.entries(patch).forEach(function (_ref2) { + var k = _ref2[0], + v = _ref2[1]; + docData[k] = v; + }); + return docData; + }); + }, + + /** + * @deprecated use atomicPatch instead because it is better typed + * and does not allow any keys and values + */ atomicSet: function atomicSet(key, value) { return this.atomicUpdate(function (docData) { _objectPath["default"].set(docData, key, value); diff --git a/dist/lib/rx-error.js b/dist/lib/rx-error.js index 67352423bef..d939b7df597 100644 --- a/dist/lib/rx-error.js +++ b/dist/lib/rx-error.js @@ -7,6 +7,7 @@ Object.defineProperty(exports, "__esModule", { }); exports.newRxError = newRxError; exports.newRxTypeError = newRxTypeError; +exports.isPouchdbConflictError = isPouchdbConflictError; exports.RxTypeError = exports.RxError = void 0; var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass")); @@ -133,4 +134,12 @@ function newRxTypeError(code, parameters) { return new RxTypeError(code, _overwritable.overwritable.tunnelErrorMessage(code), parameters); } +function isPouchdbConflictError(err) { + if (err.parameters && err.parameters.pouchDbError && err.parameters.pouchDbError.status === 409) { + return true; + } else { + return false; + } +} + //# sourceMappingURL=rx-error.js.map \ No newline at end of file diff --git a/dist/rxdb.browserify.js b/dist/rxdb.browserify.js index d8534fa347c..b39bb7c34c7 100644 --- a/dist/rxdb.browserify.js +++ b/dist/rxdb.browserify.js @@ -17,7 +17,7 @@ RxDB.addRxPlugin(require('pouchdb-adapter-http')); window['RxDB'] = RxDB; -},{"./index.js":8,"@babel/polyfill":55,"@babel/runtime/helpers/interopRequireWildcard":64,"pouchdb-adapter-http":510,"pouchdb-adapter-idb":511}],2:[function(require,module,exports){ +},{"./index.js":8,"@babel/polyfill":55,"@babel/runtime/helpers/interopRequireWildcard":64,"pouchdb-adapter-http":513,"pouchdb-adapter-idb":514}],2:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -523,7 +523,7 @@ function createCrypter(password, schema) { } -},{"./util":54,"@babel/runtime/helpers/interopRequireDefault":63,"object-path":504}],5:[function(require,module,exports){ +},{"./util":54,"@babel/runtime/helpers/interopRequireDefault":63,"object-path":507}],5:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -653,7 +653,7 @@ function calculateNewResults(rxQuery, rxChangeEvents) { } -},{"event-reduce-js":438}],7:[function(require,module,exports){ +},{"event-reduce-js":440}],7:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -1389,7 +1389,7 @@ exports.RxDBAttachmentsPlugin = RxDBAttachmentsPlugin; }).call(this)}).call(this,require("buffer").Buffer) -},{"../rx-error":44,"./../rx-change-event":37,"./../util":54,"buffer":108,"rxjs/operators":738}],13:[function(require,module,exports){ +},{"../rx-error":44,"./../rx-change-event":37,"./../util":54,"buffer":108,"rxjs/operators":741}],13:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -1898,7 +1898,7 @@ function checkSchema(jsonSchema) { } -},{"../../rx-error":44,"../../util":54,"./entity-properties":16,"@babel/runtime/helpers/interopRequireDefault":63,"object-path":504}],16:[function(require,module,exports){ +},{"../../rx-error":44,"../../util":54,"./entity-properties":16,"@babel/runtime/helpers/interopRequireDefault":63,"object-path":507}],16:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -2387,7 +2387,7 @@ var RxDBEncryptionPlugin = { exports.RxDBEncryptionPlugin = RxDBEncryptionPlugin; -},{"../rx-error":44,"../util":54,"@babel/runtime/helpers/interopRequireDefault":63,"@babel/runtime/helpers/interopRequireWildcard":64,"crypto-js/aes":414,"crypto-js/enc-utf8":418}],21:[function(require,module,exports){ +},{"../rx-error":44,"../util":54,"@babel/runtime/helpers/interopRequireDefault":63,"@babel/runtime/helpers/interopRequireWildcard":64,"crypto-js/aes":416,"crypto-js/enc-utf8":420}],21:[function(require,module,exports){ "use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); @@ -2806,7 +2806,7 @@ var RxDBInMemoryPlugin = { exports.RxDBInMemoryPlugin = RxDBInMemoryPlugin; -},{"../change-event-buffer":2,"../core":3,"../crypter":4,"../plugins/watch-for-changes":34,"../pouch-db":35,"../rx-collection":39,"../rx-error":44,"../rx-schema":46,"../rx-storage-pouchdb":47,"../util":54,"@babel/runtime/helpers/assertThisInitialized":57,"@babel/runtime/helpers/inheritsLoose":62,"@babel/runtime/helpers/interopRequireDefault":63,"rxjs":539,"rxjs/operators":738}],22:[function(require,module,exports){ +},{"../change-event-buffer":2,"../core":3,"../crypter":4,"../plugins/watch-for-changes":34,"../pouch-db":35,"../rx-collection":39,"../rx-error":44,"../rx-schema":46,"../rx-storage-pouchdb":47,"../util":54,"@babel/runtime/helpers/assertThisInitialized":57,"@babel/runtime/helpers/inheritsLoose":62,"@babel/runtime/helpers/interopRequireDefault":63,"rxjs":542,"rxjs/operators":741}],22:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -3082,7 +3082,7 @@ var RxDBKeyCompressionPlugin = { exports.RxDBKeyCompressionPlugin = RxDBKeyCompressionPlugin; -},{"../util":54,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"jsonschema-key-compression":491}],24:[function(require,module,exports){ +},{"../util":54,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"jsonschema-key-compression":494}],24:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -3581,7 +3581,7 @@ var RxDBLocalDocumentsPlugin = { exports.RxDBLocalDocumentsPlugin = RxDBLocalDocumentsPlugin; -},{"../doc-cache":5,"../rx-change-event":37,"../rx-collection":39,"../rx-database":41,"../rx-document":43,"../rx-error":44,"../util":54,"@babel/runtime/helpers/inheritsLoose":62,"@babel/runtime/helpers/interopRequireDefault":63,"object-path":504,"rxjs/operators":738}],26:[function(require,module,exports){ +},{"../doc-cache":5,"../rx-change-event":37,"../rx-collection":39,"../rx-database":41,"../rx-document":43,"../rx-error":44,"../util":54,"@babel/runtime/helpers/inheritsLoose":62,"@babel/runtime/helpers/interopRequireDefault":63,"object-path":507,"rxjs/operators":741}],26:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -3976,7 +3976,7 @@ function migratePromise(oldCollection, batchSize) { } -},{"../../crypter":4,"../../hooks":7,"../../overwritable":9,"../../pouch-db":35,"../../rx-collection-helper":38,"../../rx-error":44,"../../rx-schema":46,"../../util":54,"rxjs":539}],27:[function(require,module,exports){ +},{"../../crypter":4,"../../hooks":7,"../../overwritable":9,"../../pouch-db":35,"../../rx-collection-helper":38,"../../rx-error":44,"../../rx-schema":46,"../../util":54,"rxjs":542}],27:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -4978,7 +4978,7 @@ var RxDBReplicationPlugin = { exports.RxDBReplicationPlugin = RxDBReplicationPlugin; -},{"../core":3,"../pouch-db":35,"../rx-collection":39,"../rx-error":44,"../util":54,"./watch-for-changes":34,"@babel/runtime/helpers/interopRequireDefault":63,"pouchdb-replication":527,"rxjs":539,"rxjs/operators":738}],32:[function(require,module,exports){ +},{"../core":3,"../pouch-db":35,"../rx-collection":39,"../rx-error":44,"../util":54,"./watch-for-changes":34,"@babel/runtime/helpers/interopRequireDefault":63,"pouchdb-replication":530,"rxjs":542,"rxjs/operators":741}],32:[function(require,module,exports){ "use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); @@ -5040,7 +5040,7 @@ var RxDBUpdatePlugin = { exports.RxDBUpdatePlugin = RxDBUpdatePlugin; -},{"@babel/runtime/helpers/interopRequireDefault":63,"modifyjs":494}],33:[function(require,module,exports){ +},{"@babel/runtime/helpers/interopRequireDefault":63,"modifyjs":497}],33:[function(require,module,exports){ "use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); @@ -5133,7 +5133,7 @@ var RxDBValidatePlugin = { exports.RxDBValidatePlugin = RxDBValidatePlugin; -},{"../rx-error":44,"../util":54,"@babel/runtime/helpers/interopRequireDefault":63,"is-my-json-valid":472}],34:[function(require,module,exports){ +},{"../rx-error":44,"../util":54,"@babel/runtime/helpers/interopRequireDefault":63,"is-my-json-valid":475}],34:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -5230,7 +5230,7 @@ var RxDBWatchForChangesPlugin = { exports.RxDBWatchForChangesPlugin = RxDBWatchForChangesPlugin; -},{"../rx-change-event":37,"../util":54,"rxjs":539,"rxjs/operators":738}],35:[function(require,module,exports){ +},{"../rx-change-event":37,"../util":54,"rxjs":542,"rxjs/operators":741}],35:[function(require,module,exports){ "use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); @@ -5380,7 +5380,7 @@ var PouchDB = _pouchdbCore["default"]; exports.PouchDB = PouchDB; -},{"./rx-error":44,"./util":54,"@babel/runtime/helpers/interopRequireDefault":63,"pouchdb-core":518,"pouchdb-find":521}],36:[function(require,module,exports){ +},{"./rx-error":44,"./util":54,"@babel/runtime/helpers/interopRequireDefault":63,"pouchdb-core":521,"pouchdb-find":524}],36:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -6686,7 +6686,7 @@ var _default = { exports["default"] = _default; -},{"./change-event-buffer":2,"./crypter":4,"./doc-cache":5,"./hooks":7,"./overwritable":9,"./pouch-db":35,"./query-cache":36,"./rx-change-event":37,"./rx-collection-helper":38,"./rx-document":43,"./rx-document-prototype-merge":42,"./rx-error":44,"./rx-query":45,"./rx-schema":46,"./util":54,"@babel/runtime/helpers/asyncToGenerator":58,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"@babel/runtime/regenerator":70,"rxjs/operators":738}],40:[function(require,module,exports){ +},{"./change-event-buffer":2,"./crypter":4,"./doc-cache":5,"./hooks":7,"./overwritable":9,"./pouch-db":35,"./query-cache":36,"./rx-change-event":37,"./rx-collection-helper":38,"./rx-document":43,"./rx-document-prototype-merge":42,"./rx-error":44,"./rx-query":45,"./rx-schema":46,"./util":54,"@babel/runtime/helpers/asyncToGenerator":58,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"@babel/runtime/regenerator":70,"rxjs/operators":741}],40:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -7417,7 +7417,7 @@ var _default = { exports["default"] = _default; -},{"./hooks":7,"./overwritable":9,"./pouch-db":35,"./rx-change-event":37,"./rx-collection":39,"./rx-database-internal-store":40,"./rx-error":44,"./rx-schema":46,"./rx-storage-pouchdb":47,"./util":54,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"broadcast-channel":96,"custom-idle-queue":423,"random-token":531,"rxjs":539,"rxjs/operators":738}],42:[function(require,module,exports){ +},{"./hooks":7,"./overwritable":9,"./pouch-db":35,"./rx-change-event":37,"./rx-collection":39,"./rx-database-internal-store":40,"./rx-error":44,"./rx-schema":46,"./rx-storage-pouchdb":47,"./util":54,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"broadcast-channel":96,"custom-idle-queue":425,"random-token":534,"rxjs":542,"rxjs/operators":741}],42:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -7558,6 +7558,10 @@ exports.createWithConstructor = createWithConstructor; exports.isInstanceOf = isInstanceOf; exports.basePrototype = void 0; +var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator")); + +var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator")); + var _objectPath = _interopRequireDefault(require("object-path")); var _rxjs = require("rxjs"); @@ -7851,29 +7855,100 @@ var basePrototype = { /** * runs an atomic update over the document - * @param fun that takes the document-data and returns a new data-object + * @param function that takes the document-data and returns a new data-object */ atomicUpdate: function atomicUpdate(fun) { var _this2 = this; - this._atomicQueue = this._atomicQueue.then(function () { - var oldData = _this2._dataSync$.getValue(); + this._atomicQueue = this._atomicQueue.then( /*#__PURE__*/(0, _asyncToGenerator2["default"])( /*#__PURE__*/_regenerator["default"].mark(function _callee() { + var done, oldData, ret, newData; + return _regenerator["default"].wrap(function _callee$(_context) { + while (1) { + switch (_context.prev = _context.next) { + case 0: + done = false; // we need a hacky while loop to stay incide the chain-link of _atomicQueue + // while still having the option to run a retry on conflicts + + case 1: + if (done) { + _context.next = 24; + break; + } - var ret = fun((0, _util.clone)(_this2._dataSync$.getValue()), _this2); - var retPromise = (0, _util.toPromise)(ret); - return retPromise.then(function (newData) { - // collection does not exist on local documents - if (_this2.collection) { - newData = _this2.collection.schema.fillObjectWithDefaults(newData); - } + oldData = _this2._dataSync$.getValue(); + ret = fun((0, _util.clone)(_this2._dataSync$.getValue()), _this2); + _context.next = 6; + return (0, _util.toPromise)(ret); - return _this2._saveData(newData, oldData); - }); - }); + case 6: + newData = _context.sent; + + if (_this2.collection) { + newData = _this2.collection.schema.fillObjectWithDefaults(newData); + } + + _context.prev = 8; + _context.next = 11; + return _this2._saveData(newData, oldData); + + case 11: + done = true; + _context.next = 22; + break; + + case 14: + _context.prev = 14; + _context.t0 = _context["catch"](8); + + if (!(0, _rxError.isPouchdbConflictError)(_context.t0)) { + _context.next = 21; + break; + } + + _context.next = 19; + return (0, _util.nextTick)(); + + case 19: + _context.next = 22; + break; + + case 21: + throw _context.t0; + + case 22: + _context.next = 1; + break; + + case 24: + case "end": + return _context.stop(); + } + } + }, _callee, null, [[8, 14]]); + }))); return this._atomicQueue.then(function () { return _this2; }); }, + + /** + * patches the given properties + */ + atomicPatch: function atomicPatch(patch) { + return this.atomicUpdate(function (docData) { + Object.entries(patch).forEach(function (_ref2) { + var k = _ref2[0], + v = _ref2[1]; + docData[k] = v; + }); + return docData; + }); + }, + + /** + * @deprecated use atomicPatch instead because it is better typed + * and does not allow any keys and values + */ atomicSet: function atomicSet(key, value) { return this.atomicUpdate(function (docData) { _objectPath["default"].set(docData, key, value); @@ -8087,7 +8162,7 @@ function isInstanceOf(obj) { } -},{"./hooks":7,"./rx-change-event":37,"./rx-error":44,"./util":54,"@babel/runtime/helpers/interopRequireDefault":63,"object-path":504,"rxjs":539,"rxjs/operators":738}],44:[function(require,module,exports){ +},{"./hooks":7,"./rx-change-event":37,"./rx-error":44,"./util":54,"@babel/runtime/helpers/asyncToGenerator":58,"@babel/runtime/helpers/interopRequireDefault":63,"@babel/runtime/regenerator":70,"object-path":507,"rxjs":542,"rxjs/operators":741}],44:[function(require,module,exports){ "use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); @@ -8097,6 +8172,7 @@ Object.defineProperty(exports, "__esModule", { }); exports.newRxError = newRxError; exports.newRxTypeError = newRxTypeError; +exports.isPouchdbConflictError = isPouchdbConflictError; exports.RxTypeError = exports.RxError = void 0; var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass")); @@ -8223,6 +8299,14 @@ function newRxTypeError(code, parameters) { return new RxTypeError(code, _overwritable.overwritable.tunnelErrorMessage(code), parameters); } +function isPouchdbConflictError(err) { + if (err.parameters && err.parameters.pouchDbError && err.parameters.pouchDbError.status === 409) { + return true; + } else { + return false; + } +} + },{"./overwritable":9,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/inheritsLoose":62,"@babel/runtime/helpers/interopRequireDefault":63,"@babel/runtime/helpers/wrapNativeSuper":69}],45:[function(require,module,exports){ "use strict"; @@ -8746,7 +8830,7 @@ function isInstanceOf(obj) { } -},{"./event-reduce":6,"./hooks":7,"./query-cache":36,"./rx-document-prototype-merge":42,"./rx-error":44,"./util":54,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"deep-equal":425,"pouchdb-selector-core":528,"rxjs":539,"rxjs/operators":738}],46:[function(require,module,exports){ +},{"./event-reduce":6,"./hooks":7,"./query-cache":36,"./rx-document-prototype-merge":42,"./rx-error":44,"./util":54,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"deep-equal":427,"pouchdb-selector-core":531,"rxjs":542,"rxjs/operators":741}],46:[function(require,module,exports){ "use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); @@ -9087,7 +9171,7 @@ function isInstanceOf(obj) { } -},{"./hooks":7,"./rx-document":43,"./rx-error":44,"./util":54,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"deep-equal":425,"object-path":504}],47:[function(require,module,exports){ +},{"./hooks":7,"./rx-document":43,"./rx-error":44,"./util":54,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"deep-equal":427,"object-path":507}],47:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -9377,7 +9461,7 @@ function getRxStoragePouchDb(adapter, pouchSettings) { } -},{"./hooks":7,"./pouch-db":35,"./rx-error":44,"./util":54,"pouchdb-selector-core":528}],48:[function(require,module,exports){ +},{"./hooks":7,"./pouch-db":35,"./rx-error":44,"./util":54,"pouchdb-selector-core":531}],48:[function(require,module,exports){ "use strict"; @@ -9829,7 +9913,7 @@ function isFolderPath(name) { } -},{"@babel/runtime/helpers/interopRequireDefault":63,"clone":109,"is-electron":467,"random-token":531,"spark-md5":740}],55:[function(require,module,exports){ +},{"@babel/runtime/helpers/interopRequireDefault":63,"clone":111,"is-electron":470,"random-token":534,"spark-md5":743}],55:[function(require,module,exports){ "use strict"; require("./noConflict"); @@ -9843,7 +9927,7 @@ if (_global["default"]._babelPolyfill && typeof console !== "undefined" && conso } _global["default"]._babelPolyfill = true; -},{"./noConflict":56,"core-js/library/fn/global":122}],56:[function(require,module,exports){ +},{"./noConflict":56,"core-js/library/fn/global":124}],56:[function(require,module,exports){ "use strict"; require("core-js/es6"); @@ -9873,7 +9957,7 @@ require("core-js/fn/promise/finally"); require("core-js/web"); require("regenerator-runtime/runtime"); -},{"core-js/es6":110,"core-js/fn/array/flat-map":111,"core-js/fn/array/includes":112,"core-js/fn/object/entries":113,"core-js/fn/object/get-own-property-descriptors":114,"core-js/fn/object/values":115,"core-js/fn/promise/finally":116,"core-js/fn/string/pad-end":117,"core-js/fn/string/pad-start":118,"core-js/fn/string/trim-end":119,"core-js/fn/string/trim-start":120,"core-js/fn/symbol/async-iterator":121,"core-js/web":413,"regenerator-runtime/runtime":532}],57:[function(require,module,exports){ +},{"core-js/es6":112,"core-js/fn/array/flat-map":113,"core-js/fn/array/includes":114,"core-js/fn/object/entries":115,"core-js/fn/object/get-own-property-descriptors":116,"core-js/fn/object/values":117,"core-js/fn/promise/finally":118,"core-js/fn/string/pad-end":119,"core-js/fn/string/pad-start":120,"core-js/fn/string/trim-end":121,"core-js/fn/string/trim-start":122,"core-js/fn/symbol/async-iterator":123,"core-js/web":415,"regenerator-runtime/runtime":535}],57:[function(require,module,exports){ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); @@ -10140,7 +10224,7 @@ module.exports = _wrapNativeSuper; },{"./construct":59,"./getPrototypeOf":61,"./isNativeFunction":65,"./setPrototypeOf":67}],70:[function(require,module,exports){ module.exports = require("regenerator-runtime"); -},{"regenerator-runtime":532}],71:[function(require,module,exports){ +},{"regenerator-runtime":535}],71:[function(require,module,exports){ 'use strict'; module.exports = argsArray; @@ -12463,7 +12547,7 @@ function createLeaderElection(channel, options) { channel._leaderElector = elector; return elector; } -},{"./util.js":106,"@babel/runtime/helpers/interopRequireDefault":63,"unload":742}],99:[function(require,module,exports){ +},{"./util.js":106,"@babel/runtime/helpers/interopRequireDefault":63,"unload":745}],99:[function(require,module,exports){ "use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); @@ -13405,7 +13489,7 @@ function microSeconds() { var isNode = Object.prototype.toString.call(typeof process !== 'undefined' ? process : 0) === '[object process]'; exports.isNode = isNode; }).call(this)}).call(this,require('_process')) -},{"_process":530}],107:[function(require,module,exports){ +},{"_process":533}],107:[function(require,module,exports){ },{}],108:[function(require,module,exports){ (function (Buffer){(function (){ @@ -15188,7 +15272,59 @@ function numberIsNaN (obj) { } }).call(this)}).call(this,require("buffer").Buffer) -},{"base64-js":75,"buffer":108,"ieee754":455}],109:[function(require,module,exports){ +},{"base64-js":75,"buffer":108,"ieee754":458}],109:[function(require,module,exports){ +'use strict'; + +var GetIntrinsic = require('get-intrinsic'); + +var callBind = require('./'); + +var $indexOf = callBind(GetIntrinsic('String.prototype.indexOf')); + +module.exports = function callBoundIntrinsic(name, allowMissing) { + var intrinsic = GetIntrinsic(name, !!allowMissing); + if (typeof intrinsic === 'function' && $indexOf(name, '.prototype.') > -1) { + return callBind(intrinsic); + } + return intrinsic; +}; + +},{"./":110,"get-intrinsic":454}],110:[function(require,module,exports){ +'use strict'; + +var bind = require('function-bind'); +var GetIntrinsic = require('get-intrinsic'); + +var $apply = GetIntrinsic('%Function.prototype.apply%'); +var $call = GetIntrinsic('%Function.prototype.call%'); +var $reflectApply = GetIntrinsic('%Reflect.apply%', true) || bind.call($call, $apply); + +var $defineProperty = GetIntrinsic('%Object.defineProperty%', true); + +if ($defineProperty) { + try { + $defineProperty({}, 'a', { value: 1 }); + } catch (e) { + // IE 8 has a broken defineProperty + $defineProperty = null; + } +} + +module.exports = function callBind() { + return $reflectApply(bind, $call, arguments); +}; + +var applyBind = function applyBind() { + return $reflectApply(bind, $apply, arguments); +}; + +if ($defineProperty) { + $defineProperty(module.exports, 'apply', { value: applyBind }); +} else { + module.exports.apply = applyBind; +} + +},{"function-bind":451,"get-intrinsic":454}],111:[function(require,module,exports){ (function (Buffer){(function (){ var clone = (function() { 'use strict'; @@ -15449,7 +15585,7 @@ if (typeof module === 'object' && module.exports) { } }).call(this)}).call(this,require("buffer").Buffer) -},{"buffer":108}],110:[function(require,module,exports){ +},{"buffer":108}],112:[function(require,module,exports){ require('../modules/es6.symbol'); require('../modules/es6.object.create'); require('../modules/es6.object.define-property'); @@ -15590,74 +15726,74 @@ require('../modules/es6.reflect.set'); require('../modules/es6.reflect.set-prototype-of'); module.exports = require('../modules/_core'); -},{"../modules/_core":159,"../modules/es6.array.copy-within":261,"../modules/es6.array.every":262,"../modules/es6.array.fill":263,"../modules/es6.array.filter":264,"../modules/es6.array.find":266,"../modules/es6.array.find-index":265,"../modules/es6.array.for-each":267,"../modules/es6.array.from":268,"../modules/es6.array.index-of":269,"../modules/es6.array.is-array":270,"../modules/es6.array.iterator":271,"../modules/es6.array.join":272,"../modules/es6.array.last-index-of":273,"../modules/es6.array.map":274,"../modules/es6.array.of":275,"../modules/es6.array.reduce":277,"../modules/es6.array.reduce-right":276,"../modules/es6.array.slice":278,"../modules/es6.array.some":279,"../modules/es6.array.sort":280,"../modules/es6.array.species":281,"../modules/es6.date.now":282,"../modules/es6.date.to-iso-string":283,"../modules/es6.date.to-json":284,"../modules/es6.date.to-primitive":285,"../modules/es6.date.to-string":286,"../modules/es6.function.bind":287,"../modules/es6.function.has-instance":288,"../modules/es6.function.name":289,"../modules/es6.map":290,"../modules/es6.math.acosh":291,"../modules/es6.math.asinh":292,"../modules/es6.math.atanh":293,"../modules/es6.math.cbrt":294,"../modules/es6.math.clz32":295,"../modules/es6.math.cosh":296,"../modules/es6.math.expm1":297,"../modules/es6.math.fround":298,"../modules/es6.math.hypot":299,"../modules/es6.math.imul":300,"../modules/es6.math.log10":301,"../modules/es6.math.log1p":302,"../modules/es6.math.log2":303,"../modules/es6.math.sign":304,"../modules/es6.math.sinh":305,"../modules/es6.math.tanh":306,"../modules/es6.math.trunc":307,"../modules/es6.number.constructor":308,"../modules/es6.number.epsilon":309,"../modules/es6.number.is-finite":310,"../modules/es6.number.is-integer":311,"../modules/es6.number.is-nan":312,"../modules/es6.number.is-safe-integer":313,"../modules/es6.number.max-safe-integer":314,"../modules/es6.number.min-safe-integer":315,"../modules/es6.number.parse-float":316,"../modules/es6.number.parse-int":317,"../modules/es6.number.to-fixed":318,"../modules/es6.number.to-precision":319,"../modules/es6.object.assign":320,"../modules/es6.object.create":321,"../modules/es6.object.define-properties":322,"../modules/es6.object.define-property":323,"../modules/es6.object.freeze":324,"../modules/es6.object.get-own-property-descriptor":325,"../modules/es6.object.get-own-property-names":326,"../modules/es6.object.get-prototype-of":327,"../modules/es6.object.is":331,"../modules/es6.object.is-extensible":328,"../modules/es6.object.is-frozen":329,"../modules/es6.object.is-sealed":330,"../modules/es6.object.keys":332,"../modules/es6.object.prevent-extensions":333,"../modules/es6.object.seal":334,"../modules/es6.object.set-prototype-of":335,"../modules/es6.object.to-string":336,"../modules/es6.parse-float":337,"../modules/es6.parse-int":338,"../modules/es6.promise":339,"../modules/es6.reflect.apply":340,"../modules/es6.reflect.construct":341,"../modules/es6.reflect.define-property":342,"../modules/es6.reflect.delete-property":343,"../modules/es6.reflect.enumerate":344,"../modules/es6.reflect.get":347,"../modules/es6.reflect.get-own-property-descriptor":345,"../modules/es6.reflect.get-prototype-of":346,"../modules/es6.reflect.has":348,"../modules/es6.reflect.is-extensible":349,"../modules/es6.reflect.own-keys":350,"../modules/es6.reflect.prevent-extensions":351,"../modules/es6.reflect.set":353,"../modules/es6.reflect.set-prototype-of":352,"../modules/es6.regexp.constructor":354,"../modules/es6.regexp.exec":355,"../modules/es6.regexp.flags":356,"../modules/es6.regexp.match":357,"../modules/es6.regexp.replace":358,"../modules/es6.regexp.search":359,"../modules/es6.regexp.split":360,"../modules/es6.regexp.to-string":361,"../modules/es6.set":362,"../modules/es6.string.anchor":363,"../modules/es6.string.big":364,"../modules/es6.string.blink":365,"../modules/es6.string.bold":366,"../modules/es6.string.code-point-at":367,"../modules/es6.string.ends-with":368,"../modules/es6.string.fixed":369,"../modules/es6.string.fontcolor":370,"../modules/es6.string.fontsize":371,"../modules/es6.string.from-code-point":372,"../modules/es6.string.includes":373,"../modules/es6.string.italics":374,"../modules/es6.string.iterator":375,"../modules/es6.string.link":376,"../modules/es6.string.raw":377,"../modules/es6.string.repeat":378,"../modules/es6.string.small":379,"../modules/es6.string.starts-with":380,"../modules/es6.string.strike":381,"../modules/es6.string.sub":382,"../modules/es6.string.sup":383,"../modules/es6.string.trim":384,"../modules/es6.symbol":385,"../modules/es6.typed.array-buffer":386,"../modules/es6.typed.data-view":387,"../modules/es6.typed.float32-array":388,"../modules/es6.typed.float64-array":389,"../modules/es6.typed.int16-array":390,"../modules/es6.typed.int32-array":391,"../modules/es6.typed.int8-array":392,"../modules/es6.typed.uint16-array":393,"../modules/es6.typed.uint32-array":394,"../modules/es6.typed.uint8-array":395,"../modules/es6.typed.uint8-clamped-array":396,"../modules/es6.weak-map":397,"../modules/es6.weak-set":398}],111:[function(require,module,exports){ +},{"../modules/_core":161,"../modules/es6.array.copy-within":263,"../modules/es6.array.every":264,"../modules/es6.array.fill":265,"../modules/es6.array.filter":266,"../modules/es6.array.find":268,"../modules/es6.array.find-index":267,"../modules/es6.array.for-each":269,"../modules/es6.array.from":270,"../modules/es6.array.index-of":271,"../modules/es6.array.is-array":272,"../modules/es6.array.iterator":273,"../modules/es6.array.join":274,"../modules/es6.array.last-index-of":275,"../modules/es6.array.map":276,"../modules/es6.array.of":277,"../modules/es6.array.reduce":279,"../modules/es6.array.reduce-right":278,"../modules/es6.array.slice":280,"../modules/es6.array.some":281,"../modules/es6.array.sort":282,"../modules/es6.array.species":283,"../modules/es6.date.now":284,"../modules/es6.date.to-iso-string":285,"../modules/es6.date.to-json":286,"../modules/es6.date.to-primitive":287,"../modules/es6.date.to-string":288,"../modules/es6.function.bind":289,"../modules/es6.function.has-instance":290,"../modules/es6.function.name":291,"../modules/es6.map":292,"../modules/es6.math.acosh":293,"../modules/es6.math.asinh":294,"../modules/es6.math.atanh":295,"../modules/es6.math.cbrt":296,"../modules/es6.math.clz32":297,"../modules/es6.math.cosh":298,"../modules/es6.math.expm1":299,"../modules/es6.math.fround":300,"../modules/es6.math.hypot":301,"../modules/es6.math.imul":302,"../modules/es6.math.log10":303,"../modules/es6.math.log1p":304,"../modules/es6.math.log2":305,"../modules/es6.math.sign":306,"../modules/es6.math.sinh":307,"../modules/es6.math.tanh":308,"../modules/es6.math.trunc":309,"../modules/es6.number.constructor":310,"../modules/es6.number.epsilon":311,"../modules/es6.number.is-finite":312,"../modules/es6.number.is-integer":313,"../modules/es6.number.is-nan":314,"../modules/es6.number.is-safe-integer":315,"../modules/es6.number.max-safe-integer":316,"../modules/es6.number.min-safe-integer":317,"../modules/es6.number.parse-float":318,"../modules/es6.number.parse-int":319,"../modules/es6.number.to-fixed":320,"../modules/es6.number.to-precision":321,"../modules/es6.object.assign":322,"../modules/es6.object.create":323,"../modules/es6.object.define-properties":324,"../modules/es6.object.define-property":325,"../modules/es6.object.freeze":326,"../modules/es6.object.get-own-property-descriptor":327,"../modules/es6.object.get-own-property-names":328,"../modules/es6.object.get-prototype-of":329,"../modules/es6.object.is":333,"../modules/es6.object.is-extensible":330,"../modules/es6.object.is-frozen":331,"../modules/es6.object.is-sealed":332,"../modules/es6.object.keys":334,"../modules/es6.object.prevent-extensions":335,"../modules/es6.object.seal":336,"../modules/es6.object.set-prototype-of":337,"../modules/es6.object.to-string":338,"../modules/es6.parse-float":339,"../modules/es6.parse-int":340,"../modules/es6.promise":341,"../modules/es6.reflect.apply":342,"../modules/es6.reflect.construct":343,"../modules/es6.reflect.define-property":344,"../modules/es6.reflect.delete-property":345,"../modules/es6.reflect.enumerate":346,"../modules/es6.reflect.get":349,"../modules/es6.reflect.get-own-property-descriptor":347,"../modules/es6.reflect.get-prototype-of":348,"../modules/es6.reflect.has":350,"../modules/es6.reflect.is-extensible":351,"../modules/es6.reflect.own-keys":352,"../modules/es6.reflect.prevent-extensions":353,"../modules/es6.reflect.set":355,"../modules/es6.reflect.set-prototype-of":354,"../modules/es6.regexp.constructor":356,"../modules/es6.regexp.exec":357,"../modules/es6.regexp.flags":358,"../modules/es6.regexp.match":359,"../modules/es6.regexp.replace":360,"../modules/es6.regexp.search":361,"../modules/es6.regexp.split":362,"../modules/es6.regexp.to-string":363,"../modules/es6.set":364,"../modules/es6.string.anchor":365,"../modules/es6.string.big":366,"../modules/es6.string.blink":367,"../modules/es6.string.bold":368,"../modules/es6.string.code-point-at":369,"../modules/es6.string.ends-with":370,"../modules/es6.string.fixed":371,"../modules/es6.string.fontcolor":372,"../modules/es6.string.fontsize":373,"../modules/es6.string.from-code-point":374,"../modules/es6.string.includes":375,"../modules/es6.string.italics":376,"../modules/es6.string.iterator":377,"../modules/es6.string.link":378,"../modules/es6.string.raw":379,"../modules/es6.string.repeat":380,"../modules/es6.string.small":381,"../modules/es6.string.starts-with":382,"../modules/es6.string.strike":383,"../modules/es6.string.sub":384,"../modules/es6.string.sup":385,"../modules/es6.string.trim":386,"../modules/es6.symbol":387,"../modules/es6.typed.array-buffer":388,"../modules/es6.typed.data-view":389,"../modules/es6.typed.float32-array":390,"../modules/es6.typed.float64-array":391,"../modules/es6.typed.int16-array":392,"../modules/es6.typed.int32-array":393,"../modules/es6.typed.int8-array":394,"../modules/es6.typed.uint16-array":395,"../modules/es6.typed.uint32-array":396,"../modules/es6.typed.uint8-array":397,"../modules/es6.typed.uint8-clamped-array":398,"../modules/es6.weak-map":399,"../modules/es6.weak-set":400}],113:[function(require,module,exports){ require('../../modules/es7.array.flat-map'); module.exports = require('../../modules/_core').Array.flatMap; -},{"../../modules/_core":159,"../../modules/es7.array.flat-map":399}],112:[function(require,module,exports){ +},{"../../modules/_core":161,"../../modules/es7.array.flat-map":401}],114:[function(require,module,exports){ require('../../modules/es7.array.includes'); module.exports = require('../../modules/_core').Array.includes; -},{"../../modules/_core":159,"../../modules/es7.array.includes":400}],113:[function(require,module,exports){ +},{"../../modules/_core":161,"../../modules/es7.array.includes":402}],115:[function(require,module,exports){ require('../../modules/es7.object.entries'); module.exports = require('../../modules/_core').Object.entries; -},{"../../modules/_core":159,"../../modules/es7.object.entries":401}],114:[function(require,module,exports){ +},{"../../modules/_core":161,"../../modules/es7.object.entries":403}],116:[function(require,module,exports){ require('../../modules/es7.object.get-own-property-descriptors'); module.exports = require('../../modules/_core').Object.getOwnPropertyDescriptors; -},{"../../modules/_core":159,"../../modules/es7.object.get-own-property-descriptors":402}],115:[function(require,module,exports){ +},{"../../modules/_core":161,"../../modules/es7.object.get-own-property-descriptors":404}],117:[function(require,module,exports){ require('../../modules/es7.object.values'); module.exports = require('../../modules/_core').Object.values; -},{"../../modules/_core":159,"../../modules/es7.object.values":403}],116:[function(require,module,exports){ +},{"../../modules/_core":161,"../../modules/es7.object.values":405}],118:[function(require,module,exports){ 'use strict'; require('../../modules/es6.promise'); require('../../modules/es7.promise.finally'); module.exports = require('../../modules/_core').Promise['finally']; -},{"../../modules/_core":159,"../../modules/es6.promise":339,"../../modules/es7.promise.finally":404}],117:[function(require,module,exports){ +},{"../../modules/_core":161,"../../modules/es6.promise":341,"../../modules/es7.promise.finally":406}],119:[function(require,module,exports){ require('../../modules/es7.string.pad-end'); module.exports = require('../../modules/_core').String.padEnd; -},{"../../modules/_core":159,"../../modules/es7.string.pad-end":405}],118:[function(require,module,exports){ +},{"../../modules/_core":161,"../../modules/es7.string.pad-end":407}],120:[function(require,module,exports){ require('../../modules/es7.string.pad-start'); module.exports = require('../../modules/_core').String.padStart; -},{"../../modules/_core":159,"../../modules/es7.string.pad-start":406}],119:[function(require,module,exports){ +},{"../../modules/_core":161,"../../modules/es7.string.pad-start":408}],121:[function(require,module,exports){ require('../../modules/es7.string.trim-right'); module.exports = require('../../modules/_core').String.trimRight; -},{"../../modules/_core":159,"../../modules/es7.string.trim-right":408}],120:[function(require,module,exports){ +},{"../../modules/_core":161,"../../modules/es7.string.trim-right":410}],122:[function(require,module,exports){ require('../../modules/es7.string.trim-left'); module.exports = require('../../modules/_core').String.trimLeft; -},{"../../modules/_core":159,"../../modules/es7.string.trim-left":407}],121:[function(require,module,exports){ +},{"../../modules/_core":161,"../../modules/es7.string.trim-left":409}],123:[function(require,module,exports){ require('../../modules/es7.symbol.async-iterator'); module.exports = require('../../modules/_wks-ext').f('asyncIterator'); -},{"../../modules/_wks-ext":258,"../../modules/es7.symbol.async-iterator":409}],122:[function(require,module,exports){ +},{"../../modules/_wks-ext":260,"../../modules/es7.symbol.async-iterator":411}],124:[function(require,module,exports){ require('../modules/es7.global'); module.exports = require('../modules/_core').global; -},{"../modules/_core":125,"../modules/es7.global":139}],123:[function(require,module,exports){ +},{"../modules/_core":127,"../modules/es7.global":141}],125:[function(require,module,exports){ module.exports = function (it) { if (typeof it != 'function') throw TypeError(it + ' is not a function!'); return it; }; -},{}],124:[function(require,module,exports){ +},{}],126:[function(require,module,exports){ var isObject = require('./_is-object'); module.exports = function (it) { if (!isObject(it)) throw TypeError(it + ' is not an object!'); return it; }; -},{"./_is-object":135}],125:[function(require,module,exports){ +},{"./_is-object":137}],127:[function(require,module,exports){ var core = module.exports = { version: '2.6.11' }; if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef -},{}],126:[function(require,module,exports){ +},{}],128:[function(require,module,exports){ // optional / simple context binding var aFunction = require('./_a-function'); module.exports = function (fn, that, length) { @@ -15679,13 +15815,13 @@ module.exports = function (fn, that, length) { }; }; -},{"./_a-function":123}],127:[function(require,module,exports){ +},{"./_a-function":125}],129:[function(require,module,exports){ // Thank's IE8 for his funny defineProperty module.exports = !require('./_fails')(function () { return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7; }); -},{"./_fails":130}],128:[function(require,module,exports){ +},{"./_fails":132}],130:[function(require,module,exports){ var isObject = require('./_is-object'); var document = require('./_global').document; // typeof document.createElement is 'object' in old IE @@ -15694,7 +15830,7 @@ module.exports = function (it) { return is ? document.createElement(it) : {}; }; -},{"./_global":131,"./_is-object":135}],129:[function(require,module,exports){ +},{"./_global":133,"./_is-object":137}],131:[function(require,module,exports){ var global = require('./_global'); var core = require('./_core'); var ctx = require('./_ctx'); @@ -15758,7 +15894,7 @@ $export.U = 64; // safe $export.R = 128; // real proto method for `library` module.exports = $export; -},{"./_core":125,"./_ctx":126,"./_global":131,"./_has":132,"./_hide":133}],130:[function(require,module,exports){ +},{"./_core":127,"./_ctx":128,"./_global":133,"./_has":134,"./_hide":135}],132:[function(require,module,exports){ module.exports = function (exec) { try { return !!exec(); @@ -15767,7 +15903,7 @@ module.exports = function (exec) { } }; -},{}],131:[function(require,module,exports){ +},{}],133:[function(require,module,exports){ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 var global = module.exports = typeof window != 'undefined' && window.Math == Math ? window : typeof self != 'undefined' && self.Math == Math ? self @@ -15775,13 +15911,13 @@ var global = module.exports = typeof window != 'undefined' && window.Math == Mat : Function('return this')(); if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef -},{}],132:[function(require,module,exports){ +},{}],134:[function(require,module,exports){ var hasOwnProperty = {}.hasOwnProperty; module.exports = function (it, key) { return hasOwnProperty.call(it, key); }; -},{}],133:[function(require,module,exports){ +},{}],135:[function(require,module,exports){ var dP = require('./_object-dp'); var createDesc = require('./_property-desc'); module.exports = require('./_descriptors') ? function (object, key, value) { @@ -15791,17 +15927,17 @@ module.exports = require('./_descriptors') ? function (object, key, value) { return object; }; -},{"./_descriptors":127,"./_object-dp":136,"./_property-desc":137}],134:[function(require,module,exports){ +},{"./_descriptors":129,"./_object-dp":138,"./_property-desc":139}],136:[function(require,module,exports){ module.exports = !require('./_descriptors') && !require('./_fails')(function () { return Object.defineProperty(require('./_dom-create')('div'), 'a', { get: function () { return 7; } }).a != 7; }); -},{"./_descriptors":127,"./_dom-create":128,"./_fails":130}],135:[function(require,module,exports){ +},{"./_descriptors":129,"./_dom-create":130,"./_fails":132}],137:[function(require,module,exports){ module.exports = function (it) { return typeof it === 'object' ? it !== null : typeof it === 'function'; }; -},{}],136:[function(require,module,exports){ +},{}],138:[function(require,module,exports){ var anObject = require('./_an-object'); var IE8_DOM_DEFINE = require('./_ie8-dom-define'); var toPrimitive = require('./_to-primitive'); @@ -15819,7 +15955,7 @@ exports.f = require('./_descriptors') ? Object.defineProperty : function defineP return O; }; -},{"./_an-object":124,"./_descriptors":127,"./_ie8-dom-define":134,"./_to-primitive":138}],137:[function(require,module,exports){ +},{"./_an-object":126,"./_descriptors":129,"./_ie8-dom-define":136,"./_to-primitive":140}],139:[function(require,module,exports){ module.exports = function (bitmap, value) { return { enumerable: !(bitmap & 1), @@ -15829,7 +15965,7 @@ module.exports = function (bitmap, value) { }; }; -},{}],138:[function(require,module,exports){ +},{}],140:[function(require,module,exports){ // 7.1.1 ToPrimitive(input [, PreferredType]) var isObject = require('./_is-object'); // instead of the ES6 spec version, we didn't implement @@toPrimitive case @@ -15843,22 +15979,22 @@ module.exports = function (it, S) { throw TypeError("Can't convert object to primitive value"); }; -},{"./_is-object":135}],139:[function(require,module,exports){ +},{"./_is-object":137}],141:[function(require,module,exports){ // https://github.com/tc39/proposal-global var $export = require('./_export'); $export($export.G, { global: require('./_global') }); -},{"./_export":129,"./_global":131}],140:[function(require,module,exports){ -arguments[4][123][0].apply(exports,arguments) -},{"dup":123}],141:[function(require,module,exports){ +},{"./_export":131,"./_global":133}],142:[function(require,module,exports){ +arguments[4][125][0].apply(exports,arguments) +},{"dup":125}],143:[function(require,module,exports){ var cof = require('./_cof'); module.exports = function (it, msg) { if (typeof it != 'number' && cof(it) != 'Number') throw TypeError(msg); return +it; }; -},{"./_cof":155}],142:[function(require,module,exports){ +},{"./_cof":157}],144:[function(require,module,exports){ // 22.1.3.31 Array.prototype[@@unscopables] var UNSCOPABLES = require('./_wks')('unscopables'); var ArrayProto = Array.prototype; @@ -15867,7 +16003,7 @@ module.exports = function (key) { ArrayProto[UNSCOPABLES][key] = true; }; -},{"./_hide":179,"./_wks":259}],143:[function(require,module,exports){ +},{"./_hide":181,"./_wks":261}],145:[function(require,module,exports){ 'use strict'; var at = require('./_string-at')(true); @@ -15877,16 +16013,16 @@ module.exports = function (S, index, unicode) { return index + (unicode ? at(S, index).length : 1); }; -},{"./_string-at":236}],144:[function(require,module,exports){ +},{"./_string-at":238}],146:[function(require,module,exports){ module.exports = function (it, Constructor, name, forbiddenField) { if (!(it instanceof Constructor) || (forbiddenField !== undefined && forbiddenField in it)) { throw TypeError(name + ': incorrect invocation!'); } return it; }; -},{}],145:[function(require,module,exports){ -arguments[4][124][0].apply(exports,arguments) -},{"./_is-object":188,"dup":124}],146:[function(require,module,exports){ +},{}],147:[function(require,module,exports){ +arguments[4][126][0].apply(exports,arguments) +},{"./_is-object":190,"dup":126}],148:[function(require,module,exports){ // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length) 'use strict'; var toObject = require('./_to-object'); @@ -15914,7 +16050,7 @@ module.exports = [].copyWithin || function copyWithin(target /* = 0 */, start /* } return O; }; -},{"./_to-absolute-index":244,"./_to-length":248,"./_to-object":249}],147:[function(require,module,exports){ +},{"./_to-absolute-index":246,"./_to-length":250,"./_to-object":251}],149:[function(require,module,exports){ // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length) 'use strict'; var toObject = require('./_to-object'); @@ -15931,7 +16067,7 @@ module.exports = function fill(value /* , start = 0, end = @length */) { return O; }; -},{"./_to-absolute-index":244,"./_to-length":248,"./_to-object":249}],148:[function(require,module,exports){ +},{"./_to-absolute-index":246,"./_to-length":250,"./_to-object":251}],150:[function(require,module,exports){ // false -> Array#indexOf // true -> Array#includes var toIObject = require('./_to-iobject'); @@ -15956,7 +16092,7 @@ module.exports = function (IS_INCLUDES) { }; }; -},{"./_to-absolute-index":244,"./_to-iobject":247,"./_to-length":248}],149:[function(require,module,exports){ +},{"./_to-absolute-index":246,"./_to-iobject":249,"./_to-length":250}],151:[function(require,module,exports){ // 0 -> Array#forEach // 1 -> Array#map // 2 -> Array#filter @@ -16002,7 +16138,7 @@ module.exports = function (TYPE, $create) { }; }; -},{"./_array-species-create":152,"./_ctx":161,"./_iobject":184,"./_to-length":248,"./_to-object":249}],150:[function(require,module,exports){ +},{"./_array-species-create":154,"./_ctx":163,"./_iobject":186,"./_to-length":250,"./_to-object":251}],152:[function(require,module,exports){ var aFunction = require('./_a-function'); var toObject = require('./_to-object'); var IObject = require('./_iobject'); @@ -16032,7 +16168,7 @@ module.exports = function (that, callbackfn, aLen, memo, isRight) { return memo; }; -},{"./_a-function":140,"./_iobject":184,"./_to-length":248,"./_to-object":249}],151:[function(require,module,exports){ +},{"./_a-function":142,"./_iobject":186,"./_to-length":250,"./_to-object":251}],153:[function(require,module,exports){ var isObject = require('./_is-object'); var isArray = require('./_is-array'); var SPECIES = require('./_wks')('species'); @@ -16050,7 +16186,7 @@ module.exports = function (original) { } return C === undefined ? Array : C; }; -},{"./_is-array":186,"./_is-object":188,"./_wks":259}],152:[function(require,module,exports){ +},{"./_is-array":188,"./_is-object":190,"./_wks":261}],154:[function(require,module,exports){ // 9.4.2.3 ArraySpeciesCreate(originalArray, length) var speciesConstructor = require('./_array-species-constructor'); @@ -16058,7 +16194,7 @@ module.exports = function (original, length) { return new (speciesConstructor(original))(length); }; -},{"./_array-species-constructor":151}],153:[function(require,module,exports){ +},{"./_array-species-constructor":153}],155:[function(require,module,exports){ 'use strict'; var aFunction = require('./_a-function'); var isObject = require('./_is-object'); @@ -16085,7 +16221,7 @@ module.exports = Function.bind || function bind(that /* , ...args */) { return bound; }; -},{"./_a-function":140,"./_invoke":183,"./_is-object":188}],154:[function(require,module,exports){ +},{"./_a-function":142,"./_invoke":185,"./_is-object":190}],156:[function(require,module,exports){ // getting tag from 19.1.3.6 Object.prototype.toString() var cof = require('./_cof'); var TAG = require('./_wks')('toStringTag'); @@ -16110,14 +16246,14 @@ module.exports = function (it) { : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B; }; -},{"./_cof":155,"./_wks":259}],155:[function(require,module,exports){ +},{"./_cof":157,"./_wks":261}],157:[function(require,module,exports){ var toString = {}.toString; module.exports = function (it) { return toString.call(it).slice(8, -1); }; -},{}],156:[function(require,module,exports){ +},{}],158:[function(require,module,exports){ 'use strict'; var dP = require('./_object-dp').f; var create = require('./_object-create'); @@ -16263,7 +16399,7 @@ module.exports = { } }; -},{"./_an-instance":144,"./_ctx":161,"./_descriptors":165,"./_for-of":175,"./_iter-define":192,"./_iter-step":194,"./_meta":201,"./_object-create":205,"./_object-dp":206,"./_redefine-all":224,"./_set-species":230,"./_validate-collection":256}],157:[function(require,module,exports){ +},{"./_an-instance":146,"./_ctx":163,"./_descriptors":167,"./_for-of":177,"./_iter-define":194,"./_iter-step":196,"./_meta":203,"./_object-create":207,"./_object-dp":208,"./_redefine-all":226,"./_set-species":232,"./_validate-collection":258}],159:[function(require,module,exports){ 'use strict'; var redefineAll = require('./_redefine-all'); var getWeak = require('./_meta').getWeak; @@ -16350,7 +16486,7 @@ module.exports = { ufstore: uncaughtFrozenStore }; -},{"./_an-instance":144,"./_an-object":145,"./_array-methods":149,"./_for-of":175,"./_has":178,"./_is-object":188,"./_meta":201,"./_redefine-all":224,"./_validate-collection":256}],158:[function(require,module,exports){ +},{"./_an-instance":146,"./_an-object":147,"./_array-methods":151,"./_for-of":177,"./_has":180,"./_is-object":190,"./_meta":203,"./_redefine-all":226,"./_validate-collection":258}],160:[function(require,module,exports){ 'use strict'; var global = require('./_global'); var $export = require('./_export'); @@ -16437,9 +16573,9 @@ module.exports = function (NAME, wrapper, methods, common, IS_MAP, IS_WEAK) { return C; }; -},{"./_an-instance":144,"./_export":169,"./_fails":171,"./_for-of":175,"./_global":177,"./_inherit-if-required":182,"./_is-object":188,"./_iter-detect":193,"./_meta":201,"./_redefine":225,"./_redefine-all":224,"./_set-to-string-tag":231}],159:[function(require,module,exports){ -arguments[4][125][0].apply(exports,arguments) -},{"dup":125}],160:[function(require,module,exports){ +},{"./_an-instance":146,"./_export":171,"./_fails":173,"./_for-of":177,"./_global":179,"./_inherit-if-required":184,"./_is-object":190,"./_iter-detect":195,"./_meta":203,"./_redefine":227,"./_redefine-all":226,"./_set-to-string-tag":233}],161:[function(require,module,exports){ +arguments[4][127][0].apply(exports,arguments) +},{"dup":127}],162:[function(require,module,exports){ 'use strict'; var $defineProperty = require('./_object-dp'); var createDesc = require('./_property-desc'); @@ -16449,9 +16585,9 @@ module.exports = function (object, index, value) { else object[index] = value; }; -},{"./_object-dp":206,"./_property-desc":223}],161:[function(require,module,exports){ -arguments[4][126][0].apply(exports,arguments) -},{"./_a-function":140,"dup":126}],162:[function(require,module,exports){ +},{"./_object-dp":208,"./_property-desc":225}],163:[function(require,module,exports){ +arguments[4][128][0].apply(exports,arguments) +},{"./_a-function":142,"dup":128}],164:[function(require,module,exports){ 'use strict'; // 20.3.4.36 / 15.9.5.43 Date.prototype.toISOString() var fails = require('./_fails'); @@ -16479,7 +16615,7 @@ module.exports = (fails(function () { ':' + lz(d.getUTCSeconds()) + '.' + (m > 99 ? m : '0' + lz(m)) + 'Z'; } : $toISOString; -},{"./_fails":171}],163:[function(require,module,exports){ +},{"./_fails":173}],165:[function(require,module,exports){ 'use strict'; var anObject = require('./_an-object'); var toPrimitive = require('./_to-primitive'); @@ -16490,24 +16626,24 @@ module.exports = function (hint) { return toPrimitive(anObject(this), hint != NUMBER); }; -},{"./_an-object":145,"./_to-primitive":250}],164:[function(require,module,exports){ +},{"./_an-object":147,"./_to-primitive":252}],166:[function(require,module,exports){ // 7.2.1 RequireObjectCoercible(argument) module.exports = function (it) { if (it == undefined) throw TypeError("Can't call method on " + it); return it; }; -},{}],165:[function(require,module,exports){ -arguments[4][127][0].apply(exports,arguments) -},{"./_fails":171,"dup":127}],166:[function(require,module,exports){ -arguments[4][128][0].apply(exports,arguments) -},{"./_global":177,"./_is-object":188,"dup":128}],167:[function(require,module,exports){ +},{}],167:[function(require,module,exports){ +arguments[4][129][0].apply(exports,arguments) +},{"./_fails":173,"dup":129}],168:[function(require,module,exports){ +arguments[4][130][0].apply(exports,arguments) +},{"./_global":179,"./_is-object":190,"dup":130}],169:[function(require,module,exports){ // IE 8- don't enum bug keys module.exports = ( 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf' ).split(','); -},{}],168:[function(require,module,exports){ +},{}],170:[function(require,module,exports){ // all enumerable object keys, includes symbols var getKeys = require('./_object-keys'); var gOPS = require('./_object-gops'); @@ -16524,7 +16660,7 @@ module.exports = function (it) { } return result; }; -},{"./_object-gops":211,"./_object-keys":214,"./_object-pie":215}],169:[function(require,module,exports){ +},{"./_object-gops":213,"./_object-keys":216,"./_object-pie":217}],171:[function(require,module,exports){ var global = require('./_global'); var core = require('./_core'); var hide = require('./_hide'); @@ -16569,7 +16705,7 @@ $export.U = 64; // safe $export.R = 128; // real proto method for `library` module.exports = $export; -},{"./_core":159,"./_ctx":161,"./_global":177,"./_hide":179,"./_redefine":225}],170:[function(require,module,exports){ +},{"./_core":161,"./_ctx":163,"./_global":179,"./_hide":181,"./_redefine":227}],172:[function(require,module,exports){ var MATCH = require('./_wks')('match'); module.exports = function (KEY) { var re = /./; @@ -16583,9 +16719,9 @@ module.exports = function (KEY) { } return true; }; -},{"./_wks":259}],171:[function(require,module,exports){ -arguments[4][130][0].apply(exports,arguments) -},{"dup":130}],172:[function(require,module,exports){ +},{"./_wks":261}],173:[function(require,module,exports){ +arguments[4][132][0].apply(exports,arguments) +},{"dup":132}],174:[function(require,module,exports){ 'use strict'; require('./es6.regexp.exec'); var redefine = require('./_redefine'); @@ -16683,7 +16819,7 @@ module.exports = function (KEY, length, exec) { } }; -},{"./_defined":164,"./_fails":171,"./_hide":179,"./_redefine":225,"./_regexp-exec":227,"./_wks":259,"./es6.regexp.exec":355}],173:[function(require,module,exports){ +},{"./_defined":166,"./_fails":173,"./_hide":181,"./_redefine":227,"./_regexp-exec":229,"./_wks":261,"./es6.regexp.exec":357}],175:[function(require,module,exports){ 'use strict'; // 21.2.5.3 get RegExp.prototype.flags var anObject = require('./_an-object'); @@ -16698,7 +16834,7 @@ module.exports = function () { return result; }; -},{"./_an-object":145}],174:[function(require,module,exports){ +},{"./_an-object":147}],176:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-flatMap/#sec-FlattenIntoArray var isArray = require('./_is-array'); @@ -16739,7 +16875,7 @@ function flattenIntoArray(target, original, source, sourceLen, start, depth, map module.exports = flattenIntoArray; -},{"./_ctx":161,"./_is-array":186,"./_is-object":188,"./_to-length":248,"./_wks":259}],175:[function(require,module,exports){ +},{"./_ctx":163,"./_is-array":188,"./_is-object":190,"./_to-length":250,"./_wks":261}],177:[function(require,module,exports){ var ctx = require('./_ctx'); var call = require('./_iter-call'); var isArrayIter = require('./_is-array-iter'); @@ -16766,22 +16902,22 @@ var exports = module.exports = function (iterable, entries, fn, that, ITERATOR) exports.BREAK = BREAK; exports.RETURN = RETURN; -},{"./_an-object":145,"./_ctx":161,"./_is-array-iter":185,"./_iter-call":190,"./_to-length":248,"./core.get-iterator-method":260}],176:[function(require,module,exports){ +},{"./_an-object":147,"./_ctx":163,"./_is-array-iter":187,"./_iter-call":192,"./_to-length":250,"./core.get-iterator-method":262}],178:[function(require,module,exports){ module.exports = require('./_shared')('native-function-to-string', Function.toString); -},{"./_shared":233}],177:[function(require,module,exports){ -arguments[4][131][0].apply(exports,arguments) -},{"dup":131}],178:[function(require,module,exports){ -arguments[4][132][0].apply(exports,arguments) -},{"dup":132}],179:[function(require,module,exports){ +},{"./_shared":235}],179:[function(require,module,exports){ arguments[4][133][0].apply(exports,arguments) -},{"./_descriptors":165,"./_object-dp":206,"./_property-desc":223,"dup":133}],180:[function(require,module,exports){ +},{"dup":133}],180:[function(require,module,exports){ +arguments[4][134][0].apply(exports,arguments) +},{"dup":134}],181:[function(require,module,exports){ +arguments[4][135][0].apply(exports,arguments) +},{"./_descriptors":167,"./_object-dp":208,"./_property-desc":225,"dup":135}],182:[function(require,module,exports){ var document = require('./_global').document; module.exports = document && document.documentElement; -},{"./_global":177}],181:[function(require,module,exports){ -arguments[4][134][0].apply(exports,arguments) -},{"./_descriptors":165,"./_dom-create":166,"./_fails":171,"dup":134}],182:[function(require,module,exports){ +},{"./_global":179}],183:[function(require,module,exports){ +arguments[4][136][0].apply(exports,arguments) +},{"./_descriptors":167,"./_dom-create":168,"./_fails":173,"dup":136}],184:[function(require,module,exports){ var isObject = require('./_is-object'); var setPrototypeOf = require('./_set-proto').set; module.exports = function (that, target, C) { @@ -16792,7 +16928,7 @@ module.exports = function (that, target, C) { } return that; }; -},{"./_is-object":188,"./_set-proto":229}],183:[function(require,module,exports){ +},{"./_is-object":190,"./_set-proto":231}],185:[function(require,module,exports){ // fast apply, http://jsperf.lnkit.com/fast-apply/5 module.exports = function (fn, args, that) { var un = that === undefined; @@ -16810,7 +16946,7 @@ module.exports = function (fn, args, that) { } return fn.apply(that, args); }; -},{}],184:[function(require,module,exports){ +},{}],186:[function(require,module,exports){ // fallback for non-array-like ES3 and non-enumerable old V8 strings var cof = require('./_cof'); // eslint-disable-next-line no-prototype-builtins @@ -16818,7 +16954,7 @@ module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) { return cof(it) == 'String' ? it.split('') : Object(it); }; -},{"./_cof":155}],185:[function(require,module,exports){ +},{"./_cof":157}],187:[function(require,module,exports){ // check on default Array iterator var Iterators = require('./_iterators'); var ITERATOR = require('./_wks')('iterator'); @@ -16828,14 +16964,14 @@ module.exports = function (it) { return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it); }; -},{"./_iterators":195,"./_wks":259}],186:[function(require,module,exports){ +},{"./_iterators":197,"./_wks":261}],188:[function(require,module,exports){ // 7.2.2 IsArray(argument) var cof = require('./_cof'); module.exports = Array.isArray || function isArray(arg) { return cof(arg) == 'Array'; }; -},{"./_cof":155}],187:[function(require,module,exports){ +},{"./_cof":157}],189:[function(require,module,exports){ // 20.1.2.3 Number.isInteger(number) var isObject = require('./_is-object'); var floor = Math.floor; @@ -16843,9 +16979,9 @@ module.exports = function isInteger(it) { return !isObject(it) && isFinite(it) && floor(it) === it; }; -},{"./_is-object":188}],188:[function(require,module,exports){ -arguments[4][135][0].apply(exports,arguments) -},{"dup":135}],189:[function(require,module,exports){ +},{"./_is-object":190}],190:[function(require,module,exports){ +arguments[4][137][0].apply(exports,arguments) +},{"dup":137}],191:[function(require,module,exports){ // 7.2.8 IsRegExp(argument) var isObject = require('./_is-object'); var cof = require('./_cof'); @@ -16855,7 +16991,7 @@ module.exports = function (it) { return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : cof(it) == 'RegExp'); }; -},{"./_cof":155,"./_is-object":188,"./_wks":259}],190:[function(require,module,exports){ +},{"./_cof":157,"./_is-object":190,"./_wks":261}],192:[function(require,module,exports){ // call something on iterator step with safe closing on error var anObject = require('./_an-object'); module.exports = function (iterator, fn, value, entries) { @@ -16869,7 +17005,7 @@ module.exports = function (iterator, fn, value, entries) { } }; -},{"./_an-object":145}],191:[function(require,module,exports){ +},{"./_an-object":147}],193:[function(require,module,exports){ 'use strict'; var create = require('./_object-create'); var descriptor = require('./_property-desc'); @@ -16884,7 +17020,7 @@ module.exports = function (Constructor, NAME, next) { setToStringTag(Constructor, NAME + ' Iterator'); }; -},{"./_hide":179,"./_object-create":205,"./_property-desc":223,"./_set-to-string-tag":231,"./_wks":259}],192:[function(require,module,exports){ +},{"./_hide":181,"./_object-create":207,"./_property-desc":225,"./_set-to-string-tag":233,"./_wks":261}],194:[function(require,module,exports){ 'use strict'; var LIBRARY = require('./_library'); var $export = require('./_export'); @@ -16955,7 +17091,7 @@ module.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE return methods; }; -},{"./_export":169,"./_hide":179,"./_iter-create":191,"./_iterators":195,"./_library":196,"./_object-gpo":212,"./_redefine":225,"./_set-to-string-tag":231,"./_wks":259}],193:[function(require,module,exports){ +},{"./_export":171,"./_hide":181,"./_iter-create":193,"./_iterators":197,"./_library":198,"./_object-gpo":214,"./_redefine":227,"./_set-to-string-tag":233,"./_wks":261}],195:[function(require,module,exports){ var ITERATOR = require('./_wks')('iterator'); var SAFE_CLOSING = false; @@ -16979,18 +17115,18 @@ module.exports = function (exec, skipClosing) { return safe; }; -},{"./_wks":259}],194:[function(require,module,exports){ +},{"./_wks":261}],196:[function(require,module,exports){ module.exports = function (done, value) { return { value: value, done: !!done }; }; -},{}],195:[function(require,module,exports){ +},{}],197:[function(require,module,exports){ module.exports = {}; -},{}],196:[function(require,module,exports){ +},{}],198:[function(require,module,exports){ module.exports = false; -},{}],197:[function(require,module,exports){ +},{}],199:[function(require,module,exports){ // 20.2.2.14 Math.expm1(x) var $expm1 = Math.expm1; module.exports = (!$expm1 @@ -17002,7 +17138,7 @@ module.exports = (!$expm1 return (x = +x) == 0 ? x : x > -1e-6 && x < 1e-6 ? x + x * x / 2 : Math.exp(x) - 1; } : $expm1; -},{}],198:[function(require,module,exports){ +},{}],200:[function(require,module,exports){ // 20.2.2.16 Math.fround(x) var sign = require('./_math-sign'); var pow = Math.pow; @@ -17027,20 +17163,20 @@ module.exports = Math.fround || function fround(x) { return $sign * result; }; -},{"./_math-sign":200}],199:[function(require,module,exports){ +},{"./_math-sign":202}],201:[function(require,module,exports){ // 20.2.2.20 Math.log1p(x) module.exports = Math.log1p || function log1p(x) { return (x = +x) > -1e-8 && x < 1e-8 ? x - x * x / 2 : Math.log(1 + x); }; -},{}],200:[function(require,module,exports){ +},{}],202:[function(require,module,exports){ // 20.2.2.28 Math.sign(x) module.exports = Math.sign || function sign(x) { // eslint-disable-next-line no-self-compare return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1; }; -},{}],201:[function(require,module,exports){ +},{}],203:[function(require,module,exports){ var META = require('./_uid')('meta'); var isObject = require('./_is-object'); var has = require('./_has'); @@ -17095,7 +17231,7 @@ var meta = module.exports = { onFreeze: onFreeze }; -},{"./_fails":171,"./_has":178,"./_is-object":188,"./_object-dp":206,"./_uid":254}],202:[function(require,module,exports){ +},{"./_fails":173,"./_has":180,"./_is-object":190,"./_object-dp":208,"./_uid":256}],204:[function(require,module,exports){ var global = require('./_global'); var macrotask = require('./_task').set; var Observer = global.MutationObserver || global.WebKitMutationObserver; @@ -17166,7 +17302,7 @@ module.exports = function () { }; }; -},{"./_cof":155,"./_global":177,"./_task":243}],203:[function(require,module,exports){ +},{"./_cof":157,"./_global":179,"./_task":245}],205:[function(require,module,exports){ 'use strict'; // 25.4.1.5 NewPromiseCapability(C) var aFunction = require('./_a-function'); @@ -17186,7 +17322,7 @@ module.exports.f = function (C) { return new PromiseCapability(C); }; -},{"./_a-function":140}],204:[function(require,module,exports){ +},{"./_a-function":142}],206:[function(require,module,exports){ 'use strict'; // 19.1.2.1 Object.assign(target, source, ...) var DESCRIPTORS = require('./_descriptors'); @@ -17226,7 +17362,7 @@ module.exports = !$assign || require('./_fails')(function () { } return T; } : $assign; -},{"./_descriptors":165,"./_fails":171,"./_iobject":184,"./_object-gops":211,"./_object-keys":214,"./_object-pie":215,"./_to-object":249}],205:[function(require,module,exports){ +},{"./_descriptors":167,"./_fails":173,"./_iobject":186,"./_object-gops":213,"./_object-keys":216,"./_object-pie":217,"./_to-object":251}],207:[function(require,module,exports){ // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) var anObject = require('./_an-object'); var dPs = require('./_object-dps'); @@ -17269,9 +17405,9 @@ module.exports = Object.create || function create(O, Properties) { return Properties === undefined ? result : dPs(result, Properties); }; -},{"./_an-object":145,"./_dom-create":166,"./_enum-bug-keys":167,"./_html":180,"./_object-dps":207,"./_shared-key":232}],206:[function(require,module,exports){ -arguments[4][136][0].apply(exports,arguments) -},{"./_an-object":145,"./_descriptors":165,"./_ie8-dom-define":181,"./_to-primitive":250,"dup":136}],207:[function(require,module,exports){ +},{"./_an-object":147,"./_dom-create":168,"./_enum-bug-keys":169,"./_html":182,"./_object-dps":209,"./_shared-key":234}],208:[function(require,module,exports){ +arguments[4][138][0].apply(exports,arguments) +},{"./_an-object":147,"./_descriptors":167,"./_ie8-dom-define":183,"./_to-primitive":252,"dup":138}],209:[function(require,module,exports){ var dP = require('./_object-dp'); var anObject = require('./_an-object'); var getKeys = require('./_object-keys'); @@ -17286,7 +17422,7 @@ module.exports = require('./_descriptors') ? Object.defineProperties : function return O; }; -},{"./_an-object":145,"./_descriptors":165,"./_object-dp":206,"./_object-keys":214}],208:[function(require,module,exports){ +},{"./_an-object":147,"./_descriptors":167,"./_object-dp":208,"./_object-keys":216}],210:[function(require,module,exports){ var pIE = require('./_object-pie'); var createDesc = require('./_property-desc'); var toIObject = require('./_to-iobject'); @@ -17304,7 +17440,7 @@ exports.f = require('./_descriptors') ? gOPD : function getOwnPropertyDescriptor if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]); }; -},{"./_descriptors":165,"./_has":178,"./_ie8-dom-define":181,"./_object-pie":215,"./_property-desc":223,"./_to-iobject":247,"./_to-primitive":250}],209:[function(require,module,exports){ +},{"./_descriptors":167,"./_has":180,"./_ie8-dom-define":183,"./_object-pie":217,"./_property-desc":225,"./_to-iobject":249,"./_to-primitive":252}],211:[function(require,module,exports){ // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window var toIObject = require('./_to-iobject'); var gOPN = require('./_object-gopn').f; @@ -17325,7 +17461,7 @@ module.exports.f = function getOwnPropertyNames(it) { return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : gOPN(toIObject(it)); }; -},{"./_object-gopn":210,"./_to-iobject":247}],210:[function(require,module,exports){ +},{"./_object-gopn":212,"./_to-iobject":249}],212:[function(require,module,exports){ // 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O) var $keys = require('./_object-keys-internal'); var hiddenKeys = require('./_enum-bug-keys').concat('length', 'prototype'); @@ -17334,10 +17470,10 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { return $keys(O, hiddenKeys); }; -},{"./_enum-bug-keys":167,"./_object-keys-internal":213}],211:[function(require,module,exports){ +},{"./_enum-bug-keys":169,"./_object-keys-internal":215}],213:[function(require,module,exports){ exports.f = Object.getOwnPropertySymbols; -},{}],212:[function(require,module,exports){ +},{}],214:[function(require,module,exports){ // 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O) var has = require('./_has'); var toObject = require('./_to-object'); @@ -17352,7 +17488,7 @@ module.exports = Object.getPrototypeOf || function (O) { } return O instanceof Object ? ObjectProto : null; }; -},{"./_has":178,"./_shared-key":232,"./_to-object":249}],213:[function(require,module,exports){ +},{"./_has":180,"./_shared-key":234,"./_to-object":251}],215:[function(require,module,exports){ var has = require('./_has'); var toIObject = require('./_to-iobject'); var arrayIndexOf = require('./_array-includes')(false); @@ -17371,7 +17507,7 @@ module.exports = function (object, names) { return result; }; -},{"./_array-includes":148,"./_has":178,"./_shared-key":232,"./_to-iobject":247}],214:[function(require,module,exports){ +},{"./_array-includes":150,"./_has":180,"./_shared-key":234,"./_to-iobject":249}],216:[function(require,module,exports){ // 19.1.2.14 / 15.2.3.14 Object.keys(O) var $keys = require('./_object-keys-internal'); var enumBugKeys = require('./_enum-bug-keys'); @@ -17380,10 +17516,10 @@ module.exports = Object.keys || function keys(O) { return $keys(O, enumBugKeys); }; -},{"./_enum-bug-keys":167,"./_object-keys-internal":213}],215:[function(require,module,exports){ +},{"./_enum-bug-keys":169,"./_object-keys-internal":215}],217:[function(require,module,exports){ exports.f = {}.propertyIsEnumerable; -},{}],216:[function(require,module,exports){ +},{}],218:[function(require,module,exports){ // most Object methods by ES6 should accept primitives var $export = require('./_export'); var core = require('./_core'); @@ -17395,7 +17531,7 @@ module.exports = function (KEY, exec) { $export($export.S + $export.F * fails(function () { fn(1); }), 'Object', exp); }; -},{"./_core":159,"./_export":169,"./_fails":171}],217:[function(require,module,exports){ +},{"./_core":161,"./_export":171,"./_fails":173}],219:[function(require,module,exports){ var DESCRIPTORS = require('./_descriptors'); var getKeys = require('./_object-keys'); var toIObject = require('./_to-iobject'); @@ -17418,7 +17554,7 @@ module.exports = function (isEntries) { }; }; -},{"./_descriptors":165,"./_object-keys":214,"./_object-pie":215,"./_to-iobject":247}],218:[function(require,module,exports){ +},{"./_descriptors":167,"./_object-keys":216,"./_object-pie":217,"./_to-iobject":249}],220:[function(require,module,exports){ // all object keys, includes non-enumerable and symbols var gOPN = require('./_object-gopn'); var gOPS = require('./_object-gops'); @@ -17430,7 +17566,7 @@ module.exports = Reflect && Reflect.ownKeys || function ownKeys(it) { return getSymbols ? keys.concat(getSymbols(it)) : keys; }; -},{"./_an-object":145,"./_global":177,"./_object-gopn":210,"./_object-gops":211}],219:[function(require,module,exports){ +},{"./_an-object":147,"./_global":179,"./_object-gopn":212,"./_object-gops":213}],221:[function(require,module,exports){ var $parseFloat = require('./_global').parseFloat; var $trim = require('./_string-trim').trim; @@ -17440,7 +17576,7 @@ module.exports = 1 / $parseFloat(require('./_string-ws') + '-0') !== -Infinity ? return result === 0 && string.charAt(0) == '-' ? -0 : result; } : $parseFloat; -},{"./_global":177,"./_string-trim":241,"./_string-ws":242}],220:[function(require,module,exports){ +},{"./_global":179,"./_string-trim":243,"./_string-ws":244}],222:[function(require,module,exports){ var $parseInt = require('./_global').parseInt; var $trim = require('./_string-trim').trim; var ws = require('./_string-ws'); @@ -17451,7 +17587,7 @@ module.exports = $parseInt(ws + '08') !== 8 || $parseInt(ws + '0x16') !== 22 ? f return $parseInt(string, (radix >>> 0) || (hex.test(string) ? 16 : 10)); } : $parseInt; -},{"./_global":177,"./_string-trim":241,"./_string-ws":242}],221:[function(require,module,exports){ +},{"./_global":179,"./_string-trim":243,"./_string-ws":244}],223:[function(require,module,exports){ module.exports = function (exec) { try { return { e: false, v: exec() }; @@ -17460,7 +17596,7 @@ module.exports = function (exec) { } }; -},{}],222:[function(require,module,exports){ +},{}],224:[function(require,module,exports){ var anObject = require('./_an-object'); var isObject = require('./_is-object'); var newPromiseCapability = require('./_new-promise-capability'); @@ -17474,16 +17610,16 @@ module.exports = function (C, x) { return promiseCapability.promise; }; -},{"./_an-object":145,"./_is-object":188,"./_new-promise-capability":203}],223:[function(require,module,exports){ -arguments[4][137][0].apply(exports,arguments) -},{"dup":137}],224:[function(require,module,exports){ +},{"./_an-object":147,"./_is-object":190,"./_new-promise-capability":205}],225:[function(require,module,exports){ +arguments[4][139][0].apply(exports,arguments) +},{"dup":139}],226:[function(require,module,exports){ var redefine = require('./_redefine'); module.exports = function (target, src, safe) { for (var key in src) redefine(target, key, src[key], safe); return target; }; -},{"./_redefine":225}],225:[function(require,module,exports){ +},{"./_redefine":227}],227:[function(require,module,exports){ var global = require('./_global'); var hide = require('./_hide'); var has = require('./_has'); @@ -17516,7 +17652,7 @@ require('./_core').inspectSource = function (it) { return typeof this == 'function' && this[SRC] || $toString.call(this); }); -},{"./_core":159,"./_function-to-string":176,"./_global":177,"./_has":178,"./_hide":179,"./_uid":254}],226:[function(require,module,exports){ +},{"./_core":161,"./_function-to-string":178,"./_global":179,"./_has":180,"./_hide":181,"./_uid":256}],228:[function(require,module,exports){ 'use strict'; var classof = require('./_classof'); @@ -17539,7 +17675,7 @@ module.exports = function (R, S) { return builtinExec.call(R, S); }; -},{"./_classof":154}],227:[function(require,module,exports){ +},{"./_classof":156}],229:[function(require,module,exports){ 'use strict'; var regexpFlags = require('./_flags'); @@ -17599,14 +17735,14 @@ if (PATCH) { module.exports = patchedExec; -},{"./_flags":173}],228:[function(require,module,exports){ +},{"./_flags":175}],230:[function(require,module,exports){ // 7.2.9 SameValue(x, y) module.exports = Object.is || function is(x, y) { // eslint-disable-next-line no-self-compare return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y; }; -},{}],229:[function(require,module,exports){ +},{}],231:[function(require,module,exports){ // Works with __proto__ only. Old v8 can't work with null proto objects. /* eslint-disable no-proto */ var isObject = require('./_is-object'); @@ -17633,7 +17769,7 @@ module.exports = { check: check }; -},{"./_an-object":145,"./_ctx":161,"./_is-object":188,"./_object-gopd":208}],230:[function(require,module,exports){ +},{"./_an-object":147,"./_ctx":163,"./_is-object":190,"./_object-gopd":210}],232:[function(require,module,exports){ 'use strict'; var global = require('./_global'); var dP = require('./_object-dp'); @@ -17648,7 +17784,7 @@ module.exports = function (KEY) { }); }; -},{"./_descriptors":165,"./_global":177,"./_object-dp":206,"./_wks":259}],231:[function(require,module,exports){ +},{"./_descriptors":167,"./_global":179,"./_object-dp":208,"./_wks":261}],233:[function(require,module,exports){ var def = require('./_object-dp').f; var has = require('./_has'); var TAG = require('./_wks')('toStringTag'); @@ -17657,14 +17793,14 @@ module.exports = function (it, tag, stat) { if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag }); }; -},{"./_has":178,"./_object-dp":206,"./_wks":259}],232:[function(require,module,exports){ +},{"./_has":180,"./_object-dp":208,"./_wks":261}],234:[function(require,module,exports){ var shared = require('./_shared')('keys'); var uid = require('./_uid'); module.exports = function (key) { return shared[key] || (shared[key] = uid(key)); }; -},{"./_shared":233,"./_uid":254}],233:[function(require,module,exports){ +},{"./_shared":235,"./_uid":256}],235:[function(require,module,exports){ var core = require('./_core'); var global = require('./_global'); var SHARED = '__core-js_shared__'; @@ -17678,7 +17814,7 @@ var store = global[SHARED] || (global[SHARED] = {}); copyright: '© 2019 Denis Pushkarev (zloirock.ru)' }); -},{"./_core":159,"./_global":177,"./_library":196}],234:[function(require,module,exports){ +},{"./_core":161,"./_global":179,"./_library":198}],236:[function(require,module,exports){ // 7.3.20 SpeciesConstructor(O, defaultConstructor) var anObject = require('./_an-object'); var aFunction = require('./_a-function'); @@ -17689,7 +17825,7 @@ module.exports = function (O, D) { return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? D : aFunction(S); }; -},{"./_a-function":140,"./_an-object":145,"./_wks":259}],235:[function(require,module,exports){ +},{"./_a-function":142,"./_an-object":147,"./_wks":261}],237:[function(require,module,exports){ 'use strict'; var fails = require('./_fails'); @@ -17700,7 +17836,7 @@ module.exports = function (method, arg) { }); }; -},{"./_fails":171}],236:[function(require,module,exports){ +},{"./_fails":173}],238:[function(require,module,exports){ var toInteger = require('./_to-integer'); var defined = require('./_defined'); // true -> String#at @@ -17719,7 +17855,7 @@ module.exports = function (TO_STRING) { }; }; -},{"./_defined":164,"./_to-integer":246}],237:[function(require,module,exports){ +},{"./_defined":166,"./_to-integer":248}],239:[function(require,module,exports){ // helper for String#{startsWith, endsWith, includes} var isRegExp = require('./_is-regexp'); var defined = require('./_defined'); @@ -17729,7 +17865,7 @@ module.exports = function (that, searchString, NAME) { return String(defined(that)); }; -},{"./_defined":164,"./_is-regexp":189}],238:[function(require,module,exports){ +},{"./_defined":166,"./_is-regexp":191}],240:[function(require,module,exports){ var $export = require('./_export'); var fails = require('./_fails'); var defined = require('./_defined'); @@ -17750,7 +17886,7 @@ module.exports = function (NAME, exec) { }), 'String', O); }; -},{"./_defined":164,"./_export":169,"./_fails":171}],239:[function(require,module,exports){ +},{"./_defined":166,"./_export":171,"./_fails":173}],241:[function(require,module,exports){ // https://github.com/tc39/proposal-string-pad-start-end var toLength = require('./_to-length'); var repeat = require('./_string-repeat'); @@ -17768,7 +17904,7 @@ module.exports = function (that, maxLength, fillString, left) { return left ? stringFiller + S : S + stringFiller; }; -},{"./_defined":164,"./_string-repeat":240,"./_to-length":248}],240:[function(require,module,exports){ +},{"./_defined":166,"./_string-repeat":242,"./_to-length":250}],242:[function(require,module,exports){ 'use strict'; var toInteger = require('./_to-integer'); var defined = require('./_defined'); @@ -17782,7 +17918,7 @@ module.exports = function repeat(count) { return res; }; -},{"./_defined":164,"./_to-integer":246}],241:[function(require,module,exports){ +},{"./_defined":166,"./_to-integer":248}],243:[function(require,module,exports){ var $export = require('./_export'); var defined = require('./_defined'); var fails = require('./_fails'); @@ -17814,11 +17950,11 @@ var trim = exporter.trim = function (string, TYPE) { module.exports = exporter; -},{"./_defined":164,"./_export":169,"./_fails":171,"./_string-ws":242}],242:[function(require,module,exports){ +},{"./_defined":166,"./_export":171,"./_fails":173,"./_string-ws":244}],244:[function(require,module,exports){ module.exports = '\x09\x0A\x0B\x0C\x0D\x20\xA0\u1680\u180E\u2000\u2001\u2002\u2003' + '\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF'; -},{}],243:[function(require,module,exports){ +},{}],245:[function(require,module,exports){ var ctx = require('./_ctx'); var invoke = require('./_invoke'); var html = require('./_html'); @@ -17904,7 +18040,7 @@ module.exports = { clear: clearTask }; -},{"./_cof":155,"./_ctx":161,"./_dom-create":166,"./_global":177,"./_html":180,"./_invoke":183}],244:[function(require,module,exports){ +},{"./_cof":157,"./_ctx":163,"./_dom-create":168,"./_global":179,"./_html":182,"./_invoke":185}],246:[function(require,module,exports){ var toInteger = require('./_to-integer'); var max = Math.max; var min = Math.min; @@ -17913,7 +18049,7 @@ module.exports = function (index, length) { return index < 0 ? max(index + length, 0) : min(index, length); }; -},{"./_to-integer":246}],245:[function(require,module,exports){ +},{"./_to-integer":248}],247:[function(require,module,exports){ // https://tc39.github.io/ecma262/#sec-toindex var toInteger = require('./_to-integer'); var toLength = require('./_to-length'); @@ -17925,7 +18061,7 @@ module.exports = function (it) { return length; }; -},{"./_to-integer":246,"./_to-length":248}],246:[function(require,module,exports){ +},{"./_to-integer":248,"./_to-length":250}],248:[function(require,module,exports){ // 7.1.4 ToInteger var ceil = Math.ceil; var floor = Math.floor; @@ -17933,7 +18069,7 @@ module.exports = function (it) { return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it); }; -},{}],247:[function(require,module,exports){ +},{}],249:[function(require,module,exports){ // to indexed object, toObject with fallback for non-array-like ES3 strings var IObject = require('./_iobject'); var defined = require('./_defined'); @@ -17941,7 +18077,7 @@ module.exports = function (it) { return IObject(defined(it)); }; -},{"./_defined":164,"./_iobject":184}],248:[function(require,module,exports){ +},{"./_defined":166,"./_iobject":186}],250:[function(require,module,exports){ // 7.1.15 ToLength var toInteger = require('./_to-integer'); var min = Math.min; @@ -17949,16 +18085,16 @@ module.exports = function (it) { return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991 }; -},{"./_to-integer":246}],249:[function(require,module,exports){ +},{"./_to-integer":248}],251:[function(require,module,exports){ // 7.1.13 ToObject(argument) var defined = require('./_defined'); module.exports = function (it) { return Object(defined(it)); }; -},{"./_defined":164}],250:[function(require,module,exports){ -arguments[4][138][0].apply(exports,arguments) -},{"./_is-object":188,"dup":138}],251:[function(require,module,exports){ +},{"./_defined":166}],252:[function(require,module,exports){ +arguments[4][140][0].apply(exports,arguments) +},{"./_is-object":190,"dup":140}],253:[function(require,module,exports){ 'use strict'; if (require('./_descriptors')) { var LIBRARY = require('./_library'); @@ -18440,7 +18576,7 @@ if (require('./_descriptors')) { }; } else module.exports = function () { /* empty */ }; -},{"./_an-instance":144,"./_array-copy-within":146,"./_array-fill":147,"./_array-includes":148,"./_array-methods":149,"./_classof":154,"./_ctx":161,"./_descriptors":165,"./_export":169,"./_fails":171,"./_global":177,"./_has":178,"./_hide":179,"./_is-array-iter":185,"./_is-object":188,"./_iter-detect":193,"./_iterators":195,"./_library":196,"./_object-create":205,"./_object-dp":206,"./_object-gopd":208,"./_object-gopn":210,"./_object-gpo":212,"./_property-desc":223,"./_redefine-all":224,"./_set-species":230,"./_species-constructor":234,"./_to-absolute-index":244,"./_to-index":245,"./_to-integer":246,"./_to-length":248,"./_to-object":249,"./_to-primitive":250,"./_typed":253,"./_typed-buffer":252,"./_uid":254,"./_wks":259,"./core.get-iterator-method":260,"./es6.array.iterator":271}],252:[function(require,module,exports){ +},{"./_an-instance":146,"./_array-copy-within":148,"./_array-fill":149,"./_array-includes":150,"./_array-methods":151,"./_classof":156,"./_ctx":163,"./_descriptors":167,"./_export":171,"./_fails":173,"./_global":179,"./_has":180,"./_hide":181,"./_is-array-iter":187,"./_is-object":190,"./_iter-detect":195,"./_iterators":197,"./_library":198,"./_object-create":207,"./_object-dp":208,"./_object-gopd":210,"./_object-gopn":212,"./_object-gpo":214,"./_property-desc":225,"./_redefine-all":226,"./_set-species":232,"./_species-constructor":236,"./_to-absolute-index":246,"./_to-index":247,"./_to-integer":248,"./_to-length":250,"./_to-object":251,"./_to-primitive":252,"./_typed":255,"./_typed-buffer":254,"./_uid":256,"./_wks":261,"./core.get-iterator-method":262,"./es6.array.iterator":273}],254:[function(require,module,exports){ 'use strict'; var global = require('./_global'); var DESCRIPTORS = require('./_descriptors'); @@ -18718,7 +18854,7 @@ hide($DataView[PROTOTYPE], $typed.VIEW, true); exports[ARRAY_BUFFER] = $ArrayBuffer; exports[DATA_VIEW] = $DataView; -},{"./_an-instance":144,"./_array-fill":147,"./_descriptors":165,"./_fails":171,"./_global":177,"./_hide":179,"./_library":196,"./_object-dp":206,"./_object-gopn":210,"./_redefine-all":224,"./_set-to-string-tag":231,"./_to-index":245,"./_to-integer":246,"./_to-length":248,"./_typed":253}],253:[function(require,module,exports){ +},{"./_an-instance":146,"./_array-fill":149,"./_descriptors":167,"./_fails":173,"./_global":179,"./_hide":181,"./_library":198,"./_object-dp":208,"./_object-gopn":212,"./_redefine-all":226,"./_set-to-string-tag":233,"./_to-index":247,"./_to-integer":248,"./_to-length":250,"./_typed":255}],255:[function(require,module,exports){ var global = require('./_global'); var hide = require('./_hide'); var uid = require('./_uid'); @@ -18748,27 +18884,27 @@ module.exports = { VIEW: VIEW }; -},{"./_global":177,"./_hide":179,"./_uid":254}],254:[function(require,module,exports){ +},{"./_global":179,"./_hide":181,"./_uid":256}],256:[function(require,module,exports){ var id = 0; var px = Math.random(); module.exports = function (key) { return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36)); }; -},{}],255:[function(require,module,exports){ +},{}],257:[function(require,module,exports){ var global = require('./_global'); var navigator = global.navigator; module.exports = navigator && navigator.userAgent || ''; -},{"./_global":177}],256:[function(require,module,exports){ +},{"./_global":179}],258:[function(require,module,exports){ var isObject = require('./_is-object'); module.exports = function (it, TYPE) { if (!isObject(it) || it._t !== TYPE) throw TypeError('Incompatible receiver, ' + TYPE + ' required!'); return it; }; -},{"./_is-object":188}],257:[function(require,module,exports){ +},{"./_is-object":190}],259:[function(require,module,exports){ var global = require('./_global'); var core = require('./_core'); var LIBRARY = require('./_library'); @@ -18779,10 +18915,10 @@ module.exports = function (name) { if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty($Symbol, name, { value: wksExt.f(name) }); }; -},{"./_core":159,"./_global":177,"./_library":196,"./_object-dp":206,"./_wks-ext":258}],258:[function(require,module,exports){ +},{"./_core":161,"./_global":179,"./_library":198,"./_object-dp":208,"./_wks-ext":260}],260:[function(require,module,exports){ exports.f = require('./_wks'); -},{"./_wks":259}],259:[function(require,module,exports){ +},{"./_wks":261}],261:[function(require,module,exports){ var store = require('./_shared')('wks'); var uid = require('./_uid'); var Symbol = require('./_global').Symbol; @@ -18795,7 +18931,7 @@ var $exports = module.exports = function (name) { $exports.store = store; -},{"./_global":177,"./_shared":233,"./_uid":254}],260:[function(require,module,exports){ +},{"./_global":179,"./_shared":235,"./_uid":256}],262:[function(require,module,exports){ var classof = require('./_classof'); var ITERATOR = require('./_wks')('iterator'); var Iterators = require('./_iterators'); @@ -18805,7 +18941,7 @@ module.exports = require('./_core').getIteratorMethod = function (it) { || Iterators[classof(it)]; }; -},{"./_classof":154,"./_core":159,"./_iterators":195,"./_wks":259}],261:[function(require,module,exports){ +},{"./_classof":156,"./_core":161,"./_iterators":197,"./_wks":261}],263:[function(require,module,exports){ // 22.1.3.3 Array.prototype.copyWithin(target, start, end = this.length) var $export = require('./_export'); @@ -18813,7 +18949,7 @@ $export($export.P, 'Array', { copyWithin: require('./_array-copy-within') }); require('./_add-to-unscopables')('copyWithin'); -},{"./_add-to-unscopables":142,"./_array-copy-within":146,"./_export":169}],262:[function(require,module,exports){ +},{"./_add-to-unscopables":144,"./_array-copy-within":148,"./_export":171}],264:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $every = require('./_array-methods')(4); @@ -18825,7 +18961,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].every, true), 'A } }); -},{"./_array-methods":149,"./_export":169,"./_strict-method":235}],263:[function(require,module,exports){ +},{"./_array-methods":151,"./_export":171,"./_strict-method":237}],265:[function(require,module,exports){ // 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length) var $export = require('./_export'); @@ -18833,7 +18969,7 @@ $export($export.P, 'Array', { fill: require('./_array-fill') }); require('./_add-to-unscopables')('fill'); -},{"./_add-to-unscopables":142,"./_array-fill":147,"./_export":169}],264:[function(require,module,exports){ +},{"./_add-to-unscopables":144,"./_array-fill":149,"./_export":171}],266:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $filter = require('./_array-methods')(2); @@ -18845,7 +18981,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].filter, true), ' } }); -},{"./_array-methods":149,"./_export":169,"./_strict-method":235}],265:[function(require,module,exports){ +},{"./_array-methods":151,"./_export":171,"./_strict-method":237}],267:[function(require,module,exports){ 'use strict'; // 22.1.3.9 Array.prototype.findIndex(predicate, thisArg = undefined) var $export = require('./_export'); @@ -18861,7 +18997,7 @@ $export($export.P + $export.F * forced, 'Array', { }); require('./_add-to-unscopables')(KEY); -},{"./_add-to-unscopables":142,"./_array-methods":149,"./_export":169}],266:[function(require,module,exports){ +},{"./_add-to-unscopables":144,"./_array-methods":151,"./_export":171}],268:[function(require,module,exports){ 'use strict'; // 22.1.3.8 Array.prototype.find(predicate, thisArg = undefined) var $export = require('./_export'); @@ -18877,7 +19013,7 @@ $export($export.P + $export.F * forced, 'Array', { }); require('./_add-to-unscopables')(KEY); -},{"./_add-to-unscopables":142,"./_array-methods":149,"./_export":169}],267:[function(require,module,exports){ +},{"./_add-to-unscopables":144,"./_array-methods":151,"./_export":171}],269:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $forEach = require('./_array-methods')(0); @@ -18890,7 +19026,7 @@ $export($export.P + $export.F * !STRICT, 'Array', { } }); -},{"./_array-methods":149,"./_export":169,"./_strict-method":235}],268:[function(require,module,exports){ +},{"./_array-methods":151,"./_export":171,"./_strict-method":237}],270:[function(require,module,exports){ 'use strict'; var ctx = require('./_ctx'); var $export = require('./_export'); @@ -18929,7 +19065,7 @@ $export($export.S + $export.F * !require('./_iter-detect')(function (iter) { Arr } }); -},{"./_create-property":160,"./_ctx":161,"./_export":169,"./_is-array-iter":185,"./_iter-call":190,"./_iter-detect":193,"./_to-length":248,"./_to-object":249,"./core.get-iterator-method":260}],269:[function(require,module,exports){ +},{"./_create-property":162,"./_ctx":163,"./_export":171,"./_is-array-iter":187,"./_iter-call":192,"./_iter-detect":195,"./_to-length":250,"./_to-object":251,"./core.get-iterator-method":262}],271:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $indexOf = require('./_array-includes')(false); @@ -18946,13 +19082,13 @@ $export($export.P + $export.F * (NEGATIVE_ZERO || !require('./_strict-method')($ } }); -},{"./_array-includes":148,"./_export":169,"./_strict-method":235}],270:[function(require,module,exports){ +},{"./_array-includes":150,"./_export":171,"./_strict-method":237}],272:[function(require,module,exports){ // 22.1.2.2 / 15.4.3.2 Array.isArray(arg) var $export = require('./_export'); $export($export.S, 'Array', { isArray: require('./_is-array') }); -},{"./_export":169,"./_is-array":186}],271:[function(require,module,exports){ +},{"./_export":171,"./_is-array":188}],273:[function(require,module,exports){ 'use strict'; var addToUnscopables = require('./_add-to-unscopables'); var step = require('./_iter-step'); @@ -18988,7 +19124,7 @@ addToUnscopables('keys'); addToUnscopables('values'); addToUnscopables('entries'); -},{"./_add-to-unscopables":142,"./_iter-define":192,"./_iter-step":194,"./_iterators":195,"./_to-iobject":247}],272:[function(require,module,exports){ +},{"./_add-to-unscopables":144,"./_iter-define":194,"./_iter-step":196,"./_iterators":197,"./_to-iobject":249}],274:[function(require,module,exports){ 'use strict'; // 22.1.3.13 Array.prototype.join(separator) var $export = require('./_export'); @@ -19002,7 +19138,7 @@ $export($export.P + $export.F * (require('./_iobject') != Object || !require('./ } }); -},{"./_export":169,"./_iobject":184,"./_strict-method":235,"./_to-iobject":247}],273:[function(require,module,exports){ +},{"./_export":171,"./_iobject":186,"./_strict-method":237,"./_to-iobject":249}],275:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var toIObject = require('./_to-iobject'); @@ -19026,7 +19162,7 @@ $export($export.P + $export.F * (NEGATIVE_ZERO || !require('./_strict-method')($ } }); -},{"./_export":169,"./_strict-method":235,"./_to-integer":246,"./_to-iobject":247,"./_to-length":248}],274:[function(require,module,exports){ +},{"./_export":171,"./_strict-method":237,"./_to-integer":248,"./_to-iobject":249,"./_to-length":250}],276:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $map = require('./_array-methods')(1); @@ -19038,7 +19174,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].map, true), 'Arr } }); -},{"./_array-methods":149,"./_export":169,"./_strict-method":235}],275:[function(require,module,exports){ +},{"./_array-methods":151,"./_export":171,"./_strict-method":237}],277:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var createProperty = require('./_create-property'); @@ -19059,7 +19195,7 @@ $export($export.S + $export.F * require('./_fails')(function () { } }); -},{"./_create-property":160,"./_export":169,"./_fails":171}],276:[function(require,module,exports){ +},{"./_create-property":162,"./_export":171,"./_fails":173}],278:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $reduce = require('./_array-reduce'); @@ -19071,7 +19207,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].reduceRight, tru } }); -},{"./_array-reduce":150,"./_export":169,"./_strict-method":235}],277:[function(require,module,exports){ +},{"./_array-reduce":152,"./_export":171,"./_strict-method":237}],279:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $reduce = require('./_array-reduce'); @@ -19083,7 +19219,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].reduce, true), ' } }); -},{"./_array-reduce":150,"./_export":169,"./_strict-method":235}],278:[function(require,module,exports){ +},{"./_array-reduce":152,"./_export":171,"./_strict-method":237}],280:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var html = require('./_html'); @@ -19113,7 +19249,7 @@ $export($export.P + $export.F * require('./_fails')(function () { } }); -},{"./_cof":155,"./_export":169,"./_fails":171,"./_html":180,"./_to-absolute-index":244,"./_to-length":248}],279:[function(require,module,exports){ +},{"./_cof":157,"./_export":171,"./_fails":173,"./_html":182,"./_to-absolute-index":246,"./_to-length":250}],281:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $some = require('./_array-methods')(3); @@ -19125,7 +19261,7 @@ $export($export.P + $export.F * !require('./_strict-method')([].some, true), 'Ar } }); -},{"./_array-methods":149,"./_export":169,"./_strict-method":235}],280:[function(require,module,exports){ +},{"./_array-methods":151,"./_export":171,"./_strict-method":237}],282:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var aFunction = require('./_a-function'); @@ -19150,16 +19286,16 @@ $export($export.P + $export.F * (fails(function () { } }); -},{"./_a-function":140,"./_export":169,"./_fails":171,"./_strict-method":235,"./_to-object":249}],281:[function(require,module,exports){ +},{"./_a-function":142,"./_export":171,"./_fails":173,"./_strict-method":237,"./_to-object":251}],283:[function(require,module,exports){ require('./_set-species')('Array'); -},{"./_set-species":230}],282:[function(require,module,exports){ +},{"./_set-species":232}],284:[function(require,module,exports){ // 20.3.3.1 / 15.9.4.4 Date.now() var $export = require('./_export'); $export($export.S, 'Date', { now: function () { return new Date().getTime(); } }); -},{"./_export":169}],283:[function(require,module,exports){ +},{"./_export":171}],285:[function(require,module,exports){ // 20.3.4.36 / 15.9.5.43 Date.prototype.toISOString() var $export = require('./_export'); var toISOString = require('./_date-to-iso-string'); @@ -19169,7 +19305,7 @@ $export($export.P + $export.F * (Date.prototype.toISOString !== toISOString), 'D toISOString: toISOString }); -},{"./_date-to-iso-string":162,"./_export":169}],284:[function(require,module,exports){ +},{"./_date-to-iso-string":164,"./_export":171}],286:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var toObject = require('./_to-object'); @@ -19187,13 +19323,13 @@ $export($export.P + $export.F * require('./_fails')(function () { } }); -},{"./_export":169,"./_fails":171,"./_to-object":249,"./_to-primitive":250}],285:[function(require,module,exports){ +},{"./_export":171,"./_fails":173,"./_to-object":251,"./_to-primitive":252}],287:[function(require,module,exports){ var TO_PRIMITIVE = require('./_wks')('toPrimitive'); var proto = Date.prototype; if (!(TO_PRIMITIVE in proto)) require('./_hide')(proto, TO_PRIMITIVE, require('./_date-to-primitive')); -},{"./_date-to-primitive":163,"./_hide":179,"./_wks":259}],286:[function(require,module,exports){ +},{"./_date-to-primitive":165,"./_hide":181,"./_wks":261}],288:[function(require,module,exports){ var DateProto = Date.prototype; var INVALID_DATE = 'Invalid Date'; var TO_STRING = 'toString'; @@ -19207,13 +19343,13 @@ if (new Date(NaN) + '' != INVALID_DATE) { }); } -},{"./_redefine":225}],287:[function(require,module,exports){ +},{"./_redefine":227}],289:[function(require,module,exports){ // 19.2.3.2 / 15.3.4.5 Function.prototype.bind(thisArg, args...) var $export = require('./_export'); $export($export.P, 'Function', { bind: require('./_bind') }); -},{"./_bind":153,"./_export":169}],288:[function(require,module,exports){ +},{"./_bind":155,"./_export":171}],290:[function(require,module,exports){ 'use strict'; var isObject = require('./_is-object'); var getPrototypeOf = require('./_object-gpo'); @@ -19228,7 +19364,7 @@ if (!(HAS_INSTANCE in FunctionProto)) require('./_object-dp').f(FunctionProto, H return false; } }); -},{"./_is-object":188,"./_object-dp":206,"./_object-gpo":212,"./_wks":259}],289:[function(require,module,exports){ +},{"./_is-object":190,"./_object-dp":208,"./_object-gpo":214,"./_wks":261}],291:[function(require,module,exports){ var dP = require('./_object-dp').f; var FProto = Function.prototype; var nameRE = /^\s*function ([^ (]*)/; @@ -19246,7 +19382,7 @@ NAME in FProto || require('./_descriptors') && dP(FProto, NAME, { } }); -},{"./_descriptors":165,"./_object-dp":206}],290:[function(require,module,exports){ +},{"./_descriptors":167,"./_object-dp":208}],292:[function(require,module,exports){ 'use strict'; var strong = require('./_collection-strong'); var validate = require('./_validate-collection'); @@ -19267,7 +19403,7 @@ module.exports = require('./_collection')(MAP, function (get) { } }, strong, true); -},{"./_collection":158,"./_collection-strong":156,"./_validate-collection":256}],291:[function(require,module,exports){ +},{"./_collection":160,"./_collection-strong":158,"./_validate-collection":258}],293:[function(require,module,exports){ // 20.2.2.3 Math.acosh(x) var $export = require('./_export'); var log1p = require('./_math-log1p'); @@ -19287,7 +19423,7 @@ $export($export.S + $export.F * !($acosh } }); -},{"./_export":169,"./_math-log1p":199}],292:[function(require,module,exports){ +},{"./_export":171,"./_math-log1p":201}],294:[function(require,module,exports){ // 20.2.2.5 Math.asinh(x) var $export = require('./_export'); var $asinh = Math.asinh; @@ -19299,7 +19435,7 @@ function asinh(x) { // Tor Browser bug: Math.asinh(0) -> -0 $export($export.S + $export.F * !($asinh && 1 / $asinh(0) > 0), 'Math', { asinh: asinh }); -},{"./_export":169}],293:[function(require,module,exports){ +},{"./_export":171}],295:[function(require,module,exports){ // 20.2.2.7 Math.atanh(x) var $export = require('./_export'); var $atanh = Math.atanh; @@ -19311,7 +19447,7 @@ $export($export.S + $export.F * !($atanh && 1 / $atanh(-0) < 0), 'Math', { } }); -},{"./_export":169}],294:[function(require,module,exports){ +},{"./_export":171}],296:[function(require,module,exports){ // 20.2.2.9 Math.cbrt(x) var $export = require('./_export'); var sign = require('./_math-sign'); @@ -19322,7 +19458,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":169,"./_math-sign":200}],295:[function(require,module,exports){ +},{"./_export":171,"./_math-sign":202}],297:[function(require,module,exports){ // 20.2.2.11 Math.clz32(x) var $export = require('./_export'); @@ -19332,7 +19468,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":169}],296:[function(require,module,exports){ +},{"./_export":171}],298:[function(require,module,exports){ // 20.2.2.12 Math.cosh(x) var $export = require('./_export'); var exp = Math.exp; @@ -19343,20 +19479,20 @@ $export($export.S, 'Math', { } }); -},{"./_export":169}],297:[function(require,module,exports){ +},{"./_export":171}],299:[function(require,module,exports){ // 20.2.2.14 Math.expm1(x) var $export = require('./_export'); var $expm1 = require('./_math-expm1'); $export($export.S + $export.F * ($expm1 != Math.expm1), 'Math', { expm1: $expm1 }); -},{"./_export":169,"./_math-expm1":197}],298:[function(require,module,exports){ +},{"./_export":171,"./_math-expm1":199}],300:[function(require,module,exports){ // 20.2.2.16 Math.fround(x) var $export = require('./_export'); $export($export.S, 'Math', { fround: require('./_math-fround') }); -},{"./_export":169,"./_math-fround":198}],299:[function(require,module,exports){ +},{"./_export":171,"./_math-fround":200}],301:[function(require,module,exports){ // 20.2.2.17 Math.hypot([value1[, value2[, … ]]]) var $export = require('./_export'); var abs = Math.abs; @@ -19383,7 +19519,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":169}],300:[function(require,module,exports){ +},{"./_export":171}],302:[function(require,module,exports){ // 20.2.2.18 Math.imul(x, y) var $export = require('./_export'); var $imul = Math.imul; @@ -19402,7 +19538,7 @@ $export($export.S + $export.F * require('./_fails')(function () { } }); -},{"./_export":169,"./_fails":171}],301:[function(require,module,exports){ +},{"./_export":171,"./_fails":173}],303:[function(require,module,exports){ // 20.2.2.21 Math.log10(x) var $export = require('./_export'); @@ -19412,13 +19548,13 @@ $export($export.S, 'Math', { } }); -},{"./_export":169}],302:[function(require,module,exports){ +},{"./_export":171}],304:[function(require,module,exports){ // 20.2.2.20 Math.log1p(x) var $export = require('./_export'); $export($export.S, 'Math', { log1p: require('./_math-log1p') }); -},{"./_export":169,"./_math-log1p":199}],303:[function(require,module,exports){ +},{"./_export":171,"./_math-log1p":201}],305:[function(require,module,exports){ // 20.2.2.22 Math.log2(x) var $export = require('./_export'); @@ -19428,13 +19564,13 @@ $export($export.S, 'Math', { } }); -},{"./_export":169}],304:[function(require,module,exports){ +},{"./_export":171}],306:[function(require,module,exports){ // 20.2.2.28 Math.sign(x) var $export = require('./_export'); $export($export.S, 'Math', { sign: require('./_math-sign') }); -},{"./_export":169,"./_math-sign":200}],305:[function(require,module,exports){ +},{"./_export":171,"./_math-sign":202}],307:[function(require,module,exports){ // 20.2.2.30 Math.sinh(x) var $export = require('./_export'); var expm1 = require('./_math-expm1'); @@ -19451,7 +19587,7 @@ $export($export.S + $export.F * require('./_fails')(function () { } }); -},{"./_export":169,"./_fails":171,"./_math-expm1":197}],306:[function(require,module,exports){ +},{"./_export":171,"./_fails":173,"./_math-expm1":199}],308:[function(require,module,exports){ // 20.2.2.33 Math.tanh(x) var $export = require('./_export'); var expm1 = require('./_math-expm1'); @@ -19465,7 +19601,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":169,"./_math-expm1":197}],307:[function(require,module,exports){ +},{"./_export":171,"./_math-expm1":199}],309:[function(require,module,exports){ // 20.2.2.34 Math.trunc(x) var $export = require('./_export'); @@ -19475,7 +19611,7 @@ $export($export.S, 'Math', { } }); -},{"./_export":169}],308:[function(require,module,exports){ +},{"./_export":171}],310:[function(require,module,exports){ 'use strict'; var global = require('./_global'); var has = require('./_has'); @@ -19546,13 +19682,13 @@ if (!$Number(' 0o1') || !$Number('0b1') || $Number('+0x1')) { require('./_redefine')(global, NUMBER, $Number); } -},{"./_cof":155,"./_descriptors":165,"./_fails":171,"./_global":177,"./_has":178,"./_inherit-if-required":182,"./_object-create":205,"./_object-dp":206,"./_object-gopd":208,"./_object-gopn":210,"./_redefine":225,"./_string-trim":241,"./_to-primitive":250}],309:[function(require,module,exports){ +},{"./_cof":157,"./_descriptors":167,"./_fails":173,"./_global":179,"./_has":180,"./_inherit-if-required":184,"./_object-create":207,"./_object-dp":208,"./_object-gopd":210,"./_object-gopn":212,"./_redefine":227,"./_string-trim":243,"./_to-primitive":252}],311:[function(require,module,exports){ // 20.1.2.1 Number.EPSILON var $export = require('./_export'); $export($export.S, 'Number', { EPSILON: Math.pow(2, -52) }); -},{"./_export":169}],310:[function(require,module,exports){ +},{"./_export":171}],312:[function(require,module,exports){ // 20.1.2.2 Number.isFinite(number) var $export = require('./_export'); var _isFinite = require('./_global').isFinite; @@ -19563,13 +19699,13 @@ $export($export.S, 'Number', { } }); -},{"./_export":169,"./_global":177}],311:[function(require,module,exports){ +},{"./_export":171,"./_global":179}],313:[function(require,module,exports){ // 20.1.2.3 Number.isInteger(number) var $export = require('./_export'); $export($export.S, 'Number', { isInteger: require('./_is-integer') }); -},{"./_export":169,"./_is-integer":187}],312:[function(require,module,exports){ +},{"./_export":171,"./_is-integer":189}],314:[function(require,module,exports){ // 20.1.2.4 Number.isNaN(number) var $export = require('./_export'); @@ -19580,7 +19716,7 @@ $export($export.S, 'Number', { } }); -},{"./_export":169}],313:[function(require,module,exports){ +},{"./_export":171}],315:[function(require,module,exports){ // 20.1.2.5 Number.isSafeInteger(number) var $export = require('./_export'); var isInteger = require('./_is-integer'); @@ -19592,31 +19728,31 @@ $export($export.S, 'Number', { } }); -},{"./_export":169,"./_is-integer":187}],314:[function(require,module,exports){ +},{"./_export":171,"./_is-integer":189}],316:[function(require,module,exports){ // 20.1.2.6 Number.MAX_SAFE_INTEGER var $export = require('./_export'); $export($export.S, 'Number', { MAX_SAFE_INTEGER: 0x1fffffffffffff }); -},{"./_export":169}],315:[function(require,module,exports){ +},{"./_export":171}],317:[function(require,module,exports){ // 20.1.2.10 Number.MIN_SAFE_INTEGER var $export = require('./_export'); $export($export.S, 'Number', { MIN_SAFE_INTEGER: -0x1fffffffffffff }); -},{"./_export":169}],316:[function(require,module,exports){ +},{"./_export":171}],318:[function(require,module,exports){ var $export = require('./_export'); var $parseFloat = require('./_parse-float'); // 20.1.2.12 Number.parseFloat(string) $export($export.S + $export.F * (Number.parseFloat != $parseFloat), 'Number', { parseFloat: $parseFloat }); -},{"./_export":169,"./_parse-float":219}],317:[function(require,module,exports){ +},{"./_export":171,"./_parse-float":221}],319:[function(require,module,exports){ var $export = require('./_export'); var $parseInt = require('./_parse-int'); // 20.1.2.13 Number.parseInt(string, radix) $export($export.S + $export.F * (Number.parseInt != $parseInt), 'Number', { parseInt: $parseInt }); -},{"./_export":169,"./_parse-int":220}],318:[function(require,module,exports){ +},{"./_export":171,"./_parse-int":222}],320:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var toInteger = require('./_to-integer'); @@ -19732,7 +19868,7 @@ $export($export.P + $export.F * (!!$toFixed && ( } }); -},{"./_a-number-value":141,"./_export":169,"./_fails":171,"./_string-repeat":240,"./_to-integer":246}],319:[function(require,module,exports){ +},{"./_a-number-value":143,"./_export":171,"./_fails":173,"./_string-repeat":242,"./_to-integer":248}],321:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $fails = require('./_fails'); @@ -19752,28 +19888,28 @@ $export($export.P + $export.F * ($fails(function () { } }); -},{"./_a-number-value":141,"./_export":169,"./_fails":171}],320:[function(require,module,exports){ +},{"./_a-number-value":143,"./_export":171,"./_fails":173}],322:[function(require,module,exports){ // 19.1.3.1 Object.assign(target, source) var $export = require('./_export'); $export($export.S + $export.F, 'Object', { assign: require('./_object-assign') }); -},{"./_export":169,"./_object-assign":204}],321:[function(require,module,exports){ +},{"./_export":171,"./_object-assign":206}],323:[function(require,module,exports){ var $export = require('./_export'); // 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties]) $export($export.S, 'Object', { create: require('./_object-create') }); -},{"./_export":169,"./_object-create":205}],322:[function(require,module,exports){ +},{"./_export":171,"./_object-create":207}],324:[function(require,module,exports){ var $export = require('./_export'); // 19.1.2.3 / 15.2.3.7 Object.defineProperties(O, Properties) $export($export.S + $export.F * !require('./_descriptors'), 'Object', { defineProperties: require('./_object-dps') }); -},{"./_descriptors":165,"./_export":169,"./_object-dps":207}],323:[function(require,module,exports){ +},{"./_descriptors":167,"./_export":171,"./_object-dps":209}],325:[function(require,module,exports){ var $export = require('./_export'); // 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes) $export($export.S + $export.F * !require('./_descriptors'), 'Object', { defineProperty: require('./_object-dp').f }); -},{"./_descriptors":165,"./_export":169,"./_object-dp":206}],324:[function(require,module,exports){ +},{"./_descriptors":167,"./_export":171,"./_object-dp":208}],326:[function(require,module,exports){ // 19.1.2.5 Object.freeze(O) var isObject = require('./_is-object'); var meta = require('./_meta').onFreeze; @@ -19784,7 +19920,7 @@ require('./_object-sap')('freeze', function ($freeze) { }; }); -},{"./_is-object":188,"./_meta":201,"./_object-sap":216}],325:[function(require,module,exports){ +},{"./_is-object":190,"./_meta":203,"./_object-sap":218}],327:[function(require,module,exports){ // 19.1.2.6 Object.getOwnPropertyDescriptor(O, P) var toIObject = require('./_to-iobject'); var $getOwnPropertyDescriptor = require('./_object-gopd').f; @@ -19795,13 +19931,13 @@ require('./_object-sap')('getOwnPropertyDescriptor', function () { }; }); -},{"./_object-gopd":208,"./_object-sap":216,"./_to-iobject":247}],326:[function(require,module,exports){ +},{"./_object-gopd":210,"./_object-sap":218,"./_to-iobject":249}],328:[function(require,module,exports){ // 19.1.2.7 Object.getOwnPropertyNames(O) require('./_object-sap')('getOwnPropertyNames', function () { return require('./_object-gopn-ext').f; }); -},{"./_object-gopn-ext":209,"./_object-sap":216}],327:[function(require,module,exports){ +},{"./_object-gopn-ext":211,"./_object-sap":218}],329:[function(require,module,exports){ // 19.1.2.9 Object.getPrototypeOf(O) var toObject = require('./_to-object'); var $getPrototypeOf = require('./_object-gpo'); @@ -19812,7 +19948,7 @@ require('./_object-sap')('getPrototypeOf', function () { }; }); -},{"./_object-gpo":212,"./_object-sap":216,"./_to-object":249}],328:[function(require,module,exports){ +},{"./_object-gpo":214,"./_object-sap":218,"./_to-object":251}],330:[function(require,module,exports){ // 19.1.2.11 Object.isExtensible(O) var isObject = require('./_is-object'); @@ -19822,7 +19958,7 @@ require('./_object-sap')('isExtensible', function ($isExtensible) { }; }); -},{"./_is-object":188,"./_object-sap":216}],329:[function(require,module,exports){ +},{"./_is-object":190,"./_object-sap":218}],331:[function(require,module,exports){ // 19.1.2.12 Object.isFrozen(O) var isObject = require('./_is-object'); @@ -19832,7 +19968,7 @@ require('./_object-sap')('isFrozen', function ($isFrozen) { }; }); -},{"./_is-object":188,"./_object-sap":216}],330:[function(require,module,exports){ +},{"./_is-object":190,"./_object-sap":218}],332:[function(require,module,exports){ // 19.1.2.13 Object.isSealed(O) var isObject = require('./_is-object'); @@ -19842,12 +19978,12 @@ require('./_object-sap')('isSealed', function ($isSealed) { }; }); -},{"./_is-object":188,"./_object-sap":216}],331:[function(require,module,exports){ +},{"./_is-object":190,"./_object-sap":218}],333:[function(require,module,exports){ // 19.1.3.10 Object.is(value1, value2) var $export = require('./_export'); $export($export.S, 'Object', { is: require('./_same-value') }); -},{"./_export":169,"./_same-value":228}],332:[function(require,module,exports){ +},{"./_export":171,"./_same-value":230}],334:[function(require,module,exports){ // 19.1.2.14 Object.keys(O) var toObject = require('./_to-object'); var $keys = require('./_object-keys'); @@ -19858,7 +19994,7 @@ require('./_object-sap')('keys', function () { }; }); -},{"./_object-keys":214,"./_object-sap":216,"./_to-object":249}],333:[function(require,module,exports){ +},{"./_object-keys":216,"./_object-sap":218,"./_to-object":251}],335:[function(require,module,exports){ // 19.1.2.15 Object.preventExtensions(O) var isObject = require('./_is-object'); var meta = require('./_meta').onFreeze; @@ -19869,7 +20005,7 @@ require('./_object-sap')('preventExtensions', function ($preventExtensions) { }; }); -},{"./_is-object":188,"./_meta":201,"./_object-sap":216}],334:[function(require,module,exports){ +},{"./_is-object":190,"./_meta":203,"./_object-sap":218}],336:[function(require,module,exports){ // 19.1.2.17 Object.seal(O) var isObject = require('./_is-object'); var meta = require('./_meta').onFreeze; @@ -19880,12 +20016,12 @@ require('./_object-sap')('seal', function ($seal) { }; }); -},{"./_is-object":188,"./_meta":201,"./_object-sap":216}],335:[function(require,module,exports){ +},{"./_is-object":190,"./_meta":203,"./_object-sap":218}],337:[function(require,module,exports){ // 19.1.3.19 Object.setPrototypeOf(O, proto) var $export = require('./_export'); $export($export.S, 'Object', { setPrototypeOf: require('./_set-proto').set }); -},{"./_export":169,"./_set-proto":229}],336:[function(require,module,exports){ +},{"./_export":171,"./_set-proto":231}],338:[function(require,module,exports){ 'use strict'; // 19.1.3.6 Object.prototype.toString() var classof = require('./_classof'); @@ -19897,19 +20033,19 @@ if (test + '' != '[object z]') { }, true); } -},{"./_classof":154,"./_redefine":225,"./_wks":259}],337:[function(require,module,exports){ +},{"./_classof":156,"./_redefine":227,"./_wks":261}],339:[function(require,module,exports){ var $export = require('./_export'); var $parseFloat = require('./_parse-float'); // 18.2.4 parseFloat(string) $export($export.G + $export.F * (parseFloat != $parseFloat), { parseFloat: $parseFloat }); -},{"./_export":169,"./_parse-float":219}],338:[function(require,module,exports){ +},{"./_export":171,"./_parse-float":221}],340:[function(require,module,exports){ var $export = require('./_export'); var $parseInt = require('./_parse-int'); // 18.2.5 parseInt(string, radix) $export($export.G + $export.F * (parseInt != $parseInt), { parseInt: $parseInt }); -},{"./_export":169,"./_parse-int":220}],339:[function(require,module,exports){ +},{"./_export":171,"./_parse-int":222}],341:[function(require,module,exports){ 'use strict'; var LIBRARY = require('./_library'); var global = require('./_global'); @@ -20197,7 +20333,7 @@ $export($export.S + $export.F * !(USE_NATIVE && require('./_iter-detect')(functi } }); -},{"./_a-function":140,"./_an-instance":144,"./_classof":154,"./_core":159,"./_ctx":161,"./_export":169,"./_for-of":175,"./_global":177,"./_is-object":188,"./_iter-detect":193,"./_library":196,"./_microtask":202,"./_new-promise-capability":203,"./_perform":221,"./_promise-resolve":222,"./_redefine-all":224,"./_set-species":230,"./_set-to-string-tag":231,"./_species-constructor":234,"./_task":243,"./_user-agent":255,"./_wks":259}],340:[function(require,module,exports){ +},{"./_a-function":142,"./_an-instance":146,"./_classof":156,"./_core":161,"./_ctx":163,"./_export":171,"./_for-of":177,"./_global":179,"./_is-object":190,"./_iter-detect":195,"./_library":198,"./_microtask":204,"./_new-promise-capability":205,"./_perform":223,"./_promise-resolve":224,"./_redefine-all":226,"./_set-species":232,"./_set-to-string-tag":233,"./_species-constructor":236,"./_task":245,"./_user-agent":257,"./_wks":261}],342:[function(require,module,exports){ // 26.1.1 Reflect.apply(target, thisArgument, argumentsList) var $export = require('./_export'); var aFunction = require('./_a-function'); @@ -20215,7 +20351,7 @@ $export($export.S + $export.F * !require('./_fails')(function () { } }); -},{"./_a-function":140,"./_an-object":145,"./_export":169,"./_fails":171,"./_global":177}],341:[function(require,module,exports){ +},{"./_a-function":142,"./_an-object":147,"./_export":171,"./_fails":173,"./_global":179}],343:[function(require,module,exports){ // 26.1.2 Reflect.construct(target, argumentsList [, newTarget]) var $export = require('./_export'); var create = require('./_object-create'); @@ -20264,7 +20400,7 @@ $export($export.S + $export.F * (NEW_TARGET_BUG || ARGS_BUG), 'Reflect', { } }); -},{"./_a-function":140,"./_an-object":145,"./_bind":153,"./_export":169,"./_fails":171,"./_global":177,"./_is-object":188,"./_object-create":205}],342:[function(require,module,exports){ +},{"./_a-function":142,"./_an-object":147,"./_bind":155,"./_export":171,"./_fails":173,"./_global":179,"./_is-object":190,"./_object-create":207}],344:[function(require,module,exports){ // 26.1.3 Reflect.defineProperty(target, propertyKey, attributes) var dP = require('./_object-dp'); var $export = require('./_export'); @@ -20289,7 +20425,7 @@ $export($export.S + $export.F * require('./_fails')(function () { } }); -},{"./_an-object":145,"./_export":169,"./_fails":171,"./_object-dp":206,"./_to-primitive":250}],343:[function(require,module,exports){ +},{"./_an-object":147,"./_export":171,"./_fails":173,"./_object-dp":208,"./_to-primitive":252}],345:[function(require,module,exports){ // 26.1.4 Reflect.deleteProperty(target, propertyKey) var $export = require('./_export'); var gOPD = require('./_object-gopd').f; @@ -20302,7 +20438,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":145,"./_export":169,"./_object-gopd":208}],344:[function(require,module,exports){ +},{"./_an-object":147,"./_export":171,"./_object-gopd":210}],346:[function(require,module,exports){ 'use strict'; // 26.1.5 Reflect.enumerate(target) var $export = require('./_export'); @@ -20330,7 +20466,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":145,"./_export":169,"./_iter-create":191}],345:[function(require,module,exports){ +},{"./_an-object":147,"./_export":171,"./_iter-create":193}],347:[function(require,module,exports){ // 26.1.7 Reflect.getOwnPropertyDescriptor(target, propertyKey) var gOPD = require('./_object-gopd'); var $export = require('./_export'); @@ -20342,7 +20478,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":145,"./_export":169,"./_object-gopd":208}],346:[function(require,module,exports){ +},{"./_an-object":147,"./_export":171,"./_object-gopd":210}],348:[function(require,module,exports){ // 26.1.8 Reflect.getPrototypeOf(target) var $export = require('./_export'); var getProto = require('./_object-gpo'); @@ -20354,7 +20490,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":145,"./_export":169,"./_object-gpo":212}],347:[function(require,module,exports){ +},{"./_an-object":147,"./_export":171,"./_object-gpo":214}],349:[function(require,module,exports){ // 26.1.6 Reflect.get(target, propertyKey [, receiver]) var gOPD = require('./_object-gopd'); var getPrototypeOf = require('./_object-gpo'); @@ -20377,7 +20513,7 @@ function get(target, propertyKey /* , receiver */) { $export($export.S, 'Reflect', { get: get }); -},{"./_an-object":145,"./_export":169,"./_has":178,"./_is-object":188,"./_object-gopd":208,"./_object-gpo":212}],348:[function(require,module,exports){ +},{"./_an-object":147,"./_export":171,"./_has":180,"./_is-object":190,"./_object-gopd":210,"./_object-gpo":214}],350:[function(require,module,exports){ // 26.1.9 Reflect.has(target, propertyKey) var $export = require('./_export'); @@ -20387,7 +20523,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_export":169}],349:[function(require,module,exports){ +},{"./_export":171}],351:[function(require,module,exports){ // 26.1.10 Reflect.isExtensible(target) var $export = require('./_export'); var anObject = require('./_an-object'); @@ -20400,13 +20536,13 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":145,"./_export":169}],350:[function(require,module,exports){ +},{"./_an-object":147,"./_export":171}],352:[function(require,module,exports){ // 26.1.11 Reflect.ownKeys(target) var $export = require('./_export'); $export($export.S, 'Reflect', { ownKeys: require('./_own-keys') }); -},{"./_export":169,"./_own-keys":218}],351:[function(require,module,exports){ +},{"./_export":171,"./_own-keys":220}],353:[function(require,module,exports){ // 26.1.12 Reflect.preventExtensions(target) var $export = require('./_export'); var anObject = require('./_an-object'); @@ -20424,7 +20560,7 @@ $export($export.S, 'Reflect', { } }); -},{"./_an-object":145,"./_export":169}],352:[function(require,module,exports){ +},{"./_an-object":147,"./_export":171}],354:[function(require,module,exports){ // 26.1.14 Reflect.setPrototypeOf(target, proto) var $export = require('./_export'); var setProto = require('./_set-proto'); @@ -20441,7 +20577,7 @@ if (setProto) $export($export.S, 'Reflect', { } }); -},{"./_export":169,"./_set-proto":229}],353:[function(require,module,exports){ +},{"./_export":171,"./_set-proto":231}],355:[function(require,module,exports){ // 26.1.13 Reflect.set(target, propertyKey, V [, receiver]) var dP = require('./_object-dp'); var gOPD = require('./_object-gopd'); @@ -20476,7 +20612,7 @@ function set(target, propertyKey, V /* , receiver */) { $export($export.S, 'Reflect', { set: set }); -},{"./_an-object":145,"./_export":169,"./_has":178,"./_is-object":188,"./_object-dp":206,"./_object-gopd":208,"./_object-gpo":212,"./_property-desc":223}],354:[function(require,module,exports){ +},{"./_an-object":147,"./_export":171,"./_has":180,"./_is-object":190,"./_object-dp":208,"./_object-gopd":210,"./_object-gpo":214,"./_property-desc":225}],356:[function(require,module,exports){ var global = require('./_global'); var inheritIfRequired = require('./_inherit-if-required'); var dP = require('./_object-dp').f; @@ -20521,7 +20657,7 @@ if (require('./_descriptors') && (!CORRECT_NEW || require('./_fails')(function ( require('./_set-species')('RegExp'); -},{"./_descriptors":165,"./_fails":171,"./_flags":173,"./_global":177,"./_inherit-if-required":182,"./_is-regexp":189,"./_object-dp":206,"./_object-gopn":210,"./_redefine":225,"./_set-species":230,"./_wks":259}],355:[function(require,module,exports){ +},{"./_descriptors":167,"./_fails":173,"./_flags":175,"./_global":179,"./_inherit-if-required":184,"./_is-regexp":191,"./_object-dp":208,"./_object-gopn":212,"./_redefine":227,"./_set-species":232,"./_wks":261}],357:[function(require,module,exports){ 'use strict'; var regexpExec = require('./_regexp-exec'); require('./_export')({ @@ -20532,14 +20668,14 @@ require('./_export')({ exec: regexpExec }); -},{"./_export":169,"./_regexp-exec":227}],356:[function(require,module,exports){ +},{"./_export":171,"./_regexp-exec":229}],358:[function(require,module,exports){ // 21.2.5.3 get RegExp.prototype.flags() if (require('./_descriptors') && /./g.flags != 'g') require('./_object-dp').f(RegExp.prototype, 'flags', { configurable: true, get: require('./_flags') }); -},{"./_descriptors":165,"./_flags":173,"./_object-dp":206}],357:[function(require,module,exports){ +},{"./_descriptors":167,"./_flags":175,"./_object-dp":208}],359:[function(require,module,exports){ 'use strict'; var anObject = require('./_an-object'); @@ -20581,7 +20717,7 @@ require('./_fix-re-wks')('match', 1, function (defined, MATCH, $match, maybeCall ]; }); -},{"./_advance-string-index":143,"./_an-object":145,"./_fix-re-wks":172,"./_regexp-exec-abstract":226,"./_to-length":248}],358:[function(require,module,exports){ +},{"./_advance-string-index":145,"./_an-object":147,"./_fix-re-wks":174,"./_regexp-exec-abstract":228,"./_to-length":250}],360:[function(require,module,exports){ 'use strict'; var anObject = require('./_an-object'); @@ -20701,7 +20837,7 @@ require('./_fix-re-wks')('replace', 2, function (defined, REPLACE, $replace, may } }); -},{"./_advance-string-index":143,"./_an-object":145,"./_fix-re-wks":172,"./_regexp-exec-abstract":226,"./_to-integer":246,"./_to-length":248,"./_to-object":249}],359:[function(require,module,exports){ +},{"./_advance-string-index":145,"./_an-object":147,"./_fix-re-wks":174,"./_regexp-exec-abstract":228,"./_to-integer":248,"./_to-length":250,"./_to-object":251}],361:[function(require,module,exports){ 'use strict'; var anObject = require('./_an-object'); @@ -20734,7 +20870,7 @@ require('./_fix-re-wks')('search', 1, function (defined, SEARCH, $search, maybeC ]; }); -},{"./_an-object":145,"./_fix-re-wks":172,"./_regexp-exec-abstract":226,"./_same-value":228}],360:[function(require,module,exports){ +},{"./_an-object":147,"./_fix-re-wks":174,"./_regexp-exec-abstract":228,"./_same-value":230}],362:[function(require,module,exports){ 'use strict'; var isRegExp = require('./_is-regexp'); @@ -20870,7 +21006,7 @@ require('./_fix-re-wks')('split', 2, function (defined, SPLIT, $split, maybeCall ]; }); -},{"./_advance-string-index":143,"./_an-object":145,"./_fails":171,"./_fix-re-wks":172,"./_is-regexp":189,"./_regexp-exec":227,"./_regexp-exec-abstract":226,"./_species-constructor":234,"./_to-length":248}],361:[function(require,module,exports){ +},{"./_advance-string-index":145,"./_an-object":147,"./_fails":173,"./_fix-re-wks":174,"./_is-regexp":191,"./_regexp-exec":229,"./_regexp-exec-abstract":228,"./_species-constructor":236,"./_to-length":250}],363:[function(require,module,exports){ 'use strict'; require('./es6.regexp.flags'); var anObject = require('./_an-object'); @@ -20897,7 +21033,7 @@ if (require('./_fails')(function () { return $toString.call({ source: 'a', flags }); } -},{"./_an-object":145,"./_descriptors":165,"./_fails":171,"./_flags":173,"./_redefine":225,"./es6.regexp.flags":356}],362:[function(require,module,exports){ +},{"./_an-object":147,"./_descriptors":167,"./_fails":173,"./_flags":175,"./_redefine":227,"./es6.regexp.flags":358}],364:[function(require,module,exports){ 'use strict'; var strong = require('./_collection-strong'); var validate = require('./_validate-collection'); @@ -20913,7 +21049,7 @@ module.exports = require('./_collection')(SET, function (get) { } }, strong); -},{"./_collection":158,"./_collection-strong":156,"./_validate-collection":256}],363:[function(require,module,exports){ +},{"./_collection":160,"./_collection-strong":158,"./_validate-collection":258}],365:[function(require,module,exports){ 'use strict'; // B.2.3.2 String.prototype.anchor(name) require('./_string-html')('anchor', function (createHTML) { @@ -20922,7 +21058,7 @@ require('./_string-html')('anchor', function (createHTML) { }; }); -},{"./_string-html":238}],364:[function(require,module,exports){ +},{"./_string-html":240}],366:[function(require,module,exports){ 'use strict'; // B.2.3.3 String.prototype.big() require('./_string-html')('big', function (createHTML) { @@ -20931,7 +21067,7 @@ require('./_string-html')('big', function (createHTML) { }; }); -},{"./_string-html":238}],365:[function(require,module,exports){ +},{"./_string-html":240}],367:[function(require,module,exports){ 'use strict'; // B.2.3.4 String.prototype.blink() require('./_string-html')('blink', function (createHTML) { @@ -20940,7 +21076,7 @@ require('./_string-html')('blink', function (createHTML) { }; }); -},{"./_string-html":238}],366:[function(require,module,exports){ +},{"./_string-html":240}],368:[function(require,module,exports){ 'use strict'; // B.2.3.5 String.prototype.bold() require('./_string-html')('bold', function (createHTML) { @@ -20949,7 +21085,7 @@ require('./_string-html')('bold', function (createHTML) { }; }); -},{"./_string-html":238}],367:[function(require,module,exports){ +},{"./_string-html":240}],369:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $at = require('./_string-at')(false); @@ -20960,7 +21096,7 @@ $export($export.P, 'String', { } }); -},{"./_export":169,"./_string-at":236}],368:[function(require,module,exports){ +},{"./_export":171,"./_string-at":238}],370:[function(require,module,exports){ // 21.1.3.6 String.prototype.endsWith(searchString [, endPosition]) 'use strict'; var $export = require('./_export'); @@ -20982,7 +21118,7 @@ $export($export.P + $export.F * require('./_fails-is-regexp')(ENDS_WITH), 'Strin } }); -},{"./_export":169,"./_fails-is-regexp":170,"./_string-context":237,"./_to-length":248}],369:[function(require,module,exports){ +},{"./_export":171,"./_fails-is-regexp":172,"./_string-context":239,"./_to-length":250}],371:[function(require,module,exports){ 'use strict'; // B.2.3.6 String.prototype.fixed() require('./_string-html')('fixed', function (createHTML) { @@ -20991,7 +21127,7 @@ require('./_string-html')('fixed', function (createHTML) { }; }); -},{"./_string-html":238}],370:[function(require,module,exports){ +},{"./_string-html":240}],372:[function(require,module,exports){ 'use strict'; // B.2.3.7 String.prototype.fontcolor(color) require('./_string-html')('fontcolor', function (createHTML) { @@ -21000,7 +21136,7 @@ require('./_string-html')('fontcolor', function (createHTML) { }; }); -},{"./_string-html":238}],371:[function(require,module,exports){ +},{"./_string-html":240}],373:[function(require,module,exports){ 'use strict'; // B.2.3.8 String.prototype.fontsize(size) require('./_string-html')('fontsize', function (createHTML) { @@ -21009,7 +21145,7 @@ require('./_string-html')('fontsize', function (createHTML) { }; }); -},{"./_string-html":238}],372:[function(require,module,exports){ +},{"./_string-html":240}],374:[function(require,module,exports){ var $export = require('./_export'); var toAbsoluteIndex = require('./_to-absolute-index'); var fromCharCode = String.fromCharCode; @@ -21034,7 +21170,7 @@ $export($export.S + $export.F * (!!$fromCodePoint && $fromCodePoint.length != 1) } }); -},{"./_export":169,"./_to-absolute-index":244}],373:[function(require,module,exports){ +},{"./_export":171,"./_to-absolute-index":246}],375:[function(require,module,exports){ // 21.1.3.7 String.prototype.includes(searchString, position = 0) 'use strict'; var $export = require('./_export'); @@ -21048,7 +21184,7 @@ $export($export.P + $export.F * require('./_fails-is-regexp')(INCLUDES), 'String } }); -},{"./_export":169,"./_fails-is-regexp":170,"./_string-context":237}],374:[function(require,module,exports){ +},{"./_export":171,"./_fails-is-regexp":172,"./_string-context":239}],376:[function(require,module,exports){ 'use strict'; // B.2.3.9 String.prototype.italics() require('./_string-html')('italics', function (createHTML) { @@ -21057,7 +21193,7 @@ require('./_string-html')('italics', function (createHTML) { }; }); -},{"./_string-html":238}],375:[function(require,module,exports){ +},{"./_string-html":240}],377:[function(require,module,exports){ 'use strict'; var $at = require('./_string-at')(true); @@ -21076,7 +21212,7 @@ require('./_iter-define')(String, 'String', function (iterated) { return { value: point, done: false }; }); -},{"./_iter-define":192,"./_string-at":236}],376:[function(require,module,exports){ +},{"./_iter-define":194,"./_string-at":238}],378:[function(require,module,exports){ 'use strict'; // B.2.3.10 String.prototype.link(url) require('./_string-html')('link', function (createHTML) { @@ -21085,7 +21221,7 @@ require('./_string-html')('link', function (createHTML) { }; }); -},{"./_string-html":238}],377:[function(require,module,exports){ +},{"./_string-html":240}],379:[function(require,module,exports){ var $export = require('./_export'); var toIObject = require('./_to-iobject'); var toLength = require('./_to-length'); @@ -21105,7 +21241,7 @@ $export($export.S, 'String', { } }); -},{"./_export":169,"./_to-iobject":247,"./_to-length":248}],378:[function(require,module,exports){ +},{"./_export":171,"./_to-iobject":249,"./_to-length":250}],380:[function(require,module,exports){ var $export = require('./_export'); $export($export.P, 'String', { @@ -21113,7 +21249,7 @@ $export($export.P, 'String', { repeat: require('./_string-repeat') }); -},{"./_export":169,"./_string-repeat":240}],379:[function(require,module,exports){ +},{"./_export":171,"./_string-repeat":242}],381:[function(require,module,exports){ 'use strict'; // B.2.3.11 String.prototype.small() require('./_string-html')('small', function (createHTML) { @@ -21122,7 +21258,7 @@ require('./_string-html')('small', function (createHTML) { }; }); -},{"./_string-html":238}],380:[function(require,module,exports){ +},{"./_string-html":240}],382:[function(require,module,exports){ // 21.1.3.18 String.prototype.startsWith(searchString [, position ]) 'use strict'; var $export = require('./_export'); @@ -21142,7 +21278,7 @@ $export($export.P + $export.F * require('./_fails-is-regexp')(STARTS_WITH), 'Str } }); -},{"./_export":169,"./_fails-is-regexp":170,"./_string-context":237,"./_to-length":248}],381:[function(require,module,exports){ +},{"./_export":171,"./_fails-is-regexp":172,"./_string-context":239,"./_to-length":250}],383:[function(require,module,exports){ 'use strict'; // B.2.3.12 String.prototype.strike() require('./_string-html')('strike', function (createHTML) { @@ -21151,7 +21287,7 @@ require('./_string-html')('strike', function (createHTML) { }; }); -},{"./_string-html":238}],382:[function(require,module,exports){ +},{"./_string-html":240}],384:[function(require,module,exports){ 'use strict'; // B.2.3.13 String.prototype.sub() require('./_string-html')('sub', function (createHTML) { @@ -21160,7 +21296,7 @@ require('./_string-html')('sub', function (createHTML) { }; }); -},{"./_string-html":238}],383:[function(require,module,exports){ +},{"./_string-html":240}],385:[function(require,module,exports){ 'use strict'; // B.2.3.14 String.prototype.sup() require('./_string-html')('sup', function (createHTML) { @@ -21169,7 +21305,7 @@ require('./_string-html')('sup', function (createHTML) { }; }); -},{"./_string-html":238}],384:[function(require,module,exports){ +},{"./_string-html":240}],386:[function(require,module,exports){ 'use strict'; // 21.1.3.25 String.prototype.trim() require('./_string-trim')('trim', function ($trim) { @@ -21178,7 +21314,7 @@ require('./_string-trim')('trim', function ($trim) { }; }); -},{"./_string-trim":241}],385:[function(require,module,exports){ +},{"./_string-trim":243}],387:[function(require,module,exports){ 'use strict'; // ECMAScript 6 symbols shim var global = require('./_global'); @@ -21426,7 +21562,7 @@ setToStringTag(Math, 'Math', true); // 24.3.3 JSON[@@toStringTag] setToStringTag(global.JSON, 'JSON', true); -},{"./_an-object":145,"./_descriptors":165,"./_enum-keys":168,"./_export":169,"./_fails":171,"./_global":177,"./_has":178,"./_hide":179,"./_is-array":186,"./_is-object":188,"./_library":196,"./_meta":201,"./_object-create":205,"./_object-dp":206,"./_object-gopd":208,"./_object-gopn":210,"./_object-gopn-ext":209,"./_object-gops":211,"./_object-keys":214,"./_object-pie":215,"./_property-desc":223,"./_redefine":225,"./_set-to-string-tag":231,"./_shared":233,"./_to-iobject":247,"./_to-object":249,"./_to-primitive":250,"./_uid":254,"./_wks":259,"./_wks-define":257,"./_wks-ext":258}],386:[function(require,module,exports){ +},{"./_an-object":147,"./_descriptors":167,"./_enum-keys":170,"./_export":171,"./_fails":173,"./_global":179,"./_has":180,"./_hide":181,"./_is-array":188,"./_is-object":190,"./_library":198,"./_meta":203,"./_object-create":207,"./_object-dp":208,"./_object-gopd":210,"./_object-gopn":212,"./_object-gopn-ext":211,"./_object-gops":213,"./_object-keys":216,"./_object-pie":217,"./_property-desc":225,"./_redefine":227,"./_set-to-string-tag":233,"./_shared":235,"./_to-iobject":249,"./_to-object":251,"./_to-primitive":252,"./_uid":256,"./_wks":261,"./_wks-define":259,"./_wks-ext":260}],388:[function(require,module,exports){ 'use strict'; var $export = require('./_export'); var $typed = require('./_typed'); @@ -21474,76 +21610,76 @@ $export($export.P + $export.U + $export.F * require('./_fails')(function () { require('./_set-species')(ARRAY_BUFFER); -},{"./_an-object":145,"./_export":169,"./_fails":171,"./_global":177,"./_is-object":188,"./_set-species":230,"./_species-constructor":234,"./_to-absolute-index":244,"./_to-length":248,"./_typed":253,"./_typed-buffer":252}],387:[function(require,module,exports){ +},{"./_an-object":147,"./_export":171,"./_fails":173,"./_global":179,"./_is-object":190,"./_set-species":232,"./_species-constructor":236,"./_to-absolute-index":246,"./_to-length":250,"./_typed":255,"./_typed-buffer":254}],389:[function(require,module,exports){ var $export = require('./_export'); $export($export.G + $export.W + $export.F * !require('./_typed').ABV, { DataView: require('./_typed-buffer').DataView }); -},{"./_export":169,"./_typed":253,"./_typed-buffer":252}],388:[function(require,module,exports){ +},{"./_export":171,"./_typed":255,"./_typed-buffer":254}],390:[function(require,module,exports){ require('./_typed-array')('Float32', 4, function (init) { return function Float32Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }); -},{"./_typed-array":251}],389:[function(require,module,exports){ +},{"./_typed-array":253}],391:[function(require,module,exports){ require('./_typed-array')('Float64', 8, function (init) { return function Float64Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }); -},{"./_typed-array":251}],390:[function(require,module,exports){ +},{"./_typed-array":253}],392:[function(require,module,exports){ require('./_typed-array')('Int16', 2, function (init) { return function Int16Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }); -},{"./_typed-array":251}],391:[function(require,module,exports){ +},{"./_typed-array":253}],393:[function(require,module,exports){ require('./_typed-array')('Int32', 4, function (init) { return function Int32Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }); -},{"./_typed-array":251}],392:[function(require,module,exports){ +},{"./_typed-array":253}],394:[function(require,module,exports){ require('./_typed-array')('Int8', 1, function (init) { return function Int8Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }); -},{"./_typed-array":251}],393:[function(require,module,exports){ +},{"./_typed-array":253}],395:[function(require,module,exports){ require('./_typed-array')('Uint16', 2, function (init) { return function Uint16Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }); -},{"./_typed-array":251}],394:[function(require,module,exports){ +},{"./_typed-array":253}],396:[function(require,module,exports){ require('./_typed-array')('Uint32', 4, function (init) { return function Uint32Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }); -},{"./_typed-array":251}],395:[function(require,module,exports){ +},{"./_typed-array":253}],397:[function(require,module,exports){ require('./_typed-array')('Uint8', 1, function (init) { return function Uint8Array(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }); -},{"./_typed-array":251}],396:[function(require,module,exports){ +},{"./_typed-array":253}],398:[function(require,module,exports){ require('./_typed-array')('Uint8', 1, function (init) { return function Uint8ClampedArray(data, byteOffset, length) { return init(this, data, byteOffset, length); }; }, true); -},{"./_typed-array":251}],397:[function(require,module,exports){ +},{"./_typed-array":253}],399:[function(require,module,exports){ 'use strict'; var global = require('./_global'); var each = require('./_array-methods')(0); @@ -21605,7 +21741,7 @@ if (NATIVE_WEAK_MAP && IS_IE11) { }); } -},{"./_array-methods":149,"./_collection":158,"./_collection-weak":157,"./_global":177,"./_is-object":188,"./_meta":201,"./_object-assign":204,"./_redefine":225,"./_validate-collection":256}],398:[function(require,module,exports){ +},{"./_array-methods":151,"./_collection":160,"./_collection-weak":159,"./_global":179,"./_is-object":190,"./_meta":203,"./_object-assign":206,"./_redefine":227,"./_validate-collection":258}],400:[function(require,module,exports){ 'use strict'; var weak = require('./_collection-weak'); var validate = require('./_validate-collection'); @@ -21621,7 +21757,7 @@ require('./_collection')(WEAK_SET, function (get) { } }, weak, false, true); -},{"./_collection":158,"./_collection-weak":157,"./_validate-collection":256}],399:[function(require,module,exports){ +},{"./_collection":160,"./_collection-weak":159,"./_validate-collection":258}],401:[function(require,module,exports){ 'use strict'; // https://tc39.github.io/proposal-flatMap/#sec-Array.prototype.flatMap var $export = require('./_export'); @@ -21645,7 +21781,7 @@ $export($export.P, 'Array', { require('./_add-to-unscopables')('flatMap'); -},{"./_a-function":140,"./_add-to-unscopables":142,"./_array-species-create":152,"./_export":169,"./_flatten-into-array":174,"./_to-length":248,"./_to-object":249}],400:[function(require,module,exports){ +},{"./_a-function":142,"./_add-to-unscopables":144,"./_array-species-create":154,"./_export":171,"./_flatten-into-array":176,"./_to-length":250,"./_to-object":251}],402:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/Array.prototype.includes var $export = require('./_export'); @@ -21659,7 +21795,7 @@ $export($export.P, 'Array', { require('./_add-to-unscopables')('includes'); -},{"./_add-to-unscopables":142,"./_array-includes":148,"./_export":169}],401:[function(require,module,exports){ +},{"./_add-to-unscopables":144,"./_array-includes":150,"./_export":171}],403:[function(require,module,exports){ // https://github.com/tc39/proposal-object-values-entries var $export = require('./_export'); var $entries = require('./_object-to-array')(true); @@ -21670,7 +21806,7 @@ $export($export.S, 'Object', { } }); -},{"./_export":169,"./_object-to-array":217}],402:[function(require,module,exports){ +},{"./_export":171,"./_object-to-array":219}],404:[function(require,module,exports){ // https://github.com/tc39/proposal-object-getownpropertydescriptors var $export = require('./_export'); var ownKeys = require('./_own-keys'); @@ -21694,7 +21830,7 @@ $export($export.S, 'Object', { } }); -},{"./_create-property":160,"./_export":169,"./_object-gopd":208,"./_own-keys":218,"./_to-iobject":247}],403:[function(require,module,exports){ +},{"./_create-property":162,"./_export":171,"./_object-gopd":210,"./_own-keys":220,"./_to-iobject":249}],405:[function(require,module,exports){ // https://github.com/tc39/proposal-object-values-entries var $export = require('./_export'); var $values = require('./_object-to-array')(false); @@ -21705,7 +21841,7 @@ $export($export.S, 'Object', { } }); -},{"./_export":169,"./_object-to-array":217}],404:[function(require,module,exports){ +},{"./_export":171,"./_object-to-array":219}],406:[function(require,module,exports){ // https://github.com/tc39/proposal-promise-finally 'use strict'; var $export = require('./_export'); @@ -21727,7 +21863,7 @@ $export($export.P + $export.R, 'Promise', { 'finally': function (onFinally) { ); } }); -},{"./_core":159,"./_export":169,"./_global":177,"./_promise-resolve":222,"./_species-constructor":234}],405:[function(require,module,exports){ +},{"./_core":161,"./_export":171,"./_global":179,"./_promise-resolve":224,"./_species-constructor":236}],407:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-string-pad-start-end var $export = require('./_export'); @@ -21743,7 +21879,7 @@ $export($export.P + $export.F * WEBKIT_BUG, 'String', { } }); -},{"./_export":169,"./_string-pad":239,"./_user-agent":255}],406:[function(require,module,exports){ +},{"./_export":171,"./_string-pad":241,"./_user-agent":257}],408:[function(require,module,exports){ 'use strict'; // https://github.com/tc39/proposal-string-pad-start-end var $export = require('./_export'); @@ -21759,7 +21895,7 @@ $export($export.P + $export.F * WEBKIT_BUG, 'String', { } }); -},{"./_export":169,"./_string-pad":239,"./_user-agent":255}],407:[function(require,module,exports){ +},{"./_export":171,"./_string-pad":241,"./_user-agent":257}],409:[function(require,module,exports){ 'use strict'; // https://github.com/sebmarkbage/ecmascript-string-left-right-trim require('./_string-trim')('trimLeft', function ($trim) { @@ -21768,7 +21904,7 @@ require('./_string-trim')('trimLeft', function ($trim) { }; }, 'trimStart'); -},{"./_string-trim":241}],408:[function(require,module,exports){ +},{"./_string-trim":243}],410:[function(require,module,exports){ 'use strict'; // https://github.com/sebmarkbage/ecmascript-string-left-right-trim require('./_string-trim')('trimRight', function ($trim) { @@ -21777,10 +21913,10 @@ require('./_string-trim')('trimRight', function ($trim) { }; }, 'trimEnd'); -},{"./_string-trim":241}],409:[function(require,module,exports){ +},{"./_string-trim":243}],411:[function(require,module,exports){ require('./_wks-define')('asyncIterator'); -},{"./_wks-define":257}],410:[function(require,module,exports){ +},{"./_wks-define":259}],412:[function(require,module,exports){ var $iterators = require('./es6.array.iterator'); var getKeys = require('./_object-keys'); var redefine = require('./_redefine'); @@ -21840,7 +21976,7 @@ for (var collections = getKeys(DOMIterables), i = 0; i < collections.length; i++ } } -},{"./_global":177,"./_hide":179,"./_iterators":195,"./_object-keys":214,"./_redefine":225,"./_wks":259,"./es6.array.iterator":271}],411:[function(require,module,exports){ +},{"./_global":179,"./_hide":181,"./_iterators":197,"./_object-keys":216,"./_redefine":227,"./_wks":261,"./es6.array.iterator":273}],413:[function(require,module,exports){ var $export = require('./_export'); var $task = require('./_task'); $export($export.G + $export.B, { @@ -21848,7 +21984,7 @@ $export($export.G + $export.B, { clearImmediate: $task.clear }); -},{"./_export":169,"./_task":243}],412:[function(require,module,exports){ +},{"./_export":171,"./_task":245}],414:[function(require,module,exports){ // ie9- setTimeout & setInterval additional parameters fix var global = require('./_global'); var $export = require('./_export'); @@ -21870,13 +22006,13 @@ $export($export.G + $export.B + $export.F * MSIE, { setInterval: wrap(global.setInterval) }); -},{"./_export":169,"./_global":177,"./_user-agent":255}],413:[function(require,module,exports){ +},{"./_export":171,"./_global":179,"./_user-agent":257}],415:[function(require,module,exports){ require('../modules/web.timers'); require('../modules/web.immediate'); require('../modules/web.dom.iterable'); module.exports = require('../modules/_core'); -},{"../modules/_core":159,"../modules/web.dom.iterable":410,"../modules/web.immediate":411,"../modules/web.timers":412}],414:[function(require,module,exports){ +},{"../modules/_core":161,"../modules/web.dom.iterable":412,"../modules/web.immediate":413,"../modules/web.timers":414}],416:[function(require,module,exports){ ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS @@ -22109,7 +22245,7 @@ module.exports = require('../modules/_core'); return CryptoJS.AES; })); -},{"./cipher-core":415,"./core":416,"./enc-base64":417,"./evpkdf":419,"./md5":421}],415:[function(require,module,exports){ +},{"./cipher-core":417,"./core":418,"./enc-base64":419,"./evpkdf":421,"./md5":423}],417:[function(require,module,exports){ ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS @@ -22990,7 +23126,7 @@ module.exports = require('../modules/_core'); })); -},{"./core":416,"./evpkdf":419}],416:[function(require,module,exports){ +},{"./core":418,"./evpkdf":421}],418:[function(require,module,exports){ ;(function (root, factory) { if (typeof exports === "object") { // CommonJS @@ -23751,7 +23887,7 @@ module.exports = require('../modules/_core'); return CryptoJS; })); -},{}],417:[function(require,module,exports){ +},{}],419:[function(require,module,exports){ ;(function (root, factory) { if (typeof exports === "object") { // CommonJS @@ -23887,7 +24023,7 @@ module.exports = require('../modules/_core'); return CryptoJS.enc.Base64; })); -},{"./core":416}],418:[function(require,module,exports){ +},{"./core":418}],420:[function(require,module,exports){ ;(function (root, factory) { if (typeof exports === "object") { // CommonJS @@ -23906,7 +24042,7 @@ module.exports = require('../modules/_core'); return CryptoJS.enc.Utf8; })); -},{"./core":416}],419:[function(require,module,exports){ +},{"./core":418}],421:[function(require,module,exports){ ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS @@ -24039,7 +24175,7 @@ module.exports = require('../modules/_core'); return CryptoJS.EvpKDF; })); -},{"./core":416,"./hmac":420,"./sha1":422}],420:[function(require,module,exports){ +},{"./core":418,"./hmac":422,"./sha1":424}],422:[function(require,module,exports){ ;(function (root, factory) { if (typeof exports === "object") { // CommonJS @@ -24183,7 +24319,7 @@ module.exports = require('../modules/_core'); })); -},{"./core":416}],421:[function(require,module,exports){ +},{"./core":418}],423:[function(require,module,exports){ ;(function (root, factory) { if (typeof exports === "object") { // CommonJS @@ -24452,7 +24588,7 @@ module.exports = require('../modules/_core'); return CryptoJS.MD5; })); -},{"./core":416}],422:[function(require,module,exports){ +},{"./core":418}],424:[function(require,module,exports){ ;(function (root, factory) { if (typeof exports === "object") { // CommonJS @@ -24603,7 +24739,7 @@ module.exports = require('../modules/_core'); return CryptoJS.SHA1; })); -},{"./core":416}],423:[function(require,module,exports){ +},{"./core":418}],425:[function(require,module,exports){ "use strict"; var _index = require("./index.js"); @@ -24619,7 +24755,7 @@ var _index = require("./index.js"); module.exports = { IdleQueue: _index.IdleQueue }; -},{"./index.js":424}],424:[function(require,module,exports){ +},{"./index.js":426}],426:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -24910,7 +25046,7 @@ function _tryIdleCall(idleQueue) { }, 0); }, 0); } -},{}],425:[function(require,module,exports){ +},{}],427:[function(require,module,exports){ 'use strict'; var objectKeys = require('object-keys'); @@ -25274,7 +25410,7 @@ module.exports = function deepEqual(a, b, opts) { return internalDeepEqual(a, b, opts, getSideChannel()); }; -},{"es-abstract/GetIntrinsic":428,"es-abstract/helpers/callBound":430,"es-get-iterator":431,"is-arguments":463,"is-date-object":466,"is-regex":475,"isarray":486,"object-is":498,"object-keys":502,"object.assign":506,"regexp.prototype.flags":534,"side-channel":739,"which-boxed-primitive":757,"which-collection":758,"which-typed-array":759}],426:[function(require,module,exports){ +},{"es-abstract/GetIntrinsic":430,"es-abstract/helpers/callBound":432,"es-get-iterator":433,"is-arguments":466,"is-date-object":469,"is-regex":478,"isarray":489,"object-is":501,"object-keys":505,"object.assign":509,"regexp.prototype.flags":537,"side-channel":742,"which-boxed-primitive":760,"which-collection":761,"which-typed-array":762}],428:[function(require,module,exports){ 'use strict'; var keys = require('object-keys'); @@ -25334,11 +25470,11 @@ defineProperties.supportsDescriptors = !!supportsDescriptors; module.exports = defineProperties; -},{"object-keys":502}],427:[function(require,module,exports){ +},{"object-keys":505}],429:[function(require,module,exports){ module.exports = false; -},{}],428:[function(require,module,exports){ +},{}],430:[function(require,module,exports){ 'use strict'; /* globals @@ -25629,7 +25765,7 @@ module.exports = function GetIntrinsic(name, allowMissing) { return value; }; -},{"function-bind":449,"has":454,"has-symbols":452}],429:[function(require,module,exports){ +},{"function-bind":451,"has":457,"has-symbols":455}],431:[function(require,module,exports){ 'use strict'; var bind = require('function-bind'); @@ -25665,7 +25801,7 @@ if ($defineProperty) { module.exports.apply = applyBind; } -},{"../GetIntrinsic":428,"function-bind":449}],430:[function(require,module,exports){ +},{"../GetIntrinsic":430,"function-bind":451}],432:[function(require,module,exports){ 'use strict'; var GetIntrinsic = require('../GetIntrinsic'); @@ -25682,7 +25818,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) { return intrinsic; }; -},{"../GetIntrinsic":428,"./callBind":429}],431:[function(require,module,exports){ +},{"../GetIntrinsic":430,"./callBind":431}],433:[function(require,module,exports){ (function (process){(function (){ 'use strict'; @@ -25884,7 +26020,7 @@ if (require('has-symbols')() || require('has-symbols/shams')()) { } }).call(this)}).call(this,require('_process')) -},{"_process":530,"es-abstract/GetIntrinsic":432,"es-abstract/helpers/callBound":434,"has-symbols":452,"has-symbols/shams":453,"is-arguments":463,"is-map":469,"is-set":476,"is-string":477,"isarray":486}],432:[function(require,module,exports){ +},{"_process":533,"es-abstract/GetIntrinsic":434,"es-abstract/helpers/callBound":436,"has-symbols":455,"has-symbols/shams":456,"is-arguments":466,"is-map":472,"is-set":479,"is-string":480,"isarray":489}],434:[function(require,module,exports){ 'use strict'; /* globals @@ -26111,11 +26247,11 @@ module.exports = function GetIntrinsic(name, allowMissing) { return value; }; -},{"function-bind":449,"has-symbols":452}],433:[function(require,module,exports){ -arguments[4][429][0].apply(exports,arguments) -},{"../GetIntrinsic":432,"dup":429,"function-bind":449}],434:[function(require,module,exports){ -arguments[4][430][0].apply(exports,arguments) -},{"../GetIntrinsic":432,"./callBind":433,"dup":430}],435:[function(require,module,exports){ +},{"function-bind":451,"has-symbols":455}],435:[function(require,module,exports){ +arguments[4][431][0].apply(exports,arguments) +},{"../GetIntrinsic":434,"dup":431,"function-bind":451}],436:[function(require,module,exports){ +arguments[4][432][0].apply(exports,arguments) +},{"../GetIntrinsic":434,"./callBind":435,"dup":432}],437:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.unknownAction = exports.runFullQueryAgain = exports.removeExistingAndInsertAtSortPosition = exports.insertAtSortPosition = exports.alwaysWrong = exports.replaceExisting = exports.removeExisting = exports.removeLastInsertFirst = exports.removeFirstInsertLast = exports.removeLastItem = exports.removeFirstItem = exports.insertLast = exports.insertFirst = exports.doNothing = void 0; @@ -26221,7 +26357,7 @@ exports.unknownAction = function (_input) { throw new Error('Action unknownAction should never be called'); }; -},{"array-push-at-sort-position":73}],436:[function(require,module,exports){ +},{"array-push-at-sort-position":73}],438:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.actionFunctions = exports.orderedActionList = void 0; @@ -26264,7 +26400,7 @@ exports.actionFunctions = { unknownAction: action_functions_1.unknownAction }; -},{"./action-functions":435}],437:[function(require,module,exports){ +},{"./action-functions":437}],439:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.resolveInput = exports.simpleBdd = exports.minimalBddString = void 0; @@ -26274,7 +26410,7 @@ exports.minimalBddString = '11a+b0c/d3e.f2g*h-i)j(k4ljk3mkj3nbh,odh,peh,qkj5rkm5 exports.simpleBdd = binary_decision_diagram_1.minimalStringToSimpleBdd(exports.minimalBddString); exports.resolveInput = function (input) { return binary_decision_diagram_1.resolveWithSimpleBdd(exports.simpleBdd, states_1.stateResolveFunctionByIndex, input); }; -},{"../states":439,"binary-decision-diagram":82}],438:[function(require,module,exports){ +},{"../states":441,"binary-decision-diagram":82}],440:[function(require,module,exports){ "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; @@ -26338,7 +26474,7 @@ function runAction(action, queryParams, changeEvent, previousResults, keyDocumen } exports.runAction = runAction; -},{"./actions":436,"./bdd/bdd.generated":437,"./states":439,"./types":442,"./util":444}],439:[function(require,module,exports){ +},{"./actions":438,"./bdd/bdd.generated":439,"./states":441,"./types":444,"./util":446}],441:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.logStateSet = exports.getStateSet = exports.resolveState = exports.stateResolveFunctionByIndex = exports.stateResolveFunctions = exports.orderedStateList = void 0; @@ -26431,7 +26567,7 @@ function logStateSet(stateSet) { } exports.logStateSet = logStateSet; -},{"./state-resolver":440}],440:[function(require,module,exports){ +},{"./state-resolver":442}],442:[function(require,module,exports){ "use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; @@ -26574,11 +26710,11 @@ exports.wasResultsEmpty = function (input) { return input.previousResults.length === 0; }; -},{"../util":444,"object-path":445}],441:[function(require,module,exports){ +},{"../util":446,"object-path":447}],443:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); -},{}],442:[function(require,module,exports){ +},{}],444:[function(require,module,exports){ "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; @@ -26594,11 +26730,11 @@ Object.defineProperty(exports, "__esModule", { value: true }); __exportStar(require("./change-event"), exports); __exportStar(require("./mongo"), exports); -},{"./change-event":441,"./mongo":443}],443:[function(require,module,exports){ +},{"./change-event":443,"./mongo":445}],445:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); -},{}],444:[function(require,module,exports){ +},{}],446:[function(require,module,exports){ "use strict"; var __read = (this && this.__read) || function (o, n) { var m = typeof Symbol === "function" && o[Symbol.iterator]; @@ -26733,7 +26869,7 @@ function mergeSets(sets) { } exports.mergeSets = mergeSets; -},{}],445:[function(require,module,exports){ +},{}],447:[function(require,module,exports){ (function (root, factory){ 'use strict'; @@ -27027,7 +27163,7 @@ exports.mergeSets = mergeSets; return mod; }); -},{}],446:[function(require,module,exports){ +},{}],448:[function(require,module,exports){ // Copyright Joyent, Inc. and other Node contributors. // // Permission is hereby granted, free of charge, to any person obtaining a @@ -27505,7 +27641,7 @@ function once(emitter, name) { }); } -},{}],447:[function(require,module,exports){ +},{}],449:[function(require,module,exports){ var hasOwn = Object.prototype.hasOwnProperty; var toString = Object.prototype.toString; @@ -27529,7 +27665,7 @@ module.exports = function forEach (obj, fn, ctx) { }; -},{}],448:[function(require,module,exports){ +},{}],450:[function(require,module,exports){ 'use strict'; /* eslint no-invalid-this: 1 */ @@ -27583,14 +27719,14 @@ module.exports = function bind(that) { return bound; }; -},{}],449:[function(require,module,exports){ +},{}],451:[function(require,module,exports){ 'use strict'; var implementation = require('./implementation'); module.exports = Function.prototype.bind || implementation; -},{"./implementation":448}],450:[function(require,module,exports){ +},{"./implementation":450}],452:[function(require,module,exports){ var util = require('util') var isProperty = require('is-property') @@ -27773,7 +27909,7 @@ var genfun = function() { genfun.formats = formats module.exports = genfun -},{"is-property":474,"util":745}],451:[function(require,module,exports){ +},{"is-property":477,"util":748}],453:[function(require,module,exports){ var isProperty = require('is-property') var gen = function(obj, prop) { @@ -27787,7 +27923,300 @@ gen.property = function (prop) { module.exports = gen -},{"is-property":474}],452:[function(require,module,exports){ +},{"is-property":477}],454:[function(require,module,exports){ +'use strict'; + +/* globals + AggregateError, + Atomics, + FinalizationRegistry, + SharedArrayBuffer, + WeakRef, +*/ + +var undefined; + +var $SyntaxError = SyntaxError; +var $Function = Function; +var $TypeError = TypeError; + +// eslint-disable-next-line consistent-return +var getEvalledConstructor = function (expressionSyntax) { + try { + // eslint-disable-next-line no-new-func + return Function('"use strict"; return (' + expressionSyntax + ').constructor;')(); + } catch (e) {} +}; + +var $gOPD = Object.getOwnPropertyDescriptor; +if ($gOPD) { + try { + $gOPD({}, ''); + } catch (e) { + $gOPD = null; // this is IE 8, which has a broken gOPD + } +} + +var throwTypeError = function () { + throw new $TypeError(); +}; +var ThrowTypeError = $gOPD + ? (function () { + try { + // eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties + arguments.callee; // IE 8 does not throw here + return throwTypeError; + } catch (calleeThrows) { + try { + // IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '') + return $gOPD(arguments, 'callee').get; + } catch (gOPDthrows) { + return throwTypeError; + } + } + }()) + : throwTypeError; + +var hasSymbols = require('has-symbols')(); + +var getProto = Object.getPrototypeOf || function (x) { return x.__proto__; }; // eslint-disable-line no-proto + +var asyncGenFunction = getEvalledConstructor('async function* () {}'); +var asyncGenFunctionPrototype = asyncGenFunction ? asyncGenFunction.prototype : undefined; +var asyncGenPrototype = asyncGenFunctionPrototype ? asyncGenFunctionPrototype.prototype : undefined; + +var TypedArray = typeof Uint8Array === 'undefined' ? undefined : getProto(Uint8Array); + +var INTRINSICS = { + '%AggregateError%': typeof AggregateError === 'undefined' ? undefined : AggregateError, + '%Array%': Array, + '%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer, + '%ArrayIteratorPrototype%': hasSymbols ? getProto([][Symbol.iterator]()) : undefined, + '%AsyncFromSyncIteratorPrototype%': undefined, + '%AsyncFunction%': getEvalledConstructor('async function () {}'), + '%AsyncGenerator%': asyncGenFunctionPrototype, + '%AsyncGeneratorFunction%': asyncGenFunction, + '%AsyncIteratorPrototype%': asyncGenPrototype ? getProto(asyncGenPrototype) : undefined, + '%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics, + '%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt, + '%Boolean%': Boolean, + '%DataView%': typeof DataView === 'undefined' ? undefined : DataView, + '%Date%': Date, + '%decodeURI%': decodeURI, + '%decodeURIComponent%': decodeURIComponent, + '%encodeURI%': encodeURI, + '%encodeURIComponent%': encodeURIComponent, + '%Error%': Error, + '%eval%': eval, // eslint-disable-line no-eval + '%EvalError%': EvalError, + '%Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array, + '%Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array, + '%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? undefined : FinalizationRegistry, + '%Function%': $Function, + '%GeneratorFunction%': getEvalledConstructor('function* () {}'), + '%Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array, + '%Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array, + '%Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array, + '%isFinite%': isFinite, + '%isNaN%': isNaN, + '%IteratorPrototype%': hasSymbols ? getProto(getProto([][Symbol.iterator]())) : undefined, + '%JSON%': typeof JSON === 'object' ? JSON : undefined, + '%Map%': typeof Map === 'undefined' ? undefined : Map, + '%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols ? undefined : getProto(new Map()[Symbol.iterator]()), + '%Math%': Math, + '%Number%': Number, + '%Object%': Object, + '%parseFloat%': parseFloat, + '%parseInt%': parseInt, + '%Promise%': typeof Promise === 'undefined' ? undefined : Promise, + '%Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy, + '%RangeError%': RangeError, + '%ReferenceError%': ReferenceError, + '%Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect, + '%RegExp%': RegExp, + '%Set%': typeof Set === 'undefined' ? undefined : Set, + '%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols ? undefined : getProto(new Set()[Symbol.iterator]()), + '%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer, + '%String%': String, + '%StringIteratorPrototype%': hasSymbols ? getProto(''[Symbol.iterator]()) : undefined, + '%Symbol%': hasSymbols ? Symbol : undefined, + '%SyntaxError%': $SyntaxError, + '%ThrowTypeError%': ThrowTypeError, + '%TypedArray%': TypedArray, + '%TypeError%': $TypeError, + '%Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array, + '%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray, + '%Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array, + '%Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array, + '%URIError%': URIError, + '%WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap, + '%WeakRef%': typeof WeakRef === 'undefined' ? undefined : WeakRef, + '%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet +}; + +var LEGACY_ALIASES = { + '%ArrayBufferPrototype%': ['ArrayBuffer', 'prototype'], + '%ArrayPrototype%': ['Array', 'prototype'], + '%ArrayProto_entries%': ['Array', 'prototype', 'entries'], + '%ArrayProto_forEach%': ['Array', 'prototype', 'forEach'], + '%ArrayProto_keys%': ['Array', 'prototype', 'keys'], + '%ArrayProto_values%': ['Array', 'prototype', 'values'], + '%AsyncFunctionPrototype%': ['AsyncFunction', 'prototype'], + '%AsyncGenerator%': ['AsyncGeneratorFunction', 'prototype'], + '%AsyncGeneratorPrototype%': ['AsyncGeneratorFunction', 'prototype', 'prototype'], + '%BooleanPrototype%': ['Boolean', 'prototype'], + '%DataViewPrototype%': ['DataView', 'prototype'], + '%DatePrototype%': ['Date', 'prototype'], + '%ErrorPrototype%': ['Error', 'prototype'], + '%EvalErrorPrototype%': ['EvalError', 'prototype'], + '%Float32ArrayPrototype%': ['Float32Array', 'prototype'], + '%Float64ArrayPrototype%': ['Float64Array', 'prototype'], + '%FunctionPrototype%': ['Function', 'prototype'], + '%Generator%': ['GeneratorFunction', 'prototype'], + '%GeneratorPrototype%': ['GeneratorFunction', 'prototype', 'prototype'], + '%Int8ArrayPrototype%': ['Int8Array', 'prototype'], + '%Int16ArrayPrototype%': ['Int16Array', 'prototype'], + '%Int32ArrayPrototype%': ['Int32Array', 'prototype'], + '%JSONParse%': ['JSON', 'parse'], + '%JSONStringify%': ['JSON', 'stringify'], + '%MapPrototype%': ['Map', 'prototype'], + '%NumberPrototype%': ['Number', 'prototype'], + '%ObjectPrototype%': ['Object', 'prototype'], + '%ObjProto_toString%': ['Object', 'prototype', 'toString'], + '%ObjProto_valueOf%': ['Object', 'prototype', 'valueOf'], + '%PromisePrototype%': ['Promise', 'prototype'], + '%PromiseProto_then%': ['Promise', 'prototype', 'then'], + '%Promise_all%': ['Promise', 'all'], + '%Promise_reject%': ['Promise', 'reject'], + '%Promise_resolve%': ['Promise', 'resolve'], + '%RangeErrorPrototype%': ['RangeError', 'prototype'], + '%ReferenceErrorPrototype%': ['ReferenceError', 'prototype'], + '%RegExpPrototype%': ['RegExp', 'prototype'], + '%SetPrototype%': ['Set', 'prototype'], + '%SharedArrayBufferPrototype%': ['SharedArrayBuffer', 'prototype'], + '%StringPrototype%': ['String', 'prototype'], + '%SymbolPrototype%': ['Symbol', 'prototype'], + '%SyntaxErrorPrototype%': ['SyntaxError', 'prototype'], + '%TypedArrayPrototype%': ['TypedArray', 'prototype'], + '%TypeErrorPrototype%': ['TypeError', 'prototype'], + '%Uint8ArrayPrototype%': ['Uint8Array', 'prototype'], + '%Uint8ClampedArrayPrototype%': ['Uint8ClampedArray', 'prototype'], + '%Uint16ArrayPrototype%': ['Uint16Array', 'prototype'], + '%Uint32ArrayPrototype%': ['Uint32Array', 'prototype'], + '%URIErrorPrototype%': ['URIError', 'prototype'], + '%WeakMapPrototype%': ['WeakMap', 'prototype'], + '%WeakSetPrototype%': ['WeakSet', 'prototype'] +}; + +var bind = require('function-bind'); +var hasOwn = require('has'); +var $concat = bind.call(Function.call, Array.prototype.concat); +var $spliceApply = bind.call(Function.apply, Array.prototype.splice); +var $replace = bind.call(Function.call, String.prototype.replace); + +/* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */ +var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g; +var reEscapeChar = /\\(\\)?/g; /** Used to match backslashes in property paths. */ +var stringToPath = function stringToPath(string) { + var result = []; + $replace(string, rePropName, function (match, number, quote, subString) { + result[result.length] = quote ? $replace(subString, reEscapeChar, '$1') : number || match; + }); + return result; +}; +/* end adaptation */ + +var getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) { + var intrinsicName = name; + var alias; + if (hasOwn(LEGACY_ALIASES, intrinsicName)) { + alias = LEGACY_ALIASES[intrinsicName]; + intrinsicName = '%' + alias[0] + '%'; + } + + if (hasOwn(INTRINSICS, intrinsicName)) { + var value = INTRINSICS[intrinsicName]; + if (typeof value === 'undefined' && !allowMissing) { + throw new $TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!'); + } + + return { + alias: alias, + name: intrinsicName, + value: value + }; + } + + throw new $SyntaxError('intrinsic ' + name + ' does not exist!'); +}; + +module.exports = function GetIntrinsic(name, allowMissing) { + if (typeof name !== 'string' || name.length === 0) { + throw new $TypeError('intrinsic name must be a non-empty string'); + } + if (arguments.length > 1 && typeof allowMissing !== 'boolean') { + throw new $TypeError('"allowMissing" argument must be a boolean'); + } + + var parts = stringToPath(name); + var intrinsicBaseName = parts.length > 0 ? parts[0] : ''; + + var intrinsic = getBaseIntrinsic('%' + intrinsicBaseName + '%', allowMissing); + var intrinsicRealName = intrinsic.name; + var value = intrinsic.value; + var skipFurtherCaching = false; + + var alias = intrinsic.alias; + if (alias) { + intrinsicBaseName = alias[0]; + $spliceApply(parts, $concat([0, 1], alias)); + } + + for (var i = 1, isOwn = true; i < parts.length; i += 1) { + var part = parts[i]; + if (part === 'constructor' || !isOwn) { + skipFurtherCaching = true; + } + + intrinsicBaseName += '.' + part; + intrinsicRealName = '%' + intrinsicBaseName + '%'; + + if (hasOwn(INTRINSICS, intrinsicRealName)) { + value = INTRINSICS[intrinsicRealName]; + } else if (value != null) { + if ($gOPD && (i + 1) >= parts.length) { + var desc = $gOPD(value, part); + isOwn = !!desc; + + if (!allowMissing && !(part in value)) { + throw new $TypeError('base intrinsic for ' + name + ' exists, but the property is not available.'); + } + // By convention, when a data property is converted to an accessor + // property to emulate a data property that does not suffer from + // the override mistake, that accessor's getter is marked with + // an `originalValue` property. Here, when we detect this, we + // uphold the illusion by pretending to see that original data + // property, i.e., returning the value rather than the getter + // itself. + if (isOwn && 'get' in desc && !('originalValue' in desc.get)) { + value = desc.get; + } else { + value = value[part]; + } + } else { + isOwn = hasOwn(value, part); + value = value[part]; + } + + if (isOwn && !skipFurtherCaching) { + INTRINSICS[intrinsicRealName] = value; + } + } + } + return value; +}; + +},{"function-bind":451,"has":457,"has-symbols":455}],455:[function(require,module,exports){ (function (global){(function (){ 'use strict'; @@ -27804,7 +28233,7 @@ module.exports = function hasNativeSymbols() { }; }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"./shams":453}],453:[function(require,module,exports){ +},{"./shams":456}],456:[function(require,module,exports){ 'use strict'; /* eslint complexity: [2, 18], max-statements: [2, 33] */ @@ -27848,14 +28277,15 @@ module.exports = function hasSymbols() { return true; }; -},{}],454:[function(require,module,exports){ +},{}],457:[function(require,module,exports){ 'use strict'; var bind = require('function-bind'); module.exports = bind.call(Function.call, Object.prototype.hasOwnProperty); -},{"function-bind":449}],455:[function(require,module,exports){ +},{"function-bind":451}],458:[function(require,module,exports){ +/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh */ exports.read = function (buffer, offset, isLE, mLen, nBytes) { var e, m var eLen = (nBytes * 8) - mLen - 1 @@ -27941,7 +28371,7 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) { buffer[offset + i - d] |= s * 128 } -},{}],456:[function(require,module,exports){ +},{}],459:[function(require,module,exports){ 'use strict'; var types = [ require('./nextTick'), @@ -28040,7 +28470,7 @@ function immediate(task) { } } -},{"./messageChannel":457,"./mutation.js":458,"./nextTick":107,"./queueMicrotask":459,"./stateChange":460,"./timeout":461}],457:[function(require,module,exports){ +},{"./messageChannel":460,"./mutation.js":461,"./nextTick":107,"./queueMicrotask":462,"./stateChange":463,"./timeout":464}],460:[function(require,module,exports){ (function (global){(function (){ 'use strict'; @@ -28061,7 +28491,7 @@ exports.install = function (func) { }; }; }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],458:[function(require,module,exports){ +},{}],461:[function(require,module,exports){ (function (global){(function (){ 'use strict'; //based off rsvp https://github.com/tildeio/rsvp.js @@ -28086,7 +28516,7 @@ exports.install = function (handle) { }; }; }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],459:[function(require,module,exports){ +},{}],462:[function(require,module,exports){ (function (global){(function (){ 'use strict'; exports.test = function () { @@ -28100,7 +28530,7 @@ exports.install = function (func) { }; }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],460:[function(require,module,exports){ +},{}],463:[function(require,module,exports){ (function (global){(function (){ 'use strict'; @@ -28127,7 +28557,7 @@ exports.install = function (handle) { }; }; }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{}],461:[function(require,module,exports){ +},{}],464:[function(require,module,exports){ 'use strict'; exports.test = function () { return true; @@ -28138,7 +28568,7 @@ exports.install = function (t) { setTimeout(t, 0); }; }; -},{}],462:[function(require,module,exports){ +},{}],465:[function(require,module,exports){ if (typeof Object.create === 'function') { // implementation from standard node.js 'util' module module.exports = function inherits(ctor, superCtor) { @@ -28167,7 +28597,7 @@ if (typeof Object.create === 'function') { } } -},{}],463:[function(require,module,exports){ +},{}],466:[function(require,module,exports){ 'use strict'; var hasToStringTag = typeof Symbol === 'function' && typeof Symbol.toStringTag === 'symbol'; @@ -28200,7 +28630,7 @@ isStandardArguments.isLegacyArguments = isLegacyArguments; // for tests module.exports = supportsStandardArguments ? isStandardArguments : isLegacyArguments; -},{}],464:[function(require,module,exports){ +},{}],467:[function(require,module,exports){ 'use strict'; if (typeof BigInt === 'function') { @@ -28238,7 +28668,7 @@ if (typeof BigInt === 'function') { }; } -},{}],465:[function(require,module,exports){ +},{}],468:[function(require,module,exports){ 'use strict'; var boolToStr = Boolean.prototype.toString; @@ -28265,7 +28695,7 @@ module.exports = function isBoolean(value) { return hasToStringTag && Symbol.toStringTag in value ? tryBooleanObject(value) : toStr.call(value) === boolClass; }; -},{}],466:[function(require,module,exports){ +},{}],469:[function(require,module,exports){ 'use strict'; var getDay = Date.prototype.getDay; @@ -28289,7 +28719,7 @@ module.exports = function isDateObject(value) { return hasToStringTag ? tryDateObject(value) : toStr.call(value) === dateClass; }; -},{}],467:[function(require,module,exports){ +},{}],470:[function(require,module,exports){ (function (process){(function (){ // https://github.com/electron/electron/issues/2288 function isElectron() { @@ -28314,7 +28744,7 @@ function isElectron() { module.exports = isElectron; }).call(this)}).call(this,require('_process')) -},{"_process":530}],468:[function(require,module,exports){ +},{"_process":533}],471:[function(require,module,exports){ 'use strict'; var toStr = Object.prototype.toString; @@ -28348,7 +28778,7 @@ module.exports = function isGeneratorFunction(fn) { return getProto(fn) === GeneratorFunction; }; -},{}],469:[function(require,module,exports){ +},{}],472:[function(require,module,exports){ 'use strict'; var $Map = typeof Map === 'function' && Map.prototype ? Map : null; @@ -28392,7 +28822,7 @@ module.exports = exported || function isMap(x) { return false; }; -},{}],470:[function(require,module,exports){ +},{}],473:[function(require,module,exports){ var reIpv4FirstPass = /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/ var reSubnetString = /\/\d{1,3}(?=%|$)/ @@ -28484,7 +28914,7 @@ module.exports['__all_regexes__'] = [ reBadAddress ] -},{}],471:[function(require,module,exports){ +},{}],474:[function(require,module,exports){ var createIpValidator = require('is-my-ip-valid') var reEmailWhitespace = /\s/ @@ -28526,7 +28956,7 @@ exports['phone'] = function (input) { } exports['utc-millisec'] = /^[0-9]{1,15}\.?[0-9]{0,15}$/ -},{"is-my-ip-valid":470}],472:[function(require,module,exports){ +},{"is-my-ip-valid":473}],475:[function(require,module,exports){ var genobj = require('generate-object-property') var genfun = require('generate-function') var jsonpointer = require('jsonpointer') @@ -29151,7 +29581,7 @@ module.exports.filter = function(schema, opts) { } } -},{"./formats":471,"generate-function":450,"generate-object-property":451,"jsonpointer":487,"xtend":764}],473:[function(require,module,exports){ +},{"./formats":474,"generate-function":452,"generate-object-property":453,"jsonpointer":490,"xtend":767}],476:[function(require,module,exports){ 'use strict'; var numToStr = Number.prototype.toString; @@ -29177,13 +29607,13 @@ module.exports = function isNumberObject(value) { return hasToStringTag ? tryNumberObject(value) : toStr.call(value) === numClass; }; -},{}],474:[function(require,module,exports){ +},{}],477:[function(require,module,exports){ "use strict" function isProperty(str) { return /^[$A-Z\_a-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u08a0\u08a2-\u08ac\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e87\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa\u0eab\u0ead-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19c1-\u19c7\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1cf5\u1cf6\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309d-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fcc\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790-\ua793\ua7a0-\ua7aa\ua7f8-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa80-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc][$A-Z\_a-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u08a0\u08a2-\u08ac\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e87\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa\u0eab\u0ead-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19c1-\u19c7\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1cf5\u1cf6\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309d-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fcc\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790-\ua793\ua7a0-\ua7aa\ua7f8-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa80-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc0-9\u0300-\u036f\u0483-\u0487\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u0669\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u06f0-\u06f9\u0711\u0730-\u074a\u07a6-\u07b0\u07c0-\u07c9\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u08e4-\u08fe\u0900-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0966-\u096f\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u09e6-\u09ef\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a66-\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0ae6-\u0aef\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b66-\u0b6f\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0be6-\u0bef\u0c01-\u0c03\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c66-\u0c6f\u0c82\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0ce6-\u0cef\u0d02\u0d03\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d66-\u0d6f\u0d82\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0e50-\u0e59\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0ed0-\u0ed9\u0f18\u0f19\u0f20-\u0f29\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1040-\u1049\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f-\u109d\u135d-\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b4-\u17d3\u17dd\u17e0-\u17e9\u180b-\u180d\u1810-\u1819\u18a9\u1920-\u192b\u1930-\u193b\u1946-\u194f\u19b0-\u19c0\u19c8\u19c9\u19d0-\u19d9\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f-\u1a89\u1a90-\u1a99\u1b00-\u1b04\u1b34-\u1b44\u1b50-\u1b59\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1bad\u1bb0-\u1bb9\u1be6-\u1bf3\u1c24-\u1c37\u1c40-\u1c49\u1c50-\u1c59\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf2-\u1cf4\u1dc0-\u1de6\u1dfc-\u1dff\u200c\u200d\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua620-\ua629\ua66f\ua674-\ua67d\ua69f\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua880\ua881\ua8b4-\ua8c4\ua8d0-\ua8d9\ua8e0-\ua8f1\ua900-\ua909\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\ua9d0-\ua9d9\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa50-\uaa59\uaa7b\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uaaeb-\uaaef\uaaf5\uaaf6\uabe3-\uabea\uabec\uabed\uabf0-\uabf9\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\ufe33\ufe34\ufe4d-\ufe4f\uff10-\uff19\uff3f]*$/.test(str) } module.exports = isProperty -},{}],475:[function(require,module,exports){ +},{}],478:[function(require,module,exports){ 'use strict'; var hasSymbols = require('has-symbols')(); @@ -29243,7 +29673,7 @@ module.exports = hasToStringTag return toStr.call(value) === regexClass; }; -},{"has-symbols":452}],476:[function(require,module,exports){ +},{"has-symbols":455}],479:[function(require,module,exports){ 'use strict'; var $Map = typeof Map === 'function' && Map.prototype ? Map : null; @@ -29287,7 +29717,7 @@ module.exports = exported || function isSet(x) { return false; }; -},{}],477:[function(require,module,exports){ +},{}],480:[function(require,module,exports){ 'use strict'; var strValue = String.prototype.valueOf; @@ -29313,7 +29743,7 @@ module.exports = function isString(value) { return hasToStringTag ? tryStringObject(value) : toStr.call(value) === strClass; }; -},{}],478:[function(require,module,exports){ +},{}],481:[function(require,module,exports){ 'use strict'; var toStr = Object.prototype.toString; @@ -29350,7 +29780,7 @@ if (hasSymbols) { }; } -},{"has-symbols":452}],479:[function(require,module,exports){ +},{"has-symbols":455}],482:[function(require,module,exports){ (function (global){(function (){ 'use strict'; @@ -29415,13 +29845,13 @@ module.exports = function isTypedArray(value) { }; }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"available-typed-arrays":74,"es-abstract/helpers/callBound":482,"es-abstract/helpers/getOwnPropertyDescriptor":483,"foreach":447,"has-symbols":452}],480:[function(require,module,exports){ +},{"available-typed-arrays":74,"es-abstract/helpers/callBound":485,"es-abstract/helpers/getOwnPropertyDescriptor":486,"foreach":449,"has-symbols":455}],483:[function(require,module,exports){ +arguments[4][434][0].apply(exports,arguments) +},{"dup":434,"function-bind":451,"has-symbols":455}],484:[function(require,module,exports){ +arguments[4][431][0].apply(exports,arguments) +},{"../GetIntrinsic":483,"dup":431,"function-bind":451}],485:[function(require,module,exports){ arguments[4][432][0].apply(exports,arguments) -},{"dup":432,"function-bind":449,"has-symbols":452}],481:[function(require,module,exports){ -arguments[4][429][0].apply(exports,arguments) -},{"../GetIntrinsic":480,"dup":429,"function-bind":449}],482:[function(require,module,exports){ -arguments[4][430][0].apply(exports,arguments) -},{"../GetIntrinsic":480,"./callBind":481,"dup":430}],483:[function(require,module,exports){ +},{"../GetIntrinsic":483,"./callBind":484,"dup":432}],486:[function(require,module,exports){ 'use strict'; var GetIntrinsic = require('../GetIntrinsic'); @@ -29438,7 +29868,7 @@ if ($gOPD) { module.exports = $gOPD; -},{"../GetIntrinsic":480}],484:[function(require,module,exports){ +},{"../GetIntrinsic":483}],487:[function(require,module,exports){ 'use strict'; var $WeakMap = typeof WeakMap === 'function' && WeakMap.prototype ? WeakMap : null; @@ -29482,7 +29912,7 @@ module.exports = exported || function isWeakMap(x) { return false; }; -},{}],485:[function(require,module,exports){ +},{}],488:[function(require,module,exports){ 'use strict'; var $WeakMap = typeof WeakMap === 'function' && WeakMap.prototype ? WeakMap : null; @@ -29526,14 +29956,14 @@ module.exports = exported || function isWeakSet(x) { return false; }; -},{}],486:[function(require,module,exports){ +},{}],489:[function(require,module,exports){ var toString = {}.toString; module.exports = Array.isArray || function (arr) { return toString.call(arr) == '[object Array]'; }; -},{}],487:[function(require,module,exports){ +},{}],490:[function(require,module,exports){ var hasExcape = /~/ var escapeMatcher = /~[01]/g function escapeReplacer (m) { @@ -29631,7 +30061,7 @@ exports.get = get exports.set = set exports.compile = compile -},{}],488:[function(require,module,exports){ +},{}],491:[function(require,module,exports){ "use strict"; var __read = (this && this.__read) || function (o, n) { var m = typeof Symbol === "function" && o[Symbol.iterator]; @@ -29797,7 +30227,7 @@ function compressQuerySelector(table, selector) { } exports.compressQuerySelector = compressQuerySelector; -},{}],489:[function(require,module,exports){ +},{}],492:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.uncompressedToCompressedTable = exports.compressedToUncompressedTable = exports.getPropertiesOfSchema = exports.createCompressionTable = exports.DEFAULT_COMPRESSION_FLAG = void 0; @@ -29876,7 +30306,7 @@ function uncompressedToCompressedTable(table, compressionFlag, ignoreProperties) } exports.uncompressedToCompressedTable = uncompressedToCompressedTable; -},{"./util":493}],490:[function(require,module,exports){ +},{"./util":496}],493:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.decompressedKey = exports.decompressedPath = exports.decompressObject = void 0; @@ -29933,7 +30363,7 @@ function decompressedKey(table, key) { } exports.decompressedKey = decompressedKey; -},{}],491:[function(require,module,exports){ +},{}],494:[function(require,module,exports){ "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; @@ -29959,11 +30389,11 @@ var decompress_1 = require("./decompress"); Object.defineProperty(exports, "decompressObject", { enumerable: true, get: function () { return decompress_1.decompressObject; } }); Object.defineProperty(exports, "decompressedPath", { enumerable: true, get: function () { return decompress_1.decompressedPath; } }); -},{"./compress":488,"./create-compression-table":489,"./decompress":490,"./types":492}],492:[function(require,module,exports){ +},{"./compress":491,"./create-compression-table":492,"./decompress":493,"./types":495}],495:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); -},{}],493:[function(require,module,exports){ +},{}],496:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.alphabeticCompare = exports.numberToLetter = void 0; @@ -30000,7 +30430,7 @@ exports.alphabeticCompare = function (a, b) { return 0; }; -},{}],494:[function(require,module,exports){ +},{}],497:[function(require,module,exports){ 'use strict'; function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; } @@ -30556,7 +30986,7 @@ var MODIFIERS = { module.exports = modify; -},{"clone":109,"deep-equal":495}],495:[function(require,module,exports){ +},{"clone":111,"deep-equal":498}],498:[function(require,module,exports){ var objectKeys = require('object-keys'); var isArguments = require('is-arguments'); var is = require('object-is'); @@ -30670,7 +31100,7 @@ function objEquiv(a, b, opts) { module.exports = deepEqual; -},{"is-arguments":463,"is-date-object":466,"is-regex":475,"object-is":498,"object-keys":502,"regexp.prototype.flags":534}],496:[function(require,module,exports){ +},{"is-arguments":466,"is-date-object":469,"is-regex":478,"object-is":501,"object-keys":505,"regexp.prototype.flags":537}],499:[function(require,module,exports){ var hasMap = typeof Map === 'function' && Map.prototype; var mapSizeDescriptor = Object.getOwnPropertyDescriptor && hasMap ? Object.getOwnPropertyDescriptor(Map.prototype, 'size') : null; var mapSize = hasMap && mapSizeDescriptor && typeof mapSizeDescriptor.get === 'function' ? mapSizeDescriptor.get : null; @@ -31055,7 +31485,7 @@ function arrObjKeys(obj, inspect) { return xs; } -},{"./util.inspect":107}],497:[function(require,module,exports){ +},{"./util.inspect":107}],500:[function(require,module,exports){ 'use strict'; var numberIsNaN = function (value) { @@ -31076,7 +31506,7 @@ module.exports = function is(a, b) { }; -},{}],498:[function(require,module,exports){ +},{}],501:[function(require,module,exports){ 'use strict'; var define = require('define-properties'); @@ -31096,7 +31526,7 @@ define(polyfill, { module.exports = polyfill; -},{"./implementation":497,"./polyfill":499,"./shim":500,"define-properties":426,"es-abstract/helpers/callBind":429}],499:[function(require,module,exports){ +},{"./implementation":500,"./polyfill":502,"./shim":503,"define-properties":428,"es-abstract/helpers/callBind":431}],502:[function(require,module,exports){ 'use strict'; var implementation = require('./implementation'); @@ -31105,7 +31535,7 @@ module.exports = function getPolyfill() { return typeof Object.is === 'function' ? Object.is : implementation; }; -},{"./implementation":497}],500:[function(require,module,exports){ +},{"./implementation":500}],503:[function(require,module,exports){ 'use strict'; var getPolyfill = require('./polyfill'); @@ -31121,7 +31551,7 @@ module.exports = function shimObjectIs() { return polyfill; }; -},{"./polyfill":499,"define-properties":426}],501:[function(require,module,exports){ +},{"./polyfill":502,"define-properties":428}],504:[function(require,module,exports){ 'use strict'; var keysShim; @@ -31245,7 +31675,7 @@ if (!Object.keys) { } module.exports = keysShim; -},{"./isArguments":503}],502:[function(require,module,exports){ +},{"./isArguments":506}],505:[function(require,module,exports){ 'use strict'; var slice = Array.prototype.slice; @@ -31279,7 +31709,7 @@ keysShim.shim = function shimObjectKeys() { module.exports = keysShim; -},{"./implementation":501,"./isArguments":503}],503:[function(require,module,exports){ +},{"./implementation":504,"./isArguments":506}],506:[function(require,module,exports){ 'use strict'; var toStr = Object.prototype.toString; @@ -31298,7 +31728,7 @@ module.exports = function isArguments(value) { return isArgs; }; -},{}],504:[function(require,module,exports){ +},{}],507:[function(require,module,exports){ (function (root, factory){ 'use strict'; @@ -31603,7 +32033,7 @@ module.exports = function isArguments(value) { return mod; }); -},{}],505:[function(require,module,exports){ +},{}],508:[function(require,module,exports){ 'use strict'; // modified from https://github.com/es-shims/es6-shim @@ -31612,7 +32042,7 @@ var canBeObject = function (obj) { return typeof obj !== 'undefined' && obj !== null; }; var hasSymbols = require('has-symbols/shams')(); -var callBound = require('es-abstract/helpers/callBound'); +var callBound = require('call-bind/callBound'); var toObject = Object; var $push = callBound('Array.prototype.push'); var $propIsEnumerable = callBound('Object.prototype.propertyIsEnumerable'); @@ -31647,11 +32077,11 @@ module.exports = function assign(target, source1) { return objTarget; }; -},{"es-abstract/helpers/callBound":430,"has-symbols/shams":453,"object-keys":502}],506:[function(require,module,exports){ +},{"call-bind/callBound":109,"has-symbols/shams":456,"object-keys":505}],509:[function(require,module,exports){ 'use strict'; var defineProperties = require('define-properties'); -var callBind = require('es-abstract/helpers/callBind'); +var callBind = require('call-bind'); var implementation = require('./implementation'); var getPolyfill = require('./polyfill'); @@ -31671,7 +32101,7 @@ defineProperties(bound, { module.exports = bound; -},{"./implementation":505,"./polyfill":507,"./shim":508,"define-properties":426,"es-abstract/helpers/callBind":429}],507:[function(require,module,exports){ +},{"./implementation":508,"./polyfill":510,"./shim":511,"call-bind":110,"define-properties":428}],510:[function(require,module,exports){ 'use strict'; var implementation = require('./implementation'); @@ -31728,7 +32158,7 @@ module.exports = function getPolyfill() { return Object.assign; }; -},{"./implementation":505}],508:[function(require,module,exports){ +},{"./implementation":508}],511:[function(require,module,exports){ 'use strict'; var define = require('define-properties'); @@ -31744,7 +32174,7 @@ module.exports = function shimAssign() { return polyfill; }; -},{"./polyfill":507,"define-properties":426}],509:[function(require,module,exports){ +},{"./polyfill":510,"define-properties":428}],512:[function(require,module,exports){ 'use strict'; var pouchdbCollections = require('pouchdb-collections'); @@ -32809,7 +33239,7 @@ function createAbstractMapReduce(localDocName, mapper, reducer, ddocValidator) { module.exports = createAbstractMapReduce; -},{"pouchdb-binary-utils":513,"pouchdb-collate":516,"pouchdb-collections":517,"pouchdb-errors":519,"pouchdb-fetch":520,"pouchdb-mapreduce-utils":524,"pouchdb-md5":525,"pouchdb-utils":529}],510:[function(require,module,exports){ +},{"pouchdb-binary-utils":516,"pouchdb-collate":519,"pouchdb-collections":520,"pouchdb-errors":522,"pouchdb-fetch":523,"pouchdb-mapreduce-utils":527,"pouchdb-md5":528,"pouchdb-utils":532}],513:[function(require,module,exports){ (function (process){(function (){ 'use strict'; @@ -33940,7 +34370,7 @@ function index (PouchDB) { module.exports = index; }).call(this)}).call(this,require('_process')) -},{"_process":530,"argsarray":71,"pouchdb-binary-utils":513,"pouchdb-errors":519,"pouchdb-fetch":520,"pouchdb-utils":529}],511:[function(require,module,exports){ +},{"_process":533,"argsarray":71,"pouchdb-binary-utils":516,"pouchdb-errors":522,"pouchdb-fetch":523,"pouchdb-utils":532}],514:[function(require,module,exports){ 'use strict'; var pouchdbAdapterUtils = require('pouchdb-adapter-utils'); @@ -35946,7 +36376,7 @@ function index (PouchDB) { module.exports = index; -},{"pouchdb-adapter-utils":512,"pouchdb-binary-utils":513,"pouchdb-collections":517,"pouchdb-errors":519,"pouchdb-json":523,"pouchdb-merge":526,"pouchdb-utils":529}],512:[function(require,module,exports){ +},{"pouchdb-adapter-utils":515,"pouchdb-binary-utils":516,"pouchdb-collections":520,"pouchdb-errors":522,"pouchdb-json":526,"pouchdb-merge":529,"pouchdb-utils":532}],515:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); @@ -36421,7 +36851,7 @@ exports.preprocessAttachments = preprocessAttachments; exports.processDocs = processDocs; exports.updateDoc = updateDoc; -},{"pouchdb-binary-utils":513,"pouchdb-collections":517,"pouchdb-errors":519,"pouchdb-md5":525,"pouchdb-merge":526,"pouchdb-utils":529}],513:[function(require,module,exports){ +},{"pouchdb-binary-utils":516,"pouchdb-collections":520,"pouchdb-errors":522,"pouchdb-md5":528,"pouchdb-merge":529,"pouchdb-utils":532}],516:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); @@ -36548,7 +36978,7 @@ exports.readAsArrayBuffer = readAsArrayBuffer; exports.readAsBinaryString = readAsBinaryString; exports.typedBuffer = typedBuffer; -},{}],514:[function(require,module,exports){ +},{}],517:[function(require,module,exports){ 'use strict'; var pouchdbErrors = require('pouchdb-errors'); @@ -36681,7 +37111,7 @@ function applyChangesFilterPlugin(PouchDB) { module.exports = applyChangesFilterPlugin; -},{"pouchdb-errors":519,"pouchdb-selector-core":528,"pouchdb-utils":529}],515:[function(require,module,exports){ +},{"pouchdb-errors":522,"pouchdb-selector-core":531,"pouchdb-utils":532}],518:[function(require,module,exports){ 'use strict'; var pouchdbUtils = require('pouchdb-utils'); @@ -36950,7 +37380,7 @@ function isForbiddenError(err) { module.exports = Checkpointer; -},{"pouchdb-collate":516,"pouchdb-utils":529}],516:[function(require,module,exports){ +},{"pouchdb-collate":519,"pouchdb-utils":532}],519:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); @@ -37337,7 +37767,7 @@ exports.normalizeKey = normalizeKey; exports.toIndexableString = toIndexableString; exports.parseIndexableString = parseIndexableString; -},{}],517:[function(require,module,exports){ +},{}],520:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); @@ -37439,7 +37869,7 @@ function supportsMapAndSet() { } } -},{}],518:[function(require,module,exports){ +},{}],521:[function(require,module,exports){ 'use strict'; function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; } @@ -38884,7 +39314,7 @@ PouchDB.version = version; module.exports = PouchDB; -},{"argsarray":71,"events":446,"inherits":462,"pouchdb-changes-filter":514,"pouchdb-collections":517,"pouchdb-errors":519,"pouchdb-fetch":520,"pouchdb-merge":526,"pouchdb-utils":529}],519:[function(require,module,exports){ +},{"argsarray":71,"events":448,"inherits":465,"pouchdb-changes-filter":517,"pouchdb-collections":520,"pouchdb-errors":522,"pouchdb-fetch":523,"pouchdb-merge":529,"pouchdb-utils":532}],522:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); @@ -39012,7 +39442,7 @@ exports.INVALID_URL = INVALID_URL; exports.createError = createError; exports.generateErrorFromResponse = generateErrorFromResponse; -},{"inherits":462}],520:[function(require,module,exports){ +},{"inherits":465}],523:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); @@ -39030,7 +39460,7 @@ exports.fetch = f; exports.Headers = h; exports.AbortController = a; -},{}],521:[function(require,module,exports){ +},{}],524:[function(require,module,exports){ 'use strict'; function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; } @@ -40484,7 +40914,7 @@ plugin.deleteIndex = pouchdbUtils.toPromise(function (indexDef, callback) { module.exports = plugin; -},{"pouchdb-abstract-mapreduce":509,"pouchdb-collate":516,"pouchdb-errors":519,"pouchdb-fetch":520,"pouchdb-md5":525,"pouchdb-selector-core":528,"pouchdb-utils":529}],522:[function(require,module,exports){ +},{"pouchdb-abstract-mapreduce":512,"pouchdb-collate":519,"pouchdb-errors":522,"pouchdb-fetch":523,"pouchdb-md5":528,"pouchdb-selector-core":531,"pouchdb-utils":532}],525:[function(require,module,exports){ 'use strict'; var pouchdbMd5 = require('pouchdb-md5'); @@ -40538,7 +40968,7 @@ function generateReplicationId(src, target, opts) { module.exports = generateReplicationId; -},{"pouchdb-collate":516,"pouchdb-md5":525}],523:[function(require,module,exports){ +},{"pouchdb-collate":519,"pouchdb-md5":528}],526:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); @@ -40571,7 +41001,7 @@ function safeJsonStringify(json) { exports.safeJsonParse = safeJsonParse; exports.safeJsonStringify = safeJsonStringify; -},{"vuvuzela":756}],524:[function(require,module,exports){ +},{"vuvuzela":759}],527:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); @@ -40699,7 +41129,7 @@ exports.QueryParseError = QueryParseError; exports.NotFoundError = NotFoundError; exports.BuiltInError = BuiltInError; -},{"argsarray":71,"inherits":462,"pouchdb-collections":517,"pouchdb-utils":529}],525:[function(require,module,exports){ +},{"argsarray":71,"inherits":465,"pouchdb-collections":520,"pouchdb-utils":532}],528:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); @@ -40784,7 +41214,7 @@ function stringMd5(string) { exports.binaryMd5 = binaryMd5; exports.stringMd5 = stringMd5; -},{"pouchdb-binary-utils":513,"spark-md5":740}],526:[function(require,module,exports){ +},{"pouchdb-binary-utils":516,"spark-md5":743}],529:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); @@ -41252,7 +41682,7 @@ exports.traverseRevTree = traverseRevTree; exports.winningRev = winningRev; exports.latest = latest; -},{}],527:[function(require,module,exports){ +},{}],530:[function(require,module,exports){ 'use strict'; function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; } @@ -42285,7 +42715,7 @@ function replication(PouchDB) { module.exports = replication; -},{"events":446,"inherits":462,"pouchdb-checkpointer":515,"pouchdb-errors":519,"pouchdb-generate-replication-id":522,"pouchdb-utils":529}],528:[function(require,module,exports){ +},{"events":448,"inherits":465,"pouchdb-checkpointer":518,"pouchdb-errors":522,"pouchdb-generate-replication-id":525,"pouchdb-utils":532}],531:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); @@ -42899,7 +43329,7 @@ exports.setFieldInDoc = setFieldInDoc; exports.compare = compare; exports.parseField = parseField; -},{"pouchdb-collate":516,"pouchdb-utils":529}],529:[function(require,module,exports){ +},{"pouchdb-collate":519,"pouchdb-utils":532}],532:[function(require,module,exports){ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); @@ -43702,7 +44132,7 @@ exports.toPromise = toPromise; exports.upsert = upsert; exports.uuid = uuid$1; -},{"argsarray":71,"events":446,"immediate":456,"inherits":462,"pouchdb-collections":517,"pouchdb-errors":519,"pouchdb-md5":525,"uuid":747}],530:[function(require,module,exports){ +},{"argsarray":71,"events":448,"immediate":459,"inherits":465,"pouchdb-collections":520,"pouchdb-errors":522,"pouchdb-md5":528,"uuid":750}],533:[function(require,module,exports){ // shim for using process in browser var process = module.exports = {}; @@ -43888,7 +44318,7 @@ process.chdir = function (dir) { }; process.umask = function() { return 0; }; -},{}],531:[function(require,module,exports){ +},{}],534:[function(require,module,exports){ void function(root){ // return a number between 0 and max-1 @@ -43925,7 +44355,7 @@ void function(root){ }(this) -},{}],532:[function(require,module,exports){ +},{}],535:[function(require,module,exports){ /** * Copyright (c) 2014-present, Facebook, Inc. * @@ -44675,7 +45105,7 @@ try { Function("r", "regeneratorRuntime = r")(runtime); } -},{}],533:[function(require,module,exports){ +},{}],536:[function(require,module,exports){ 'use strict'; var $Object = Object; @@ -44707,7 +45137,7 @@ module.exports = function flags() { return result; }; -},{}],534:[function(require,module,exports){ +},{}],537:[function(require,module,exports){ 'use strict'; var define = require('define-properties'); @@ -44727,11 +45157,11 @@ define(flagsBound, { module.exports = flagsBound; -},{"./implementation":533,"./polyfill":537,"./shim":538,"define-properties":426,"es-abstract/helpers/callBind":536}],535:[function(require,module,exports){ -arguments[4][432][0].apply(exports,arguments) -},{"dup":432,"function-bind":449,"has-symbols":452}],536:[function(require,module,exports){ -arguments[4][429][0].apply(exports,arguments) -},{"../GetIntrinsic":535,"dup":429,"function-bind":449}],537:[function(require,module,exports){ +},{"./implementation":536,"./polyfill":540,"./shim":541,"define-properties":428,"es-abstract/helpers/callBind":539}],538:[function(require,module,exports){ +arguments[4][434][0].apply(exports,arguments) +},{"dup":434,"function-bind":451,"has-symbols":455}],539:[function(require,module,exports){ +arguments[4][431][0].apply(exports,arguments) +},{"../GetIntrinsic":538,"dup":431,"function-bind":451}],540:[function(require,module,exports){ 'use strict'; var implementation = require('./implementation'); @@ -44753,7 +45183,7 @@ module.exports = function getPolyfill() { return implementation; }; -},{"./implementation":533,"define-properties":426}],538:[function(require,module,exports){ +},{"./implementation":536,"define-properties":428}],541:[function(require,module,exports){ 'use strict'; var supportsDescriptors = require('define-properties').supportsDescriptors; @@ -44781,7 +45211,7 @@ module.exports = function shimFlags() { return polyfill; }; -},{"./polyfill":537,"define-properties":426}],539:[function(require,module,exports){ +},{"./polyfill":540,"define-properties":428}],542:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("./internal/Observable"); @@ -44901,7 +45331,7 @@ exports.NEVER = never_2.NEVER; var config_1 = require("./internal/config"); exports.config = config_1.config; -},{"./internal/AsyncSubject":540,"./internal/BehaviorSubject":541,"./internal/Notification":543,"./internal/Observable":544,"./internal/ReplaySubject":547,"./internal/Scheduler":548,"./internal/Subject":549,"./internal/Subscriber":551,"./internal/Subscription":552,"./internal/config":553,"./internal/observable/ConnectableObservable":555,"./internal/observable/bindCallback":557,"./internal/observable/bindNodeCallback":558,"./internal/observable/combineLatest":559,"./internal/observable/concat":560,"./internal/observable/defer":561,"./internal/observable/empty":562,"./internal/observable/forkJoin":563,"./internal/observable/from":564,"./internal/observable/fromEvent":566,"./internal/observable/fromEventPattern":567,"./internal/observable/generate":568,"./internal/observable/iif":569,"./internal/observable/interval":570,"./internal/observable/merge":571,"./internal/observable/never":572,"./internal/observable/of":573,"./internal/observable/onErrorResumeNext":574,"./internal/observable/pairs":575,"./internal/observable/partition":576,"./internal/observable/race":577,"./internal/observable/range":578,"./internal/observable/throwError":579,"./internal/observable/timer":580,"./internal/observable/using":581,"./internal/observable/zip":582,"./internal/operators/groupBy":618,"./internal/scheduled/scheduled":690,"./internal/scheduler/VirtualTimeScheduler":700,"./internal/scheduler/animationFrame":701,"./internal/scheduler/asap":702,"./internal/scheduler/async":703,"./internal/scheduler/queue":704,"./internal/symbol/observable":706,"./internal/util/ArgumentOutOfRangeError":708,"./internal/util/EmptyError":709,"./internal/util/ObjectUnsubscribedError":711,"./internal/util/TimeoutError":712,"./internal/util/UnsubscriptionError":713,"./internal/util/identity":716,"./internal/util/isObservable":725,"./internal/util/noop":728,"./internal/util/pipe":730}],540:[function(require,module,exports){ +},{"./internal/AsyncSubject":543,"./internal/BehaviorSubject":544,"./internal/Notification":546,"./internal/Observable":547,"./internal/ReplaySubject":550,"./internal/Scheduler":551,"./internal/Subject":552,"./internal/Subscriber":554,"./internal/Subscription":555,"./internal/config":556,"./internal/observable/ConnectableObservable":558,"./internal/observable/bindCallback":560,"./internal/observable/bindNodeCallback":561,"./internal/observable/combineLatest":562,"./internal/observable/concat":563,"./internal/observable/defer":564,"./internal/observable/empty":565,"./internal/observable/forkJoin":566,"./internal/observable/from":567,"./internal/observable/fromEvent":569,"./internal/observable/fromEventPattern":570,"./internal/observable/generate":571,"./internal/observable/iif":572,"./internal/observable/interval":573,"./internal/observable/merge":574,"./internal/observable/never":575,"./internal/observable/of":576,"./internal/observable/onErrorResumeNext":577,"./internal/observable/pairs":578,"./internal/observable/partition":579,"./internal/observable/race":580,"./internal/observable/range":581,"./internal/observable/throwError":582,"./internal/observable/timer":583,"./internal/observable/using":584,"./internal/observable/zip":585,"./internal/operators/groupBy":621,"./internal/scheduled/scheduled":693,"./internal/scheduler/VirtualTimeScheduler":703,"./internal/scheduler/animationFrame":704,"./internal/scheduler/asap":705,"./internal/scheduler/async":706,"./internal/scheduler/queue":707,"./internal/symbol/observable":709,"./internal/util/ArgumentOutOfRangeError":711,"./internal/util/EmptyError":712,"./internal/util/ObjectUnsubscribedError":714,"./internal/util/TimeoutError":715,"./internal/util/UnsubscriptionError":716,"./internal/util/identity":719,"./internal/util/isObservable":728,"./internal/util/noop":731,"./internal/util/pipe":733}],543:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -44962,7 +45392,7 @@ var AsyncSubject = (function (_super) { }(Subject_1.Subject)); exports.AsyncSubject = AsyncSubject; -},{"./Subject":549,"./Subscription":552}],541:[function(require,module,exports){ +},{"./Subject":552,"./Subscription":555}],544:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -45019,7 +45449,7 @@ var BehaviorSubject = (function (_super) { }(Subject_1.Subject)); exports.BehaviorSubject = BehaviorSubject; -},{"./Subject":549,"./util/ObjectUnsubscribedError":711}],542:[function(require,module,exports){ +},{"./Subject":552,"./util/ObjectUnsubscribedError":714}],545:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -45061,7 +45491,7 @@ var InnerSubscriber = (function (_super) { }(Subscriber_1.Subscriber)); exports.InnerSubscriber = InnerSubscriber; -},{"./Subscriber":551}],543:[function(require,module,exports){ +},{"./Subscriber":554}],546:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var empty_1 = require("./observable/empty"); @@ -45139,7 +45569,7 @@ var Notification = (function () { }()); exports.Notification = Notification; -},{"./observable/empty":562,"./observable/of":573,"./observable/throwError":579}],544:[function(require,module,exports){ +},{"./observable/empty":565,"./observable/of":576,"./observable/throwError":582}],547:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var canReportError_1 = require("./util/canReportError"); @@ -45257,7 +45687,7 @@ function getPromiseCtor(promiseCtor) { return promiseCtor; } -},{"./config":553,"./symbol/observable":706,"./util/canReportError":714,"./util/pipe":730,"./util/toSubscriber":737}],545:[function(require,module,exports){ +},{"./config":556,"./symbol/observable":709,"./util/canReportError":717,"./util/pipe":733,"./util/toSubscriber":740}],548:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var config_1 = require("./config"); @@ -45276,7 +45706,7 @@ exports.empty = { complete: function () { } }; -},{"./config":553,"./util/hostReportError":715}],546:[function(require,module,exports){ +},{"./config":556,"./util/hostReportError":718}],549:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -45311,7 +45741,7 @@ var OuterSubscriber = (function (_super) { }(Subscriber_1.Subscriber)); exports.OuterSubscriber = OuterSubscriber; -},{"./Subscriber":551}],547:[function(require,module,exports){ +},{"./Subscriber":554}],550:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -45442,7 +45872,7 @@ var ReplayEvent = (function () { return ReplayEvent; }()); -},{"./Subject":549,"./SubjectSubscription":550,"./Subscription":552,"./operators/observeOn":633,"./scheduler/queue":704,"./util/ObjectUnsubscribedError":711}],548:[function(require,module,exports){ +},{"./Subject":552,"./SubjectSubscription":553,"./Subscription":555,"./operators/observeOn":636,"./scheduler/queue":707,"./util/ObjectUnsubscribedError":714}],551:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Scheduler = (function () { @@ -45460,7 +45890,7 @@ var Scheduler = (function () { }()); exports.Scheduler = Scheduler; -},{}],549:[function(require,module,exports){ +},{}],552:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -45632,7 +46062,7 @@ var AnonymousSubject = (function (_super) { }(Subject)); exports.AnonymousSubject = AnonymousSubject; -},{"../internal/symbol/rxSubscriber":707,"./Observable":544,"./SubjectSubscription":550,"./Subscriber":551,"./Subscription":552,"./util/ObjectUnsubscribedError":711}],550:[function(require,module,exports){ +},{"../internal/symbol/rxSubscriber":710,"./Observable":547,"./SubjectSubscription":553,"./Subscriber":554,"./Subscription":555,"./util/ObjectUnsubscribedError":714}],553:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -45678,7 +46108,7 @@ var SubjectSubscription = (function (_super) { }(Subscription_1.Subscription)); exports.SubjectSubscription = SubjectSubscription; -},{"./Subscription":552}],551:[function(require,module,exports){ +},{"./Subscription":555}],554:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -45925,7 +46355,7 @@ var SafeSubscriber = (function (_super) { }(Subscriber)); exports.SafeSubscriber = SafeSubscriber; -},{"../internal/symbol/rxSubscriber":707,"./Observer":545,"./Subscription":552,"./config":553,"./util/hostReportError":715,"./util/isFunction":720}],552:[function(require,module,exports){ +},{"../internal/symbol/rxSubscriber":710,"./Observer":548,"./Subscription":555,"./config":556,"./util/hostReportError":718,"./util/isFunction":723}],555:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var isArray_1 = require("./util/isArray"); @@ -46067,7 +46497,7 @@ function flattenUnsubscriptionErrors(errors) { return errors.reduce(function (errs, err) { return errs.concat((err instanceof UnsubscriptionError_1.UnsubscriptionError) ? err.errors : err); }, []); } -},{"./util/UnsubscriptionError":713,"./util/isArray":717,"./util/isFunction":720,"./util/isObject":724}],553:[function(require,module,exports){ +},{"./util/UnsubscriptionError":716,"./util/isArray":720,"./util/isFunction":723,"./util/isObject":727}],556:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var _enable_super_gross_mode_that_will_cause_bad_things = false; @@ -46088,7 +46518,7 @@ exports.config = { }, }; -},{}],554:[function(require,module,exports){ +},{}],557:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -46196,7 +46626,7 @@ function innerSubscribe(result, innerSubscriber) { } exports.innerSubscribe = innerSubscribe; -},{"./Observable":544,"./Subscriber":551,"./util/subscribeTo":731}],555:[function(require,module,exports){ +},{"./Observable":547,"./Subscriber":554,"./util/subscribeTo":734}],558:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -46352,7 +46782,7 @@ var RefCountSubscriber = (function (_super) { return RefCountSubscriber; }(Subscriber_1.Subscriber)); -},{"../Observable":544,"../Subject":549,"../Subscriber":551,"../Subscription":552,"../operators/refCount":644}],556:[function(require,module,exports){ +},{"../Observable":547,"../Subject":552,"../Subscriber":554,"../Subscription":555,"../operators/refCount":647}],559:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -46409,7 +46839,7 @@ var SubscribeOnObservable = (function (_super) { }(Observable_1.Observable)); exports.SubscribeOnObservable = SubscribeOnObservable; -},{"../Observable":544,"../scheduler/asap":702,"../util/isNumeric":723}],557:[function(require,module,exports){ +},{"../Observable":547,"../scheduler/asap":705,"../util/isNumeric":726}],560:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -46517,7 +46947,7 @@ function dispatchError(state) { subject.error(err); } -},{"../AsyncSubject":540,"../Observable":544,"../operators/map":622,"../util/canReportError":714,"../util/isArray":717,"../util/isScheduler":727}],558:[function(require,module,exports){ +},{"../AsyncSubject":543,"../Observable":547,"../operators/map":625,"../util/canReportError":717,"../util/isArray":720,"../util/isScheduler":730}],561:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -46633,7 +47063,7 @@ function dispatchError(arg) { subject.error(err); } -},{"../AsyncSubject":540,"../Observable":544,"../operators/map":622,"../util/canReportError":714,"../util/isArray":717,"../util/isScheduler":727}],559:[function(require,module,exports){ +},{"../AsyncSubject":543,"../Observable":547,"../operators/map":625,"../util/canReportError":717,"../util/isArray":720,"../util/isScheduler":730}],562:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -46749,7 +47179,7 @@ var CombineLatestSubscriber = (function (_super) { }(OuterSubscriber_1.OuterSubscriber)); exports.CombineLatestSubscriber = CombineLatestSubscriber; -},{"../OuterSubscriber":546,"../util/isArray":717,"../util/isScheduler":727,"../util/subscribeToResult":736,"./fromArray":565}],560:[function(require,module,exports){ +},{"../OuterSubscriber":549,"../util/isArray":720,"../util/isScheduler":730,"../util/subscribeToResult":739,"./fromArray":568}],563:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var of_1 = require("./of"); @@ -46763,7 +47193,7 @@ function concat() { } exports.concat = concat; -},{"../operators/concatAll":594,"./of":573}],561:[function(require,module,exports){ +},{"../operators/concatAll":597,"./of":576}],564:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -46785,7 +47215,7 @@ function defer(observableFactory) { } exports.defer = defer; -},{"../Observable":544,"./empty":562,"./from":564}],562:[function(require,module,exports){ +},{"../Observable":547,"./empty":565,"./from":567}],565:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -46798,7 +47228,7 @@ function emptyScheduled(scheduler) { return new Observable_1.Observable(function (subscriber) { return scheduler.schedule(function () { return subscriber.complete(); }); }); } -},{"../Observable":544}],563:[function(require,module,exports){ +},{"../Observable":547}],566:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -46870,7 +47300,7 @@ function forkJoinInternal(sources, keys) { }); } -},{"../Observable":544,"../operators/map":622,"../util/isArray":717,"../util/isObject":724,"./from":564}],564:[function(require,module,exports){ +},{"../Observable":547,"../operators/map":625,"../util/isArray":720,"../util/isObject":727,"./from":567}],567:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -46889,7 +47319,7 @@ function from(input, scheduler) { } exports.from = from; -},{"../Observable":544,"../scheduled/scheduled":690,"../util/subscribeTo":731}],565:[function(require,module,exports){ +},{"../Observable":547,"../scheduled/scheduled":693,"../util/subscribeTo":734}],568:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -46905,7 +47335,7 @@ function fromArray(input, scheduler) { } exports.fromArray = fromArray; -},{"../Observable":544,"../scheduled/scheduleArray":686,"../util/subscribeToArray":732}],566:[function(require,module,exports){ +},{"../Observable":547,"../scheduled/scheduleArray":689,"../util/subscribeToArray":735}],569:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -46971,7 +47401,7 @@ function isEventTarget(sourceObj) { return sourceObj && typeof sourceObj.addEventListener === 'function' && typeof sourceObj.removeEventListener === 'function'; } -},{"../Observable":544,"../operators/map":622,"../util/isArray":717,"../util/isFunction":720}],567:[function(require,module,exports){ +},{"../Observable":547,"../operators/map":625,"../util/isArray":720,"../util/isFunction":723}],570:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -47006,7 +47436,7 @@ function fromEventPattern(addHandler, removeHandler, resultSelector) { } exports.fromEventPattern = fromEventPattern; -},{"../Observable":544,"../operators/map":622,"../util/isArray":717,"../util/isFunction":720}],568:[function(require,module,exports){ +},{"../Observable":547,"../operators/map":625,"../util/isArray":720,"../util/isFunction":723}],571:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -47134,7 +47564,7 @@ function dispatch(state) { return this.schedule(state); } -},{"../Observable":544,"../util/identity":716,"../util/isScheduler":727}],569:[function(require,module,exports){ +},{"../Observable":547,"../util/identity":719,"../util/isScheduler":730}],572:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var defer_1 = require("./defer"); @@ -47146,7 +47576,7 @@ function iif(condition, trueResult, falseResult) { } exports.iif = iif; -},{"./defer":561,"./empty":562}],570:[function(require,module,exports){ +},{"./defer":564,"./empty":565}],573:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -47173,7 +47603,7 @@ function dispatch(state) { this.schedule({ subscriber: subscriber, counter: counter + 1, period: period }, period); } -},{"../Observable":544,"../scheduler/async":703,"../util/isNumeric":723}],571:[function(require,module,exports){ +},{"../Observable":547,"../scheduler/async":706,"../util/isNumeric":726}],574:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -47204,7 +47634,7 @@ function merge() { } exports.merge = merge; -},{"../Observable":544,"../operators/mergeAll":627,"../util/isScheduler":727,"./fromArray":565}],572:[function(require,module,exports){ +},{"../Observable":547,"../operators/mergeAll":630,"../util/isScheduler":730,"./fromArray":568}],575:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -47215,7 +47645,7 @@ function never() { } exports.never = never; -},{"../Observable":544,"../util/noop":728}],573:[function(require,module,exports){ +},{"../Observable":547,"../util/noop":731}],576:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var isScheduler_1 = require("../util/isScheduler"); @@ -47237,7 +47667,7 @@ function of() { } exports.of = of; -},{"../scheduled/scheduleArray":686,"../util/isScheduler":727,"./fromArray":565}],574:[function(require,module,exports){ +},{"../scheduled/scheduleArray":689,"../util/isScheduler":730,"./fromArray":568}],577:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -47267,7 +47697,7 @@ function onErrorResumeNext() { } exports.onErrorResumeNext = onErrorResumeNext; -},{"../Observable":544,"../util/isArray":717,"./empty":562,"./from":564}],575:[function(require,module,exports){ +},{"../Observable":547,"../util/isArray":720,"./empty":565,"./from":567}],578:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -47310,7 +47740,7 @@ function dispatch(state) { } exports.dispatch = dispatch; -},{"../Observable":544,"../Subscription":552}],576:[function(require,module,exports){ +},{"../Observable":547,"../Subscription":555}],579:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var not_1 = require("../util/not"); @@ -47325,7 +47755,7 @@ function partition(source, predicate, thisArg) { } exports.partition = partition; -},{"../Observable":544,"../operators/filter":613,"../util/not":729,"../util/subscribeTo":731}],577:[function(require,module,exports){ +},{"../Observable":547,"../operators/filter":616,"../util/not":732,"../util/subscribeTo":734}],580:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -47418,7 +47848,7 @@ var RaceSubscriber = (function (_super) { }(OuterSubscriber_1.OuterSubscriber)); exports.RaceSubscriber = RaceSubscriber; -},{"../OuterSubscriber":546,"../util/isArray":717,"../util/subscribeToResult":736,"./fromArray":565}],578:[function(require,module,exports){ +},{"../OuterSubscriber":549,"../util/isArray":720,"../util/subscribeToResult":739,"./fromArray":568}],581:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -47468,7 +47898,7 @@ function dispatch(state) { } exports.dispatch = dispatch; -},{"../Observable":544}],579:[function(require,module,exports){ +},{"../Observable":547}],582:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -47486,7 +47916,7 @@ function dispatch(_a) { subscriber.error(error); } -},{"../Observable":544}],580:[function(require,module,exports){ +},{"../Observable":547}],583:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -47528,7 +47958,7 @@ function dispatch(state) { this.schedule(state, period); } -},{"../Observable":544,"../scheduler/async":703,"../util/isNumeric":723,"../util/isScheduler":727}],581:[function(require,module,exports){ +},{"../Observable":547,"../scheduler/async":706,"../util/isNumeric":726,"../util/isScheduler":730}],584:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -47564,7 +47994,7 @@ function using(resourceFactory, observableFactory) { } exports.using = using; -},{"../Observable":544,"./empty":562,"./from":564}],582:[function(require,module,exports){ +},{"../Observable":547,"./empty":565,"./from":567}],585:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -47794,7 +48224,7 @@ var ZipBufferIterator = (function (_super) { return ZipBufferIterator; }(innerSubscribe_1.SimpleOuterSubscriber)); -},{"../../internal/symbol/iterator":705,"../Subscriber":551,"../innerSubscribe":554,"../util/isArray":717,"./fromArray":565}],583:[function(require,module,exports){ +},{"../../internal/symbol/iterator":708,"../Subscriber":554,"../innerSubscribe":557,"../util/isArray":720,"./fromArray":568}],586:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -47877,7 +48307,7 @@ var AuditSubscriber = (function (_super) { return AuditSubscriber; }(innerSubscribe_1.SimpleOuterSubscriber)); -},{"../innerSubscribe":554}],584:[function(require,module,exports){ +},{"../innerSubscribe":557}],587:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var async_1 = require("../scheduler/async"); @@ -47889,7 +48319,7 @@ function auditTime(duration, scheduler) { } exports.auditTime = auditTime; -},{"../observable/timer":580,"../scheduler/async":703,"./audit":583}],585:[function(require,module,exports){ +},{"../observable/timer":583,"../scheduler/async":706,"./audit":586}],588:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -47940,7 +48370,7 @@ var BufferSubscriber = (function (_super) { return BufferSubscriber; }(innerSubscribe_1.SimpleOuterSubscriber)); -},{"../innerSubscribe":554}],586:[function(require,module,exports){ +},{"../innerSubscribe":557}],589:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -48043,7 +48473,7 @@ var BufferSkipCountSubscriber = (function (_super) { return BufferSkipCountSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],587:[function(require,module,exports){ +},{"../Subscriber":554}],590:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -48206,7 +48636,7 @@ function dispatchBufferClose(arg) { subscriber.closeContext(context); } -},{"../Subscriber":551,"../scheduler/async":703,"../util/isScheduler":727}],588:[function(require,module,exports){ +},{"../Subscriber":554,"../scheduler/async":706,"../util/isScheduler":730}],591:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -48327,7 +48757,7 @@ var BufferToggleSubscriber = (function (_super) { return BufferToggleSubscriber; }(OuterSubscriber_1.OuterSubscriber)); -},{"../OuterSubscriber":546,"../Subscription":552,"../util/subscribeToResult":736}],589:[function(require,module,exports){ +},{"../OuterSubscriber":549,"../Subscription":555,"../util/subscribeToResult":739}],592:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -48423,7 +48853,7 @@ var BufferWhenSubscriber = (function (_super) { return BufferWhenSubscriber; }(innerSubscribe_1.SimpleOuterSubscriber)); -},{"../Subscription":552,"../innerSubscribe":554}],590:[function(require,module,exports){ +},{"../Subscription":555,"../innerSubscribe":557}],593:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -48487,7 +48917,7 @@ var CatchSubscriber = (function (_super) { return CatchSubscriber; }(innerSubscribe_1.SimpleOuterSubscriber)); -},{"../innerSubscribe":554}],591:[function(require,module,exports){ +},{"../innerSubscribe":557}],594:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var combineLatest_1 = require("../observable/combineLatest"); @@ -48496,7 +48926,7 @@ function combineAll(project) { } exports.combineAll = combineAll; -},{"../observable/combineLatest":559}],592:[function(require,module,exports){ +},{"../observable/combineLatest":562}],595:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var isArray_1 = require("../util/isArray"); @@ -48519,7 +48949,7 @@ function combineLatest() { } exports.combineLatest = combineLatest; -},{"../observable/combineLatest":559,"../observable/from":564,"../util/isArray":717}],593:[function(require,module,exports){ +},{"../observable/combineLatest":562,"../observable/from":567,"../util/isArray":720}],596:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var concat_1 = require("../observable/concat"); @@ -48532,7 +48962,7 @@ function concat() { } exports.concat = concat; -},{"../observable/concat":560}],594:[function(require,module,exports){ +},{"../observable/concat":563}],597:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var mergeAll_1 = require("./mergeAll"); @@ -48541,7 +48971,7 @@ function concatAll() { } exports.concatAll = concatAll; -},{"./mergeAll":627}],595:[function(require,module,exports){ +},{"./mergeAll":630}],598:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var mergeMap_1 = require("./mergeMap"); @@ -48550,7 +48980,7 @@ function concatMap(project, resultSelector) { } exports.concatMap = concatMap; -},{"./mergeMap":628}],596:[function(require,module,exports){ +},{"./mergeMap":631}],599:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var concatMap_1 = require("./concatMap"); @@ -48559,7 +48989,7 @@ function concatMapTo(innerObservable, resultSelector) { } exports.concatMapTo = concatMapTo; -},{"./concatMap":595}],597:[function(require,module,exports){ +},{"./concatMap":598}],600:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -48628,7 +49058,7 @@ var CountSubscriber = (function (_super) { return CountSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],598:[function(require,module,exports){ +},{"../Subscriber":554}],601:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -48717,7 +49147,7 @@ var DebounceSubscriber = (function (_super) { return DebounceSubscriber; }(innerSubscribe_1.SimpleOuterSubscriber)); -},{"../innerSubscribe":554}],599:[function(require,module,exports){ +},{"../innerSubscribe":557}],602:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -48794,7 +49224,7 @@ function dispatchNext(subscriber) { subscriber.debouncedNext(); } -},{"../Subscriber":551,"../scheduler/async":703}],600:[function(require,module,exports){ +},{"../Subscriber":554,"../scheduler/async":706}],603:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -48846,7 +49276,7 @@ var DefaultIfEmptySubscriber = (function (_super) { return DefaultIfEmptySubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],601:[function(require,module,exports){ +},{"../Subscriber":554}],604:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -48952,7 +49382,7 @@ var DelayMessage = (function () { return DelayMessage; }()); -},{"../Notification":543,"../Subscriber":551,"../scheduler/async":703,"../util/isDate":719}],602:[function(require,module,exports){ +},{"../Notification":546,"../Subscriber":554,"../scheduler/async":706,"../util/isDate":722}],605:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -49099,7 +49529,7 @@ var SubscriptionDelaySubscriber = (function (_super) { return SubscriptionDelaySubscriber; }(Subscriber_1.Subscriber)); -},{"../Observable":544,"../OuterSubscriber":546,"../Subscriber":551,"../util/subscribeToResult":736}],603:[function(require,module,exports){ +},{"../Observable":547,"../OuterSubscriber":549,"../Subscriber":554,"../util/subscribeToResult":739}],606:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -49141,7 +49571,7 @@ var DeMaterializeSubscriber = (function (_super) { return DeMaterializeSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],604:[function(require,module,exports){ +},{"../Subscriber":554}],607:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -49220,7 +49650,7 @@ var DistinctSubscriber = (function (_super) { }(innerSubscribe_1.SimpleOuterSubscriber)); exports.DistinctSubscriber = DistinctSubscriber; -},{"../innerSubscribe":554}],605:[function(require,module,exports){ +},{"../innerSubscribe":557}],608:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -49295,7 +49725,7 @@ var DistinctUntilChangedSubscriber = (function (_super) { return DistinctUntilChangedSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],606:[function(require,module,exports){ +},{"../Subscriber":554}],609:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var distinctUntilChanged_1 = require("./distinctUntilChanged"); @@ -49304,7 +49734,7 @@ function distinctUntilKeyChanged(key, compare) { } exports.distinctUntilKeyChanged = distinctUntilKeyChanged; -},{"./distinctUntilChanged":605}],607:[function(require,module,exports){ +},{"./distinctUntilChanged":608}],610:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var ArgumentOutOfRangeError_1 = require("../util/ArgumentOutOfRangeError"); @@ -49323,7 +49753,7 @@ function elementAt(index, defaultValue) { } exports.elementAt = elementAt; -},{"../util/ArgumentOutOfRangeError":708,"./defaultIfEmpty":600,"./filter":613,"./take":665,"./throwIfEmpty":672}],608:[function(require,module,exports){ +},{"../util/ArgumentOutOfRangeError":711,"./defaultIfEmpty":603,"./filter":616,"./take":668,"./throwIfEmpty":675}],611:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var concat_1 = require("../observable/concat"); @@ -49337,7 +49767,7 @@ function endWith() { } exports.endWith = endWith; -},{"../observable/concat":560,"../observable/of":573}],609:[function(require,module,exports){ +},{"../observable/concat":563,"../observable/of":576}],612:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -49403,7 +49833,7 @@ var EverySubscriber = (function (_super) { return EverySubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],610:[function(require,module,exports){ +},{"../Subscriber":554}],613:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -49461,7 +49891,7 @@ var SwitchFirstSubscriber = (function (_super) { return SwitchFirstSubscriber; }(innerSubscribe_1.SimpleOuterSubscriber)); -},{"../innerSubscribe":554}],611:[function(require,module,exports){ +},{"../innerSubscribe":557}],614:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -49557,7 +49987,7 @@ var ExhaustMapSubscriber = (function (_super) { return ExhaustMapSubscriber; }(innerSubscribe_1.SimpleOuterSubscriber)); -},{"../innerSubscribe":554,"../observable/from":564,"./map":622}],612:[function(require,module,exports){ +},{"../innerSubscribe":557,"../observable/from":567,"./map":625}],615:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -49669,7 +50099,7 @@ var ExpandSubscriber = (function (_super) { }(innerSubscribe_1.SimpleOuterSubscriber)); exports.ExpandSubscriber = ExpandSubscriber; -},{"../innerSubscribe":554}],613:[function(require,module,exports){ +},{"../innerSubscribe":557}],616:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -49727,7 +50157,7 @@ var FilterSubscriber = (function (_super) { return FilterSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],614:[function(require,module,exports){ +},{"../Subscriber":554}],617:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -49768,7 +50198,7 @@ var FinallySubscriber = (function (_super) { return FinallySubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551,"../Subscription":552}],615:[function(require,module,exports){ +},{"../Subscriber":554,"../Subscription":555}],618:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -49842,7 +50272,7 @@ var FindValueSubscriber = (function (_super) { }(Subscriber_1.Subscriber)); exports.FindValueSubscriber = FindValueSubscriber; -},{"../Subscriber":551}],616:[function(require,module,exports){ +},{"../Subscriber":554}],619:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var find_1 = require("../operators/find"); @@ -49851,7 +50281,7 @@ function findIndex(predicate, thisArg) { } exports.findIndex = findIndex; -},{"../operators/find":615}],617:[function(require,module,exports){ +},{"../operators/find":618}],620:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var EmptyError_1 = require("../util/EmptyError"); @@ -49866,7 +50296,7 @@ function first(predicate, defaultValue) { } exports.first = first; -},{"../util/EmptyError":709,"../util/identity":716,"./defaultIfEmpty":600,"./filter":613,"./take":665,"./throwIfEmpty":672}],618:[function(require,module,exports){ +},{"../util/EmptyError":712,"../util/identity":719,"./defaultIfEmpty":603,"./filter":616,"./take":668,"./throwIfEmpty":675}],621:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -50063,7 +50493,7 @@ var InnerRefCountSubscription = (function (_super) { return InnerRefCountSubscription; }(Subscription_1.Subscription)); -},{"../Observable":544,"../Subject":549,"../Subscriber":551,"../Subscription":552}],619:[function(require,module,exports){ +},{"../Observable":547,"../Subject":552,"../Subscriber":554,"../Subscription":555}],622:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -50104,7 +50534,7 @@ var IgnoreElementsSubscriber = (function (_super) { return IgnoreElementsSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],620:[function(require,module,exports){ +},{"../Subscriber":554}],623:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -50152,7 +50582,7 @@ var IsEmptySubscriber = (function (_super) { return IsEmptySubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],621:[function(require,module,exports){ +},{"../Subscriber":554}],624:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var EmptyError_1 = require("../util/EmptyError"); @@ -50167,7 +50597,7 @@ function last(predicate, defaultValue) { } exports.last = last; -},{"../util/EmptyError":709,"../util/identity":716,"./defaultIfEmpty":600,"./filter":613,"./takeLast":666,"./throwIfEmpty":672}],622:[function(require,module,exports){ +},{"../util/EmptyError":712,"../util/identity":719,"./defaultIfEmpty":603,"./filter":616,"./takeLast":669,"./throwIfEmpty":675}],625:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -50227,7 +50657,7 @@ var MapSubscriber = (function (_super) { return MapSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],623:[function(require,module,exports){ +},{"../Subscriber":554}],626:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -50270,7 +50700,7 @@ var MapToSubscriber = (function (_super) { return MapToSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],624:[function(require,module,exports){ +},{"../Subscriber":554}],627:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -50323,7 +50753,7 @@ var MaterializeSubscriber = (function (_super) { return MaterializeSubscriber; }(Subscriber_1.Subscriber)); -},{"../Notification":543,"../Subscriber":551}],625:[function(require,module,exports){ +},{"../Notification":546,"../Subscriber":554}],628:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var reduce_1 = require("./reduce"); @@ -50335,7 +50765,7 @@ function max(comparer) { } exports.max = max; -},{"./reduce":643}],626:[function(require,module,exports){ +},{"./reduce":646}],629:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var merge_1 = require("../observable/merge"); @@ -50348,7 +50778,7 @@ function merge() { } exports.merge = merge; -},{"../observable/merge":571}],627:[function(require,module,exports){ +},{"../observable/merge":574}],630:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var mergeMap_1 = require("./mergeMap"); @@ -50359,7 +50789,7 @@ function mergeAll(concurrent) { } exports.mergeAll = mergeAll; -},{"../util/identity":716,"./mergeMap":628}],628:[function(require,module,exports){ +},{"../util/identity":719,"./mergeMap":631}],631:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -50469,7 +50899,7 @@ var MergeMapSubscriber = (function (_super) { exports.MergeMapSubscriber = MergeMapSubscriber; exports.flatMap = mergeMap; -},{"../innerSubscribe":554,"../observable/from":564,"./map":622}],629:[function(require,module,exports){ +},{"../innerSubscribe":557,"../observable/from":567,"./map":625}],632:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var mergeMap_1 = require("./mergeMap"); @@ -50485,7 +50915,7 @@ function mergeMapTo(innerObservable, resultSelector, concurrent) { } exports.mergeMapTo = mergeMapTo; -},{"./mergeMap":628}],630:[function(require,module,exports){ +},{"./mergeMap":631}],633:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -50594,7 +51024,7 @@ var MergeScanSubscriber = (function (_super) { }(innerSubscribe_1.SimpleOuterSubscriber)); exports.MergeScanSubscriber = MergeScanSubscriber; -},{"../innerSubscribe":554}],631:[function(require,module,exports){ +},{"../innerSubscribe":557}],634:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var reduce_1 = require("./reduce"); @@ -50606,7 +51036,7 @@ function min(comparer) { } exports.min = min; -},{"./reduce":643}],632:[function(require,module,exports){ +},{"./reduce":646}],635:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var ConnectableObservable_1 = require("../observable/ConnectableObservable"); @@ -50647,7 +51077,7 @@ var MulticastOperator = (function () { }()); exports.MulticastOperator = MulticastOperator; -},{"../observable/ConnectableObservable":555}],633:[function(require,module,exports){ +},{"../observable/ConnectableObservable":558}],636:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -50725,7 +51155,7 @@ var ObserveOnMessage = (function () { }()); exports.ObserveOnMessage = ObserveOnMessage; -},{"../Notification":543,"../Subscriber":551}],634:[function(require,module,exports){ +},{"../Notification":546,"../Subscriber":554}],637:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -50817,7 +51247,7 @@ var OnErrorResumeNextSubscriber = (function (_super) { return OnErrorResumeNextSubscriber; }(innerSubscribe_1.SimpleOuterSubscriber)); -},{"../innerSubscribe":554,"../observable/from":564,"../util/isArray":717}],635:[function(require,module,exports){ +},{"../innerSubscribe":557,"../observable/from":567,"../util/isArray":720}],638:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -50869,7 +51299,7 @@ var PairwiseSubscriber = (function (_super) { return PairwiseSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],636:[function(require,module,exports){ +},{"../Subscriber":554}],639:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var not_1 = require("../util/not"); @@ -50882,7 +51312,7 @@ function partition(predicate, thisArg) { } exports.partition = partition; -},{"../util/not":729,"./filter":613}],637:[function(require,module,exports){ +},{"../util/not":732,"./filter":616}],640:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var map_1 = require("./map"); @@ -50915,7 +51345,7 @@ function plucker(props, length) { return mapper; } -},{"./map":622}],638:[function(require,module,exports){ +},{"./map":625}],641:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Subject_1 = require("../Subject"); @@ -50927,7 +51357,7 @@ function publish(selector) { } exports.publish = publish; -},{"../Subject":549,"./multicast":632}],639:[function(require,module,exports){ +},{"../Subject":552,"./multicast":635}],642:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var BehaviorSubject_1 = require("../BehaviorSubject"); @@ -50937,7 +51367,7 @@ function publishBehavior(value) { } exports.publishBehavior = publishBehavior; -},{"../BehaviorSubject":541,"./multicast":632}],640:[function(require,module,exports){ +},{"../BehaviorSubject":544,"./multicast":635}],643:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var AsyncSubject_1 = require("../AsyncSubject"); @@ -50947,7 +51377,7 @@ function publishLast() { } exports.publishLast = publishLast; -},{"../AsyncSubject":540,"./multicast":632}],641:[function(require,module,exports){ +},{"../AsyncSubject":543,"./multicast":635}],644:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var ReplaySubject_1 = require("../ReplaySubject"); @@ -50962,7 +51392,7 @@ function publishReplay(bufferSize, windowTime, selectorOrScheduler, scheduler) { } exports.publishReplay = publishReplay; -},{"../ReplaySubject":547,"./multicast":632}],642:[function(require,module,exports){ +},{"../ReplaySubject":550,"./multicast":635}],645:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var isArray_1 = require("../util/isArray"); @@ -50981,7 +51411,7 @@ function race() { } exports.race = race; -},{"../observable/race":577,"../util/isArray":717}],643:[function(require,module,exports){ +},{"../observable/race":580,"../util/isArray":720}],646:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var scan_1 = require("./scan"); @@ -51000,7 +51430,7 @@ function reduce(accumulator, seed) { } exports.reduce = reduce; -},{"../util/pipe":730,"./defaultIfEmpty":600,"./scan":651,"./takeLast":666}],644:[function(require,module,exports){ +},{"../util/pipe":733,"./defaultIfEmpty":603,"./scan":654,"./takeLast":669}],647:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -51073,7 +51503,7 @@ var RefCountSubscriber = (function (_super) { return RefCountSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],645:[function(require,module,exports){ +},{"../Subscriber":554}],648:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -51139,7 +51569,7 @@ var RepeatSubscriber = (function (_super) { return RepeatSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551,"../observable/empty":562}],646:[function(require,module,exports){ +},{"../Subscriber":554,"../observable/empty":565}],649:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -51236,7 +51666,7 @@ var RepeatWhenSubscriber = (function (_super) { return RepeatWhenSubscriber; }(innerSubscribe_1.SimpleOuterSubscriber)); -},{"../Subject":549,"../innerSubscribe":554}],647:[function(require,module,exports){ +},{"../Subject":552,"../innerSubscribe":557}],650:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -51291,7 +51721,7 @@ var RetrySubscriber = (function (_super) { return RetrySubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],648:[function(require,module,exports){ +},{"../Subscriber":554}],651:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -51380,7 +51810,7 @@ var RetryWhenSubscriber = (function (_super) { return RetryWhenSubscriber; }(innerSubscribe_1.SimpleOuterSubscriber)); -},{"../Subject":549,"../innerSubscribe":554}],649:[function(require,module,exports){ +},{"../Subject":552,"../innerSubscribe":557}],652:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -51439,7 +51869,7 @@ var SampleSubscriber = (function (_super) { return SampleSubscriber; }(innerSubscribe_1.SimpleOuterSubscriber)); -},{"../innerSubscribe":554}],650:[function(require,module,exports){ +},{"../innerSubscribe":557}],653:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -51500,7 +51930,7 @@ function dispatchNotification(state) { this.schedule(state, period); } -},{"../Subscriber":551,"../scheduler/async":703}],651:[function(require,module,exports){ +},{"../Subscriber":554,"../scheduler/async":706}],654:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -51584,7 +52014,7 @@ var ScanSubscriber = (function (_super) { return ScanSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],652:[function(require,module,exports){ +},{"../Subscriber":554}],655:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -51709,7 +52139,7 @@ var SequenceEqualCompareToSubscriber = (function (_super) { return SequenceEqualCompareToSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],653:[function(require,module,exports){ +},{"../Subscriber":554}],656:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var multicast_1 = require("./multicast"); @@ -51723,7 +52153,7 @@ function share() { } exports.share = share; -},{"../Subject":549,"./multicast":632,"./refCount":644}],654:[function(require,module,exports){ +},{"../Subject":552,"./multicast":635,"./refCount":647}],657:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var ReplaySubject_1 = require("../ReplaySubject"); @@ -51785,7 +52215,7 @@ function shareReplayOperator(_a) { }; } -},{"../ReplaySubject":547}],655:[function(require,module,exports){ +},{"../ReplaySubject":550}],658:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -51868,7 +52298,7 @@ var SingleSubscriber = (function (_super) { return SingleSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551,"../util/EmptyError":709}],656:[function(require,module,exports){ +},{"../Subscriber":554,"../util/EmptyError":712}],659:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -51914,7 +52344,7 @@ var SkipSubscriber = (function (_super) { return SkipSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],657:[function(require,module,exports){ +},{"../Subscriber":554}],660:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -51979,7 +52409,7 @@ var SkipLastSubscriber = (function (_super) { return SkipLastSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551,"../util/ArgumentOutOfRangeError":708}],658:[function(require,module,exports){ +},{"../Subscriber":554,"../util/ArgumentOutOfRangeError":711}],661:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -52040,7 +52470,7 @@ var SkipUntilSubscriber = (function (_super) { return SkipUntilSubscriber; }(innerSubscribe_1.SimpleOuterSubscriber)); -},{"../innerSubscribe":554}],659:[function(require,module,exports){ +},{"../innerSubscribe":557}],662:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -52100,7 +52530,7 @@ var SkipWhileSubscriber = (function (_super) { return SkipWhileSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],660:[function(require,module,exports){ +},{"../Subscriber":554}],663:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var concat_1 = require("../observable/concat"); @@ -52121,7 +52551,7 @@ function startWith() { } exports.startWith = startWith; -},{"../observable/concat":560,"../util/isScheduler":727}],661:[function(require,module,exports){ +},{"../observable/concat":563,"../util/isScheduler":730}],664:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var SubscribeOnObservable_1 = require("../observable/SubscribeOnObservable"); @@ -52143,7 +52573,7 @@ var SubscribeOnOperator = (function () { return SubscribeOnOperator; }()); -},{"../observable/SubscribeOnObservable":556}],662:[function(require,module,exports){ +},{"../observable/SubscribeOnObservable":559}],665:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var switchMap_1 = require("./switchMap"); @@ -52153,7 +52583,7 @@ function switchAll() { } exports.switchAll = switchAll; -},{"../util/identity":716,"./switchMap":663}],663:[function(require,module,exports){ +},{"../util/identity":719,"./switchMap":666}],666:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -52243,7 +52673,7 @@ var SwitchMapSubscriber = (function (_super) { return SwitchMapSubscriber; }(innerSubscribe_1.SimpleOuterSubscriber)); -},{"../innerSubscribe":554,"../observable/from":564,"./map":622}],664:[function(require,module,exports){ +},{"../innerSubscribe":557,"../observable/from":567,"./map":625}],667:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var switchMap_1 = require("./switchMap"); @@ -52252,7 +52682,7 @@ function switchMapTo(innerObservable, resultSelector) { } exports.switchMapTo = switchMapTo; -},{"./switchMap":663}],665:[function(require,module,exports){ +},{"./switchMap":666}],668:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -52316,7 +52746,7 @@ var TakeSubscriber = (function (_super) { return TakeSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551,"../observable/empty":562,"../util/ArgumentOutOfRangeError":708}],666:[function(require,module,exports){ +},{"../Subscriber":554,"../observable/empty":565,"../util/ArgumentOutOfRangeError":711}],669:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -52395,7 +52825,7 @@ var TakeLastSubscriber = (function (_super) { return TakeLastSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551,"../observable/empty":562,"../util/ArgumentOutOfRangeError":708}],667:[function(require,module,exports){ +},{"../Subscriber":554,"../observable/empty":565,"../util/ArgumentOutOfRangeError":711}],670:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -52447,7 +52877,7 @@ var TakeUntilSubscriber = (function (_super) { return TakeUntilSubscriber; }(innerSubscribe_1.SimpleOuterSubscriber)); -},{"../innerSubscribe":554}],668:[function(require,module,exports){ +},{"../innerSubscribe":557}],671:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -52517,7 +52947,7 @@ var TakeWhileSubscriber = (function (_super) { return TakeWhileSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551}],669:[function(require,module,exports){ +},{"../Subscriber":554}],672:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -52607,7 +53037,7 @@ var TapSubscriber = (function (_super) { return TapSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subscriber":551,"../util/isFunction":720,"../util/noop":728}],670:[function(require,module,exports){ +},{"../Subscriber":554,"../util/isFunction":723,"../util/noop":731}],673:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -52710,7 +53140,7 @@ var ThrottleSubscriber = (function (_super) { return ThrottleSubscriber; }(innerSubscribe_1.SimpleOuterSubscriber)); -},{"../innerSubscribe":554}],671:[function(require,module,exports){ +},{"../innerSubscribe":557}],674:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -52806,7 +53236,7 @@ function dispatchNext(arg) { subscriber.clearThrottle(); } -},{"../Subscriber":551,"../scheduler/async":703,"./throttle":670}],672:[function(require,module,exports){ +},{"../Subscriber":554,"../scheduler/async":706,"./throttle":673}],675:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -52873,7 +53303,7 @@ function defaultErrorFactory() { return new EmptyError_1.EmptyError(); } -},{"../Subscriber":551,"../util/EmptyError":709}],673:[function(require,module,exports){ +},{"../Subscriber":554,"../util/EmptyError":712}],676:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var async_1 = require("../scheduler/async"); @@ -52902,7 +53332,7 @@ var TimeInterval = (function () { }()); exports.TimeInterval = TimeInterval; -},{"../observable/defer":561,"../scheduler/async":703,"./map":622,"./scan":651}],674:[function(require,module,exports){ +},{"../observable/defer":564,"../scheduler/async":706,"./map":625,"./scan":654}],677:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var async_1 = require("../scheduler/async"); @@ -52915,7 +53345,7 @@ function timeout(due, scheduler) { } exports.timeout = timeout; -},{"../observable/throwError":579,"../scheduler/async":703,"../util/TimeoutError":712,"./timeoutWith":675}],675:[function(require,module,exports){ +},{"../observable/throwError":582,"../scheduler/async":706,"../util/TimeoutError":715,"./timeoutWith":678}],678:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -52994,7 +53424,7 @@ var TimeoutWithSubscriber = (function (_super) { return TimeoutWithSubscriber; }(innerSubscribe_1.SimpleOuterSubscriber)); -},{"../innerSubscribe":554,"../scheduler/async":703,"../util/isDate":719}],676:[function(require,module,exports){ +},{"../innerSubscribe":557,"../scheduler/async":706,"../util/isDate":722}],679:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var async_1 = require("../scheduler/async"); @@ -53013,7 +53443,7 @@ var Timestamp = (function () { }()); exports.Timestamp = Timestamp; -},{"../scheduler/async":703,"./map":622}],677:[function(require,module,exports){ +},{"../scheduler/async":706,"./map":625}],680:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var reduce_1 = require("./reduce"); @@ -53029,7 +53459,7 @@ function toArray() { } exports.toArray = toArray; -},{"./reduce":643}],678:[function(require,module,exports){ +},{"./reduce":646}],681:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -53110,7 +53540,7 @@ var WindowSubscriber = (function (_super) { return WindowSubscriber; }(innerSubscribe_1.SimpleOuterSubscriber)); -},{"../Subject":549,"../innerSubscribe":554}],679:[function(require,module,exports){ +},{"../Subject":552,"../innerSubscribe":557}],682:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -53201,7 +53631,7 @@ var WindowCountSubscriber = (function (_super) { return WindowCountSubscriber; }(Subscriber_1.Subscriber)); -},{"../Subject":549,"../Subscriber":551}],680:[function(require,module,exports){ +},{"../Subject":552,"../Subscriber":554}],683:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -53371,7 +53801,7 @@ function dispatchWindowClose(state) { subscriber.closeWindow(window); } -},{"../Subject":549,"../Subscriber":551,"../scheduler/async":703,"../util/isNumeric":723,"../util/isScheduler":727}],681:[function(require,module,exports){ +},{"../Subject":552,"../Subscriber":554,"../scheduler/async":706,"../util/isNumeric":726,"../util/isScheduler":730}],684:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -53515,7 +53945,7 @@ var WindowToggleSubscriber = (function (_super) { return WindowToggleSubscriber; }(OuterSubscriber_1.OuterSubscriber)); -},{"../OuterSubscriber":546,"../Subject":549,"../Subscription":552,"../util/subscribeToResult":736}],682:[function(require,module,exports){ +},{"../OuterSubscriber":549,"../Subject":552,"../Subscription":555,"../util/subscribeToResult":739}],685:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -53612,7 +54042,7 @@ var WindowSubscriber = (function (_super) { return WindowSubscriber; }(OuterSubscriber_1.OuterSubscriber)); -},{"../OuterSubscriber":546,"../Subject":549,"../util/subscribeToResult":736}],683:[function(require,module,exports){ +},{"../OuterSubscriber":549,"../Subject":552,"../util/subscribeToResult":739}],686:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -53710,7 +54140,7 @@ var WithLatestFromSubscriber = (function (_super) { return WithLatestFromSubscriber; }(OuterSubscriber_1.OuterSubscriber)); -},{"../OuterSubscriber":546,"../util/subscribeToResult":736}],684:[function(require,module,exports){ +},{"../OuterSubscriber":549,"../util/subscribeToResult":739}],687:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var zip_1 = require("../observable/zip"); @@ -53725,7 +54155,7 @@ function zip() { } exports.zip = zip; -},{"../observable/zip":582}],685:[function(require,module,exports){ +},{"../observable/zip":585}],688:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var zip_1 = require("../observable/zip"); @@ -53734,7 +54164,7 @@ function zipAll(project) { } exports.zipAll = zipAll; -},{"../observable/zip":582}],686:[function(require,module,exports){ +},{"../observable/zip":585}],689:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -53758,7 +54188,7 @@ function scheduleArray(input, scheduler) { } exports.scheduleArray = scheduleArray; -},{"../Observable":544,"../Subscription":552}],687:[function(require,module,exports){ +},{"../Observable":547,"../Subscription":555}],690:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -53807,7 +54237,7 @@ function scheduleIterable(input, scheduler) { } exports.scheduleIterable = scheduleIterable; -},{"../Observable":544,"../Subscription":552,"../symbol/iterator":705}],688:[function(require,module,exports){ +},{"../Observable":547,"../Subscription":555,"../symbol/iterator":708}],691:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -53829,7 +54259,7 @@ function scheduleObservable(input, scheduler) { } exports.scheduleObservable = scheduleObservable; -},{"../Observable":544,"../Subscription":552,"../symbol/observable":706}],689:[function(require,module,exports){ +},{"../Observable":547,"../Subscription":555,"../symbol/observable":709}],692:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -53850,7 +54280,7 @@ function schedulePromise(input, scheduler) { } exports.schedulePromise = schedulePromise; -},{"../Observable":544,"../Subscription":552}],690:[function(require,module,exports){ +},{"../Observable":547,"../Subscription":555}],693:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var scheduleObservable_1 = require("./scheduleObservable"); @@ -53880,7 +54310,7 @@ function scheduled(input, scheduler) { } exports.scheduled = scheduled; -},{"../util/isArrayLike":718,"../util/isInteropObservable":721,"../util/isIterable":722,"../util/isPromise":726,"./scheduleArray":686,"./scheduleIterable":687,"./scheduleObservable":688,"./schedulePromise":689}],691:[function(require,module,exports){ +},{"../util/isArrayLike":721,"../util/isInteropObservable":724,"../util/isIterable":725,"../util/isPromise":729,"./scheduleArray":689,"./scheduleIterable":690,"./scheduleObservable":691,"./schedulePromise":692}],694:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -53910,7 +54340,7 @@ var Action = (function (_super) { }(Subscription_1.Subscription)); exports.Action = Action; -},{"../Subscription":552}],692:[function(require,module,exports){ +},{"../Subscription":555}],695:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -53958,7 +54388,7 @@ var AnimationFrameAction = (function (_super) { }(AsyncAction_1.AsyncAction)); exports.AnimationFrameAction = AnimationFrameAction; -},{"./AsyncAction":696}],693:[function(require,module,exports){ +},{"./AsyncAction":699}],696:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -54005,7 +54435,7 @@ var AnimationFrameScheduler = (function (_super) { }(AsyncScheduler_1.AsyncScheduler)); exports.AnimationFrameScheduler = AnimationFrameScheduler; -},{"./AsyncScheduler":697}],694:[function(require,module,exports){ +},{"./AsyncScheduler":700}],697:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -54054,7 +54484,7 @@ var AsapAction = (function (_super) { }(AsyncAction_1.AsyncAction)); exports.AsapAction = AsapAction; -},{"../util/Immediate":710,"./AsyncAction":696}],695:[function(require,module,exports){ +},{"../util/Immediate":713,"./AsyncAction":699}],698:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -54101,7 +54531,7 @@ var AsapScheduler = (function (_super) { }(AsyncScheduler_1.AsyncScheduler)); exports.AsapScheduler = AsapScheduler; -},{"./AsyncScheduler":697}],696:[function(require,module,exports){ +},{"./AsyncScheduler":700}],699:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -54204,7 +54634,7 @@ var AsyncAction = (function (_super) { }(Action_1.Action)); exports.AsyncAction = AsyncAction; -},{"./Action":691}],697:[function(require,module,exports){ +},{"./Action":694}],700:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -54272,7 +54702,7 @@ var AsyncScheduler = (function (_super) { }(Scheduler_1.Scheduler)); exports.AsyncScheduler = AsyncScheduler; -},{"../Scheduler":548}],698:[function(require,module,exports){ +},{"../Scheduler":551}],701:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -54323,7 +54753,7 @@ var QueueAction = (function (_super) { }(AsyncAction_1.AsyncAction)); exports.QueueAction = QueueAction; -},{"./AsyncAction":696}],699:[function(require,module,exports){ +},{"./AsyncAction":699}],702:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -54349,7 +54779,7 @@ var QueueScheduler = (function (_super) { }(AsyncScheduler_1.AsyncScheduler)); exports.QueueScheduler = QueueScheduler; -},{"./AsyncScheduler":697}],700:[function(require,module,exports){ +},{"./AsyncScheduler":700}],703:[function(require,module,exports){ "use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { @@ -54461,7 +54891,7 @@ var VirtualAction = (function (_super) { }(AsyncAction_1.AsyncAction)); exports.VirtualAction = VirtualAction; -},{"./AsyncAction":696,"./AsyncScheduler":697}],701:[function(require,module,exports){ +},{"./AsyncAction":699,"./AsyncScheduler":700}],704:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var AnimationFrameAction_1 = require("./AnimationFrameAction"); @@ -54469,7 +54899,7 @@ var AnimationFrameScheduler_1 = require("./AnimationFrameScheduler"); exports.animationFrameScheduler = new AnimationFrameScheduler_1.AnimationFrameScheduler(AnimationFrameAction_1.AnimationFrameAction); exports.animationFrame = exports.animationFrameScheduler; -},{"./AnimationFrameAction":692,"./AnimationFrameScheduler":693}],702:[function(require,module,exports){ +},{"./AnimationFrameAction":695,"./AnimationFrameScheduler":696}],705:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var AsapAction_1 = require("./AsapAction"); @@ -54477,7 +54907,7 @@ var AsapScheduler_1 = require("./AsapScheduler"); exports.asapScheduler = new AsapScheduler_1.AsapScheduler(AsapAction_1.AsapAction); exports.asap = exports.asapScheduler; -},{"./AsapAction":694,"./AsapScheduler":695}],703:[function(require,module,exports){ +},{"./AsapAction":697,"./AsapScheduler":698}],706:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var AsyncAction_1 = require("./AsyncAction"); @@ -54485,7 +54915,7 @@ var AsyncScheduler_1 = require("./AsyncScheduler"); exports.asyncScheduler = new AsyncScheduler_1.AsyncScheduler(AsyncAction_1.AsyncAction); exports.async = exports.asyncScheduler; -},{"./AsyncAction":696,"./AsyncScheduler":697}],704:[function(require,module,exports){ +},{"./AsyncAction":699,"./AsyncScheduler":700}],707:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var QueueAction_1 = require("./QueueAction"); @@ -54493,7 +54923,7 @@ var QueueScheduler_1 = require("./QueueScheduler"); exports.queueScheduler = new QueueScheduler_1.QueueScheduler(QueueAction_1.QueueAction); exports.queue = exports.queueScheduler; -},{"./QueueAction":698,"./QueueScheduler":699}],705:[function(require,module,exports){ +},{"./QueueAction":701,"./QueueScheduler":702}],708:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function getSymbolIterator() { @@ -54506,12 +54936,12 @@ exports.getSymbolIterator = getSymbolIterator; exports.iterator = getSymbolIterator(); exports.$$iterator = exports.iterator; -},{}],706:[function(require,module,exports){ +},{}],709:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.observable = (function () { return typeof Symbol === 'function' && Symbol.observable || '@@observable'; })(); -},{}],707:[function(require,module,exports){ +},{}],710:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.rxSubscriber = (function () { @@ -54521,7 +54951,7 @@ exports.rxSubscriber = (function () { })(); exports.$$rxSubscriber = exports.rxSubscriber; -},{}],708:[function(require,module,exports){ +},{}],711:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var ArgumentOutOfRangeErrorImpl = (function () { @@ -54536,7 +54966,7 @@ var ArgumentOutOfRangeErrorImpl = (function () { })(); exports.ArgumentOutOfRangeError = ArgumentOutOfRangeErrorImpl; -},{}],709:[function(require,module,exports){ +},{}],712:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var EmptyErrorImpl = (function () { @@ -54551,7 +54981,7 @@ var EmptyErrorImpl = (function () { })(); exports.EmptyError = EmptyErrorImpl; -},{}],710:[function(require,module,exports){ +},{}],713:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var nextHandle = 1; @@ -54581,7 +55011,7 @@ exports.TestTools = { } }; -},{}],711:[function(require,module,exports){ +},{}],714:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var ObjectUnsubscribedErrorImpl = (function () { @@ -54596,7 +55026,7 @@ var ObjectUnsubscribedErrorImpl = (function () { })(); exports.ObjectUnsubscribedError = ObjectUnsubscribedErrorImpl; -},{}],712:[function(require,module,exports){ +},{}],715:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var TimeoutErrorImpl = (function () { @@ -54611,7 +55041,7 @@ var TimeoutErrorImpl = (function () { })(); exports.TimeoutError = TimeoutErrorImpl; -},{}],713:[function(require,module,exports){ +},{}],716:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var UnsubscriptionErrorImpl = (function () { @@ -54628,7 +55058,7 @@ var UnsubscriptionErrorImpl = (function () { })(); exports.UnsubscriptionError = UnsubscriptionErrorImpl; -},{}],714:[function(require,module,exports){ +},{}],717:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Subscriber_1 = require("../Subscriber"); @@ -54649,7 +55079,7 @@ function canReportError(observer) { } exports.canReportError = canReportError; -},{"../Subscriber":551}],715:[function(require,module,exports){ +},{"../Subscriber":554}],718:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function hostReportError(err) { @@ -54657,7 +55087,7 @@ function hostReportError(err) { } exports.hostReportError = hostReportError; -},{}],716:[function(require,module,exports){ +},{}],719:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function identity(x) { @@ -54665,17 +55095,17 @@ function identity(x) { } exports.identity = identity; -},{}],717:[function(require,module,exports){ +},{}],720:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isArray = (function () { return Array.isArray || (function (x) { return x && typeof x.length === 'number'; }); })(); -},{}],718:[function(require,module,exports){ +},{}],721:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isArrayLike = (function (x) { return x && typeof x.length === 'number' && typeof x !== 'function'; }); -},{}],719:[function(require,module,exports){ +},{}],722:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function isDate(value) { @@ -54683,7 +55113,7 @@ function isDate(value) { } exports.isDate = isDate; -},{}],720:[function(require,module,exports){ +},{}],723:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function isFunction(x) { @@ -54691,7 +55121,7 @@ function isFunction(x) { } exports.isFunction = isFunction; -},{}],721:[function(require,module,exports){ +},{}],724:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var observable_1 = require("../symbol/observable"); @@ -54700,7 +55130,7 @@ function isInteropObservable(input) { } exports.isInteropObservable = isInteropObservable; -},{"../symbol/observable":706}],722:[function(require,module,exports){ +},{"../symbol/observable":709}],725:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var iterator_1 = require("../symbol/iterator"); @@ -54709,7 +55139,7 @@ function isIterable(input) { } exports.isIterable = isIterable; -},{"../symbol/iterator":705}],723:[function(require,module,exports){ +},{"../symbol/iterator":708}],726:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var isArray_1 = require("./isArray"); @@ -54718,7 +55148,7 @@ function isNumeric(val) { } exports.isNumeric = isNumeric; -},{"./isArray":717}],724:[function(require,module,exports){ +},{"./isArray":720}],727:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function isObject(x) { @@ -54726,7 +55156,7 @@ function isObject(x) { } exports.isObject = isObject; -},{}],725:[function(require,module,exports){ +},{}],728:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Observable_1 = require("../Observable"); @@ -54735,7 +55165,7 @@ function isObservable(obj) { } exports.isObservable = isObservable; -},{"../Observable":544}],726:[function(require,module,exports){ +},{"../Observable":547}],729:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function isPromise(value) { @@ -54743,7 +55173,7 @@ function isPromise(value) { } exports.isPromise = isPromise; -},{}],727:[function(require,module,exports){ +},{}],730:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function isScheduler(value) { @@ -54751,13 +55181,13 @@ function isScheduler(value) { } exports.isScheduler = isScheduler; -},{}],728:[function(require,module,exports){ +},{}],731:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function noop() { } exports.noop = noop; -},{}],729:[function(require,module,exports){ +},{}],732:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function not(pred, thisArg) { @@ -54770,7 +55200,7 @@ function not(pred, thisArg) { } exports.not = not; -},{}],730:[function(require,module,exports){ +},{}],733:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var identity_1 = require("./identity"); @@ -54795,7 +55225,7 @@ function pipeFromArray(fns) { } exports.pipeFromArray = pipeFromArray; -},{"./identity":716}],731:[function(require,module,exports){ +},{"./identity":719}],734:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var subscribeToArray_1 = require("./subscribeToArray"); @@ -54828,7 +55258,7 @@ exports.subscribeTo = function (result) { } }; -},{"../symbol/iterator":705,"../symbol/observable":706,"./isArrayLike":718,"./isObject":724,"./isPromise":726,"./subscribeToArray":732,"./subscribeToIterable":733,"./subscribeToObservable":734,"./subscribeToPromise":735}],732:[function(require,module,exports){ +},{"../symbol/iterator":708,"../symbol/observable":709,"./isArrayLike":721,"./isObject":727,"./isPromise":729,"./subscribeToArray":735,"./subscribeToIterable":736,"./subscribeToObservable":737,"./subscribeToPromise":738}],735:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.subscribeToArray = function (array) { return function (subscriber) { @@ -54838,7 +55268,7 @@ exports.subscribeToArray = function (array) { return function (subscriber) { subscriber.complete(); }; }; -},{}],733:[function(require,module,exports){ +},{}],736:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var iterator_1 = require("../symbol/iterator"); @@ -54872,7 +55302,7 @@ exports.subscribeToIterable = function (iterable) { return function (subscriber) return subscriber; }; }; -},{"../symbol/iterator":705}],734:[function(require,module,exports){ +},{"../symbol/iterator":708}],737:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var observable_1 = require("../symbol/observable"); @@ -54886,7 +55316,7 @@ exports.subscribeToObservable = function (obj) { return function (subscriber) { } }; }; -},{"../symbol/observable":706}],735:[function(require,module,exports){ +},{"../symbol/observable":709}],738:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var hostReportError_1 = require("./hostReportError"); @@ -54901,7 +55331,7 @@ exports.subscribeToPromise = function (promise) { return function (subscriber) { return subscriber; }; }; -},{"./hostReportError":715}],736:[function(require,module,exports){ +},{"./hostReportError":718}],739:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var InnerSubscriber_1 = require("../InnerSubscriber"); @@ -54919,7 +55349,7 @@ function subscribeToResult(outerSubscriber, result, outerValue, outerIndex, inne } exports.subscribeToResult = subscribeToResult; -},{"../InnerSubscriber":542,"../Observable":544,"./subscribeTo":731}],737:[function(require,module,exports){ +},{"../InnerSubscriber":545,"../Observable":547,"./subscribeTo":734}],740:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Subscriber_1 = require("../Subscriber"); @@ -54941,7 +55371,7 @@ function toSubscriber(nextOrObserver, error, complete) { } exports.toSubscriber = toSubscriber; -},{"../Observer":545,"../Subscriber":551,"../symbol/rxSubscriber":707}],738:[function(require,module,exports){ +},{"../Observer":548,"../Subscriber":554,"../symbol/rxSubscriber":710}],741:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var audit_1 = require("../internal/operators/audit"); @@ -55152,7 +55582,7 @@ exports.zip = zip_1.zip; var zipAll_1 = require("../internal/operators/zipAll"); exports.zipAll = zipAll_1.zipAll; -},{"../internal/operators/audit":583,"../internal/operators/auditTime":584,"../internal/operators/buffer":585,"../internal/operators/bufferCount":586,"../internal/operators/bufferTime":587,"../internal/operators/bufferToggle":588,"../internal/operators/bufferWhen":589,"../internal/operators/catchError":590,"../internal/operators/combineAll":591,"../internal/operators/combineLatest":592,"../internal/operators/concat":593,"../internal/operators/concatAll":594,"../internal/operators/concatMap":595,"../internal/operators/concatMapTo":596,"../internal/operators/count":597,"../internal/operators/debounce":598,"../internal/operators/debounceTime":599,"../internal/operators/defaultIfEmpty":600,"../internal/operators/delay":601,"../internal/operators/delayWhen":602,"../internal/operators/dematerialize":603,"../internal/operators/distinct":604,"../internal/operators/distinctUntilChanged":605,"../internal/operators/distinctUntilKeyChanged":606,"../internal/operators/elementAt":607,"../internal/operators/endWith":608,"../internal/operators/every":609,"../internal/operators/exhaust":610,"../internal/operators/exhaustMap":611,"../internal/operators/expand":612,"../internal/operators/filter":613,"../internal/operators/finalize":614,"../internal/operators/find":615,"../internal/operators/findIndex":616,"../internal/operators/first":617,"../internal/operators/groupBy":618,"../internal/operators/ignoreElements":619,"../internal/operators/isEmpty":620,"../internal/operators/last":621,"../internal/operators/map":622,"../internal/operators/mapTo":623,"../internal/operators/materialize":624,"../internal/operators/max":625,"../internal/operators/merge":626,"../internal/operators/mergeAll":627,"../internal/operators/mergeMap":628,"../internal/operators/mergeMapTo":629,"../internal/operators/mergeScan":630,"../internal/operators/min":631,"../internal/operators/multicast":632,"../internal/operators/observeOn":633,"../internal/operators/onErrorResumeNext":634,"../internal/operators/pairwise":635,"../internal/operators/partition":636,"../internal/operators/pluck":637,"../internal/operators/publish":638,"../internal/operators/publishBehavior":639,"../internal/operators/publishLast":640,"../internal/operators/publishReplay":641,"../internal/operators/race":642,"../internal/operators/reduce":643,"../internal/operators/refCount":644,"../internal/operators/repeat":645,"../internal/operators/repeatWhen":646,"../internal/operators/retry":647,"../internal/operators/retryWhen":648,"../internal/operators/sample":649,"../internal/operators/sampleTime":650,"../internal/operators/scan":651,"../internal/operators/sequenceEqual":652,"../internal/operators/share":653,"../internal/operators/shareReplay":654,"../internal/operators/single":655,"../internal/operators/skip":656,"../internal/operators/skipLast":657,"../internal/operators/skipUntil":658,"../internal/operators/skipWhile":659,"../internal/operators/startWith":660,"../internal/operators/subscribeOn":661,"../internal/operators/switchAll":662,"../internal/operators/switchMap":663,"../internal/operators/switchMapTo":664,"../internal/operators/take":665,"../internal/operators/takeLast":666,"../internal/operators/takeUntil":667,"../internal/operators/takeWhile":668,"../internal/operators/tap":669,"../internal/operators/throttle":670,"../internal/operators/throttleTime":671,"../internal/operators/throwIfEmpty":672,"../internal/operators/timeInterval":673,"../internal/operators/timeout":674,"../internal/operators/timeoutWith":675,"../internal/operators/timestamp":676,"../internal/operators/toArray":677,"../internal/operators/window":678,"../internal/operators/windowCount":679,"../internal/operators/windowTime":680,"../internal/operators/windowToggle":681,"../internal/operators/windowWhen":682,"../internal/operators/withLatestFrom":683,"../internal/operators/zip":684,"../internal/operators/zipAll":685}],739:[function(require,module,exports){ +},{"../internal/operators/audit":586,"../internal/operators/auditTime":587,"../internal/operators/buffer":588,"../internal/operators/bufferCount":589,"../internal/operators/bufferTime":590,"../internal/operators/bufferToggle":591,"../internal/operators/bufferWhen":592,"../internal/operators/catchError":593,"../internal/operators/combineAll":594,"../internal/operators/combineLatest":595,"../internal/operators/concat":596,"../internal/operators/concatAll":597,"../internal/operators/concatMap":598,"../internal/operators/concatMapTo":599,"../internal/operators/count":600,"../internal/operators/debounce":601,"../internal/operators/debounceTime":602,"../internal/operators/defaultIfEmpty":603,"../internal/operators/delay":604,"../internal/operators/delayWhen":605,"../internal/operators/dematerialize":606,"../internal/operators/distinct":607,"../internal/operators/distinctUntilChanged":608,"../internal/operators/distinctUntilKeyChanged":609,"../internal/operators/elementAt":610,"../internal/operators/endWith":611,"../internal/operators/every":612,"../internal/operators/exhaust":613,"../internal/operators/exhaustMap":614,"../internal/operators/expand":615,"../internal/operators/filter":616,"../internal/operators/finalize":617,"../internal/operators/find":618,"../internal/operators/findIndex":619,"../internal/operators/first":620,"../internal/operators/groupBy":621,"../internal/operators/ignoreElements":622,"../internal/operators/isEmpty":623,"../internal/operators/last":624,"../internal/operators/map":625,"../internal/operators/mapTo":626,"../internal/operators/materialize":627,"../internal/operators/max":628,"../internal/operators/merge":629,"../internal/operators/mergeAll":630,"../internal/operators/mergeMap":631,"../internal/operators/mergeMapTo":632,"../internal/operators/mergeScan":633,"../internal/operators/min":634,"../internal/operators/multicast":635,"../internal/operators/observeOn":636,"../internal/operators/onErrorResumeNext":637,"../internal/operators/pairwise":638,"../internal/operators/partition":639,"../internal/operators/pluck":640,"../internal/operators/publish":641,"../internal/operators/publishBehavior":642,"../internal/operators/publishLast":643,"../internal/operators/publishReplay":644,"../internal/operators/race":645,"../internal/operators/reduce":646,"../internal/operators/refCount":647,"../internal/operators/repeat":648,"../internal/operators/repeatWhen":649,"../internal/operators/retry":650,"../internal/operators/retryWhen":651,"../internal/operators/sample":652,"../internal/operators/sampleTime":653,"../internal/operators/scan":654,"../internal/operators/sequenceEqual":655,"../internal/operators/share":656,"../internal/operators/shareReplay":657,"../internal/operators/single":658,"../internal/operators/skip":659,"../internal/operators/skipLast":660,"../internal/operators/skipUntil":661,"../internal/operators/skipWhile":662,"../internal/operators/startWith":663,"../internal/operators/subscribeOn":664,"../internal/operators/switchAll":665,"../internal/operators/switchMap":666,"../internal/operators/switchMapTo":667,"../internal/operators/take":668,"../internal/operators/takeLast":669,"../internal/operators/takeUntil":670,"../internal/operators/takeWhile":671,"../internal/operators/tap":672,"../internal/operators/throttle":673,"../internal/operators/throttleTime":674,"../internal/operators/throwIfEmpty":675,"../internal/operators/timeInterval":676,"../internal/operators/timeout":677,"../internal/operators/timeoutWith":678,"../internal/operators/timestamp":679,"../internal/operators/toArray":680,"../internal/operators/window":681,"../internal/operators/windowCount":682,"../internal/operators/windowTime":683,"../internal/operators/windowToggle":684,"../internal/operators/windowWhen":685,"../internal/operators/withLatestFrom":686,"../internal/operators/zip":687,"../internal/operators/zipAll":688}],742:[function(require,module,exports){ 'use strict'; var GetIntrinsic = require('es-abstract/GetIntrinsic'); @@ -55261,7 +55691,7 @@ module.exports = function getSideChannel() { return channel; }; -},{"es-abstract/GetIntrinsic":428,"es-abstract/helpers/callBound":430,"object-inspect":496}],740:[function(require,module,exports){ +},{"es-abstract/GetIntrinsic":430,"es-abstract/helpers/callBound":432,"object-inspect":499}],743:[function(require,module,exports){ (function (factory) { if (typeof exports === 'object') { // Node/CommonJS @@ -56014,7 +56444,7 @@ module.exports = function getSideChannel() { return SparkMD5; })); -},{}],741:[function(require,module,exports){ +},{}],744:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -56058,7 +56488,7 @@ var _default = { add: add }; exports["default"] = _default; -},{}],742:[function(require,module,exports){ +},{}],745:[function(require,module,exports){ "use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); @@ -56128,14 +56558,14 @@ var _default = { getSize: getSize }; exports["default"] = _default; -},{"./browser.js":741,"./node.js":107,"@babel/runtime/helpers/interopRequireDefault":63,"detect-node":427}],743:[function(require,module,exports){ +},{"./browser.js":744,"./node.js":107,"@babel/runtime/helpers/interopRequireDefault":63,"detect-node":429}],746:[function(require,module,exports){ module.exports = function isBuffer(arg) { return arg && typeof arg === 'object' && typeof arg.copy === 'function' && typeof arg.fill === 'function' && typeof arg.readUInt8 === 'function'; } -},{}],744:[function(require,module,exports){ +},{}],747:[function(require,module,exports){ // Currently in sync with Node.js lib/internal/util/types.js // https://github.com/nodejs/node/commit/112cc7c27551254aa2b17098fb774867f05ed0d9 @@ -56469,7 +56899,7 @@ exports.isAnyArrayBuffer = isAnyArrayBuffer; }); }); -},{"is-arguments":463,"is-generator-function":468,"is-typed-array":479,"which-typed-array":759}],745:[function(require,module,exports){ +},{"is-arguments":466,"is-generator-function":471,"is-typed-array":482,"which-typed-array":762}],748:[function(require,module,exports){ (function (process){(function (){ // Copyright Joyent, Inc. and other Node contributors. // @@ -57188,7 +57618,7 @@ function callbackify(original) { exports.callbackify = callbackify; }).call(this)}).call(this,require('_process')) -},{"./support/isBuffer":743,"./support/types":744,"_process":530,"inherits":462}],746:[function(require,module,exports){ +},{"./support/isBuffer":746,"./support/types":747,"_process":533,"inherits":465}],749:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -57216,7 +57646,7 @@ function bytesToUuid(buf, offset) { var _default = bytesToUuid; exports.default = _default; -},{}],747:[function(require,module,exports){ +},{}],750:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -57256,7 +57686,7 @@ var _v3 = _interopRequireDefault(require("./v4.js")); var _v4 = _interopRequireDefault(require("./v5.js")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } -},{"./v1.js":751,"./v3.js":752,"./v4.js":754,"./v5.js":755}],748:[function(require,module,exports){ +},{"./v1.js":754,"./v3.js":755,"./v4.js":757,"./v5.js":758}],751:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -57480,7 +57910,7 @@ function md5ii(a, b, c, d, x, s, t) { var _default = md5; exports.default = _default; -},{}],749:[function(require,module,exports){ +},{}],752:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -57502,7 +57932,7 @@ function rng() { return getRandomValues(rnds8); } -},{}],750:[function(require,module,exports){ +},{}],753:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -57604,7 +58034,7 @@ function sha1(bytes) { var _default = sha1; exports.default = _default; -},{}],751:[function(require,module,exports){ +},{}],754:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -57712,7 +58142,7 @@ function v1(options, buf, offset) { var _default = v1; exports.default = _default; -},{"./bytesToUuid.js":746,"./rng.js":749}],752:[function(require,module,exports){ +},{"./bytesToUuid.js":749,"./rng.js":752}],755:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -57729,7 +58159,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de const v3 = (0, _v.default)('v3', 0x30, _md.default); var _default = v3; exports.default = _default; -},{"./md5.js":748,"./v35.js":753}],753:[function(require,module,exports){ +},{"./md5.js":751,"./v35.js":756}],756:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -57806,7 +58236,7 @@ function _default(name, version, hashfunc) { generateUUID.URL = URL; return generateUUID; } -},{"./bytesToUuid.js":746}],754:[function(require,module,exports){ +},{"./bytesToUuid.js":749}],757:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -57849,7 +58279,7 @@ function v4(options, buf, offset) { var _default = v4; exports.default = _default; -},{"./bytesToUuid.js":746,"./rng.js":749}],755:[function(require,module,exports){ +},{"./bytesToUuid.js":749,"./rng.js":752}],758:[function(require,module,exports){ "use strict"; Object.defineProperty(exports, "__esModule", { @@ -57866,7 +58296,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de const v5 = (0, _v.default)('v5', 0x50, _sha.default); var _default = v5; exports.default = _default; -},{"./sha1.js":750,"./v35.js":753}],756:[function(require,module,exports){ +},{"./sha1.js":753,"./v35.js":756}],759:[function(require,module,exports){ 'use strict'; /** @@ -58041,7 +58471,7 @@ exports.parse = function (str) { } }; -},{}],757:[function(require,module,exports){ +},{}],760:[function(require,module,exports){ 'use strict'; var isString = require('is-string'); @@ -58073,7 +58503,7 @@ module.exports = function whichBoxedPrimitive(value) { } }; -},{"is-bigint":464,"is-boolean-object":465,"is-number-object":473,"is-string":477,"is-symbol":478}],758:[function(require,module,exports){ +},{"is-bigint":467,"is-boolean-object":468,"is-number-object":476,"is-string":480,"is-symbol":481}],761:[function(require,module,exports){ 'use strict'; var isMap = require('is-map'); @@ -58099,7 +58529,7 @@ module.exports = function whichCollection(value) { return false; }; -},{"is-map":469,"is-set":476,"is-weakmap":484,"is-weakset":485}],759:[function(require,module,exports){ +},{"is-map":472,"is-set":479,"is-weakmap":487,"is-weakset":488}],762:[function(require,module,exports){ (function (global){(function (){ 'use strict'; @@ -58159,15 +58589,15 @@ module.exports = function whichTypedArray(value) { }; }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {}) -},{"available-typed-arrays":74,"es-abstract/helpers/callBound":762,"es-abstract/helpers/getOwnPropertyDescriptor":763,"foreach":447,"has-symbols":452,"is-typed-array":479}],760:[function(require,module,exports){ +},{"available-typed-arrays":74,"es-abstract/helpers/callBound":765,"es-abstract/helpers/getOwnPropertyDescriptor":766,"foreach":449,"has-symbols":455,"is-typed-array":482}],763:[function(require,module,exports){ +arguments[4][434][0].apply(exports,arguments) +},{"dup":434,"function-bind":451,"has-symbols":455}],764:[function(require,module,exports){ +arguments[4][431][0].apply(exports,arguments) +},{"../GetIntrinsic":763,"dup":431,"function-bind":451}],765:[function(require,module,exports){ arguments[4][432][0].apply(exports,arguments) -},{"dup":432,"function-bind":449,"has-symbols":452}],761:[function(require,module,exports){ -arguments[4][429][0].apply(exports,arguments) -},{"../GetIntrinsic":760,"dup":429,"function-bind":449}],762:[function(require,module,exports){ -arguments[4][430][0].apply(exports,arguments) -},{"../GetIntrinsic":760,"./callBind":761,"dup":430}],763:[function(require,module,exports){ -arguments[4][483][0].apply(exports,arguments) -},{"../GetIntrinsic":760,"dup":483}],764:[function(require,module,exports){ +},{"../GetIntrinsic":763,"./callBind":764,"dup":432}],766:[function(require,module,exports){ +arguments[4][486][0].apply(exports,arguments) +},{"../GetIntrinsic":763,"dup":486}],767:[function(require,module,exports){ module.exports = extend var hasOwnProperty = Object.prototype.hasOwnProperty; diff --git a/dist/rxdb.browserify.min.js b/dist/rxdb.browserify.min.js index 23abb6995cf..f6b75ab7ee7 100644 --- a/dist/rxdb.browserify.min.js +++ b/dist/rxdb.browserify.min.js @@ -1,8 +1,10 @@ -!function e(t,r,n){function o(u,s){if(!r[u]){if(!t[u]){var a="function"==typeof require&&require;if(!s&&a)return a(u,!0);if(i)return i(u,!0);var c=new Error("Cannot find module '"+u+"'");throw c.code="MODULE_NOT_FOUND",c}var f=r[u]={exports:{}};t[u][0].call(f.exports,(function(e){return o(t[u][1][e]||e)}),f,f.exports,e,t,r,n)}return r[u].exports}for(var i="function"==typeof require&&require,u=0;uthis.limit;)this.buffer.shift()},t.getArrayIndexByPointer=function(e){var t=this.buffer[0],r=this.eventCounterMap.get(t);return e0;){t--;var r=this.buffer[t];if(r.documentData&&r.documentData._rev===e)return!0}return!1},t.destroy=function(){this.subs.forEach((function(e){return e.unsubscribe()}))},e}();r.ChangeEventBuffer=n},{}],3:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={addRxPlugin:!0,PouchDB:!0,validateCouchDBString:!0,getBatch:!0,countAllUndeleted:!0,createRxDatabase:!0,removeRxDatabase:!0,checkAdapter:!0,isRxDatabase:!0,dbCount:!0,_collectionNamePrimary:!0,isRxCollection:!0,_createRxCollection:!0,isRxDocument:!0,getDocumentOrmPrototype:!0,getDocumentPrototype:!0,isRxQuery:!0,isRxSchema:!0,createRxSchema:!0,RxSchema:!0,getIndexes:!0,normalize:!0,getFinalFields:!0,getPreviousVersions:!0,RxChangeEvent:!0,getRxStoragePouchDb:!0,getPouchLocation:!0,_clearHook:!0,createCrypter:!0};Object.defineProperty(r,"addRxPlugin",{enumerable:!0,get:function(){return o.addRxPlugin}}),Object.defineProperty(r,"PouchDB",{enumerable:!0,get:function(){return i.PouchDB}}),Object.defineProperty(r,"validateCouchDBString",{enumerable:!0,get:function(){return i.validateCouchDBString}}),Object.defineProperty(r,"getBatch",{enumerable:!0,get:function(){return i.getBatch}}),Object.defineProperty(r,"countAllUndeleted",{enumerable:!0,get:function(){return i.countAllUndeleted}}),Object.defineProperty(r,"createRxDatabase",{enumerable:!0,get:function(){return u.createRxDatabase}}),Object.defineProperty(r,"removeRxDatabase",{enumerable:!0,get:function(){return u.removeRxDatabase}}),Object.defineProperty(r,"checkAdapter",{enumerable:!0,get:function(){return u.checkAdapter}}),Object.defineProperty(r,"isRxDatabase",{enumerable:!0,get:function(){return u.isInstanceOf}}),Object.defineProperty(r,"dbCount",{enumerable:!0,get:function(){return u.dbCount}}),Object.defineProperty(r,"_collectionNamePrimary",{enumerable:!0,get:function(){return u._collectionNamePrimary}}),Object.defineProperty(r,"isRxCollection",{enumerable:!0,get:function(){return s.isInstanceOf}}),Object.defineProperty(r,"_createRxCollection",{enumerable:!0,get:function(){return s.create}}),Object.defineProperty(r,"isRxDocument",{enumerable:!0,get:function(){return a.isInstanceOf}}),Object.defineProperty(r,"getDocumentOrmPrototype",{enumerable:!0,get:function(){return c.getDocumentOrmPrototype}}),Object.defineProperty(r,"getDocumentPrototype",{enumerable:!0,get:function(){return c.getDocumentPrototype}}),Object.defineProperty(r,"isRxQuery",{enumerable:!0,get:function(){return f.isInstanceOf}}),Object.defineProperty(r,"isRxSchema",{enumerable:!0,get:function(){return l.isInstanceOf}}),Object.defineProperty(r,"createRxSchema",{enumerable:!0,get:function(){return l.createRxSchema}}),Object.defineProperty(r,"RxSchema",{enumerable:!0,get:function(){return l.RxSchema}}),Object.defineProperty(r,"getIndexes",{enumerable:!0,get:function(){return l.getIndexes}}),Object.defineProperty(r,"normalize",{enumerable:!0,get:function(){return l.normalize}}),Object.defineProperty(r,"getFinalFields",{enumerable:!0,get:function(){return l.getFinalFields}}),Object.defineProperty(r,"getPreviousVersions",{enumerable:!0,get:function(){return l.getPreviousVersions}}),Object.defineProperty(r,"RxChangeEvent",{enumerable:!0,get:function(){return p.RxChangeEvent}}),Object.defineProperty(r,"getRxStoragePouchDb",{enumerable:!0,get:function(){return h.getRxStoragePouchDb}}),Object.defineProperty(r,"getPouchLocation",{enumerable:!0,get:function(){return h.getPouchLocation}}),Object.defineProperty(r,"_clearHook",{enumerable:!0,get:function(){return d._clearHook}}),Object.defineProperty(r,"createCrypter",{enumerable:!0,get:function(){return b.createCrypter}}),e("./types/modules/crypto-js.d"),e("./types/modules/graphql-client.d"),e("./types/modules/mocha.parallel.d"),e("./types/modules/modifiyjs.d"),e("./types/modules/pouchdb-selector-core.d"),e("./types/modules/random-token.d");var o=e("./plugin"),i=e("./pouch-db"),u=e("./rx-database"),s=e("./rx-collection"),a=e("./rx-document"),c=e("./rx-document-prototype-merge"),f=e("./rx-query"),l=e("./rx-schema"),p=e("./rx-change-event"),h=e("./rx-storage-pouchdb"),d=e("./hooks"),b=e("./crypter"),y=e("./query-cache");Object.keys(y).forEach((function(e){"default"!==e&&"__esModule"!==e&&(Object.prototype.hasOwnProperty.call(n,e)||e in r&&r[e]===y[e]||Object.defineProperty(r,e,{enumerable:!0,get:function(){return y[e]}}))}));var v=e("./util");Object.keys(v).forEach((function(e){"default"!==e&&"__esModule"!==e&&(Object.prototype.hasOwnProperty.call(n,e)||e in r&&r[e]===v[e]||Object.defineProperty(r,e,{enumerable:!0,get:function(){return v[e]}}))}))},{"./crypter":4,"./hooks":7,"./plugin":10,"./pouch-db":35,"./query-cache":36,"./rx-change-event":37,"./rx-collection":39,"./rx-database":41,"./rx-document":43,"./rx-document-prototype-merge":42,"./rx-query":45,"./rx-schema":46,"./rx-storage-pouchdb":47,"./types/modules/crypto-js.d":48,"./types/modules/graphql-client.d":49,"./types/modules/mocha.parallel.d":50,"./types/modules/modifiyjs.d":51,"./types/modules/pouchdb-selector-core.d":52,"./types/modules/random-token.d":53,"./util":54}],4:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.createCrypter=function(e,t){return new u(e,t)},r.Crypter=void 0;var o=n(e("object-path")),i=e("./util"),u=function(){function e(e,t){this.password=e,this.schema=t}var t=e.prototype;return t._encryptValue=function(e){throw(0,i.pluginMissing)("encryption")},t._decryptValue=function(e){throw(0,i.pluginMissing)("encryption")},t.encrypt=function(e){var t=this;return this.password?(e=(0,i.clone)(e),this.schema.encryptedPaths.forEach((function(r){var n=o.default.get(e,r);if(void 0!==n){var i=t._encryptValue(n);o.default.set(e,r,i)}})),e):e},t.decrypt=function(e){var t=this;return this.password?(e=(0,i.clone)(e),this.schema.encryptedPaths.forEach((function(r){var n=o.default.get(e,r);if(void 0!==n){var i=t._decryptValue(n);o.default.set(e,r,i)}})),e):e},e}();r.Crypter=u},{"./util":54,"@babel/runtime/helpers/interopRequireDefault":63,"object-path":504}],5:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.createDocCache=function(){return new n},r.DocCache=void 0;var n=function(){function e(){this._map=new Map,this._map=new Map}var t=e.prototype;return t.get=function(e){return this._map.get(e)},t.set=function(e,t){return this._map.set(e,t)},t.delete=function(e){return this._map.delete(e)},e}();r.DocCache=n},{}],6:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.getSortFieldsOfQuery=o,r.getQueryParams=u,r.calculateNewResults=function(e,t){if(!e.collection.database.eventReduce)return{runFullQueryAgain:!0};var r=u(e),o=e._resultsData.slice(),i=e._resultsDataMap,s=!1;return t.find((function(e){var t=e.toEventReduceChangeEvent(),u=(0,n.calculateActionName)({queryParams:r,changeEvent:t,previousResults:o,keyDocumentMap:i});return"runFullQueryAgain"===u||("doNothing"!==u?(s=!0,(0,n.runAction)(u,r,t,o,i),!1):void 0)}))?{runFullQueryAgain:!0}:{runFullQueryAgain:!1,changed:s,newResults:o}},r.RXQUERY_QUERY_PARAMS_CACHE=void 0;var n=e("event-reduce-js");function o(e,t){return t.sort&&0!==t.sort.length?t.sort.map((function(e){return Object.keys(e)[0]})):[e]}var i=new WeakMap;function u(e){if(i.has(e))return i.get(e);var t=e.collection.database.storage,r=e.toJSON(),n=e.collection.schema.primaryPath,u={primaryKey:e.collection.schema.primaryPath,skip:r.skip,limit:r.limit,sortFields:o(n,r),sortComparator:t.getSortComparator(n,r),queryMatcher:t.getQueryMatcher(n,r)};return i.set(e,u),u}r.RXQUERY_QUERY_PARAMS_CACHE=i},{"event-reduce-js":438}],7:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.runPluginHooks=function(e,t){n[e].forEach((function(e){return e(t)}))},r.runAsyncPluginHooks=function(e,t){return Promise.all(n[e].map((function(e){return e(t)})))},r._clearHook=function(e,t){n[e]=n[e].filter((function(e){return e!==t}))},r.HOOKS=void 0;var n={preCreateRxDatabase:[],createRxDatabase:[],preCreateRxCollection:[],createRxCollection:[],preCreateRxSchema:[],createRxSchema:[],createRxQuery:[],createRxDocument:[],postCreateRxDocument:[],preCreatePouchDb:[],preMigrateDocument:[],postMigrateDocument:[],preDestroyRxDatabase:[]};r.HOOKS=n},{}],8:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("./core");Object.keys(n).forEach((function(e){"default"!==e&&"__esModule"!==e&&(e in r&&r[e]===n[e]||Object.defineProperty(r,e,{enumerable:!0,get:function(){return n[e]}}))}));var o=e("./plugins/dev-mode"),i=e("./plugins/validate"),u=e("./plugins/key-compression"),s=e("./plugins/migration"),a=e("./plugins/leader-election"),c=e("./plugins/encryption"),f=e("./plugins/update"),l=e("./plugins/watch-for-changes"),p=e("./plugins/replication"),h=e("./plugins/adapter-check"),d=e("./plugins/json-dump"),b=e("./plugins/in-memory"),y=e("./plugins/attachments"),v=e("./plugins/local-documents"),m=e("./plugins/query-builder");(0,n.addRxPlugin)(o.RxDBDevModePlugin),(0,n.addRxPlugin)(i.RxDBValidatePlugin),(0,n.addRxPlugin)(u.RxDBKeyCompressionPlugin),(0,n.addRxPlugin)(s.RxDBMigrationPlugin),(0,n.addRxPlugin)(a.RxDBLeaderElectionPlugin),(0,n.addRxPlugin)(c.RxDBEncryptionPlugin),(0,n.addRxPlugin)(f.RxDBUpdatePlugin),(0,n.addRxPlugin)(l.RxDBWatchForChangesPlugin),(0,n.addRxPlugin)(p.RxDBReplicationPlugin),(0,n.addRxPlugin)(h.RxDBAdapterCheckPlugin),(0,n.addRxPlugin)(d.RxDBJsonDumpPlugin),(0,n.addRxPlugin)(b.RxDBInMemoryPlugin),(0,n.addRxPlugin)(y.RxDBAttachmentsPlugin),(0,n.addRxPlugin)(v.RxDBLocalDocumentsPlugin),(0,n.addRxPlugin)(m.RxDBQueryBuilderPlugin)},{"./core":3,"./plugins/adapter-check":11,"./plugins/attachments":12,"./plugins/dev-mode":18,"./plugins/encryption":20,"./plugins/in-memory":21,"./plugins/json-dump":22,"./plugins/key-compression":23,"./plugins/leader-election":24,"./plugins/local-documents":25,"./plugins/migration":27,"./plugins/query-builder":28,"./plugins/replication":31,"./plugins/update":32,"./plugins/validate":33,"./plugins/watch-for-changes":34}],9:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.overwritable=void 0;var n=e("./util"),o={isDevMode:function(){return!1},validatePassword:function(e){throw(0,n.pluginMissing)("encryption")},createKeyCompressor:function(e){throw(0,n.pluginMissing)("key-compression")},checkAdapter:function(e){throw(0,n.pluginMissing)("adapter-check")},tunnelErrorMessage:function(e){return"RxDB Error-Code "+e+".\n - To find out what this means, use the dev-mode-plugin https://pubkey.github.io/rxdb/custom-build.html#dev-mode\n - Or search for this code https://github.com/pubkey/rxdb/search?q="+e+"\n "}};r.overwritable=o},{"./util":54}],10:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.addRxPlugin=function(e){if(h.has(e))return;h.add(e);if(!e.rxdb)return"object"==typeof e&&e.default&&(e=e.default),void c.PouchDB.plugin(e);var t=e;t.prototypes&&Object.entries(e.prototypes).forEach((function(e){var t=e[0];return(0,e[1])(p[t])}));t.overwritable&&Object.assign(f.overwritable,e.overwritable);t.hooks&&Object.entries(e.hooks).forEach((function(e){var t=e[0],r=e[1];return l.HOOKS[t].push(r)}))};var n=e("./rx-schema"),o=e("./crypter"),i=e("./rx-document"),u=e("./rx-query"),s=e("./rx-collection"),a=e("./rx-database"),c=e("./pouch-db"),f=e("./overwritable"),l=e("./hooks"),p={RxSchema:n.RxSchema.prototype,Crypter:o.Crypter.prototype,RxDocument:i.basePrototype,RxQuery:u.RxQueryBase.prototype,RxCollection:s.RxCollectionBase.prototype,RxDatabase:a.RxDatabaseBase.prototype},h=new Set},{"./crypter":4,"./hooks":7,"./overwritable":9,"./pouch-db":35,"./rx-collection":39,"./rx-database":41,"./rx-document":43,"./rx-query":45,"./rx-schema":46}],11:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.checkAdapter=u,r.RxDBAdapterCheckPlugin=r.overwritable=r.prototypes=r.rxdb=r.POUCHDB_LOCATION=void 0;var n=e("../pouch-db"),o=e("../util"),i="rxdb-adapter-check";function u(e){var t,r,u=i+"-"+(0,o.generateId)();try{t=new n.PouchDB(i,(0,o.adapterObject)(e),{auto_compaction:!0,revs_limit:1})}catch(e){return Promise.resolve(!1)}return t.info().then((function(){return t.put({_id:u,value:{ok:!0,time:(new Date).getTime()}})})).then((function(){return t.get(u)})).then((function(e){return r=e})).then((function(){return t.remove(r)})).then((function(){return!0})).then((function(){return!!(r&&r.value&&r.value.ok)})).catch((function(){return!1}))}r.POUCHDB_LOCATION=i;r.rxdb=true;var s={};r.prototypes=s;var a={checkAdapter:u};r.overwritable=a;var c={rxdb:true,prototypes:s,overwritable:a};r.RxDBAdapterCheckPlugin=c},{"../pouch-db":35,"../util":54}],12:[function(e,t,r){(function(t){(function(){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.fromPouchDocument=l,r.putAttachment=h,r.getAttachment=d,r.allAttachments=b,r.preMigrateDocument=y,r.postMigrateDocument=v,r.RxDBAttachmentsPlugin=r.hooks=r.overwritable=r.prototypes=r.rxdb=r.RxAttachment=r.blobBufferUtil=void 0;var n=e("rxjs/operators"),o=e("./../rx-change-event"),i=e("./../util"),u=e("../rx-error");function s(e){if(!e.collection.schema.jsonSchema.attachments)throw(0,u.newRxError)("AT1",{link:"https://pubkey.github.io/rxdb/rx-attachment.html"})}function a(e){var t=(0,i.now)();return e.collection.pouch.get(e.primary).then((function(r){var n=e.collection._handleFromPouch(r),u=(0,i.now)(),s=(0,o.createUpdateEvent)(e.collection,n,null,t,u,e);e.$emit(s)}))}var c={createBlobBuffer:function(e,r){var n;if(i.isElectronRenderer)return t.from(e,{type:r});try{n=new Blob([e],{type:r})}catch(o){n=t.from(e,{type:r})}return n},toString:function(e){return e instanceof t?(0,i.nextTick)().then((function(){return e.toString()})):new Promise((function(t){var r=new FileReader;r.addEventListener("loadend",(function(e){var r=e.target.result;t(r)})),"[object Uint8Array]"===Object.prototype.toString.call(e)&&(e=new Blob([e])),r.readAsText(e)}))}};r.blobBufferUtil=c;var f=function(){function e(e){var t,r=e.doc,n=e.id,o=e.type,i=e.length,u=e.digest,s=e.rev;this.doc=r,this.id=n,this.type=o,this.length=i,this.digest=u,this.rev=s,t=this,Object.entries(t.doc.collection.attachments).forEach((function(e){var r=e[0],n=e[1];Object.defineProperty(t,r,{get:function(){return n.bind(t)}})}))}var t=e.prototype;return t.remove=function(){var e=this;return this.doc.collection.pouch.removeAttachment(this.doc.primary,this.id,this.doc._data._rev).then((function(){return a(e.doc)}))},t.getData=function(){var e=this;return this.doc.collection.pouch.getAttachment(this.doc.primary,this.id).then((function(t){return p(e.doc)?c.toString(t).then((function(t){return c.createBlobBuffer(e.doc.collection._crypter._decryptValue(t),e.type)})):t}))},t.getStringData=function(){return this.getData().then((function(e){return c.toString(e)}))},e}();function l(e,t,r){return new f({doc:r,id:e,type:t.content_type,length:t.length,digest:t.digest,rev:t.revpos})}function p(e){return!!e.collection.schema.jsonSchema.attachments.encrypted}function h(e){var t=this,r=e.id,n=e.data,o=e.type,i=void 0===o?"text/plain":o;s(this),p(this)&&(n=this.collection._crypter._encryptValue(n));var u=c.createBlobBuffer(n,i);return this._atomicQueue=this._atomicQueue.then((function(){return t.collection.pouch.putAttachment(t.primary,r,t._data._rev,u,i)})).then((function(){return t.collection.pouch.get(t.primary)})).then((function(e){var n=e._attachments[r],o=l(r,n,t);return t._data._rev=e._rev,t._data._attachments=e._attachments,a(t).then((function(){return o}))})),this._atomicQueue}function d(e){s(this);var t=this._dataSync$.getValue();return t._attachments&&t._attachments[e]?l(e,t._attachments[e],this):null}function b(){var e=this;s(this);var t=this._dataSync$.getValue();return t._attachments?Object.keys(t._attachments).map((function(r){return l(r,t._attachments[r],e)})):[]}function y(e){return delete e.migrated._attachments,e}function v(e){var t=e.oldCollection.schema.primaryPath,r=e.doc._attachments;if(!r)return Promise.resolve(e);var n=Promise.resolve();return Object.keys(r).forEach((function(o){var i=r[o],u=e.doc[t];n=n.then((function(){return e.oldCollection.pouchdb.getAttachment(u,o)})).then((function(e){return c.toString(e)})).then((function(t){return e.newestCollection.pouch.putAttachment(u,o,e.res.rev,c.createBlobBuffer(t,i.content_type),i.content_type)})).then((function(t){return e.res=t}))})),n}r.RxAttachment=f;r.rxdb=true;var m={RxDocument:function(e){e.putAttachment=h,e.getAttachment=d,e.allAttachments=b,Object.defineProperty(e,"allAttachments$",{get:function(){var e=this;return this._dataSync$.pipe((0,n.map)((function(e){return e._attachments?e._attachments:{}})),(0,n.map)((function(e){return Object.entries(e)})),(0,n.map)((function(t){return t.map((function(t){return l(t[0],t[1],e)}))})))}})}};r.prototypes=m;var _={};r.overwritable=_;var g={preMigrateDocument:y,postMigrateDocument:v};r.hooks=g;var w={rxdb:true,prototypes:m,overwritable:_,hooks:g};r.RxDBAttachmentsPlugin=w}).call(this)}).call(this,e("buffer").Buffer)},{"../rx-error":44,"./../rx-change-event":37,"./../util":54,buffer:108,"rxjs/operators":738}],13:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.checkMigrationStrategies=function(e,t){if("object"!=typeof t||Array.isArray(t))throw(0,n.newRxTypeError)("COL11",{schema:e});var r=(0,o.getPreviousVersions)(e);if(r.length!==Object.keys(t).length)throw(0,n.newRxError)("COL12",{have:Object.keys(t),should:r});return r.map((function(e){return{v:e,s:t[e+1]}})).filter((function(e){return"function"!=typeof e.s})).forEach((function(t){throw(0,n.newRxTypeError)("COL13",{version:t.v,type:typeof t,schema:e})})),!0};var n=e("../../rx-error"),o=e("../../rx-schema")},{"../../rx-error":44,"../../rx-schema":46}],14:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.checkOrmMethods=function(e){if(!e)return;Object.entries(e).forEach((function(e){var t=e[0],r=e[1];if("string"!=typeof t)throw(0,n.newRxTypeError)("COL14",{name:t});if(t.startsWith("_"))throw(0,n.newRxTypeError)("COL15",{name:t});if("function"!=typeof r)throw(0,n.newRxTypeError)("COL16",{name:t,type:typeof t});if((0,o.rxCollectionProperties)().includes(t)||(0,o.rxDocumentProperties)().includes(t))throw(0,n.newRxError)("COL17",{name:t})}))};var n=e("../../rx-error"),o=e("./entity-properties")},{"../../rx-error":44,"./entity-properties":16}],15:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.checkFieldNameRegex=a,r.validateFieldsDeep=c,r.checkSchema=function(e){if(e.properties._rev)throw(0,i.newRxError)("SC10",{schema:e});if(!e.hasOwnProperty("version")||"number"!=typeof e.version||e.version<0)throw(0,i.newRxError)("SC11",{version:e.version});var t;if(c(e),Object.keys(e.properties).forEach((function(r){var n=e.properties[r];if(n.primary){if(t)throw(0,i.newRxError)("SC12",{value:n});if(t=r,n.index)throw(0,i.newRxError)("SC13",{value:n});if(n.unique)throw(0,i.newRxError)("SC14",{value:n});if(n.encrypted)throw(0,i.newRxError)("SC15",{value:n});if("string"!==n.type)throw(0,i.newRxError)("SC16",{value:n})}if((0,s.rxDocumentProperties)().includes(r))throw(0,i.newRxError)("SC17",{key:r})})),e.indexes){if(!Array.isArray(e.indexes))throw(0,i.newRxError)("SC18",{indexes:e.indexes});e.indexes.forEach((function(e){if("string"!=typeof e&&!Array.isArray(e))throw(0,i.newRxError)("SC19",{index:e});if(Array.isArray(e))for(var t=0;t2||!t.type.includes("string")||!t.type.includes("null"))throw(0,i.newRxError)("SC4",{fieldName:e})}else switch(t.type){case"string":break;case"array":if(!t.items||!t.items.type||"string"!==t.items.type)throw(0,i.newRxError)("SC3",{fieldName:e});break;default:throw(0,i.newRxError)("SC4",{fieldName:e})}if(t.hasOwnProperty("ref")&&t.primary)throw(0,i.newRxError)("SC5",{fieldName:e});var n=r.split(".").length>=2;if(n){if(t.primary)throw(0,i.newRxError)("SC6",{path:r,primary:t.primary});if(t.default)throw(0,i.newRxError)("SC7",{path:r})}if(!n&&"_"===e.charAt(0)){if("_id"===e&&t.primary)return;throw(0,i.newRxError)("SC8",{fieldName:e})}}(n,t[n],r);var o=r;"properties"!==n&&(o=o+"."+n),e(t[n],o)}))}(e,""),!0}function f(e){for(var t=e.split("."),r="",n=0;n 2",QU1:"RxQuery._execOverDatabase(): op not known",QU4:"RxQuery.regex(): You cannot use .regex() on the primary field",QU5:"RxQuery.sort(): does not work because key is not defined in the schema",QU6:"RxQuery.limit(): cannot be called on .findOne()",QU7:"query must be an object",QU8:"query cannot be an array",QU9:"throwIfMissing can only be used in findOne queries",QU10:"result empty and throwIfMissing: true",MQ1:"path must be a string or object",MQ2:"Invalid argument",MQ3:"Invalid sort() argument. Must be a string, object, or array",MQ4:"Invalid argument. Expected instanceof mquery or plain object",MQ5:"method must be used after where() when called with these arguments",MQ6:"Can't mix sort syntaxes. Use either array or object | .sort([['field', 1], ['test', -1]]) | .sort({ field: 1, test: -1 })",MQ7:"Invalid sort value",MQ8:"Can't mix sort syntaxes. Use either array or object",DB1:"RxDocument.prepare(): another instance on this adapter has a different password",DB2:"RxDatabase.collection(): collection-names cannot start with underscore _",DB3:"RxDatabase.collection(): collection already exists. use myDatabase.[collectionName] to get it",DB4:"RxDatabase.collection(): schema is missing",DB5:"RxDatabase.collection(): collection-name not allowed",DB6:"RxDatabase.collection(): another instance created this collection with a different schema. Read this https://pubkey.github.io/rxdb/questions-answers.html#cant-change-the-schema",DB7:"RxDatabase.collection(): schema encrypted but no password given",DB8:"RxDatabase.create(): A RxDatabase with the same name and adapter already exists.\nMake sure to use this combination only once or set ignoreDuplicate to true if you do this intentional",DB9:"RxDatabase.create(): Adapter not added. Use RxDB.plugin(require('pouchdb-adapter-[adaptername]');",DB10:"RxDatabase.create(): To use leveldown-adapters, you have to add the leveldb-plugin. Use RxDB.plugin(require('pouchdb-adapter-leveldb'));",DB11:"RxDatabase.create(): Invalid db-name, folder-paths must not have an ending slash",COL1:"RxDocument.insert() You cannot insert an existing document",COL2:"RxCollection.insert() do not provide ._id when it is not the primary key",COL3:"RxCollection.upsert() does not work without primary",COL4:"RxCollection.atomicUpsert() does not work without primary",COL5:"RxCollection.find() if you want to search by _id, use .findOne(_id)",COL6:"RxCollection.findOne() needs a queryObject or string",COL7:"hook must be a function",COL8:"hooks-when not known",COL9:"RxCollection.addHook() hook-name not known",COL10:"RxCollection .postCreate-hooks cannot be async",COL11:"migrationStrategies must be an object",COL12:"A migrationStrategy is missing or too much",COL13:"migrationStrategy must be a function",COL14:"given static method-name is not a string",COL15:"static method-names cannot start with underscore _",COL16:"given static method is not a function",COL17:"RxCollection.ORM: statics-name not allowed",COL18:"collection-method not allowed because fieldname is in the schema",COL19:"Pouchdb document update conflict",DOC1:"RxDocument.get$ cannot get observable of in-array fields because order cannot be guessed",DOC2:"cannot observe primary path",DOC3:"final fields cannot be observed",DOC4:"RxDocument.get$ cannot observe a non-existed field",DOC5:"RxDocument.populate() cannot populate a non-existed field",DOC6:"RxDocument.populate() cannot populate because path has no ref",DOC7:"RxDocument.populate() ref-collection not in database",DOC8:"RxDocument.set(): primary-key cannot be modified",DOC9:"final fields cannot be modified",DOC10:"RxDocument.set(): cannot set childpath when rootPath not selected",DOC11:"RxDocument.save(): cant save deleted document",DOC12:"RxDocument.save(): error",DOC13:"RxDocument.remove(): Document is already deleted",DOC14:"RxDocument.destroy() does not exist",DOC15:"query cannot be an array",DOC16:"Since version 8.0.0 RxDocument.set() can only be called on temporary RxDocuments",DOC17:"Since version 8.0.0 RxDocument.save() can only be called on non-temporary documents",DM1:"migrate() Migration has already run",DM2:"migration of document failed final document does not match final schema",DM3:"migration already running",AT1:"to use attachments, please define this in your schema",EN1:"password is no string",EN2:"validatePassword: min-length of password not complied",JD1:"You must create the collections before you can import their data",JD2:"RxCollection.importDump(): the imported json relies on a different schema",JD3:"RxCollection.importDump(): json.passwordHash does not match the own",LD1:"RxDocument.allAttachments$ cant use attachments on local documents",LD2:"RxDocument.get(): objPath must be a string",LD3:"RxDocument.get$ cannot get observable of in-array fields because order cannot be guessed",LD4:"cannot observe primary path",LD5:"RxDocument.set() id cannot be modified",LD6:"LocalDocument: Function is not useable on local documents",LD7:"Local document already exists",RC1:"Replication: already added",RC2:"RxCollection.sync() query must be from the same RxCollection",RC3:"RxCollection.sync() Do not use a collection's pouchdb as remote, use the collection instead",SC1:"fieldnames do not match the regex",SC2:"SchemaCheck: name 'item' reserved for array-fields",SC3:"SchemaCheck: fieldname has a ref-array but items-type is not string",SC4:"SchemaCheck: fieldname has a ref but is not type string, [string,null] or array",SC5:"SchemaCheck: fieldname cannot be primary and ref at same time",SC6:"SchemaCheck: primary can only be defined at top-level",SC7:"SchemaCheck: default-values can only be defined at top-level",SC8:"SchemaCheck: first level-fields cannot start with underscore _",SC10:"SchemaCheck: schema defines ._rev, this will be done automatically",SC11:"SchemaCheck: schema needs a number >=0 as version",SC12:"SchemaCheck: primary can only be defined once",SC13:"SchemaCheck: primary is always index, do not declare it as index",SC14:"SchemaCheck: primary is always unique, do not declare it as index",SC15:"SchemaCheck: primary cannot be encrypted",SC16:"SchemaCheck: primary must have type: string",SC17:"SchemaCheck: top-level fieldname is not allowed",SC18:"SchemaCheck: indexes must be an array",SC19:"SchemaCheck: indexes must contain strings or arrays of strings",SC20:"SchemaCheck: indexes.array must contain strings",SC21:"SchemaCheck: given index is not defined in schema",SC22:"SchemaCheck: given indexKey is not type:string",SC23:"SchemaCheck: fieldname is not allowed",SC24:"SchemaCheck: required fields must be set via array. See https://spacetelescope.github.io/understanding-json-schema/reference/object.html#required",SC25:"SchemaCheck: compoundIndexes needs to be specified in the indexes field",SC26:"SchemaCheck: indexes needs to be specified at collection schema level",SC27:"SchemaCheck: encrypted fields need to be specified at collection schema level",SC28:"SchemaCheck: encrypted fields is not defined in the schema",VD1:"Sub-schema not found, does the schemaPath exists in your schema?",VD2:"object does not match schema",IM1:"InMemory: Memory-Adapter must be added. Use RxDB.plugin(require('pouchdb-adapter-memory'));",IM2:"inMemoryCollection.sync(): Do not replicate with the in-memory instance. Replicate with the parent instead",S1:"You cannot create collections after calling RxDatabase.server()"}},{}],18:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={RxDBDevModePlugin:!0};r.RxDBDevModePlugin=void 0;var o=e("./error-messages"),i=e("./check-schema");Object.keys(i).forEach((function(e){"default"!==e&&"__esModule"!==e&&(Object.prototype.hasOwnProperty.call(n,e)||e in r&&r[e]===i[e]||Object.defineProperty(r,e,{enumerable:!0,get:function(){return i[e]}}))}));var u=e("./check-orm"),s=e("./check-migration-strategies"),a=e("./unallowed-properties"),c={rxdb:!0,overwritable:{isDevMode:function(){return!0},tunnelErrorMessage:function(e){if(!o.ERROR_MESSAGES[e])throw console.error("RxDB: Error-Code not known: "+e),new Error("Error-Code "+e+" not known, contact the maintainer");return o.ERROR_MESSAGES[e]}},hooks:{preCreateRxSchema:i.checkSchema,preCreateRxDatabase:function(e){(0,a.ensureDatabaseNameIsValid)(e)},preCreateRxCollection:function(e){(0,a.ensureCollectionNameValid)(e)},createRxCollection:function(e){(0,u.checkOrmMethods)(e.statics),(0,u.checkOrmMethods)(e.methods),(0,u.checkOrmMethods)(e.attachments),e.schema&&e.migrationStrategies&&(0,s.checkMigrationStrategies)(e.schema,e.migrationStrategies)}}};r.RxDBDevModePlugin=c},{"./check-migration-strategies":13,"./check-orm":14,"./check-schema":15,"./error-messages":17,"./unallowed-properties":19}],19:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.ensureCollectionNameValid=function(e){if((0,o.rxDatabaseProperties)().includes(e.name))throw(0,n.newRxError)("DB5",{name:e.name})},r.ensureDatabaseNameIsValid=function(e){if((0,i.validateCouchDBString)(e.name),(0,u.isFolderPath)(e.name)&&(e.name.endsWith("/")||e.name.endsWith("\\")))throw(0,n.newRxError)("DB11",{name:e.name})};var n=e("../../rx-error"),o=e("./entity-properties"),i=e("../../pouch-db"),u=e("../../util")},{"../../pouch-db":35,"../../rx-error":44,"../../util":54,"./entity-properties":16}],20:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireWildcard"),o=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.encrypt=c,r.decrypt=f,r.storePasswordHashIntoDatabase=h,r.RxDBEncryptionPlugin=r.overwritable=r.prototypes=r.rxdb=void 0;var i=o(e("crypto-js/aes")),u=n(e("crypto-js/enc-utf8")),s=e("../rx-error"),a=e("../util");function c(e,t){return i.default.encrypt(e,t).toString()}function f(e,t){return i.default.decrypt(e,t).toString(u)}var l=function(e){return c(JSON.stringify(e),this.password)},p=function(e){var t=f(e,this.password);return JSON.parse(t)};function h(e){if(!e.password)return Promise.resolve(!1);var t=(0,a.hash)(e.password);return e.internalStore.get(a.LOCAL_PREFIX+"pwHash").catch((function(){return null})).then((function(r){return r?t===r.value||e.destroy().then((function(){throw(0,s.newRxError)("DB1",{passwordHash:(0,a.hash)(e.password),existingPasswordHash:r.value})})):e.internalStore.put({_id:a.LOCAL_PREFIX+"pwHash",value:t}).catch((function(){return null})).then((function(){return!0}))}))}r.rxdb=true;var d={Crypter:function(e){e._encryptValue=l,e._decryptValue=p}};r.prototypes=d;var b={validatePassword:function(e){if(e&&"string"!=typeof e)throw(0,s.newRxTypeError)("EN1",{password:e});if(e&&e.length<8)throw(0,s.newRxError)("EN2",{minPassLength:8,password:e})}};r.overwritable=b;var y={rxdb:true,prototypes:d,overwritable:b,hooks:{createRxDatabase:function(e){return h(e)}}};r.RxDBEncryptionPlugin=y},{"../rx-error":44,"../util":54,"@babel/runtime/helpers/interopRequireDefault":63,"@babel/runtime/helpers/interopRequireWildcard":64,"crypto-js/aes":414,"crypto-js/enc-utf8":418}],21:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.replicateExistingDocuments=O,r.setIndexes=j,r.streamChangedDocuments=E,r.applyChangedDocumentToPouch=P,r.spawnInMemory=k,r.RxDBInMemoryPlugin=r.prototypes=r.rxdb=r.InMemoryRxCollection=void 0;var o=n(e("@babel/runtime/helpers/assertThisInitialized")),i=n(e("@babel/runtime/helpers/inheritsLoose")),u=e("rxjs"),s=e("rxjs/operators"),a=e("../rx-collection"),c=e("../util"),f=e("../core"),l=e("../crypter"),p=e("../change-event-buffer"),h=e("../rx-schema"),d=e("../pouch-db"),b=e("../rx-error"),y=e("../rx-storage-pouchdb"),v=e("../plugins/watch-for-changes");(0,f.addRxPlugin)(v.RxDBWatchForChangesPlugin);var m=new WeakMap,_=new WeakMap,g={new_edits:!0},w={new_edits:!1},x=function(e){function t(t){var r,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};(r=e.call(this,t.database,t.name,S(t.schema),n,{},t._methods)||this)._eventCounter=0,r._isInMemory=!0,r._parentCollection=t,r._parentCollection.onDestroy.then((function(){return r.destroy()})),r._crypter=(0,l.createCrypter)(r.database.password,r.schema),r._changeStreams=[],r.onDestroy.then((function(){r._changeStreams.forEach((function(e){return e.cancel()})),r.pouch.destroy()})),r.options=t.options,Object.entries(t.statics).forEach((function(e){var t=e[0],n=e[1];Object.defineProperty((0,o.default)(r),t,{get:function(){return n.bind((0,o.default)(r))}})}));var i=(0,y.getRxStoragePouchDb)("memory");r.pouch=i.createStorageInstance("rxdb-in-memory",(0,c.randomCouchString)(10),0),r._observable$=new u.Subject,r._changeEventBuffer=(0,p.createChangeEventBuffer)((0,o.default)(r));var s=Object.getPrototypeOf(t);return r._oldPouchPut=s._pouchPut.bind((0,o.default)(r)),r._nonPersistentRevisions=new Set,r._nonPersistentRevisionsSubject=new u.Subject,r}(0,i.default)(t,e);var r=t.prototype;return r.prepareChild=function(){var e=this;return j(this.schema,this.pouch).then((function(){e._subs.push(e._observable$.subscribe((function(t){var r=e._docCache.get(t.documentId);r&&r._handleChangeEvent(t)})))})).then((function(){return O(e._parentCollection,e)})).then((function(){e._parentCollection.watchForChanges(),e.watchForChanges();var t=E(e).pipe((0,s.mergeMap)((function(t){return P(e._parentCollection,t).then((function(){return t._rev}))}))).subscribe((function(t){e._nonPersistentRevisions.delete(t),e._nonPersistentRevisionsSubject.next(e._nonPersistentRevisions.size)}));e._subs.push(t);var r=E(e._parentCollection).subscribe((function(t){return P(e,t)}));e._subs.push(r)}))},r.awaitPersistence=function(){var e=this;return 0===this._nonPersistentRevisions.size?Promise.resolve():this._nonPersistentRevisionsSubject.pipe((0,s.filter)((function(){return 0===e._nonPersistentRevisions.size})),(0,s.first)()).toPromise()},r._pouchPut=function(e,t){var r=this;return this._oldPouchPut(e,t).then((function(e){return r._nonPersistentRevisions.add(e.rev),e}))},r.$emit=function(e){this._changeEventBuffer.hasChangeWithRevision(e.documentData&&e.documentData._rev)||(this._observable$.next(e),this._eventCounter++,10===this._eventCounter&&(this._eventCounter=0,this.pouch.compact()))},r.sync=function(){throw(0,b.newRxError)("IM2")},t}(a.RxCollectionBase);function S(e){var t=(0,c.clone)(e.jsonSchema);t.keyCompression=!1,delete t.properties._id,delete t.properties._rev,delete t.properties._attachments;return function e(t,r){delete t.encrypted,Object.values(t).filter((function(e){return"object"==typeof e})).forEach((function(t){return e(t,r)}))}(t,t),(0,h.createRxSchema)(t)}function O(e,t){return e.pouch.allDocs({attachments:!1,include_docs:!0}).then((function(r){var n=r.rows.map((function(e){return e.doc})).filter((function(e){return!e.language})).map((function(t){return e._handleFromPouch(t)})).map((function(t){return e.schema.swapPrimaryToId(t)}));return 0===n.length?Promise.resolve([]):t.pouch.bulkDocs({docs:n},w).then((function(){return n}))}))}function j(e,t){return Promise.all(e.indexes.map((function(e){return t.createIndex({index:{fields:e}})})))}function E(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(e){return!0};e._doNotEmitSet||(e._doNotEmitSet=new Set);var r=(0,u.fromEvent)(e.pouch.changes({since:"now",live:!0,include_docs:!0}),"change").pipe((0,s.delay)(0),(0,s.map)((function(e){return e[0]})),(0,s.filter)((function(t){var r=t.id+":"+t.doc._rev;return!e._doNotEmitSet.has(r)})),(0,s.filter)((function(e){return t(e)})),(0,s.map)((function(t){return e._handleFromPouch(t.doc)})));return r}function P(e,t){e._doNotEmitSet||(e._doNotEmitSet=new Set);var r=e._handleToPouch(t);return e.pouch.get(r._id).then((function(e){return r._rev=e._rev})).catch((function(){delete r._rev})).then((function(){return e.pouch.bulkDocs({docs:[r]},g)})).then((function(t){if(t.length>0&&!t[0].ok)throw new Error(JSON.stringify(t[0]));var n=r._id+":"+t[0].rev;return e._doNotEmitSet.add(n),setTimeout((function(){return e._doNotEmitSet.delete(n)}),3e4),r}))}r.InMemoryRxCollection=x;var A=!1;function k(){var e=this;if(!A&&(A=!0,!d.PouchDB.adapters||!d.PouchDB.adapters.memory))throw(0,b.newRxError)("IM1");if(m.has(this))return _.get(this).then((function(){return m.get(e)}));var t=new x(this),r=t.prepareChild();return m.set(this,t),_.set(this,r),r.then((function(){return t}))}r.rxdb=true;var C={RxCollection:function(e){e.inMemory=k}};r.prototypes=C;var R={rxdb:true,prototypes:C};r.RxDBInMemoryPlugin=R},{"../change-event-buffer":2,"../core":3,"../crypter":4,"../plugins/watch-for-changes":34,"../pouch-db":35,"../rx-collection":39,"../rx-error":44,"../rx-schema":46,"../rx-storage-pouchdb":47,"../util":54,"@babel/runtime/helpers/assertThisInitialized":57,"@babel/runtime/helpers/inheritsLoose":62,"@babel/runtime/helpers/interopRequireDefault":63,rxjs:539,"rxjs/operators":738}],22:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.RxDBJsonDumpPlugin=r.overwritable=r.prototypes=r.rxdb=void 0;var n=e("../util"),o=e("../rx-query"),i=e("../rx-error"),u=e("../rx-change-event");function s(){var e=this,t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],r=arguments.length>1?arguments[1]:void 0,o={name:this.name,instanceToken:this.token,encrypted:!1,passwordHash:null,collections:[]};this.password&&(o.passwordHash=(0,n.hash)(this.password),o.encrypted=!t);var i=Object.keys(this.collections).filter((function(e){return!r||r.includes(e)})).filter((function(e){return"_"!==e.charAt(0)})).map((function(t){return e.collections[t]}));return Promise.all(i.map((function(e){return e.dump(t)}))).then((function(e){return o.collections=e,o}))}var a=function(e){var t=this,r=e.collections.filter((function(e){return!t.collections[e.name]})).map((function(e){return e.name}));if(r.length>0)throw(0,i.newRxError)("JD1",{missingCollections:r});return Promise.all(e.collections.map((function(e){return t.collections[e.name].importDump(e)})))},c=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=!e,r={name:this.name,schemaHash:this.schema.hash,encrypted:!1,passwordHash:null,docs:[]};this.database.password&&t&&(r.passwordHash=(0,n.hash)(this.database.password),r.encrypted=!0);var i=(0,o.createRxQuery)("find",(0,o._getDefaultQuery)(this),this);return this._pouchFind(i,void 0,t).then((function(e){return r.docs=e.map((function(e){return delete e._rev,delete e._attachments,e})),r}))};function f(e){var t=this;if(e.schemaHash!==this.schema.hash)throw(0,i.newRxError)("JD2",{schemaHash:e.schemaHash,own:this.schema.hash});if(e.encrypted&&e.passwordHash!==(0,n.hash)(this.database.password))throw(0,i.newRxError)("JD3",{passwordHash:e.passwordHash,own:(0,n.hash)(this.database.password)});var r,o=e.docs.map((function(e){return t._crypter.decrypt(e)})).map((function(e){return t.schema.validate(e)})).map((function(e){return t._handleToPouch(e)}));return this.database.lockedRun((function(){return r=(0,n.now)(),t.pouch.bulkDocs(o)})).then((function(){var e=(0,n.now)();o.forEach((function(n){var o=(0,u.createInsertEvent)(t,n,r,e);t.$emit(o)}))}))}r.rxdb=true;var l={RxDatabase:function(e){e.dump=s,e.importDump=a},RxCollection:function(e){e.dump=c,e.importDump=f}};r.prototypes=l;var p={};r.overwritable=p;var h={rxdb:true,prototypes:l,overwritable:p};r.RxDBJsonDumpPlugin=h},{"../rx-change-event":37,"../rx-error":44,"../rx-query":45,"../util":54}],23:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.create=a,r.RxDBKeyCompressionPlugin=r.overwritable=r.prototypes=r.rxdb=r.KeyCompressor=void 0;var o=n(e("@babel/runtime/helpers/createClass")),i=e("jsonschema-key-compression"),u=e("../util"),s=function(){function e(e){this.schema=e}var t=e.prototype;return t.compress=function(e){return this.schema.doKeyCompression()?(0,i.compressObject)(this.table,e):e},t.decompress=function(e){return this.schema.doKeyCompression()?(0,i.decompressObject)(this.table,e):e},t.transformKey=function(e){return(0,i.compressedPath)(this.table,e)},t.compressQuery=function(e){return this.schema.doKeyCompression()?(0,i.compressQuery)(this.table,e):e},(0,o.default)(e,[{key:"table",get:function(){var e=this.schema.normalized,t=(0,i.createCompressionTable)(e,i.DEFAULT_COMPRESSION_FLAG,[this.schema.primaryPath,"_rev","_attachments"]);return(0,u.overwriteGetterForCaching)(this,"table",t)}}]),e}();function a(e){return new s(e)}r.KeyCompressor=s;r.rxdb=true;var c={};r.prototypes=c;var f={createKeyCompressor:a};r.overwritable=f;var l={rxdb:true,prototypes:c,overwritable:f};r.RxDBKeyCompressionPlugin=l},{"../util":54,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"jsonschema-key-compression":491}],24:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.getForDatabase=u,r.isLeader=s,r.waitForLeadership=a,r.onDestroy=c,r.RxDBLeaderElectionPlugin=r.prototypes=r.rxdb=r.LeaderElector=void 0;var n=e("broadcast-channel"),o=new WeakMap,i=function(){function e(e){this.destroyed=!1,this.isLeader=!1,this.isDead=!1,this.database=e,this.elector=(0,n.createLeaderElection)(e.broadcastChannel)}var t=e.prototype;return t.die=function(){return this.elector.die()},t.waitForLeadership=function(){var e=this;return this.elector.awaitLeadership().then((function(){return e.isLeader=!0,!0}))},t.destroy=function(){if(!this.destroyed)return this.destroyed=!0,this.isDead=!0,this.die()},e}();function u(){return o.has(this)||o.set(this,new i(this)),o.get(this)}function s(){return!this.multiInstance||this.leaderElector().isLeader}function a(){return this.multiInstance?this.leaderElector().waitForLeadership():Promise.resolve(!0)}function c(e){var t=o.get(e);t&&t.destroy()}r.LeaderElector=i;r.rxdb=true;var f={RxDatabase:function(e){e.leaderElector=u,e.isLeader=s,e.waitForLeadership=a}};r.prototypes=f;var l={rxdb:true,prototypes:f,hooks:{preDestroyRxDatabase:c}};r.RxDBLeaderElectionPlugin=l},{"broadcast-channel":96}],25:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.RxDBLocalDocumentsPlugin=r.overwritable=r.prototypes=r.rxdb=r.RxLocalDocument=void 0;var o=n(e("@babel/runtime/helpers/inheritsLoose")),i=n(e("object-path")),u=e("../rx-document"),s=e("../rx-change-event"),a=e("../doc-cache"),c=e("../rx-error"),f=e("../util"),l=e("../rx-database"),p=e("../rx-collection"),h=e("rxjs/operators"),d=new WeakMap,b=function(e){return d.has(e)||d.set(e,(0,a.createDocCache)()),d.get(e)},y=new WeakMap,v=function(e){function t(t,r,n){var o;return(o=e.call(this,null,r)||this).id=t,o.parent=n,o}return(0,o.default)(t,e),t}((0,u.createRxDocumentConstructor)());r.RxLocalDocument=v;var m=function(e){return(0,l.isInstanceOf)(e)?e.internalStore:e.pouch},_={toPouchJson:function(){(0,f.clone)(this._data)._id=f.LOCAL_PREFIX+this.id},get isLocal(){return!0},get parentPouch(){return m(this.parent)},_handleChangeEvent:function(e){if(e.documentId===this.primary)switch(e.operation){case"UPDATE":var t=(0,f.clone)(e.documentData);this._dataSync$.next((0,f.clone)(t));break;case"DELETE":b(this.parent).delete(this.primary),this._deleted$.next(!0)}},get allAttachments$(){throw(0,c.newRxError)("LD1",{document:this})},get primaryPath(){return"id"},get primary(){return this.id},get $(){return this._dataSync$.asObservable()},$emit:function(e){return this.parent.$emit(e)},get:function(e){if(this._data){if("string"!=typeof e)throw(0,c.newRxTypeError)("LD2",{objPath:e});var t=i.default.get(this._data,e);return t=(0,f.clone)(t)}},get$:function(e){if(e.includes(".item."))throw(0,c.newRxError)("LD3",{path:e});if(e===this.primaryPath)throw(0,c.newRxError)("LD4");return this._dataSync$.pipe((0,h.map)((function(t){return i.default.get(t,e)})),(0,h.distinctUntilChanged)())},set:function(e,t){if(!t){var r=(0,f.clone)(e);return r._rev=this._data._rev,this._data=r,this}if("_id"===e)throw(0,c.newRxError)("LD5",{objPath:e,value:t});if(!Object.is(this.get(e),t))return i.default.set(this._data,e,t),this},_saveData:function(e){var t=this,r=this._dataSync$.getValue();(e=(0,f.clone)(e))._id=f.LOCAL_PREFIX+this.id;var n=(0,f.now)();return this.parentPouch.put(e).then((function(o){var i=(0,f.now)();e._rev=o.rev;var u=new s.RxChangeEvent("UPDATE",t.id,(0,f.clone)(e),(0,l.isInstanceOf)(t.parent)?t.parent.token:t.parent.database.token,(0,p.isInstanceOf)(t.parent)?t.parent.name:null,!0,n,i,r,t);t.$emit(u)}))},remove:function(){var e=this,t=f.LOCAL_PREFIX+this.id,r=(0,f.now)();return this.parentPouch.remove(t,this._data._rev).then((function(){b(e.parent).delete(e.id);var t=(0,f.now)(),n=new s.RxChangeEvent("DELETE",e.id,(0,f.clone)(e._data),(0,l.isInstanceOf)(e.parent)?e.parent.token:e.parent.database.token,(0,p.isInstanceOf)(e.parent)?e.parent.name:null,!0,r,t,null,e);e.$emit(n)}))}},g=!1,w=function(){if(!g){g=!0;var e=u.basePrototype;Object.getOwnPropertyNames(e).forEach((function(t){if(!Object.getOwnPropertyDescriptor(_,t)){var r=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(_,t,r)}}));["populate","update","putAttachment","getAttachment","allAttachments"].forEach((function(e){return _[e]=function(e){return function(){throw(0,c.newRxError)("LD6",{functionName:e})}}(e)}))}};function x(e,t){var r=this;return(0,p.isInstanceOf)(this)&&this._isInMemory?this._parentCollection.insertLocal(e,t):(t=(0,f.clone)(t),this.getLocal(e).then((function(n){if(n)throw(0,c.newRxError)("LD7",{id:e,data:t});var o=m(r),i=(0,f.clone)(t);return i._id=f.LOCAL_PREFIX+e,o.put(i)})).then((function(n){return t._rev=n.rev,v.create(e,t,r)})))}function S(e,t){var r=this;return(0,p.isInstanceOf)(this)&&this._isInMemory?this._parentCollection.upsertLocal(e,t):this.getLocal(e).then((function(n){return n?(t._rev=n._data._rev,n.atomicUpdate((function(){return t})).then((function(){return n}))):r.insertLocal(e,t)}))}function O(e){var t=this;if((0,p.isInstanceOf)(this)&&this._isInMemory)return this._parentCollection.getLocal(e);var r=m(this),n=b(this).get(e);return n?Promise.resolve(n):r.get(f.LOCAL_PREFIX+e).then((function(r){return r?v.create(e,r,t):null})).catch((function(){return null}))}v.create=function(e,t,r){w(),function(e){if(!y.has(e)){var t=e.$.pipe((0,h.filter)((function(e){return e.isLocal}))).subscribe((function(t){var r=b(e).get(t.documentId);r&&r._handleChangeEvent(t)}));e._subs.push(t),y.set(e,t)}y.get(e)}(r);var n=new v(e,t,r);return n.__proto__=_,b(r).set(e,n),n};r.rxdb=true;var j={RxCollection:function(e){e.insertLocal=x,e.upsertLocal=S,e.getLocal=O},RxDatabase:function(e){e.insertLocal=x,e.upsertLocal=S,e.getLocal=O}};r.prototypes=j;var E={};r.overwritable=E;var P={rxdb:true,prototypes:j,overwritable:E};r.RxDBLocalDocumentsPlugin=P},{"../doc-cache":5,"../rx-change-event":37,"../rx-collection":39,"../rx-database":41,"../rx-document":43,"../rx-error":44,"../util":54,"@babel/runtime/helpers/inheritsLoose":62,"@babel/runtime/helpers/interopRequireDefault":63,"object-path":504,"rxjs/operators":738}],26:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.createOldCollection=h,r._getOldCollections=d,r.mustMigrate=b,r.createDataMigrator=function(e,t){return new p(e,t)},r._runStrategyIfNotNull=y,r.getBatchOfOldCollection=v,r.migrateDocumentData=m,r._migrateDocument=_,r.deleteOldCollection=g,r.migrateOldCollection=w,r.migratePromise=function(e,t){e._migratePromise||(e._migratePromise=new Promise((function(r,n){w(e,t).subscribe(null,n,r)})));return e._migratePromise},r.DataMigrator=void 0;var n=e("rxjs"),o=e("../../pouch-db"),i=e("../../util"),u=e("../../rx-schema"),s=e("../../rx-error"),a=e("../../overwritable"),c=e("../../hooks"),f=e("../../crypter"),l=e("../../rx-collection-helper"),p=function(){function e(e,t){this._migrated=!1,this.newestCollection=e,this.migrationStrategies=t,this.currentSchema=e.schema,this.database=e.database,this.name=e.name}var t=e.prototype;return t.migrate=function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:10;if(this._migrated)throw(0,s.newRxError)("DM1");this._migrated=!0;var r,u={done:!1,total:0,handled:0,success:0,deleted:0,percent:0},a=new n.Subject;return d(e).then((function(e){return r=e,Promise.all(r.map((function(e){return(0,o.countAllUndeleted)(e.pouchdb)})))})).then((function(e){var n=e.reduce((function(e,t){return e+t}),0);u.total=n,a.next((0,i.flatClone)(u));for(var o=r.shift(),s=Promise.resolve(),c=function(){var e=w(o,t);s=s.then((function(){return new Promise((function(t){var r=e.subscribe((function(e){u.handled++,u[e.type]=u[e.type]+1,u.percent=Math.round(u.handled/u.total*100),a.next((0,i.flatClone)(u))}),(function(e){r.unsubscribe(),a.error(e)}),(function(){r.unsubscribe(),t()}))}))})),o=r.shift()};o;)c();return s})).then((function(){u.done=!0,u.percent=100,a.next((0,i.flatClone)(u)),a.complete()})),a.asObservable()},t.migratePromise=function(e){var t=this;return this._migratePromise||(this._migratePromise=b(this).then((function(r){return r?new Promise((function(r,n){t.migrate(e).subscribe(null,n,r)})):Promise.resolve(!1)}))),this._migratePromise},e}();function h(e,t,r){var n=r.newestCollection.database,o=(0,u.createRxSchema)(t,!1),i={version:e,dataMigrator:r,newestCollection:r.newestCollection,database:n,schema:(0,u.createRxSchema)(t,!1),pouchdb:n._spawnPouchDB(r.newestCollection.name,e,r.newestCollection.pouchSettings),_crypter:(0,f.createCrypter)(n.password,o)};return o.doKeyCompression()&&(i._keyCompressor=a.overwritable.createKeyCompressor(o)),i}function d(e){return Promise.all((0,u.getPreviousVersions)(e.currentSchema.jsonSchema).map((function(t){return e.database.internalStore.get(e.name+"-"+t)})).map((function(e){return e.catch((function(){return null}))}))).then((function(t){return t.filter((function(e){return null!==e})).map((function(t){return h(t.schema.version,t.schema,e)}))}))}function b(e){return 0===e.currentSchema.version?Promise.resolve(!1):d(e).then((function(e){return 0!==e.length}))}function y(e,t,r){if(null===r)return Promise.resolve(null);var n=e.dataMigrator.migrationStrategies[t](r);return(0,i.toPromise)(n)}function v(e,t){return(0,o.getBatch)(e.pouchdb,t).then((function(t){return t.map((function(t){return(0,l._handleFromPouch)(e,t)}))}))}function m(e,t){t=(0,i.clone)(t);for(var r=e.version+1,n=Promise.resolve(t),o=function(){var t=r;n=n.then((function(r){return y(e,t,r)})),r++};r<=e.newestCollection.schema.version;)o();return n.then((function(t){if(null===t)return Promise.resolve(null);try{e.newestCollection.schema.validate(t)}catch(r){throw(0,s.newRxError)("DM2",{fromVersion:e.version,toVersion:e.newestCollection.schema.version,finalDoc:t})}return t}))}function _(e,t){var r={res:null,type:"",migrated:null,doc:t,oldCollection:e,newestCollection:e.newestCollection};return m(e,t).then((function(t){if(r.migrated=t,t)return(0,c.runPluginHooks)("preMigrateDocument",r),delete t._rev,e.newestCollection._pouchPut(t,!0).then((function(e){return r.res=e,r.type="success",(0,c.runAsyncPluginHooks)("postMigrateDocument",r)}));r.type="deleted"})).then((function(){return e.pouchdb.remove((0,l._handleToPouch)(e,t)).catch((function(){}))})).then((function(){return r}))}function g(e){return e.pouchdb.destroy().then((function(){return e.database.removeCollectionDoc(e.dataMigrator.name,e.schema)}))}function w(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:10;if(e._migrate)throw(0,s.newRxError)("DM3");e._migrate=!0;var r,o=new n.Subject;return function n(){return v(e,t).then((function(t){return 0===t.length?(g(e).then((function(){return o.complete()})),!1):Promise.all(t.map((function(t){return _(e,t).then((function(e){return o.next(e)}))}))).catch((function(e){return r=e})).then((function(){return!0}))})).then((function(e){e&&(r?o.error(r):n())}))}(),o.asObservable()}r.DataMigrator=p},{"../../crypter":4,"../../hooks":7,"../../overwritable":9,"../../pouch-db":35,"../../rx-collection-helper":38,"../../rx-error":44,"../../rx-schema":46,"../../util":54,rxjs:539}],27:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"_getOldCollections",{enumerable:!0,get:function(){return n._getOldCollections}}),Object.defineProperty(r,"getBatchOfOldCollection",{enumerable:!0,get:function(){return n.getBatchOfOldCollection}}),Object.defineProperty(r,"migrateDocumentData",{enumerable:!0,get:function(){return n.migrateDocumentData}}),Object.defineProperty(r,"_migrateDocument",{enumerable:!0,get:function(){return n._migrateDocument}}),Object.defineProperty(r,"deleteOldCollection",{enumerable:!0,get:function(){return n.deleteOldCollection}}),Object.defineProperty(r,"migrateOldCollection",{enumerable:!0,get:function(){return n.migrateOldCollection}}),Object.defineProperty(r,"migratePromise",{enumerable:!0,get:function(){return n.migratePromise}}),Object.defineProperty(r,"DataMigrator",{enumerable:!0,get:function(){return n.DataMigrator}}),r.RxDBMigrationPlugin=r.DATA_MIGRATOR_BY_COLLECTION=void 0;var n=e("./data-migrator"),o=new WeakMap;r.DATA_MIGRATOR_BY_COLLECTION=o;var i={rxdb:!0,prototypes:{RxCollection:function(e){e.getDataMigrator=function(){return o.has(this)||o.set(this,(0,n.createDataMigrator)(this.asRxCollection,this.migrationStrategies)),o.get(this)},e.migrationNeeded=function(){return(0,n.mustMigrate)(this.getDataMigrator())}}}};r.RxDBMigrationPlugin=i},{"./data-migrator":26}],28:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={runBuildingStep:!0,applyBuildingStep:!0,RxDBQueryBuilderPlugin:!0};r.runBuildingStep=s,r.applyBuildingStep=a,r.RxDBQueryBuilderPlugin=void 0;var o=e("./mquery/nosql-query-builder");Object.keys(o).forEach((function(e){"default"!==e&&"__esModule"!==e&&(Object.prototype.hasOwnProperty.call(n,e)||e in r&&r[e]===o[e]||Object.defineProperty(r,e,{enumerable:!0,get:function(){return o[e]}}))}));var i=e("../../rx-query"),u=e("../../util");function s(e,t,r){var n=(0,o.createQueryBuilder)((0,u.clone)(e.mangoQuery));e.other.queryBuilderPath&&(n._path=e.other.queryBuilderPath),n[t](r);var s=n.toJSON(),a=new i.RxQueryBase(e.op,s.query,e.collection);return s.path&&(a.other.queryBuilderPath=s.path),(0,i.tunnelQueryCache)(a)}function a(e,t){e[t]=function(e){return s(this,t,e)}}var c={rxdb:!0,prototypes:{RxQuery:function(e){["where","equals","eq","or","nor","and","mod","exists","elemMatch","sort"].forEach((function(t){a(e,t)})),o.OTHER_MANGO_ATTRIBUTES.forEach((function(t){a(e,t)})),o.OTHER_MANGO_OPERATORS.forEach((function(t){a(e,t)}))}}};r.RxDBQueryBuilderPlugin=c},{"../../rx-query":45,"../../util":54,"./mquery/nosql-query-builder":30}],29:[function(e,t,r){"use strict";function n(e){return"[object Object]"===e.toString()}Object.defineProperty(r,"__esModule",{value:!0}),r.merge=function e(t,r){Object.keys(r).forEach((function(o){void 0===t[o]?t[o]=r[o]:n(r[o])?e(t[o],r[o]):t[o]=r[o]}))},r.isObject=n},{}],30:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.mQuerySortToRxDBSort=u,r.canMerge=l,r.createQueryBuilder=function(e){return new i(e)},r.OTHER_MANGO_OPERATORS=r.OTHER_MANGO_ATTRIBUTES=r.NoSqlQueryBuilderClass=void 0;var n=e("./mquery-utils"),o=e("../../../rx-error"),i=function(){function e(e){if(this.options={},this._conditions={},this._fields={},e){var t=this;e.selector&&t.find(e.selector),e.limit&&t.limit(e.limit),e.skip&&t.skip(e.skip),e.sort&&e.sort.forEach((function(e){return t.sort(e)}))}}var t=e.prototype;return t.where=function(e,t){if(!arguments.length)return this;var r=typeof arguments[0];if("string"===r)return this._path=arguments[0],2===arguments.length&&(this._conditions[this._path]=arguments[1]),this;if("object"===r&&!Array.isArray(arguments[0]))return this.merge(arguments[0]);throw(0,o.newRxTypeError)("MQ1",{path:arguments[0]})},t.equals=function(e){this._ensurePath("equals");var t=this._path;return this._conditions[t]=e,this},t.eq=function(e){this._ensurePath("eq");var t=this._path;return this._conditions[t]=e,this},t.or=function(e){var t=this._conditions.$or||(this._conditions.$or=[]);return Array.isArray(e)||(e=[e]),t.push.apply(t,e),this},t.nor=function(e){var t=this._conditions.$nor||(this._conditions.$nor=[]);return Array.isArray(e)||(e=[e]),t.push.apply(t,e),this},t.and=function(e){var t=this._conditions.$and||(this._conditions.$and=[]);return Array.isArray(e)||(e=[e]),t.push.apply(t,e),this},t.mod=function(e,t){var r,n;1===arguments.length?(this._ensurePath("mod"),r=arguments[0],n=this._path):2!==arguments.length||Array.isArray(arguments[1])?3===arguments.length?(r=arguments.slice(1),n=arguments[0]):(r=arguments[1],n=arguments[0]):(this._ensurePath("mod"),r=arguments.slice(),n=this._path);var o=this._conditions[n]||(this._conditions[n]={});return o.$mod=r,this},t.exists=function(e,t){var r,n;0===arguments.length?(this._ensurePath("exists"),r=this._path,n=!0):1===arguments.length?"boolean"==typeof arguments[0]?(this._ensurePath("exists"),r=this._path,n=arguments[0]):(r=arguments[0],n=!0):2===arguments.length&&(r=arguments[0],n=arguments[1]);var o=this._conditions[r]||(this._conditions[r]={});return o.$exists=n,this},t.elemMatch=function(t,r){if(null===arguments[0])throw(0,o.newRxTypeError)("MQ2");var i,u,s;if("function"==typeof arguments[0])this._ensurePath("elemMatch"),u=this._path,i=arguments[0];else if((0,n.isObject)(arguments[0]))this._ensurePath("elemMatch"),u=this._path,s=arguments[0];else if("function"==typeof arguments[1])u=arguments[0],i=arguments[1];else{if(!arguments[1]||!(0,n.isObject)(arguments[1]))throw(0,o.newRxTypeError)("MQ2");u=arguments[0],s=arguments[1]}i&&(i(s=new e),s=s._conditions);var a=this._conditions[u]||(this._conditions[u]={});return a.$elemMatch=s,this},t.sort=function(e){var t,r=this;if(!e)return this;var i=typeof e;if(Array.isArray(e)){t=e.length;for(var u=0;u1&&void 0!==arguments[1]?arguments[1]:c;if(p.has(e))return;h.has(e)||(e.onDestroy.then((function(){var t=p.get(e);t&&clearTimeout(t)})),h.add(e));var r=setTimeout((function(){p.delete(e),e.cacheReplacementPolicy(e,e._queryCache)}),t);p.set(e,r)},r.COLLECTIONS_WITH_DESTROY_HOOK=r.CACHE_REPLACEMENT_STATE_BY_COLLECTION=r.defaultCacheReplacementPolicy=r.defaultCacheReplacementPolicyMonad=r.DEFAULT_CACHE_REPLACEMENT_WAIT_TIME=r.DEFAULT_UNEXECUTED_LIFETME=r.DEFAULT_TRY_TO_KEEP_MAX=r.QueryCache=void 0;var n=e("./util");function o(e,t){var r;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(r=function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return i(e,t)}(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var n=0;return function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}return(r=e[Symbol.iterator]()).next.bind(r)}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r0||(0===p._lastEnsureEqual&&p._creationTime2&&void 0!==arguments[2]&&arguments[2];t=e.schema.swapIdToPrimary(t),e.schema.doKeyCompression()&&(t=e._keyCompressor.decompress(t));return r?t:t=e._crypter.decrypt(t)},r.fillObjectDataBeforeInsert=function(e,t){var r=e.schema.fillObjectWithDefaults(t);if(r._id&&"_id"!==e.schema.primaryPath)throw(0,o.newRxError)("COL2",{data:t});"_id"!==e.schema.primaryPath||r._id||(r._id=(0,n.generateId)());return r};var n=e("./util"),o=e("./rx-error")},{"./rx-error":44,"./util":54}],39:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.create=A,r.isInstanceOf=k,r.default=r.RxCollectionBase=void 0;var o=n(e("@babel/runtime/regenerator")),i=n(e("@babel/runtime/helpers/asyncToGenerator")),u=n(e("@babel/runtime/helpers/createClass")),s=e("rxjs/operators"),a=e("./util"),c=e("./pouch-db"),f=e("./rx-collection-helper"),l=e("./rx-query"),p=e("./rx-schema"),h=e("./rx-change-event"),d=e("./rx-error"),b=e("./crypter"),y=e("./doc-cache"),v=e("./query-cache"),m=e("./change-event-buffer"),_=e("./overwritable"),g=e("./hooks"),w=e("./rx-document"),x=e("./rx-document-prototype-merge"),S=["pre","post"],O=["insert","save","remove","create"],j=!1,E=function(){function e(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},i=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},u=arguments.length>6&&void 0!==arguments[6]?arguments[6]:{},s=arguments.length>7&&void 0!==arguments[7]?arguments[7]:{},a=arguments.length>8&&void 0!==arguments[8]?arguments[8]:v.defaultCacheReplacementPolicy,c=arguments.length>9&&void 0!==arguments[9]?arguments[9]:{};this._isInMemory=!1,this.destroyed=!1,this._atomicUpsertQueues=new Map,this.synced=!1,this.hooks={},this._subs=[],this._repStates=[],this.pouch={},this._docCache=(0,y.createDocCache)(),this._queryCache=(0,v.createQueryCache)(),this._crypter={},this._changeEventBuffer={},this.database=e,this.name=t,this.schema=r,this.pouchSettings=n,this.migrationStrategies=o,this.methods=i,this.attachments=u,this.options=s,this.cacheReplacementPolicy=a,this.statics=c,P(this.asRxCollection)}var t=e.prototype;return t.prepare=function(){var e=this;this.pouch=this.database._spawnPouchDB(this.name,this.schema.version,this.pouchSettings),this.schema.doKeyCompression()&&(this._keyCompressor=_.overwritable.createKeyCompressor(this.schema));var t=this.pouch.info(),r=function(e,t){return Promise.all(e.schema.indexes.map((function(r){var n=r.map((function(t){var r=t===e.schema.primaryPath?"_id":t;return e.schema.doKeyCompression()?e._keyCompressor.transformKey(r):r}));return t.then((function(){return e.pouch.createIndex({index:{fields:n}})}))})))}(this.asRxCollection,t);return this._crypter=(0,b.createCrypter)(this.database.password,this.schema),this._observable$=this.database.$.pipe((0,s.filter)((function(t){return t.collectionName===e.name}))),this._changeEventBuffer=(0,m.createChangeEventBuffer)(this.asRxCollection),this._subs.push(this._observable$.pipe((0,s.filter)((function(e){return!e.isLocal}))).subscribe((function(t){var r=e._docCache.get(t.documentId);r&&r._handleChangeEvent(t)}))),Promise.all([t,r])},t.migrationNeeded=function(){if(0===this.schema.version)return Promise.resolve(!1);throw(0,a.pluginMissing)("migration")},t.getDataMigrator=function(){throw(0,a.pluginMissing)("migration")},t.migrate=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:10;return this.getDataMigrator().migrate(e)},t.migratePromise=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:10;return this.getDataMigrator().migratePromise(e)},t._handleToPouch=function(e){return(0,f._handleToPouch)(this,e)},t._handleFromPouch=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return(0,f._handleFromPouch)(this,e,t)},t._pouchPut=function(e){var t=this,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return e=this._handleToPouch(e),this.database.lockedRun((function(){return t.pouch.put(e)})).catch((function(n){if(r&&409===n.status)return t.database.lockedRun((function(){return t.pouch.get(e._id)})).then((function(r){return e._rev=r._rev,t.database.lockedRun((function(){return t.pouch.put(e)}))}));throw 409===n.status?(0,d.newRxError)("COL19",{id:e._id,pouchDbError:n,data:e}):n}))},t._pouchGet=function(e){var t=this;return this.pouch.get(e).then((function(e){return t._handleFromPouch(e)}))},t._pouchFind=function(e,t){var r=this,n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],o=e.keyCompress();return t&&(o.limit=t),this.database.lockedRun((function(){return r.pouch.find(o)})).then((function(e){return e.docs.map((function(e){return r._handleFromPouch(e,n)}))}))},t.$emit=function(e){return this.database.$emit(e)},t.insert=function(e){var t=this,r=null;if((0,w.isInstanceOf)(e)){if(!(r=e)._isTemporary)throw(0,d.newRxError)("COL1",{data:e});e=r.toJSON()}var n,o,i=(0,f.fillObjectDataBeforeInsert)(this,e),u=r;return this._runHooks("pre","insert",i).then((function(){return t.schema.validate(i),n=(0,a.now)(),t._pouchPut(i)})).then((function(e){return o=(0,a.now)(),i[t.schema.primaryPath]=e.id,i._rev=e.rev,r?r._dataSync$.next(i):u=(0,x.createRxDocument)(t,i),t._runHooks("post","insert",i,u)})).then((function(){var e=(0,h.createInsertEvent)(t,i,n,o,u);return t.$emit(e),u}))},t.bulkInsert=function(e){var t=this,r=e.map((function(e){return(0,f.fillObjectDataBeforeInsert)(t,e)}));return Promise.all(r.map((function(e){return t._runHooks("pre","insert",e).then((function(){return t.schema.validate(e),e}))}))).then((function(e){var r=e.map((function(e){return t._handleToPouch(e)})),n=new Map;return e.forEach((function(e){n.set(e[t.schema.primaryPath],e)})),t.database.lockedRun((function(){var e=(0,a.now)();return t.pouch.bulkDocs(r).then((function(r){var o=(0,a.now)(),i=r.filter((function(e){return e.ok})).map((function(e){var r=n.get(e.id);return r._rev=e.rev,(0,x.createRxDocument)(t,r)}));return i.forEach((function(r){var i=(0,h.createInsertEvent)(t,r.toJSON(!0),e,o,n.get(r.primary));t.$emit(i)})),{success:i,error:r.filter((function(e){return!e.ok}))}}))}))}))},t.upsert=function(e){var t=this,r=(0,a.flatClone)(e),n=r[this.schema.primaryPath];if(!n)throw(0,d.newRxError)("COL3",{primaryPath:this.schema.primaryPath,data:r});return this.findOne(n).exec().then((function(n){return n?(r._rev=n._rev,n.atomicUpdate((function(){return r})).then((function(){return n}))):t.insert(e)}))},t.atomicUpsert=function(e){var t,r=this,n=e[this.schema.primaryPath];if(!n)throw(0,d.newRxError)("COL4",{data:e});return t=(t=this._atomicUpsertQueues.has(n)?this._atomicUpsertQueues.get(n):Promise.resolve()).then((function(){return function(e,t,r){return e.findOne(t).exec().then((function(t){return t?{doc:t,inserted:!1}:e.insert(r).then((function(e){return{doc:e,inserted:!0}}))}))}(r,n,e)})).then((function(t){return t.inserted?t.doc:function(e,t){return e.atomicUpdate((function(e){return t._rev=e._rev,e._data=t,e._data})).then((function(){return e}))}(t.doc,e).then((function(){return(0,a.nextTick)()})).then((function(){return t.doc}))})),this._atomicUpsertQueues.set(n,t),t},t.find=function(e){if("string"==typeof e)throw(0,d.newRxError)("COL5",{queryObj:e});return e||(e=(0,l._getDefaultQuery)(this)),(0,l.createRxQuery)("find",e,this)},t.findOne=function(e){var t;if("string"==typeof e)t=(0,l.createRxQuery)("findOne",{selector:{_id:e}},this);else{if(e||(e=(0,l._getDefaultQuery)(this)),e.limit)throw(0,d.newRxError)("QU6");t=(0,l.createRxQuery)("findOne",e,this)}if("number"==typeof e||Array.isArray(e))throw(0,d.newRxTypeError)("COL6",{queryObj:e});return t},t.findByIds=function(){var e=(0,i.default)(o.default.mark((function e(t){var r,n,i=this;return o.default.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(r=new Map,n=[],t.forEach((function(e){var t=i._docCache.get(e);t?r.set(e,t):n.push(e)})),!(n.length>0)){e.next=8;break}return e.next=6,this.pouch.allDocs({include_docs:!0,keys:n});case 6:e.sent.rows.forEach((function(e){if(e.doc){var t=i._handleFromPouch(e.doc),n=(0,x.createRxDocument)(i,t);r.set(n.primary,n)}}));case 8:return e.abrupt("return",r);case 9:case"end":return e.stop()}}),e,this)})));return function(t){return e.apply(this,arguments)}}(),t.findByIds$=function(e){var t=this,r=null,n=this.findByIds(e).then((function(e){r=e}));return this.$.pipe((0,s.startWith)(null),(0,s.mergeMap)((function(e){return n.then((function(){return e}))})),(0,s.map)((function(n){if(!r)throw new Error("should not happen");if(!n)return r;if(!e.includes(n.documentId))return null;var o=n.operation;return"INSERT"===o||"UPDATE"===o?r.set(n.documentId,t._docCache.get(n.documentId)):r.delete(n.documentId),r})),(0,s.filter)((function(e){return!!e})),(0,s.shareReplay)(1))},t.dump=function(){throw(0,a.pluginMissing)("json-dump")},t.importDump=function(e){throw(0,a.pluginMissing)("json-dump")},t.watchForChanges=function(){throw(0,a.pluginMissing)("watch-for-changes")},t.sync=function(e){throw(0,a.pluginMissing)("replication")},t.syncGraphQL=function(e){throw(0,a.pluginMissing)("replication-graphql")},t.inMemory=function(){throw(0,a.pluginMissing)("in-memory")},t.addHook=function(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if("function"!=typeof r)throw(0,d.newRxTypeError)("COL7",{key:t,when:e});if(!S.includes(e))throw(0,d.newRxTypeError)("COL8",{key:t,when:e});if(!O.includes(t))throw(0,d.newRxError)("COL9",{key:t});if("post"===e&&"create"===t&&!0===n)throw(0,d.newRxError)("COL10",{when:e,key:t,parallel:n});var o=r.bind(this),i=n?"parallel":"series";this.hooks[t]=this.hooks[t]||{},this.hooks[t][e]=this.hooks[t][e]||{series:[],parallel:[]},this.hooks[t][e][i].push(o)},t.getHooks=function(e,t){try{return this.hooks[t][e]}catch(e){return{series:[],parallel:[]}}},t._runHooks=function(e,t,r,n){var o=this.getHooks(e,t);if(!o)return Promise.resolve();var i=o.series.map((function(e){return function(){return e(r,n)}}));return(0,a.promiseSeries)(i).then((function(){return Promise.all(o.parallel.map((function(e){return e(r,n)})))}))},t._runHooksSync=function(e,t,r,n){var o=this.getHooks(e,t);o&&o.series.forEach((function(e){return e(r,n)}))},t.newDocument=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};e=this.schema.fillObjectWithDefaults(e);var t=(0,w.createWithConstructor)((0,x.getRxDocumentConstructor)(this),this,e);return t._isTemporary=!0,this._runHooksSync("post","create",e,t),t},t.destroy=function(){return this.destroyed?Promise.resolve(!1):(this._onDestroyCall&&this._onDestroyCall(),this._subs.forEach((function(e){return e.unsubscribe()})),this._changeEventBuffer&&this._changeEventBuffer.destroy(),this._repStates.forEach((function(e){return e.cancel()})),delete this.database.collections[this.name],this.destroyed=!0,Promise.resolve(!0))},t.remove=function(){return this.database.removeCollection(this.name)},(0,u.default)(e,[{key:"$",get:function(){return this._observable$}},{key:"insert$",get:function(){return this.$.pipe((0,s.filter)((function(e){return"INSERT"===e.operation})))}},{key:"update$",get:function(){return this.$.pipe((0,s.filter)((function(e){return"UPDATE"===e.operation})))}},{key:"remove$",get:function(){return this.$.pipe((0,s.filter)((function(e){return"DELETE"===e.operation})))}},{key:"onDestroy",get:function(){var e=this;return this._onDestroy||(this._onDestroy=new Promise((function(t){return e._onDestroyCall=t}))),this._onDestroy}},{key:"asRxCollection",get:function(){return this}}]),e}();function P(e){if(!j){j=!0;var t=Object.getPrototypeOf(e);O.forEach((function(e){S.map((function(r){var n=r+(0,a.ucfirst)(e);t[n]=function(t,n){return this.addHook(r,e,t,n)}}))}))}}function A(e){var t=e.database,r=e.name,n=e.schema,o=e.pouchSettings,i=void 0===o?{}:o,u=e.migrationStrategies,s=void 0===u?{}:u,a=e.autoMigrate,f=void 0===a||a,l=e.statics,h=void 0===l?{}:l,b=e.methods,y=void 0===b?{}:b,m=e.attachments,_=void 0===m?{}:m,w=e.options,x=void 0===w?{}:w,S=e.cacheReplacementPolicy,O=void 0===S?v.defaultCacheReplacementPolicy:S;(0,c.validateCouchDBString)(r),(0,p.isInstanceOf)(n)||(n=(0,p.createRxSchema)(n)),Object.keys(y).filter((function(e){return n.topLevelFields.includes(e)})).forEach((function(e){throw(0,d.newRxError)("COL18",{funName:e})}));var j=new E(t,r,n,i,s,y,_,x,O,h);return j.prepare().then((function(){Object.entries(h).forEach((function(e){var t=e[0],r=e[1];Object.defineProperty(j,t,{get:function(){return r.bind(j)}})}));var e=Promise.resolve();return f&&0!==j.schema.version&&(e=j.migratePromise()),e})).then((function(){return(0,g.runPluginHooks)("createRxCollection",j),j}))}function k(e){return e instanceof E}r.RxCollectionBase=E;var C={create:A,isInstanceOf:k,RxCollectionBase:E};r.default=C},{"./change-event-buffer":2,"./crypter":4,"./doc-cache":5,"./hooks":7,"./overwritable":9,"./pouch-db":35,"./query-cache":36,"./rx-change-event":37,"./rx-collection-helper":38,"./rx-document":43,"./rx-document-prototype-merge":42,"./rx-error":44,"./rx-query":45,"./rx-schema":46,"./util":54,"@babel/runtime/helpers/asyncToGenerator":58,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"@babel/runtime/regenerator":70,"rxjs/operators":738}],40:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.getLocalDocument=function(e,t){return e.get(n.LOCAL_PREFIX+t).catch((function(){return null}))},r.setLocalDocument=function(e,t,r){return e.put({_id:t,value:r}).then((function(){}))},r.putDocument=function(e,t){return e.put(t).then((function(e){return Object.assign({_id:e.id,_rev:e.rev},t)}))},r.getAllDocuments=function(e){return e.allDocs({include_docs:!0}).then((function(e){return e.rows}))},r.deleteStorageInstance=function(e){return e.destroy()},r.INTERNAL_STORAGE_NAME=void 0;var n=e("./util");r.INTERNAL_STORAGE_NAME="_rxdb_internal"},{"./util":54}],41:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r._ensureStorageTokenExists=S,r.writeToSocket=O,r._collectionNamePrimary=j,r._removeAllOfCollection=E,r.createRxDatabase=A,r.removeRxDatabase=k,r.checkAdapter=C,r.isInstanceOf=R,r.dbCount=M,r.default=r.RxDatabaseBase=void 0;var o=n(e("@babel/runtime/helpers/createClass")),i=n(e("random-token")),u=e("custom-idle-queue"),s=e("broadcast-channel"),a=e("./util"),c=e("./rx-error"),f=e("./rx-schema"),l=e("./rx-change-event"),p=e("./overwritable"),h=e("./hooks"),d=e("rxjs"),b=e("rxjs/operators"),y=e("./pouch-db"),v=e("./rx-collection"),m=e("./rx-storage-pouchdb"),_=e("./rx-database-internal-store"),g={},w=0,x=function(){function e(e,t,r,n){var o=arguments.length>4&&void 0!==arguments[4]&&arguments[4],s=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},a=arguments.length>6?arguments[6]:void 0;this.internalStore={},this.idleQueue=new u.IdleQueue,this.token=(0,i.default)(10),this._subs=[],this.destroyed=!1,this.subject=new d.Subject,this.observable$=this.subject.asObservable().pipe((0,b.filter)((function(e){return(0,l.isInstanceOf)(e)}))),this.name=e,this.adapter=t,this.password=r,this.multiInstance=n,this.eventReduce=o,this.options=s,this.pouchSettings=a,this.storage=(0,m.getRxStoragePouchDb)(t,a),this.collections={},w++}var t=e.prototype;return t.dangerousRemoveCollectionInfo=function(){var e=this;return(0,_.getAllDocuments)(this.internalStore).then((function(t){return Promise.all(t.map((function(e){return{_id:e.key,_rev:e.value.rev}})).map((function(t){return e.internalStore.remove(t._id,t._rev)})))}))},t._spawnPouchDB=function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.storage.createStorageInstance(this.name,e,t,{pouchSettings:r})},t.$emit=function(e){e&&(this.subject.next(e),e.databaseToken===this.token&&O(this,e))},t.removeCollectionDoc=function(e,t){var r=this,n=j(e,t);return this.internalStore.get(n).then((function(e){return r.lockedRun((function(){return r.internalStore.remove(e)}))}))},t.collection=function(e){var t=this;if("string"==typeof e)return Promise.resolve(this.collections[e]);if((e=Object.assign({},e)).database=this,(0,h.runPluginHooks)("preCreateRxCollection",e),"_"===e.name.charAt(0))throw(0,c.newRxError)("DB2",{name:e.name});if(this.collections[e.name])throw(0,c.newRxError)("DB3",{name:e.name});if(!e.schema)throw(0,c.newRxError)("DB4",{name:e.name,args:e});var r=j(e.name,e.schema),n=(0,f.createRxSchema)(e.schema);e.schema=n;var o,i,u=n.hash;return this.lockedRun((function(){return t.internalStore.get(r)})).catch((function(){return null})).then((function(r){return o=r,r&&r.schemaHash!==u?t._spawnPouchDB(e.name,e.schema.version,e.pouchSettings).find({selector:{},limit:1}).then((function(t){if(0!==t.docs.length)throw(0,c.newRxError)("DB6",{name:e.name,previousSchemaHash:r.schemaHash,schemaHash:u});return r})):r})).then((function(){return(0,v.create)(e)})).then((function(n){if(i=n,n.schema.crypt&&!t.password)throw(0,c.newRxError)("DB7",{name:e.name});if(!o)return t.lockedRun((function(){return t.internalStore.put({_id:r,schemaHash:u,schema:n.schema.normalized,version:n.schema.version})})).catch((function(){}))})).then((function(){return t.collections[e.name]=i,t[e.name]||Object.defineProperty(t,e.name,{get:function(){return t.collections[e.name]}}),i}))},t.removeCollection=function(e){var t=this;return this.collections[e]&&this.collections[e].destroy(),E(this,e).then((function(r){return r.map((function(r){return t._spawnPouchDB(e,r)}))})).then((function(e){return Promise.all(e.map((function(e){return t.lockedRun((function(){return e.destroy()}))})))})).then((function(){}))},t.lockedRun=function(e){return this.idleQueue.wrapCall(e)},t.requestIdlePromise=function(){return this.idleQueue.requestIdlePromise()},t.dump=function(){throw(0,a.pluginMissing)("json-dump")},t.importDump=function(e){throw(0,a.pluginMissing)("json-dump")},t.server=function(e){throw(0,a.pluginMissing)("server")},t.leaderElector=function(){throw(0,a.pluginMissing)("leader-election")},t.isLeader=function(){throw(0,a.pluginMissing)("leader-election")},t.waitForLeadership=function(){throw(0,a.pluginMissing)("leader-election")},t.destroy=function(){var e=this;return this.destroyed?Promise.resolve(!1):((0,h.runPluginHooks)("preDestroyRxDatabase",this),w--,this.destroyed=!0,this.broadcastChannel&&setTimeout((function(){return e.broadcastChannel.close()}),1e3),this._subs.map((function(e){return e.unsubscribe()})),Promise.all(Object.keys(this.collections).map((function(t){return e.collections[t]})).map((function(e){return e.destroy()}))).then((function(){return function(e,t){if(!g[e])return;var r=g[e].indexOf(t);g[e].splice(r,1)}(e.name,e.adapter)})).then((function(){return!0})))},t.remove=function(){var e=this;return this.destroy().then((function(){return k(e.name,e.adapter)}))},(0,o.default)(e,[{key:"$",get:function(){return this.observable$}}]),e}();function S(e){return e.internalStore.get(a.LOCAL_PREFIX+"storageToken").catch((function(){return e.internalStore.put({_id:a.LOCAL_PREFIX+"storageToken",value:(0,i.default)(10)}).catch((function(){})).then((function(){return(0,a.promiseWait)(0)}))})).then((function(){return e.internalStore.get(a.LOCAL_PREFIX+"storageToken")})).then((function(e){return e.value}))}function O(e,t){if(e.multiInstance&&!t.isIntern()&&e.broadcastChannel){var r={cE:t.toJSON(),storageToken:e.storageToken};return e.broadcastChannel.postMessage(r).then((function(){return!0}))}return Promise.resolve(!1)}function j(e,t){return e+"-"+t.version}function E(e,t){return e.lockedRun((function(){return(0,_.getAllDocuments)(e.internalStore)})).then((function(r){var n=r.map((function(e){return e.doc})).filter((function(e){return e._id.split("-")[0]===t}));return Promise.all(n.map((function(t){return e.lockedRun((function(){return e.internalStore.remove(t)}))}))).then((function(){return n.map((function(e){return e.version}))}))}))}function P(e){return e.storage.createInternalStorageInstance(e.name).then((function(t){return e.internalStore=t,S(e)})).then((function(t){e.storageToken=t,e.multiInstance&&function(e){e.broadcastChannel=new s.BroadcastChannel("RxDB:"+e.name+":socket"),e.broadcastChannel$=new d.Subject,e.broadcastChannel.onmessage=function(t){if(t.storageToken===e.storageToken&&t.cE.databaseToken!==e.token){var r=new l.RxChangeEvent(t.cE.operation,t.cE.documentId,t.cE.documentData,t.cE.databaseToken,t.cE.collectionName,t.cE.isLocal,t.cE.startTime,t.cE.endTime,t.cE.previousData);e.broadcastChannel$.next(r)}},e._subs.push(e.broadcastChannel$.subscribe((function(t){e.$emit(t)})))}(e)}))}function A(e){var t=e.name,r=e.adapter,n=e.password,o=e.multiInstance,i=void 0===o||o,u=e.eventReduce,s=void 0!==u&&u,a=e.ignoreDuplicate,f=void 0!==a&&a,l=e.options,d=void 0===l?{}:l,b=e.pouchSettings,v=void 0===b?{}:b;if((0,h.runPluginHooks)("preCreateRxDatabase",{name:t,adapter:r,password:n,multiInstance:i,eventReduce:s,ignoreDuplicate:f,options:d,pouchSettings:v}),"string"==typeof r){if(!y.PouchDB.adapters||!y.PouchDB.adapters[r])throw(0,c.newRxError)("DB9",{adapter:r})}else if((0,y.isLevelDown)(r),!y.PouchDB.adapters||!y.PouchDB.adapters.leveldb)throw(0,c.newRxError)("DB10",{adapter:r});n&&p.overwritable.validatePassword(n),f||function(e,t){if(!g[e])return!1;var r=!1;if(g[e].forEach((function(e){e===t&&(r=!0)})),r)throw(0,c.newRxError)("DB8",{name:e,adapter:t,link:"https://pubkey.github.io/rxdb/rx-database.html#ignoreduplicate"})}(t,r),g[t]||(g[t]=[]),g[t].push(r);var m=new x(t,r,n,i,s,d,v);return P(m).then((function(){return(0,h.runAsyncPluginHooks)("createRxDatabase",m)})).then((function(){return m}))}function k(e,t){var r=(0,m.getRxStoragePouchDb)(t);return r.createInternalStorageInstance(e).then((function(t){return(0,_.getAllDocuments)(t).then((function(t){return Promise.all(t.map((function(e){return e.id})).map((function(t){var n=t.split("-"),o=n[0],i=parseInt(n[1],10);return r.createStorageInstance(e,o,i).destroy()})))})).then((function(){return(0,_.deleteStorageInstance)(t)}))}))}function C(e){return p.overwritable.checkAdapter(e)}function R(e){return e instanceof x}function M(){return w}r.RxDatabaseBase=x;var I={createRxDatabase:A,removeRxDatabase:k,checkAdapter:C,isInstanceOf:R,RxDatabaseBase:x,dbCount:M};r.default=I},{"./hooks":7,"./overwritable":9,"./pouch-db":35,"./rx-change-event":37,"./rx-collection":39,"./rx-database-internal-store":40,"./rx-error":44,"./rx-schema":46,"./rx-storage-pouchdb":47,"./util":54,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"broadcast-channel":96,"custom-idle-queue":423,"random-token":531,rxjs:539,"rxjs/operators":738}],42:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.getDocumentPrototype=s,r.getRxDocumentConstructor=a,r.createRxDocument=c,r.createRxDocuments=function(e,t){return t.map((function(t){return c(e,t)}))},r.getDocumentOrmPrototype=f;var n=e("./rx-document"),o=e("./hooks"),i=new WeakMap,u=new WeakMap;function s(e){if(!i.has(e)){var t=e.schema.getDocumentPrototype(),r=f(e),o=n.basePrototype,u={};[t,r,o].forEach((function(e){Object.getOwnPropertyNames(e).forEach((function(t){var r=Object.getOwnPropertyDescriptor(e,t),n=!0;(t.startsWith("_")||t.endsWith("_")||t.startsWith("$")||t.endsWith("$"))&&(n=!1),"function"==typeof r.value?Object.defineProperty(u,t,{get:function(){return r.value.bind(this)},enumerable:n,configurable:!1}):(r.enumerable=n,r.configurable=!1,r.writable&&(r.writable=!1),Object.defineProperty(u,t,r))}))})),i.set(e,u)}return i.get(e)}function a(e){if(!u.has(e)){var t=(0,n.createRxDocumentConstructor)(s(e));u.set(e,t)}return u.get(e)}function c(e,t){var r=t[e.schema.primaryPath],i=e._docCache.get(r);if(i)return i;var u=(0,n.createWithConstructor)(a(e),e,t);return e._docCache.set(r,u),e._runHooksSync("post","create",t,u),(0,o.runPluginHooks)("postCreateRxDocument",u),u}function f(e){var t={};return Object.entries(e.methods).forEach((function(e){var r=e[0],n=e[1];t[r]=n})),t}},{"./hooks":7,"./rx-document":43}],43:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.createRxDocumentConstructor=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:l,t=function(e,t){this.collection=e,this._isTemporary=!1,this._dataSync$=new i.BehaviorSubject(t),this._deleted$=new i.BehaviorSubject(!1),this._atomicQueue=Promise.resolve(),this.isInstanceOfRxDocument=!0};return t.prototype=e,t},r.defineGetterSetter=p,r.createWithConstructor=function(e,t,r){if(r[t.schema.primaryPath]&&r[t.schema.primaryPath].startsWith("_design"))return null;var n=new e(t,r);return(0,f.runPluginHooks)("createRxDocument",n),n},r.isInstanceOf=function(e){return void 0!==e&&!!e.isInstanceOfRxDocument},r.basePrototype=void 0;var o=n(e("object-path")),i=e("rxjs"),u=e("rxjs/operators"),s=e("./util"),a=e("./rx-change-event"),c=e("./rx-error"),f=e("./hooks"),l={get _data(){if(this.isInstanceOfRxDocument)return this._dataSync$.getValue()},get primaryPath(){if(this.isInstanceOfRxDocument)return this.collection.schema.primaryPath},get primary(){var e=this;if(e.isInstanceOfRxDocument)return e._data[e.primaryPath]},get revision(){if(this.isInstanceOfRxDocument)return this._data._rev},get deleted$(){if(this.isInstanceOfRxDocument)return this._deleted$.asObservable()},get deleted(){if(this.isInstanceOfRxDocument)return this._deleted$.getValue()},get $(){return this._dataSync$.asObservable()},_handleChangeEvent:function(e){if(e.documentId===this.primary){var t=(0,s.getHeightOfRevision)(e.documentData._rev);if(!((0,s.getHeightOfRevision)(this._data._rev)>t))switch(e.operation){case"INSERT":break;case"UPDATE":var r=e.documentData;this._dataSync$.next(r);break;case"DELETE":this.collection._docCache.delete(this.primary),this._deleted$.next(!0)}}},$emit:function(e){return this.collection.$emit(e)},get$:function(e){if(e.includes(".item."))throw(0,c.newRxError)("DOC1",{path:e});if(e===this.primaryPath)throw(0,c.newRxError)("DOC2");if(this.collection.schema.finalFields.includes(e))throw(0,c.newRxError)("DOC3",{path:e});if(!this.collection.schema.getSchemaByObjectPath(e))throw(0,c.newRxError)("DOC4",{path:e});return this._dataSync$.pipe((0,u.map)((function(t){return o.default.get(t,e)})),(0,u.distinctUntilChanged)())},populate:function(e){var t=this.collection.schema.getSchemaByObjectPath(e),r=this.get(e);if(!r)return Promise.resolve(null);if(!t)throw(0,c.newRxError)("DOC5",{path:e});if(!t.ref)throw(0,c.newRxError)("DOC6",{path:e,schemaObj:t});var n=this.collection.database.collections[t.ref];if(!n)throw(0,c.newRxError)("DOC7",{ref:t.ref,path:e,schemaObj:t});return"array"===t.type?n.findByIds(r).then((function(e){var t=e.values();return Array.from(t)})):n.findOne(r).exec()},get:function(e){if(this._data){var t=o.default.get(this._data,e);return"object"!=typeof(t=(0,s.clone)(t))||Array.isArray(t)||p(this.collection.schema,t,e,this),t}},toJSON:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=(0,s.clone)(this._data);return e||(delete t._rev,delete t._attachments),t},set:function(e,t){if(!this._isTemporary)throw(0,c.newRxTypeError)("DOC16",{objPath:e,value:t});if("string"!=typeof e)throw(0,c.newRxTypeError)("DOC15",{objPath:e,value:t});if(!Object.is(this.get(e),t)){var r=e.split(".");r.pop();var n=r.join(".");if(void 0===o.default.get(this._data,n))throw(0,c.newRxError)("DOC10",{childpath:e,rootPath:n});return o.default.set(this._data,e,t),this}},update:function(e){throw(0,s.pluginMissing)("update")},putAttachment:function(){throw(0,s.pluginMissing)("attachments")},getAttachment:function(){throw(0,s.pluginMissing)("attachments")},allAttachments:function(){throw(0,s.pluginMissing)("attachments")},get allAttachments$(){throw(0,s.pluginMissing)("attachments")},atomicUpdate:function(e){var t=this;return this._atomicQueue=this._atomicQueue.then((function(){var r=t._dataSync$.getValue(),n=e((0,s.clone)(t._dataSync$.getValue()),t);return(0,s.toPromise)(n).then((function(e){return t.collection&&(e=t.collection.schema.fillObjectWithDefaults(e)),t._saveData(e,r)}))})),this._atomicQueue.then((function(){return t}))},atomicSet:function(e,t){return this.atomicUpdate((function(r){return o.default.set(r,e,t),r}))},_saveData:function(e,t){var r,n=this;if(e=e,this._deleted$.getValue())throw(0,c.newRxError)("DOC11",{id:this.primary,document:this});return this.collection.schema.validateChange(t,e),this.collection._runHooks("pre","save",e,this).then((function(){return n.collection.schema.validate(e),r=(0,s.now)(),n.collection._pouchPut(e)})).then((function(o){var i=(0,s.now)();if(!o.ok)throw(0,c.newRxError)("DOC12",{data:o});e._rev=o.rev;var u=(0,a.createUpdateEvent)(n.collection,e,t,r,i,n);return n.$emit(u),n.collection._runHooks("post","save",e,n)}))},save:function(){var e=this;if(!this._isTemporary)throw(0,c.newRxError)("DOC17",{id:this.primary,document:this});return this.collection.insert(this).then((function(){return e._isTemporary=!1,e.collection._docCache.set(e.primary,e),e._dataSync$.next(e._data),!0}))},remove:function(){var e=this;if(this.deleted)return Promise.reject((0,c.newRxError)("DOC13",{document:this,id:this.primary}));var t,r=(0,s.clone)(this._data);return this.collection._runHooks("pre","remove",r,this).then((function(){return r._deleted=!0,t=(0,s.now)(),e.collection._pouchPut(r)})).then((function(){var n=(0,s.now)();return e.$emit((0,a.createDeleteEvent)(e.collection,r,e._data,t,n,e)),e.collection._runHooks("post","remove",r,e)})).then((function(){return e}))},destroy:function(){throw(0,c.newRxError)("DOC14")}};function p(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(null!==t){var o=e.getSchemaByObjectPath(r);void 0!==o&&(o.properties&&(o=o.properties),Object.keys(o).forEach((function(e){var o=(0,s.trimDots)(r+"."+e);t.__defineGetter__(e,(function(){var e=n||this;if(e.get&&"function"==typeof e.get)return e.get(o)})),Object.defineProperty(t,e+"$",{get:function(){return(n||this).get$(o)},enumerable:!1,configurable:!1}),Object.defineProperty(t,e+"_",{get:function(){return(n||this).populate(o)},enumerable:!1,configurable:!1}),t.__defineSetter__(e,(function(e){return(n||this).set(o,e)}))})))}}r.basePrototype=l},{"./hooks":7,"./rx-change-event":37,"./rx-error":44,"./util":54,"@babel/runtime/helpers/interopRequireDefault":63,"object-path":504,rxjs:539,"rxjs/operators":738}],44:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.newRxError=function(e,t){return new c(e,s.overwritable.tunnelErrorMessage(e),t)},r.newRxTypeError=function(e,t){return new f(e,s.overwritable.tunnelErrorMessage(e),t)},r.RxTypeError=r.RxError=void 0;var o=n(e("@babel/runtime/helpers/createClass")),i=n(e("@babel/runtime/helpers/inheritsLoose")),u=n(e("@babel/runtime/helpers/wrapNativeSuper")),s=e("./overwritable");function a(e,t){return"RxError:\n"+e+"\n"+function(e){var t="";return 0===Object.keys(e).length?t:(t+="Given parameters: {\n",t+=Object.keys(e).map((function(t){var r="[object Object]";try{r=JSON.stringify(e[t],(function(e,t){return void 0===t?null:t}),2)}catch(e){}return t+":"+r})).join("\n"),t+="}")}(t)}var c=function(e){function t(t,r){var n,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=a(r,o);return(n=e.call(this,i)||this).code=t,n.message=i,n.parameters=o,n.rxdb=!0,n}return(0,i.default)(t,e),t.prototype.toString=function(){return this.message},(0,o.default)(t,[{key:"name",get:function(){return"RxError ("+this.code+")"}},{key:"typeError",get:function(){return!1}}]),t}((0,u.default)(Error));r.RxError=c;var f=function(e){function t(t,r){var n,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=a(r,o);return(n=e.call(this,i)||this).code=t,n.message=i,n.parameters=o,n.rxdb=!0,n}return(0,i.default)(t,e),t.prototype.toString=function(){return this.message},(0,o.default)(t,[{key:"name",get:function(){return"RxTypeError ("+this.code+")"}},{key:"typeError",get:function(){return!0}}]),t}((0,u.default)(TypeError));r.RxTypeError=f},{"./overwritable":9,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/inheritsLoose":62,"@babel/runtime/helpers/interopRequireDefault":63,"@babel/runtime/helpers/wrapNativeSuper":69}],45:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r._getDefaultQuery=v,r.tunnelQueryCache=m,r.createRxQuery=function(e,t,r){if(t&&"object"!=typeof t)throw(0,f.newRxTypeError)("QU7",{queryObj:t});if(Array.isArray(t))throw(0,f.newRxTypeError)("QU8",{queryObj:t});var n=new y(e,t,r);return n=m(n),(0,l.runPluginHooks)("createRxQuery",n),(0,d.triggerCacheReplacement)(r),n},r.isInstanceOf=function(e){return e instanceof y},r.RxQueryBase=void 0;var o=n(e("@babel/runtime/helpers/createClass")),i=n(e("deep-equal")),u=e("rxjs"),s=e("rxjs/operators"),a=e("pouchdb-selector-core"),c=e("./util"),f=e("./rx-error"),l=e("./hooks"),p=e("./rx-document-prototype-merge"),h=e("./event-reduce"),d=e("./query-cache"),b=0,y=function(){function e(e,t,r){this.id=++b,this._execOverDatabaseCount=0,this._creationTime=(0,c.now)(),this._lastEnsureEqual=0,this.other={},this.uncached=!1,this.refCount$=new u.BehaviorSubject(null),this._latestChangeEvent=-1,this._resultsData=null,this._resultsDataMap=new Map,this._lastExecStart=0,this._lastExecEnd=0,this._resultsDocs$=new u.BehaviorSubject(null),this._ensureEqualQueue=Promise.resolve(!1),this.op=e,this.mangoQuery=t,this.collection=r,t||(t=v(this.collection))}var t=e.prototype;return t._setResultData=function(e){this._resultsData=e;var t=(0,p.createRxDocuments)(this.collection,this._resultsData);return this._resultsDocs$.next(t),t},t._execOverDatabase=function(){var e,t=this;switch(this._execOverDatabaseCount=this._execOverDatabaseCount+1,this._lastExecStart=(0,c.now)(),this.op){case"find":e=this.collection._pouchFind(this);break;case"findOne":e=this.collection._pouchFind(this,1);break;default:throw(0,f.newRxError)("QU1",{op:this.op})}return e.then((function(e){t._lastExecEnd=(0,c.now)(),t._resultsDataMap=new Map;var r=t.collection.schema.primaryPath;return e.forEach((function(e){var n=e[r];t._resultsDataMap.set(n,e)})),e}))},t.exec=function(e){var t=this;if(e&&"findOne"!==this.op)throw(0,f.newRxError)("QU9",{query:this.mangoQuery,op:this.op});return _(this).then((function(){return t.$.pipe((0,s.first)()).toPromise()})).then((function(r){if(!r&&e)throw(0,f.newRxError)("QU10",{query:t.mangoQuery,op:t.op});return r}))},t.toString=function(){var e=(0,c.sortObject)({op:this.op,query:this.mangoQuery,other:this.other},!0),t=JSON.stringify(e,c.stringifyFilter);return this.toString=function(){return t},t},t.toJSON=function(){var e=this.collection.database.storage.prepareQuery(this.asRxQuery,(0,c.clone)(this.mangoQuery));return this.toJSON=function(){return e},e},t.keyCompress=function(){var e;return e=this.collection.schema.doKeyCompression()?this.collection._keyCompressor.compressQuery(this.toJSON()):this.toJSON(),this.keyCompress=function(){return e},e},t.doesDocumentDataMatch=function(e){if(e._deleted)return!1;e=this.collection.schema.swapPrimaryToId(e);var t=this.massageSelector,r={doc:e},n=(0,a.filterInMemoryFields)([r],{selector:t},Object.keys(t));return n&&1===n.length},t.remove=function(){var e;return this.exec().then((function(t){return e=t,Array.isArray(t)?Promise.all(t.map((function(e){return e.remove()}))):t.remove()})).then((function(){return e}))},t.update=function(e){throw(0,c.pluginMissing)("update")},t.where=function(e){throw(0,c.pluginMissing)("query-builder")},t.sort=function(e){throw(0,c.pluginMissing)("query-builder")},t.skip=function(e){throw(0,c.pluginMissing)("query-builder")},t.limit=function(e){throw(0,c.pluginMissing)("query-builder")},(0,o.default)(e,[{key:"$",get:function(){var e=this;if(!this._$){var t=this._resultsDocs$.pipe((0,s.mergeMap)((function(t){return _(e).then((function(e){return!e&&t}))})),(0,s.filter)((function(e){return!!e})),(0,s.map)((function(t){return"findOne"===e.op?0===t.length?null:t[0]:t})),(0,s.map)((function(e){return Array.isArray(e)?e.slice():e}))).asObservable(),r=this.collection.$.pipe((0,s.tap)((function(){return _(e)})),(0,s.filter)((function(){return!1})));this._$=(0,u.merge)(t,r,this.refCount$.pipe((0,s.filter)((function(){return!1}))))}return this._$}},{key:"massageSelector",get:function(){return(0,c.overwriteGetterForCaching)(this,"massageSelector",(0,a.massageSelector)(this.mangoQuery.selector))}},{key:"asRxQuery",get:function(){return this}}]),e}();function v(e){var t;return{selector:(t={},t[e.schema.primaryPath]={},t)}}function m(e){return e.collection._queryCache.getByQuery(e)}function _(e){return e._ensureEqualQueue=e._ensureEqualQueue.then((function(){return new Promise((function(e){return setTimeout(e,0)}))})).then((function(){return function(e){if(e._lastEnsureEqual=(0,c.now)(),e.collection.database.destroyed)return!1;if(function(e){return e._latestChangeEvent>=e.collection._changeEventBuffer.counter}(e))return!1;var t=!1,r=!1;-1===e._latestChangeEvent&&(r=!0);if(!r){var n=e.collection._changeEventBuffer.getFrom(e._latestChangeEvent+1);if(null===n)r=!0;else{e._latestChangeEvent=e.collection._changeEventBuffer.counter,n=n.filter((function(t){return!t.startTime||t.startTime>e._lastExecStart}));var o=e.collection._changeEventBuffer.reduceByLastOfDoc(n),u=(0,h.calculateNewResults)(e,o);u.runFullQueryAgain?r=!0:u.changed&&(t=!0,e._setResultData(u.newResults))}}if(r){var s=e.collection._changeEventBuffer.counter;return e._execOverDatabase().then((function(r){return e._latestChangeEvent=s,(0,i.default)(r,e._resultsData)||(t=!0,e._setResultData(r)),t}))}return t}(e)})).then((function(e){return new Promise((function(e){return setTimeout(e,0)})).then((function(){return e}))})),e._ensureEqualQueue}r.RxQueryBase=y},{"./event-reduce":6,"./hooks":7,"./query-cache":36,"./rx-document-prototype-merge":42,"./rx-error":44,"./util":54,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"deep-equal":425,"pouchdb-selector-core":528,rxjs:539,"rxjs/operators":738}],46:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.getIndexes=p,r.getPrimary=h,r.getPreviousVersions=function(e){var t=e.version?e.version:0,r=0;return new Array(t).fill(0).map((function(){return r++}))},r.getFinalFields=d,r.normalize=b,r.createRxSchema=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];t&&(0,c.runPluginHooks)("preCreateRxSchema",e);var r=new l(y(e));return(0,c.runPluginHooks)("createRxSchema",r),r},r.isInstanceOf=function(e){return e instanceof l},r.fillWithDefaultSettings=r.RxSchema=void 0;var o=n(e("@babel/runtime/helpers/createClass")),i=n(e("object-path")),u=n(e("deep-equal")),s=e("./util"),a=e("./rx-error"),c=e("./hooks"),f=e("./rx-document"),l=function(){function e(e){this.jsonSchema=e,this.indexes=p(this.jsonSchema),this.primaryPath=h(this.jsonSchema),this.primaryPath&&this.jsonSchema.required.push(this.primaryPath),this.finalFields=d(this.jsonSchema),this.jsonSchema.required=this.jsonSchema.required.concat(this.finalFields).filter((function(e,t,r){return r.indexOf(e)===t})),this.jsonSchema.properties[this.primaryPath]||(this.jsonSchema.properties[this.primaryPath]={type:"string",minLength:1})}var t=e.prototype;return t.getSchemaByObjectPath=function(e){var t=e;return t="properties."+(t=t.replace(/\./g,".properties.")),t=(0,s.trimDots)(t),i.default.get(this.jsonSchema,t)},t.validateChange=function(e,t){this.finalFields.forEach((function(r){if(!(0,u.default)(e[r],t[r]))throw(0,a.newRxError)("DOC9",{dataBefore:e,dataAfter:t,fieldName:r})}))},t.validate=function(e,t){throw(0,s.pluginMissing)("validate")},t.fillObjectWithDefaults=function(e){return e=(0,s.clone)(e),Object.entries(this.defaultValues).filter((function(t){var r=t[0];return!e.hasOwnProperty(r)||void 0===e[r]})).forEach((function(t){var r=t[0],n=t[1];return e[r]=n})),e},t.swapIdToPrimary=function(e){return"_id"===this.primaryPath||e[this.primaryPath]||(e[this.primaryPath]=e._id,delete e._id),e},t.swapPrimaryToId=function(e){var t=this;if("_id"===this.primaryPath)return e;var r={};return Object.entries(e).forEach((function(e){var n=e[0]===t.primaryPath?"_id":e[0];r[n]=e[1]})),r},t.doKeyCompression=function(){return this.jsonSchema.keyCompression},t.getDocumentPrototype=function(){var e={};return(0,f.defineGetterSetter)(this,e,""),(0,s.overwriteGetterForCaching)(this,"getDocumentPrototype",(function(){return e})),e},(0,o.default)(e,[{key:"version",get:function(){return this.jsonSchema.version}},{key:"normalized",get:function(){return(0,s.overwriteGetterForCaching)(this,"normalized",b(this.jsonSchema))}},{key:"topLevelFields",get:function(){return Object.keys(this.normalized.properties)}},{key:"defaultValues",get:function(){var e={};return Object.entries(this.normalized.properties).filter((function(e){return e[1].hasOwnProperty("default")})).forEach((function(t){var r=t[0],n=t[1];return e[r]=n.default})),(0,s.overwriteGetterForCaching)(this,"defaultValues",e)}},{key:"crypt",get:function(){return!!(this.jsonSchema.encrypted&&this.jsonSchema.encrypted.length>0||this.jsonSchema.attachments&&this.jsonSchema.attachments.encrypted)}},{key:"encryptedPaths",get:function(){return this.jsonSchema.encrypted||[]}},{key:"hash",get:function(){return(0,s.overwriteGetterForCaching)(this,"hash",(0,s.hash)(this.normalized))}}]),e}();function p(e){return(e.indexes||[]).map((function(e){return Array.isArray(e)?e:[e]}))}function h(e){var t=Object.keys(e.properties).filter((function(t){return e.properties[t].primary})).shift();return t||"_id"}function d(e){var t=Object.keys(e.properties).filter((function(t){return e.properties[t].final}));return t.push(h(e)),t}function b(e){var t=(0,s.sortObject)((0,s.clone)(e));return e.indexes&&(t.indexes=Array.from(e.indexes)),t}r.RxSchema=l;var y=function(e){return(e=(0,s.clone)(e)).additionalProperties=!1,e.hasOwnProperty("keyCompression")||(e.keyCompression=!1),e.indexes=e.indexes||[],e.required=e.required||[],e.encrypted=e.encrypted||[],e.properties._rev={type:"string",minLength:1},e.properties._attachments={type:"object"},e.version=e.version||0,e};r.fillWithDefaultSettings=y},{"./hooks":7,"./rx-document":43,"./rx-error":44,"./util":54,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"deep-equal":425,"object-path":504}],47:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.primarySwapPouchDbQuerySelector=c,r.getPouchLocation=f,r.getRxStoragePouchDb=function(e,t){if(!e)throw new Error("adapter missing");return new a(e,t)},r.RxStoragePouchDbClass=void 0;var n=e("pouchdb-selector-core"),o=e("./util"),i=e("./hooks"),u=e("./pouch-db"),s=e("./rx-error"),a=function(){function e(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.name="pouchdb",this.adapter=e,this.pouchSettings=t}var t=e.prototype;return t.getSortComparator=function(e,t){var r,i=t.sort?t.sort:[(r={},r[e]="asc",r)],u=(0,n.massageSelector)(t.selector),s=Object.keys(t.selector);return function(t,r){var a=[t,r].map((function(t){var r=(0,o.flatClone)(t),n=r[e];return delete r[e],r._id=n,{doc:r}}));return(0,n.filterInMemoryFields)(a,{selector:u,sort:i},s)[0].doc._id===a[0].doc._id?-1:1}},t.getQueryMatcher=function(e,t){var r=(0,n.massageSelector)(t.selector);return function(i){var u=(0,o.flatClone)(i),s=u[e];delete u[e],u._id=s;var a={doc:u},c=(0,n.filterInMemoryFields)([a],{selector:r},Object.keys(t.selector));return c&&1===c.length}},t.createStorageInstance=function(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};n.pouchSettings||(n.pouchSettings={});var s=f(e,t,r),a={location:s,adapter:(0,o.adapterObject)(this.adapter),settings:n.pouchSettings},c=Object.assign({},a.adapter,this.pouchSettings,a.settings);return(0,i.runPluginHooks)("preCreatePouchDb",a),new u.PouchDB(a.location,c)},t.createInternalStorageInstance=function(e,t){var r=this.createStorageInstance(e,"_rxdb_internal",0,{pouchSettings:{auto_compaction:!1,revs_limit:1}});return Promise.resolve(r)},t.prepareQuery=function(e,t){var r=e.collection.schema.primaryPath,n=t;if(n.sort&&n.sort.forEach((function(t){var r=Object.keys(t)[0],o=["$gt","$gte","$lt","$lte"];if(!(n.selector[r]&&Object.keys(n.selector[r]).some((function(e){return o.includes(e)}))||!1)){var i=e.collection.schema.getSchemaByObjectPath(r);if(!i)throw(0,s.newRxError)("QU5",{key:r});switch(n.selector[r]||(n.selector[r]={}),i.type){case"number":case"integer":n.selector[r].$gt=-1e28;break;case"string":"string"!=typeof n.selector[r]&&(n.selector[r].$gt="");break;default:n.selector[r].$gt=null}}})),n.selector[r]&&n.selector[r].$regex)throw(0,s.newRxError)("QU4",{path:r,query:e.mangoQuery});if(n.sort){var o=n.sort.map((function(e){var t,n=Object.keys(e)[0],o=Object.values(e)[0];return(t={})[n===r?"_id":n]=o,t}));n.sort=o}return Object.entries(n.selector).forEach((function(e){var t=e[0],r=e[1];"object"!=typeof r||null===r||Array.isArray(r)||0!==Object.keys(r).length||delete n.selector[t]})),"_id"!==r&&(n.selector=c(n.selector,r)),n},e}();function c(e,t){if(Array.isArray(e))return e.map((function(e){return c(e,t)}));if("object"==typeof e){var r={};return Object.entries(e).forEach((function(e){var n=e[0],o=e[1];n===t?r._id=o:n.startsWith("$")?r[n]=c(o,t):r[n]=o})),r}return e}function f(e,t,r){var n=e+"-rxdb-"+r+"-";if(t.includes("/")){var o=t.split("/"),i=o.pop(),u=o.join("/");return u+="/"+n+i}return n+t}r.RxStoragePouchDbClass=a},{"./hooks":7,"./pouch-db":35,"./rx-error":44,"./util":54,"pouchdb-selector-core":528}],48:[function(e,t,r){},{}],49:[function(e,t,r){},{}],50:[function(e,t,r){},{}],51:[function(e,t,r){},{}],52:[function(e,t,r){},{}],53:[function(e,t,r){},{}],54:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.pluginMissing=function(e){var t=e.split("-"),r="RxDB";return t.forEach((function(e){r+=l(e)})),r+="Plugin",new Error("You are using a function which must be overwritten by a plugin.\n You should either prevent the usage of this function or add the plugin via:\n import { "+r+" } from 'rxdb/plugins/"+e+"';\n addRxPlugin("+r+");\n ")},r.fastUnsecureHash=function(e){"string"!=typeof e&&(e=JSON.stringify(e));var t,r,n,o=0;if(0===e.length)return o;for(t=0,n=e.length;t0&&void 0!==arguments[0]?arguments[0]:0;return new Promise((function(t){return setTimeout(t,e)}))},r.toPromise=function(e){return e&&"function"==typeof e.then?e:Promise.resolve(e)},r.requestIdlePromise=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return"object"==typeof window&&window.requestIdleCallback?new Promise((function(t){return window.requestIdleCallback(t,{timeout:e})})):Promise.resolve()},r.promiseSeries=function(e,t){return e.reduce((function(e,t){return e.then(t)}),Promise.resolve(t))},r.requestIdleCallbackIfAvailable=function(e){"object"==typeof window&&window.requestIdleCallback&&window.requestIdleCallback(e)},r.ucfirst=l,r.trimDots=function(e){for(;"."===e.charAt(0);)e=e.substr(1);for(;"."===e.slice(-1);)e=e.slice(0,-1);return e},r.sortObject=function e(t){var r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(!t)return t;if(!r&&Array.isArray(t))return t.sort((function(e,t){return"string"==typeof e&&"string"==typeof t?e.localeCompare(t):"object"==typeof e?1:-1})).map((function(t){return e(t,r)}));if("object"==typeof t&&!Array.isArray(t)){if(t instanceof RegExp)return t;var n={};return Object.keys(t).sort((function(e,t){return e.localeCompare(t)})).forEach((function(o){n[o]=e(t[o],r)})),n}return t},r.stringifyFilter=function(e,t){return t instanceof RegExp?t.toString():t},r.randomCouchString=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:10,t="",r="abcdefghijklmnopqrstuvwxyz",n=0;n>1)],t)<=0?u=s+1:i=s-1}r(o[s],t)<=0&&s++;return o.splice(s,0,t),o}},{}],74:[function(e,t,r){(function(r){(function(){"use strict";var n=e("array-filter");t.exports=function(){return n(["BigInt64Array","BigUint64Array","Float32Array","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Uint8Array","Uint8ClampedArray"],(function(e){return"function"==typeof r[e]}))}}).call(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"array-filter":72}],75:[function(e,t,r){"use strict";r.byteLength=function(e){var t=c(e),r=t[0],n=t[1];return 3*(r+n)/4-n},r.toByteArray=function(e){var t,r,n=c(e),u=n[0],s=n[1],a=new i(function(e,t,r){return 3*(t+r)/4-r}(0,u,s)),f=0,l=s>0?u-4:u;for(r=0;r>16&255,a[f++]=t>>8&255,a[f++]=255&t;2===s&&(t=o[e.charCodeAt(r)]<<2|o[e.charCodeAt(r+1)]>>4,a[f++]=255&t);1===s&&(t=o[e.charCodeAt(r)]<<10|o[e.charCodeAt(r+1)]<<4|o[e.charCodeAt(r+2)]>>2,a[f++]=t>>8&255,a[f++]=255&t);return a},r.fromByteArray=function(e){for(var t,r=e.length,o=r%3,i=[],u=16383,s=0,a=r-o;sa?a:s+u));1===o?(t=e[r-1],i.push(n[t>>2]+n[t<<4&63]+"==")):2===o&&(t=(e[r-2]<<8)+e[r-1],i.push(n[t>>10]+n[t>>4&63]+n[t<<2&63]+"="));return i.join("")};for(var n=[],o=[],i="undefined"!=typeof Uint8Array?Uint8Array:Array,u="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",s=0,a=u.length;s0)throw new Error("Invalid string. Length must be a multiple of 4");var r=e.indexOf("=");return-1===r&&(r=t),[r,r===t?0:4-r%4]}function f(e,t,r){for(var o,i,u=[],s=t;s>18&63]+n[i>>12&63]+n[i>>6&63]+n[63&i]);return u.join("")}o["-".charCodeAt(0)]=62,o["_".charCodeAt(0)]=63},{}],76:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("./util"),o=e("./find-similar-node"),i=function(){function e(e,t,r){this.level=e,this.id=n.nextNodeId(),this.deleted=!1,this.type=r,this.rootNode=t,t&&this.rootNode.addNode(this)}return e.prototype.isEqualToOtherNode=function(e,t){return void 0===t&&(t=this.toString()),t===e.toString()},e.prototype.remove=function(){var e;if((this.ensureNotDeleted("remove"),this.isInternalNode())&&(e=this).parents.size>0)throw new Error("cannot remove node with parents "+this.id);this.branches&&((e=this).branches.areBranchesStrictEqual()?e.branches.getBranch("0").parents.remove(e):(e.branches.getBranch("0").parents.remove(e),e.branches.getBranch("1").parents.remove(e)));this.deleted=!0,this.rootNode.removeNode(this)},e.prototype.toJSON=function(e){void 0===e&&(e=!1);var t={id:e?this.id:void 0,deleted:e?this.deleted:void 0,type:this.type,level:this.level};if(e&&this.parents&&(t.parents=this.parents.toString()),this.isLeafNode()&&(t.value=this.asLeafNode().value),this.branches&&!this.branches.deleted){var r=this.branches;t.branches={0:r.getBranch("0").toJSON(e),1:r.getBranch("1").toJSON(e)}}return t},e.prototype.toString=function(){var e="<"+this.type+":"+this.level;if(this.branches){var t=this.branches;e+="|0:"+t.getBranch("0"),e+="|1:"+t.getBranch("1")}return this.isLeafNode()&&(e+="|v:"+this.asLeafNode().value),e+=">"},e.prototype.isRootNode=function(){return"RootNode"===this.type},e.prototype.isInternalNode=function(){return"InternalNode"===this.type},e.prototype.isLeafNode=function(){return"LeafNode"===this.type},e.prototype.asRootNode=function(){if(!this.isRootNode())throw new Error("ouch");return this},e.prototype.asInternalNode=function(){if(!this.isInternalNode())throw new Error("ouch");return this},e.prototype.asLeafNode=function(){if(!this.isLeafNode())throw new Error("ouch");return this},e.prototype.ensureNotDeleted=function(e){if(void 0===e&&(e="unknown"),this.deleted)throw new Error("forbidden operation "+e+" on deleted node "+this.id)},e.prototype.log=function(){console.log(JSON.stringify(this.toJSON(!0),null,2))},e.prototype.applyEliminationRule=function(e){var t=this;this.ensureNotDeleted("applyEliminationRule"),e||(e=this.rootNode.getNodesOfLevel(this.level));var r=o.findSimilarNode(this,e);if(r){var n=this.parents.getAll(),i=[];return n.forEach((function(e){var n=e.branches.getKeyOfNode(t);e.branches.setBranch(n,r),e.branches.areBranchesStrictEqual()&&i.push(e),t.parents.remove(e)})),i.forEach((function(e){e.isInternalNode()&&e.applyReductionRule()})),!0}return!1},e}();r.AbstractNode=i},{"./find-similar-node":81,"./util":94}],77:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=function(){function e(e){this.node=e,this.deleted=!1,this.branches={}}return e.prototype.setBranch=function(e,t){this.branches[e]!==t&&(this.branches[e]=t,t.parents.add(this.node))},e.prototype.getKeyOfNode=function(e){if(this.getBranch("0")===e)return"0";if(this.getBranch("1")===e)return"1";throw new Error("none matched")},e.prototype.getBranch=function(e){return this.branches[e]},e.prototype.getBothBranches=function(){return[this.getBranch("0"),this.getBranch("1")]},e.prototype.hasBranchAsNode=function(e){return this.getBranch("0")===e||this.getBranch("1")===e},e.prototype.hasNodeIdAsBranch=function(e){return this.getBranch("0").id===e||this.getBranch("1").id===e},e.prototype.areBranchesStrictEqual=function(){return this.branches[0]===this.branches[1]},e.prototype.hasEqualBranches=function(){return JSON.stringify(this.branches[0])===JSON.stringify(this.branches[1])},e}();r.Branches=n,r.ensureNodesNotStrictEqual=function(e,t){if(e===t)throw new Error("cannot have two strict equal branches")}},{}],78:[function(e,t,r){"use strict";var n=this&&this.__values||function(e){var t="function"==typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&"number"==typeof e.length)return{next:function(){return e&&n>=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")},o=this&&this.__read||function(e,t){var r="function"==typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,i=r.call(e),u=[];try{for(;(void 0===t||t-- >0)&&!(n=i.next()).done;)u.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=i.return)&&r.call(i)}finally{if(o)throw o.error}}return u};Object.defineProperty(r,"__esModule",{value:!0});var i=e("./root-node"),u=e("./util"),s=e("./internal-node"),a=e("./leaf-node");r.createBddFromTruthTable=function(e){var t,r,c=new i.RootNode,f=e.keys().next().value.length,l=Math.pow(2,f);if(e.size!==l)throw new Error("truth table has missing entries");try{for(var p=n(e),h=p.next();!h.done;h=p.next()){for(var d=o(h.value,2),b=d[0],y=d[1],v=c,m=0;mr.length){var a=s[0],c=r.find((function(e){return!!e.isInternalNode()&&e.branches.hasNodeIdAsBranch(a)}));console.log("referenceToFirst:"),null==c||c.log()}throw new Error("ensureCorrectBdd() nodes in list not equal size to recursive nodes allNodes: "+r.length+" recursiveNodes: "+i.size+" nodesOnlyInRecursive: "+s.join(", ")+" ")}if(r.forEach((function(e){if(!e.isRootNode()){var t=e;if(e.deleted)throw new Error("ensureCorrectBdd() bdd includes a deleted node");if(0===t.parents.size)throw new Error("ensureCorrectBdd() node has no parent "+t.id);if(t.isInternalNode()){var r=t,n=r.branches.getBothBranches();if(r.branches.areBranchesStrictEqual())throw new Error("ensureCorrectBdd() node has two equal branches: "+n.map((function(e){return e.id})).join(", "));n.forEach((function(e){if(!e.parents.has(r))throw new Error("ensureCorrectBdd() branch must have the node as parent")}))}t.parents.getAll().forEach((function(e){if(!e.branches.hasBranchAsNode(t))throw new Error("ensureCorrectBdd() parent node does not have child as branch")}))}})),t.includes('"deleted":true'))throw new Error("ensureCorrectBdd() bdd includes a deleted node")},r.getNodesRecursive=n},{}],80:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("./util");r.fillTruthTable=function(e,t,r){for(var o=n.maxBinaryWithLength(t),i=n.minBinaryWithLength(t),u=!1;!u;)e.has(i)||e.set(i,r),i===o?u=!0:i=n.getNextStateSet(i)}},{"./util":94}],81:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.findSimilarNode=function(e,t){for(var r=e.toString(),n=0;n99)throw new Error("cannot build string with too many leaf nodes");t+=n.toString().padStart(2,"0");var u=e.levels.slice().reverse(),s=new Map;return u.forEach((function(n){e.getNodesOfLevel(n).forEach((function(e){var n=i(e,s,r);r=n.nextCode,s.set(e,n.id),t+=n.str}))})),t},r.nodeToString=i},{"./string-format":90}],86:[function(e,t,r){"use strict";function n(e){var t=e.branches.getBranch("0"),r=e.branches.getBranch("1");return{l:e.level,0:t.isLeafNode()?t.asLeafNode().value:n(t),1:r.isLeafNode()?r.asLeafNode().value:n(r)}}Object.defineProperty(r,"__esModule",{value:!0}),r.bddToSimpleBdd=function(e){return n(e)},r.nodeToSimpleBddNode=n},{}],87:[function(e,t,r){"use strict";function n(e){for(var t in e)r.hasOwnProperty(t)||(r[t]=e[t])}Object.defineProperty(r,"__esModule",{value:!0}),n(e("./bdd-to-minimal-string")),n(e("./minimal-string-to-simple-bdd")),n(e("./resolve-with-simple-bdd")),n(e("./string-format")),n(e("./bdd-to-simple-bdd"))},{"./bdd-to-minimal-string":85,"./bdd-to-simple-bdd":86,"./minimal-string-to-simple-bdd":88,"./resolve-with-simple-bdd":89,"./string-format":90}],88:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("../util"),o=e("./string-format");r.minimalStringToSimpleBdd=function(e){for(var t=new Map,r=2+2*parseInt(e.charAt(0)+e.charAt(1),10),i=e.substring(2,r),u=n.splitStringToChunks(i,2),s=0;s=128&&e<=160&&(e=161),{char:String.fromCharCode(e),nextCode:e+1}}},{}],91:[function(e,t,r){"use strict";var n=this&&this.__awaiter||function(e,t,r,n){return new(r||(r=Promise))((function(o,i){function u(e){try{a(n.next(e))}catch(e){i(e)}}function s(e){try{a(n.throw(e))}catch(e){i(e)}}function a(e){var t;e.done?o(e.value):(t=e.value,t instanceof r?t:new r((function(e){e(t)}))).then(u,s)}a((n=n.apply(e,t||[])).next())}))},o=this&&this.__generator||function(e,t){var r,n,o,i,u={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(i){return function(s){return function(i){if(r)throw new TypeError("Generator is already executing.");for(;u;)try{if(r=1,n&&(o=2&i[0]?n.return:i[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,i[1])).done)return o;switch(n=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return u.label++,{value:i[1],done:!1};case 5:u.label++,n=i[1],i=[0];continue;case 7:i=u.ops.pop(),u.trys.pop();continue;default:if(!(o=u.trys,(o=o.length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){u=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")},u=this&&this.__read||function(e,t){var r="function"==typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,i=r.call(e),u=[];try{for(;(void 0===t||t-- >0)&&!(n=i.next()).done;)u.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=i.return)&&r.call(i)}finally{if(o)throw o.error}}return u};Object.defineProperty(r,"__esModule",{value:!0});var s=e("./create-bdd-from-truth-table"),a=e("./util");function c(e){var t,r,n=l(a.firstKeyOfMap(e).length),o=a.shuffleArray(n),s={},c={};o.forEach((function(e,t){s[t]=e,c[e]=t}));var p=new Map;try{for(var h=i(e.entries()),d=h.next();!d.done;d=h.next()){var b=u(d.value,2),y=b[0],v=b[1],m=f(y,s);p.set(m,v)}}catch(e){t={error:e}}finally{try{d&&!d.done&&(r=h.return)&&r.call(h)}finally{if(t)throw t.error}}return{newTable:p,mapping:s,mappingBeforeToAfter:c}}function f(e,t){return e.split("").map((function(e,r){return{char:e,indexBefore:r,indexAfter:t[r]}})).sort((function(e,t){return e.indexAfter-t.indexAfter})).map((function(e){return e.char})).join("")}function l(e){for(var t=[],r=0;r=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")};Object.defineProperty(r,"__esModule",{value:!0});var o=function(){function e(e){this.node=e,this.parents=new Set}return e.prototype.remove=function(e){this.parents.delete(e),0===this.parents.size&&this.node.remove()},e.prototype.getAll=function(){return Array.from(this.parents)},e.prototype.add=function(e){if(this.node.level===e.level)throw new Error("a node cannot be parent of a node with the same level");this.parents.add(e)},e.prototype.has=function(e){return this.parents.has(e)},e.prototype.toString=function(){var e,t,r=[];try{for(var o=n(this.parents),i=o.next();!i.done;i=o.next()){var u=i.value;r.push(u.id)}}catch(t){e={error:t}}finally{try{i&&!i.done&&(t=o.return)&&t.call(o)}finally{if(e)throw e.error}}return r.join(", ")},Object.defineProperty(e.prototype,"size",{get:function(){return this.parents.size},enumerable:!0,configurable:!0}),e}();r.Parents=o},{}],93:[function(e,t,r){"use strict";var n,o=this&&this.__extends||(n=function(e,t){return(n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(e,t)},function(e,t){function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),i=this&&this.__values||function(e){var t="function"==typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&"number"==typeof e.length)return{next:function(){return e&&n>=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")};Object.defineProperty(r,"__esModule",{value:!0});var u=e("./abstract-node"),s=e("./branches"),a=e("./util"),c=e("./minimal-string"),f=function(e){function t(){var t=e.call(this,0,null,"RootNode")||this;t.branches=new s.Branches(t),t.levels=[],t.nodesByLevel=new Map,t.levels.push(0);var r=new Set;return r.add(t),t.nodesByLevel.set(0,r),t}return o(t,e),t.prototype.addNode=function(e){var t=e.level;this.levels.includes(t)||this.levels.push(t),this.ensureLevelSetExists(t);var r=this.nodesByLevel.get(t);null==r||r.add(e)},t.prototype.removeNode=function(e){var t=this.nodesByLevel.get(e.level);if(!t.has(e))throw new Error("removed non-existing node "+e.id);t.delete(e)},t.prototype.ensureLevelSetExists=function(e){this.nodesByLevel.has(e)||this.nodesByLevel.set(e,new Set)},t.prototype.getLevels=function(){return Array.from(this.levels).sort((function(e,t){return e-t}))},t.prototype.getNodesOfLevel=function(e){this.ensureLevelSetExists(e);var t=this.nodesByLevel.get(e);return Array.from(t)},t.prototype.countNodes=function(){var e=this,t=0;return this.getLevels().forEach((function(r){var n=e.getNodesOfLevel(r).length;t+=n})),t},t.prototype.minimize=function(e){var t,r;void 0===e&&(e=!1);for(var n=!1;!n;){e&&console.log("minimize() itterate once");for(var o=0,u=a.lastOfArray(this.getLevels());u>0;){var s=this.getNodesOfLevel(u);e&&console.log("minimize() run for level "+u+" with "+s.length+" nodes");var c=0;try{for(var f=(t=void 0,i(s)),l=f.next();!l.done;l=f.next()){var p=l.value;if(c++,e&&c%4e3==0&&console.log("minimize() node #"+p.id),p.isLeafNode())(d=p.asLeafNode().applyEliminationRule())&&o++;if(!p.deleted&&p.isInternalNode()){var h=p,d=h.applyReductionRule(),b=!1;h.deleted||(b=h.applyEliminationRule(s)),(d||b)&&o++}}}catch(e){t={error:e}}finally{try{l&&!l.done&&(r=f.return)&&r.call(f)}finally{if(t)throw t.error}}u--}0===o?n=!0:e&&console.log("minimize() itteration done with "+o+" minimisations")}},t.prototype.getLeafNodes=function(){var e=a.lastOfArray(this.getLevels());return this.getNodesOfLevel(e).reverse()},t.prototype.removeIrrelevantLeafNodes=function(e){for(var t,r,n=!1;!n;){var o=0,u=this.getLeafNodes();try{for(var s=(t=void 0,i(u)),a=s.next();!a.done;a=s.next()){a.value.removeIfValueEquals(e)&&o++}}catch(e){t={error:e}}finally{try{a&&!a.done&&(r=s.return)&&r.call(s)}finally{if(t)throw t.error}}this.minimize(),0===o&&(n=!0)}},t.prototype.resolve=function(e,t){for(var r=this;;){var n=e[r.level](t),o=a.booleanToBooleanString(n);if((r=r.branches.getBranch(o)).isLeafNode())return r.asLeafNode().value}},t.prototype.toSimpleBdd=function(){return c.bddToSimpleBdd(this)},t}(u.AbstractNode);r.RootNode=f},{"./abstract-node":76,"./branches":77,"./minimal-string":87,"./util":94}],94:[function(e,t,r){"use strict";var n=this&&this.__read||function(e,t){var r="function"==typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,i=r.call(e),u=[];try{for(;(void 0===t||t-- >0)&&!(n=i.next()).done;)u.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=i.return)&&r.call(i)}finally{if(o)throw o.error}}return u};Object.defineProperty(r,"__esModule",{value:!0}),r.booleanStringToBoolean=function(e){return"1"===e},r.booleanToBooleanString=function(e){return e?"1":"0"},r.oppositeBoolean=function(e){return"1"===e?"0":"1"},r.lastChar=function(e){return e.slice(-1)};var o=function(e){void 0===e&&(e=6);for(var t="",r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",n=r.length,o=0;o>>0).toString(2).padStart(t,"0")}function s(e){return parseInt(e,2)}r.nextNodeId=function(){var e="node_"+o+"_"+i;return i++,e},r.decimalToPaddedBinary=u,r.oppositeBinary=function(e){if("1"===e)return"0";if("0"===e)return"1";throw new Error("non-binary given")},r.binaryToDecimal=s,r.minBinaryWithLength=function(e){return new Array(e).fill(0).map((function(){return"0"})).join("")},r.maxBinaryWithLength=function(e){return new Array(e).fill(0).map((function(){return"1"})).join("")},r.getNextStateSet=function(e){return u(s(e)+1,e.length)},r.firstKeyOfMap=function(e){return e.keys().next().value},r.shuffleArray=function(e){for(var t,r=e.length-1;r>0;r--){var o=Math.floor(Math.random()*(r+1));t=n([e[o],e[r]],2),e[r]=t[0],e[o]=t[1]}return e},r.lastOfArray=function(e){return e[e.length-1]},r.splitStringToChunks=function(e,t){for(var r=[],n=0,o=e.length;n0||e._addEL.internal.length>0}function f(e,t,r){e._addEL[t].push(r),function(e){if(!e._iL&&c(e)){var t=function(t){e._addEL[t.type].forEach((function(e){t.time>=e.time&&e.fn(t.data)}))},r=e.method.microSeconds();e._prepP?e._prepP.then((function(){e._iL=!0,e.method.onMessage(e._state,t,r)})):(e._iL=!0,e.method.onMessage(e._state,t,r))}}(e)}function l(e,t,r){e._addEL[t]=e._addEL[t].filter((function(e){return e!==r})),function(e){if(e._iL&&!c(e)){e._iL=!1;var t=e.method.microSeconds();e.method.onMessage(e._state,null,t)}}(e)}r.BroadcastChannel=s,s._pubkey=!0,s.prototype={postMessage:function(e){if(this.closed)throw new Error("BroadcastChannel.postMessage(): Cannot post message after channel has closed");return a(this,"message",e)},postInternal:function(e){return a(this,"internal",e)},set onmessage(e){var t={time:this.method.microSeconds(),fn:e};l(this,"message",this._onML),e&&"function"==typeof e?(this._onML=t,f(this,"message",t)):this._onML=null},addEventListener:function(e,t){f(this,e,{time:this.method.microSeconds(),fn:t})},removeEventListener:function(e,t){l(this,e,this._addEL[e].find((function(e){return e.fn===t})))},close:function(){var e=this;if(!this.closed){this.closed=!0;var t=this._prepP?this._prepP:Promise.resolve();return this._onML=null,this._addEL.message=[],t.then((function(){return Promise.all(e._befC.map((function(e){return e()})))})).then((function(){return e.method.close(e._state)}))}},get type(){return this.method.type}}},{"./method-chooser.js":99,"./options.js":105,"./util.js":106}],96:[function(e,t,r){"use strict";var n=e("./index.js");t.exports={BroadcastChannel:n.BroadcastChannel,createLeaderElection:n.createLeaderElection,clearNodeFolder:n.clearNodeFolder,enforceOptions:n.enforceOptions}},{"./index.js":97}],97:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"BroadcastChannel",{enumerable:!0,get:function(){return n.BroadcastChannel}}),Object.defineProperty(r,"clearNodeFolder",{enumerable:!0,get:function(){return n.clearNodeFolder}}),Object.defineProperty(r,"enforceOptions",{enumerable:!0,get:function(){return n.enforceOptions}}),Object.defineProperty(r,"createLeaderElection",{enumerable:!0,get:function(){return o.createLeaderElection}});var n=e("./broadcast-channel"),o=e("./leader-election")},{"./broadcast-channel":95,"./leader-election":98}],98:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.createLeaderElection=function(e,t){if(e._leaderElector)throw new Error("BroadcastChannel already has a leader-elector");t=function(e,t){e||(e={});(e=JSON.parse(JSON.stringify(e))).fallbackInterval||(e.fallbackInterval=3e3);e.responseTime||(e.responseTime=t.method.averageResponseTime(t.options));return e}(t,e);var r=new u(e,t);return e._befC.push((function(){return r.die()})),e._leaderElector=r,r};var o=e("./util.js"),i=n(e("unload")),u=function(e,t){this._channel=e,this._options=t,this.isLeader=!1,this.isDead=!1,this.token=(0,o.randomToken)(),this._isApl=!1,this._reApply=!1,this._unl=[],this._lstns=[],this._invs=[]};function s(e,t){var r={context:"leader",action:t,token:e.token};return e._channel.postInternal(r)}u.prototype={applyOnce:function(){var e=this;if(this.isLeader)return Promise.resolve(!1);if(this.isDead)return Promise.resolve(!1);if(this._isApl)return this._reApply=!0,Promise.resolve(!1);this._isApl=!0;var t=!1,r=[],n=function(n){"leader"===n.context&&n.token!=e.token&&(r.push(n),"apply"===n.action&&n.token>e.token&&(t=!0),"tell"===n.action&&(t=!0))};return this._channel.addEventListener("internal",n),s(this,"apply").then((function(){return(0,o.sleep)(e._options.responseTime)})).then((function(){return t?Promise.reject(new Error):s(e,"apply")})).then((function(){return(0,o.sleep)(e._options.responseTime)})).then((function(){return t?Promise.reject(new Error):s(e)})).then((function(){return function(e){e.isLeader=!0;var t=i.default.add((function(){return e.die()}));e._unl.push(t);var r=function(t){"leader"===t.context&&"apply"===t.action&&s(e,"tell")};return e._channel.addEventListener("internal",r),e._lstns.push(r),s(e,"tell")}(e)})).then((function(){return!0})).catch((function(){return!1})).then((function(t){return e._channel.removeEventListener("internal",n),e._isApl=!1,!t&&e._reApply?(e._reApply=!1,e.applyOnce()):t}))},awaitLeadership:function(){var e;return this._aLP||(this._aLP=(e=this).isLeader?Promise.resolve():new Promise((function(t){var r=!1,n=function(){r||(r=!0,clearInterval(o),e._channel.removeEventListener("internal",i),t(!0))};e.applyOnce().then((function(){e.isLeader&&n()}));var o=setInterval((function(){e.applyOnce().then((function(){e.isLeader&&n()}))}),e._options.fallbackInterval);e._invs.push(o);var i=function(t){"leader"===t.context&&"death"===t.action&&e.applyOnce().then((function(){e.isLeader&&n()}))};e._channel.addEventListener("internal",i),e._lstns.push(i)}))),this._aLP},die:function(){var e=this;if(!this.isDead)return this.isDead=!0,this._lstns.forEach((function(t){return e._channel.removeEventListener("internal",t)})),this._invs.forEach((function(e){return clearInterval(e)})),this._unl.forEach((function(e){e.remove()})),s(this,"death")}}},{"./util.js":106,"@babel/runtime/helpers/interopRequireDefault":63,unload:742}],99:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.chooseMethod=function(e){var t=[].concat(e.methods,c).filter(Boolean);if(e.type){if("simulate"===e.type)return s.default;var r=t.find((function(t){return t.type===e.type}));if(r)return r;throw new Error("method-type "+e.type+" not found")}e.webWorkerSupport||a.isNode||(t=t.filter((function(e){return"idb"!==e.type})));var n=t.find((function(e){return e.canBeUsed()}));if(n)return n;throw new Error("No useable methode found:"+JSON.stringify(c.map((function(e){return e.type}))))};var o=n(e("./methods/native.js")),i=n(e("./methods/indexed-db.js")),u=n(e("./methods/localstorage.js")),s=n(e("./methods/simulate.js")),a=e("./util"),c=[o.default,i.default,u.default];if(a.isNode){var f=e("../../src/methods/node.js");"function"==typeof f.canBeUsed&&c.push(f)}},{"./methods/indexed-db.js":100,"./methods/localstorage.js":101,"./methods/native.js":102,"./methods/simulate.js":103,"./util":106,"@babel/runtime/helpers/interopRequireDefault":63}],100:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.getIdb=c,r.createDatabase=f,r.writeMessage=l,r.getAllMessages=function(e){var t=e.transaction(a).objectStore(a),r=[];return new Promise((function(e){t.openCursor().onsuccess=function(t){var n=t.target.result;n?(r.push(n.value),n.continue()):e(r)}}))},r.getMessagesHigherThen=p,r.removeMessageById=h,r.getOldMessages=d,r.cleanOldMessages=b,r.create=y,r.close=_,r.postMessage=g,r.onMessage=w,r.canBeUsed=x,r.averageResponseTime=S,r.default=r.type=r.microSeconds=void 0;var o=e("../util.js"),i=n(e("../oblivious-set")),u=e("../options"),s=o.microSeconds;r.microSeconds=s;var a="messages";function c(){if("undefined"!=typeof indexedDB)return indexedDB;if("undefined"!=typeof window){if(void 0!==window.mozIndexedDB)return window.mozIndexedDB;if(void 0!==window.webkitIndexedDB)return window.webkitIndexedDB;if(void 0!==window.msIndexedDB)return window.msIndexedDB}return!1}function f(e){var t="pubkey.broadcast-channel-0-"+e,r=c().open(t,1);return r.onupgradeneeded=function(e){e.target.result.createObjectStore(a,{keyPath:"id",autoIncrement:!0})},new Promise((function(e,t){r.onerror=function(e){return t(e)},r.onsuccess=function(){e(r.result)}}))}function l(e,t,r){var n={uuid:t,time:(new Date).getTime(),data:r},o=e.transaction([a],"readwrite");return new Promise((function(e,t){o.oncomplete=function(){return e()},o.onerror=function(e){return t(e)},o.objectStore(a).add(n)}))}function p(e,t){var r=e.transaction(a).objectStore(a),n=[],o=IDBKeyRange.bound(t+1,1/0);return new Promise((function(e){r.openCursor(o).onsuccess=function(t){var r=t.target.result;r?(n.push(r.value),r.continue()):e(n)}}))}function h(e,t){var r=e.transaction([a],"readwrite").objectStore(a).delete(t);return new Promise((function(e){r.onsuccess=function(){return e()}}))}function d(e,t){var r=(new Date).getTime()-t,n=e.transaction(a).objectStore(a),o=[];return new Promise((function(e){n.openCursor().onsuccess=function(t){var n=t.target.result;if(n){var i=n.value;if(!(i.timee.lastCursorId&&(e.lastCursorId=t.id),t})).filter((function(t){return function(e,t){return!(e.uuid===t.uuid||t.eMIs.has(e.id)||e.data.time0&&void 0!==arguments[0]?arguments[0]:{},t=JSON.parse(JSON.stringify(e));void 0===t.webWorkerSupport&&(t.webWorkerSupport=!0);t.idb||(t.idb={});t.idb.ttl||(t.idb.ttl=45e3);t.idb.fallbackInterval||(t.idb.fallbackInterval=150);e.idb&&"function"==typeof e.idb.onclose&&(t.idb.onclose=e.idb.onclose);t.localstorage||(t.localstorage={});t.localstorage.removeTimeout||(t.localstorage.removeTimeout=6e4);e.methods&&(t.methods=e.methods);t.node||(t.node={});t.node.ttl||(t.node.ttl=12e4);void 0===t.node.useFastPath&&(t.node.useFastPath=!0);return t}},{}],106:[function(e,t,r){(function(e){(function(){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.isPromise=function(e){return!(!e||"function"!=typeof e.then)},r.sleep=function(e){e||(e=0);return new Promise((function(t){return setTimeout(t,e)}))},r.randomInt=function(e,t){return Math.floor(Math.random()*(t-e+1)+e)},r.randomToken=function(){return Math.random().toString(36).substring(2)},r.microSeconds=function(){var e=(new Date).getTime();return e===t?(n++,1e3*e+n):(t=e,n=0,1e3*e)},r.isNode=void 0;var t=0,n=0;var o="[object process]"===Object.prototype.toString.call(void 0!==e?e:0);r.isNode=o}).call(this)}).call(this,e("_process"))},{_process:530}],107:[function(e,t,r){},{}],108:[function(e,t,r){(function(t){(function(){ +!function e(t,r,n){function o(u,s){if(!r[u]){if(!t[u]){var a="function"==typeof require&&require;if(!s&&a)return a(u,!0);if(i)return i(u,!0);var c=new Error("Cannot find module '"+u+"'");throw c.code="MODULE_NOT_FOUND",c}var f=r[u]={exports:{}};t[u][0].call(f.exports,(function(e){return o(t[u][1][e]||e)}),f,f.exports,e,t,r,n)}return r[u].exports}for(var i="function"==typeof require&&require,u=0;uthis.limit;)this.buffer.shift()},t.getArrayIndexByPointer=function(e){var t=this.buffer[0],r=this.eventCounterMap.get(t);return e0;){t--;var r=this.buffer[t];if(r.documentData&&r.documentData._rev===e)return!0}return!1},t.destroy=function(){this.subs.forEach((function(e){return e.unsubscribe()}))},e}();r.ChangeEventBuffer=n},{}],3:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={addRxPlugin:!0,PouchDB:!0,validateCouchDBString:!0,getBatch:!0,countAllUndeleted:!0,createRxDatabase:!0,removeRxDatabase:!0,checkAdapter:!0,isRxDatabase:!0,dbCount:!0,_collectionNamePrimary:!0,isRxCollection:!0,_createRxCollection:!0,isRxDocument:!0,getDocumentOrmPrototype:!0,getDocumentPrototype:!0,isRxQuery:!0,isRxSchema:!0,createRxSchema:!0,RxSchema:!0,getIndexes:!0,normalize:!0,getFinalFields:!0,getPreviousVersions:!0,RxChangeEvent:!0,getRxStoragePouchDb:!0,getPouchLocation:!0,_clearHook:!0,createCrypter:!0};Object.defineProperty(r,"addRxPlugin",{enumerable:!0,get:function(){return o.addRxPlugin}}),Object.defineProperty(r,"PouchDB",{enumerable:!0,get:function(){return i.PouchDB}}),Object.defineProperty(r,"validateCouchDBString",{enumerable:!0,get:function(){return i.validateCouchDBString}}),Object.defineProperty(r,"getBatch",{enumerable:!0,get:function(){return i.getBatch}}),Object.defineProperty(r,"countAllUndeleted",{enumerable:!0,get:function(){return i.countAllUndeleted}}),Object.defineProperty(r,"createRxDatabase",{enumerable:!0,get:function(){return u.createRxDatabase}}),Object.defineProperty(r,"removeRxDatabase",{enumerable:!0,get:function(){return u.removeRxDatabase}}),Object.defineProperty(r,"checkAdapter",{enumerable:!0,get:function(){return u.checkAdapter}}),Object.defineProperty(r,"isRxDatabase",{enumerable:!0,get:function(){return u.isInstanceOf}}),Object.defineProperty(r,"dbCount",{enumerable:!0,get:function(){return u.dbCount}}),Object.defineProperty(r,"_collectionNamePrimary",{enumerable:!0,get:function(){return u._collectionNamePrimary}}),Object.defineProperty(r,"isRxCollection",{enumerable:!0,get:function(){return s.isInstanceOf}}),Object.defineProperty(r,"_createRxCollection",{enumerable:!0,get:function(){return s.create}}),Object.defineProperty(r,"isRxDocument",{enumerable:!0,get:function(){return a.isInstanceOf}}),Object.defineProperty(r,"getDocumentOrmPrototype",{enumerable:!0,get:function(){return c.getDocumentOrmPrototype}}),Object.defineProperty(r,"getDocumentPrototype",{enumerable:!0,get:function(){return c.getDocumentPrototype}}),Object.defineProperty(r,"isRxQuery",{enumerable:!0,get:function(){return f.isInstanceOf}}),Object.defineProperty(r,"isRxSchema",{enumerable:!0,get:function(){return l.isInstanceOf}}),Object.defineProperty(r,"createRxSchema",{enumerable:!0,get:function(){return l.createRxSchema}}),Object.defineProperty(r,"RxSchema",{enumerable:!0,get:function(){return l.RxSchema}}),Object.defineProperty(r,"getIndexes",{enumerable:!0,get:function(){return l.getIndexes}}),Object.defineProperty(r,"normalize",{enumerable:!0,get:function(){return l.normalize}}),Object.defineProperty(r,"getFinalFields",{enumerable:!0,get:function(){return l.getFinalFields}}),Object.defineProperty(r,"getPreviousVersions",{enumerable:!0,get:function(){return l.getPreviousVersions}}),Object.defineProperty(r,"RxChangeEvent",{enumerable:!0,get:function(){return p.RxChangeEvent}}),Object.defineProperty(r,"getRxStoragePouchDb",{enumerable:!0,get:function(){return h.getRxStoragePouchDb}}),Object.defineProperty(r,"getPouchLocation",{enumerable:!0,get:function(){return h.getPouchLocation}}),Object.defineProperty(r,"_clearHook",{enumerable:!0,get:function(){return d._clearHook}}),Object.defineProperty(r,"createCrypter",{enumerable:!0,get:function(){return y.createCrypter}}),e("./types/modules/crypto-js.d"),e("./types/modules/graphql-client.d"),e("./types/modules/mocha.parallel.d"),e("./types/modules/modifiyjs.d"),e("./types/modules/pouchdb-selector-core.d"),e("./types/modules/random-token.d");var o=e("./plugin"),i=e("./pouch-db"),u=e("./rx-database"),s=e("./rx-collection"),a=e("./rx-document"),c=e("./rx-document-prototype-merge"),f=e("./rx-query"),l=e("./rx-schema"),p=e("./rx-change-event"),h=e("./rx-storage-pouchdb"),d=e("./hooks"),y=e("./crypter"),b=e("./query-cache");Object.keys(b).forEach((function(e){"default"!==e&&"__esModule"!==e&&(Object.prototype.hasOwnProperty.call(n,e)||e in r&&r[e]===b[e]||Object.defineProperty(r,e,{enumerable:!0,get:function(){return b[e]}}))}));var v=e("./util");Object.keys(v).forEach((function(e){"default"!==e&&"__esModule"!==e&&(Object.prototype.hasOwnProperty.call(n,e)||e in r&&r[e]===v[e]||Object.defineProperty(r,e,{enumerable:!0,get:function(){return v[e]}}))}))},{"./crypter":4,"./hooks":7,"./plugin":10,"./pouch-db":35,"./query-cache":36,"./rx-change-event":37,"./rx-collection":39,"./rx-database":41,"./rx-document":43,"./rx-document-prototype-merge":42,"./rx-query":45,"./rx-schema":46,"./rx-storage-pouchdb":47,"./types/modules/crypto-js.d":48,"./types/modules/graphql-client.d":49,"./types/modules/mocha.parallel.d":50,"./types/modules/modifiyjs.d":51,"./types/modules/pouchdb-selector-core.d":52,"./types/modules/random-token.d":53,"./util":54}],4:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.createCrypter=function(e,t){return new u(e,t)},r.Crypter=void 0;var o=n(e("object-path")),i=e("./util"),u=function(){function e(e,t){this.password=e,this.schema=t}var t=e.prototype;return t._encryptValue=function(e){throw(0,i.pluginMissing)("encryption")},t._decryptValue=function(e){throw(0,i.pluginMissing)("encryption")},t.encrypt=function(e){var t=this;return this.password?(e=(0,i.clone)(e),this.schema.encryptedPaths.forEach((function(r){var n=o.default.get(e,r);if(void 0!==n){var i=t._encryptValue(n);o.default.set(e,r,i)}})),e):e},t.decrypt=function(e){var t=this;return this.password?(e=(0,i.clone)(e),this.schema.encryptedPaths.forEach((function(r){var n=o.default.get(e,r);if(void 0!==n){var i=t._decryptValue(n);o.default.set(e,r,i)}})),e):e},e}();r.Crypter=u},{"./util":54,"@babel/runtime/helpers/interopRequireDefault":63,"object-path":507}],5:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.createDocCache=function(){return new n},r.DocCache=void 0;var n=function(){function e(){this._map=new Map,this._map=new Map}var t=e.prototype;return t.get=function(e){return this._map.get(e)},t.set=function(e,t){return this._map.set(e,t)},t.delete=function(e){return this._map.delete(e)},e}();r.DocCache=n},{}],6:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.getSortFieldsOfQuery=o,r.getQueryParams=u,r.calculateNewResults=function(e,t){if(!e.collection.database.eventReduce)return{runFullQueryAgain:!0};var r=u(e),o=e._resultsData.slice(),i=e._resultsDataMap,s=!1;return t.find((function(e){var t=e.toEventReduceChangeEvent(),u=(0,n.calculateActionName)({queryParams:r,changeEvent:t,previousResults:o,keyDocumentMap:i});return"runFullQueryAgain"===u||("doNothing"!==u?(s=!0,(0,n.runAction)(u,r,t,o,i),!1):void 0)}))?{runFullQueryAgain:!0}:{runFullQueryAgain:!1,changed:s,newResults:o}},r.RXQUERY_QUERY_PARAMS_CACHE=void 0;var n=e("event-reduce-js");function o(e,t){return t.sort&&0!==t.sort.length?t.sort.map((function(e){return Object.keys(e)[0]})):[e]}var i=new WeakMap;function u(e){if(i.has(e))return i.get(e);var t=e.collection.database.storage,r=e.toJSON(),n=e.collection.schema.primaryPath,u={primaryKey:e.collection.schema.primaryPath,skip:r.skip,limit:r.limit,sortFields:o(n,r),sortComparator:t.getSortComparator(n,r),queryMatcher:t.getQueryMatcher(n,r)};return i.set(e,u),u}r.RXQUERY_QUERY_PARAMS_CACHE=i},{"event-reduce-js":440}],7:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.runPluginHooks=function(e,t){n[e].forEach((function(e){return e(t)}))},r.runAsyncPluginHooks=function(e,t){return Promise.all(n[e].map((function(e){return e(t)})))},r._clearHook=function(e,t){n[e]=n[e].filter((function(e){return e!==t}))},r.HOOKS=void 0;var n={preCreateRxDatabase:[],createRxDatabase:[],preCreateRxCollection:[],createRxCollection:[],preCreateRxSchema:[],createRxSchema:[],createRxQuery:[],createRxDocument:[],postCreateRxDocument:[],preCreatePouchDb:[],preMigrateDocument:[],postMigrateDocument:[],preDestroyRxDatabase:[]};r.HOOKS=n},{}],8:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("./core");Object.keys(n).forEach((function(e){"default"!==e&&"__esModule"!==e&&(e in r&&r[e]===n[e]||Object.defineProperty(r,e,{enumerable:!0,get:function(){return n[e]}}))}));var o=e("./plugins/dev-mode"),i=e("./plugins/validate"),u=e("./plugins/key-compression"),s=e("./plugins/migration"),a=e("./plugins/leader-election"),c=e("./plugins/encryption"),f=e("./plugins/update"),l=e("./plugins/watch-for-changes"),p=e("./plugins/replication"),h=e("./plugins/adapter-check"),d=e("./plugins/json-dump"),y=e("./plugins/in-memory"),b=e("./plugins/attachments"),v=e("./plugins/local-documents"),m=e("./plugins/query-builder");(0,n.addRxPlugin)(o.RxDBDevModePlugin),(0,n.addRxPlugin)(i.RxDBValidatePlugin),(0,n.addRxPlugin)(u.RxDBKeyCompressionPlugin),(0,n.addRxPlugin)(s.RxDBMigrationPlugin),(0,n.addRxPlugin)(a.RxDBLeaderElectionPlugin),(0,n.addRxPlugin)(c.RxDBEncryptionPlugin),(0,n.addRxPlugin)(f.RxDBUpdatePlugin),(0,n.addRxPlugin)(l.RxDBWatchForChangesPlugin),(0,n.addRxPlugin)(p.RxDBReplicationPlugin),(0,n.addRxPlugin)(h.RxDBAdapterCheckPlugin),(0,n.addRxPlugin)(d.RxDBJsonDumpPlugin),(0,n.addRxPlugin)(y.RxDBInMemoryPlugin),(0,n.addRxPlugin)(b.RxDBAttachmentsPlugin),(0,n.addRxPlugin)(v.RxDBLocalDocumentsPlugin),(0,n.addRxPlugin)(m.RxDBQueryBuilderPlugin)},{"./core":3,"./plugins/adapter-check":11,"./plugins/attachments":12,"./plugins/dev-mode":18,"./plugins/encryption":20,"./plugins/in-memory":21,"./plugins/json-dump":22,"./plugins/key-compression":23,"./plugins/leader-election":24,"./plugins/local-documents":25,"./plugins/migration":27,"./plugins/query-builder":28,"./plugins/replication":31,"./plugins/update":32,"./plugins/validate":33,"./plugins/watch-for-changes":34}],9:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.overwritable=void 0;var n=e("./util"),o={isDevMode:function(){return!1},validatePassword:function(e){throw(0,n.pluginMissing)("encryption")},createKeyCompressor:function(e){throw(0,n.pluginMissing)("key-compression")},checkAdapter:function(e){throw(0,n.pluginMissing)("adapter-check")},tunnelErrorMessage:function(e){return"RxDB Error-Code "+e+".\n - To find out what this means, use the dev-mode-plugin https://pubkey.github.io/rxdb/custom-build.html#dev-mode\n - Or search for this code https://github.com/pubkey/rxdb/search?q="+e+"\n "}};r.overwritable=o},{"./util":54}],10:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.addRxPlugin=function(e){if(h.has(e))return;h.add(e);if(!e.rxdb)return"object"==typeof e&&e.default&&(e=e.default),void c.PouchDB.plugin(e);var t=e;t.prototypes&&Object.entries(e.prototypes).forEach((function(e){var t=e[0];return(0,e[1])(p[t])}));t.overwritable&&Object.assign(f.overwritable,e.overwritable);t.hooks&&Object.entries(e.hooks).forEach((function(e){var t=e[0],r=e[1];return l.HOOKS[t].push(r)}))};var n=e("./rx-schema"),o=e("./crypter"),i=e("./rx-document"),u=e("./rx-query"),s=e("./rx-collection"),a=e("./rx-database"),c=e("./pouch-db"),f=e("./overwritable"),l=e("./hooks"),p={RxSchema:n.RxSchema.prototype,Crypter:o.Crypter.prototype,RxDocument:i.basePrototype,RxQuery:u.RxQueryBase.prototype,RxCollection:s.RxCollectionBase.prototype,RxDatabase:a.RxDatabaseBase.prototype},h=new Set},{"./crypter":4,"./hooks":7,"./overwritable":9,"./pouch-db":35,"./rx-collection":39,"./rx-database":41,"./rx-document":43,"./rx-query":45,"./rx-schema":46}],11:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.checkAdapter=u,r.RxDBAdapterCheckPlugin=r.overwritable=r.prototypes=r.rxdb=r.POUCHDB_LOCATION=void 0;var n=e("../pouch-db"),o=e("../util"),i="rxdb-adapter-check";function u(e){var t,r,u=i+"-"+(0,o.generateId)();try{t=new n.PouchDB(i,(0,o.adapterObject)(e),{auto_compaction:!0,revs_limit:1})}catch(e){return Promise.resolve(!1)}return t.info().then((function(){return t.put({_id:u,value:{ok:!0,time:(new Date).getTime()}})})).then((function(){return t.get(u)})).then((function(e){return r=e})).then((function(){return t.remove(r)})).then((function(){return!0})).then((function(){return!!(r&&r.value&&r.value.ok)})).catch((function(){return!1}))}r.POUCHDB_LOCATION=i;r.rxdb=true;var s={};r.prototypes=s;var a={checkAdapter:u};r.overwritable=a;var c={rxdb:true,prototypes:s,overwritable:a};r.RxDBAdapterCheckPlugin=c},{"../pouch-db":35,"../util":54}],12:[function(e,t,r){(function(t){(function(){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.fromPouchDocument=l,r.putAttachment=h,r.getAttachment=d,r.allAttachments=y,r.preMigrateDocument=b,r.postMigrateDocument=v,r.RxDBAttachmentsPlugin=r.hooks=r.overwritable=r.prototypes=r.rxdb=r.RxAttachment=r.blobBufferUtil=void 0;var n=e("rxjs/operators"),o=e("./../rx-change-event"),i=e("./../util"),u=e("../rx-error");function s(e){if(!e.collection.schema.jsonSchema.attachments)throw(0,u.newRxError)("AT1",{link:"https://pubkey.github.io/rxdb/rx-attachment.html"})}function a(e){var t=(0,i.now)();return e.collection.pouch.get(e.primary).then((function(r){var n=e.collection._handleFromPouch(r),u=(0,i.now)(),s=(0,o.createUpdateEvent)(e.collection,n,null,t,u,e);e.$emit(s)}))}var c={createBlobBuffer:function(e,r){var n;if(i.isElectronRenderer)return t.from(e,{type:r});try{n=new Blob([e],{type:r})}catch(o){n=t.from(e,{type:r})}return n},toString:function(e){return e instanceof t?(0,i.nextTick)().then((function(){return e.toString()})):new Promise((function(t){var r=new FileReader;r.addEventListener("loadend",(function(e){var r=e.target.result;t(r)})),"[object Uint8Array]"===Object.prototype.toString.call(e)&&(e=new Blob([e])),r.readAsText(e)}))}};r.blobBufferUtil=c;var f=function(){function e(e){var t,r=e.doc,n=e.id,o=e.type,i=e.length,u=e.digest,s=e.rev;this.doc=r,this.id=n,this.type=o,this.length=i,this.digest=u,this.rev=s,t=this,Object.entries(t.doc.collection.attachments).forEach((function(e){var r=e[0],n=e[1];Object.defineProperty(t,r,{get:function(){return n.bind(t)}})}))}var t=e.prototype;return t.remove=function(){var e=this;return this.doc.collection.pouch.removeAttachment(this.doc.primary,this.id,this.doc._data._rev).then((function(){return a(e.doc)}))},t.getData=function(){var e=this;return this.doc.collection.pouch.getAttachment(this.doc.primary,this.id).then((function(t){return p(e.doc)?c.toString(t).then((function(t){return c.createBlobBuffer(e.doc.collection._crypter._decryptValue(t),e.type)})):t}))},t.getStringData=function(){return this.getData().then((function(e){return c.toString(e)}))},e}();function l(e,t,r){return new f({doc:r,id:e,type:t.content_type,length:t.length,digest:t.digest,rev:t.revpos})}function p(e){return!!e.collection.schema.jsonSchema.attachments.encrypted}function h(e){var t=this,r=e.id,n=e.data,o=e.type,i=void 0===o?"text/plain":o;s(this),p(this)&&(n=this.collection._crypter._encryptValue(n));var u=c.createBlobBuffer(n,i);return this._atomicQueue=this._atomicQueue.then((function(){return t.collection.pouch.putAttachment(t.primary,r,t._data._rev,u,i)})).then((function(){return t.collection.pouch.get(t.primary)})).then((function(e){var n=e._attachments[r],o=l(r,n,t);return t._data._rev=e._rev,t._data._attachments=e._attachments,a(t).then((function(){return o}))})),this._atomicQueue}function d(e){s(this);var t=this._dataSync$.getValue();return t._attachments&&t._attachments[e]?l(e,t._attachments[e],this):null}function y(){var e=this;s(this);var t=this._dataSync$.getValue();return t._attachments?Object.keys(t._attachments).map((function(r){return l(r,t._attachments[r],e)})):[]}function b(e){return delete e.migrated._attachments,e}function v(e){var t=e.oldCollection.schema.primaryPath,r=e.doc._attachments;if(!r)return Promise.resolve(e);var n=Promise.resolve();return Object.keys(r).forEach((function(o){var i=r[o],u=e.doc[t];n=n.then((function(){return e.oldCollection.pouchdb.getAttachment(u,o)})).then((function(e){return c.toString(e)})).then((function(t){return e.newestCollection.pouch.putAttachment(u,o,e.res.rev,c.createBlobBuffer(t,i.content_type),i.content_type)})).then((function(t){return e.res=t}))})),n}r.RxAttachment=f;r.rxdb=true;var m={RxDocument:function(e){e.putAttachment=h,e.getAttachment=d,e.allAttachments=y,Object.defineProperty(e,"allAttachments$",{get:function(){var e=this;return this._dataSync$.pipe((0,n.map)((function(e){return e._attachments?e._attachments:{}})),(0,n.map)((function(e){return Object.entries(e)})),(0,n.map)((function(t){return t.map((function(t){return l(t[0],t[1],e)}))})))}})}};r.prototypes=m;var _={};r.overwritable=_;var g={preMigrateDocument:b,postMigrateDocument:v};r.hooks=g;var w={rxdb:true,prototypes:m,overwritable:_,hooks:g};r.RxDBAttachmentsPlugin=w}).call(this)}).call(this,e("buffer").Buffer)},{"../rx-error":44,"./../rx-change-event":37,"./../util":54,buffer:108,"rxjs/operators":741}],13:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.checkMigrationStrategies=function(e,t){if("object"!=typeof t||Array.isArray(t))throw(0,n.newRxTypeError)("COL11",{schema:e});var r=(0,o.getPreviousVersions)(e);if(r.length!==Object.keys(t).length)throw(0,n.newRxError)("COL12",{have:Object.keys(t),should:r});return r.map((function(e){return{v:e,s:t[e+1]}})).filter((function(e){return"function"!=typeof e.s})).forEach((function(t){throw(0,n.newRxTypeError)("COL13",{version:t.v,type:typeof t,schema:e})})),!0};var n=e("../../rx-error"),o=e("../../rx-schema")},{"../../rx-error":44,"../../rx-schema":46}],14:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.checkOrmMethods=function(e){if(!e)return;Object.entries(e).forEach((function(e){var t=e[0],r=e[1];if("string"!=typeof t)throw(0,n.newRxTypeError)("COL14",{name:t});if(t.startsWith("_"))throw(0,n.newRxTypeError)("COL15",{name:t});if("function"!=typeof r)throw(0,n.newRxTypeError)("COL16",{name:t,type:typeof t});if((0,o.rxCollectionProperties)().includes(t)||(0,o.rxDocumentProperties)().includes(t))throw(0,n.newRxError)("COL17",{name:t})}))};var n=e("../../rx-error"),o=e("./entity-properties")},{"../../rx-error":44,"./entity-properties":16}],15:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.checkFieldNameRegex=a,r.validateFieldsDeep=c,r.checkSchema=function(e){if(e.properties._rev)throw(0,i.newRxError)("SC10",{schema:e});if(!e.hasOwnProperty("version")||"number"!=typeof e.version||e.version<0)throw(0,i.newRxError)("SC11",{version:e.version});var t;if(c(e),Object.keys(e.properties).forEach((function(r){var n=e.properties[r];if(n.primary){if(t)throw(0,i.newRxError)("SC12",{value:n});if(t=r,n.index)throw(0,i.newRxError)("SC13",{value:n});if(n.unique)throw(0,i.newRxError)("SC14",{value:n});if(n.encrypted)throw(0,i.newRxError)("SC15",{value:n});if("string"!==n.type)throw(0,i.newRxError)("SC16",{value:n})}if((0,s.rxDocumentProperties)().includes(r))throw(0,i.newRxError)("SC17",{key:r})})),e.indexes){if(!Array.isArray(e.indexes))throw(0,i.newRxError)("SC18",{indexes:e.indexes});e.indexes.forEach((function(e){if("string"!=typeof e&&!Array.isArray(e))throw(0,i.newRxError)("SC19",{index:e});if(Array.isArray(e))for(var t=0;t2||!t.type.includes("string")||!t.type.includes("null"))throw(0,i.newRxError)("SC4",{fieldName:e})}else switch(t.type){case"string":break;case"array":if(!t.items||!t.items.type||"string"!==t.items.type)throw(0,i.newRxError)("SC3",{fieldName:e});break;default:throw(0,i.newRxError)("SC4",{fieldName:e})}if(t.hasOwnProperty("ref")&&t.primary)throw(0,i.newRxError)("SC5",{fieldName:e});var n=r.split(".").length>=2;if(n){if(t.primary)throw(0,i.newRxError)("SC6",{path:r,primary:t.primary});if(t.default)throw(0,i.newRxError)("SC7",{path:r})}if(!n&&"_"===e.charAt(0)){if("_id"===e&&t.primary)return;throw(0,i.newRxError)("SC8",{fieldName:e})}}(n,t[n],r);var o=r;"properties"!==n&&(o=o+"."+n),e(t[n],o)}))}(e,""),!0}function f(e){for(var t=e.split("."),r="",n=0;n 2",QU1:"RxQuery._execOverDatabase(): op not known",QU4:"RxQuery.regex(): You cannot use .regex() on the primary field",QU5:"RxQuery.sort(): does not work because key is not defined in the schema",QU6:"RxQuery.limit(): cannot be called on .findOne()",QU7:"query must be an object",QU8:"query cannot be an array",QU9:"throwIfMissing can only be used in findOne queries",QU10:"result empty and throwIfMissing: true",MQ1:"path must be a string or object",MQ2:"Invalid argument",MQ3:"Invalid sort() argument. Must be a string, object, or array",MQ4:"Invalid argument. Expected instanceof mquery or plain object",MQ5:"method must be used after where() when called with these arguments",MQ6:"Can't mix sort syntaxes. Use either array or object | .sort([['field', 1], ['test', -1]]) | .sort({ field: 1, test: -1 })",MQ7:"Invalid sort value",MQ8:"Can't mix sort syntaxes. Use either array or object",DB1:"RxDocument.prepare(): another instance on this adapter has a different password",DB2:"RxDatabase.collection(): collection-names cannot start with underscore _",DB3:"RxDatabase.collection(): collection already exists. use myDatabase.[collectionName] to get it",DB4:"RxDatabase.collection(): schema is missing",DB5:"RxDatabase.collection(): collection-name not allowed",DB6:"RxDatabase.collection(): another instance created this collection with a different schema. Read this https://pubkey.github.io/rxdb/questions-answers.html#cant-change-the-schema",DB7:"RxDatabase.collection(): schema encrypted but no password given",DB8:"RxDatabase.create(): A RxDatabase with the same name and adapter already exists.\nMake sure to use this combination only once or set ignoreDuplicate to true if you do this intentional",DB9:"RxDatabase.create(): Adapter not added. Use RxDB.plugin(require('pouchdb-adapter-[adaptername]');",DB10:"RxDatabase.create(): To use leveldown-adapters, you have to add the leveldb-plugin. Use RxDB.plugin(require('pouchdb-adapter-leveldb'));",DB11:"RxDatabase.create(): Invalid db-name, folder-paths must not have an ending slash",COL1:"RxDocument.insert() You cannot insert an existing document",COL2:"RxCollection.insert() do not provide ._id when it is not the primary key",COL3:"RxCollection.upsert() does not work without primary",COL4:"RxCollection.atomicUpsert() does not work without primary",COL5:"RxCollection.find() if you want to search by _id, use .findOne(_id)",COL6:"RxCollection.findOne() needs a queryObject or string",COL7:"hook must be a function",COL8:"hooks-when not known",COL9:"RxCollection.addHook() hook-name not known",COL10:"RxCollection .postCreate-hooks cannot be async",COL11:"migrationStrategies must be an object",COL12:"A migrationStrategy is missing or too much",COL13:"migrationStrategy must be a function",COL14:"given static method-name is not a string",COL15:"static method-names cannot start with underscore _",COL16:"given static method is not a function",COL17:"RxCollection.ORM: statics-name not allowed",COL18:"collection-method not allowed because fieldname is in the schema",COL19:"Pouchdb document update conflict",DOC1:"RxDocument.get$ cannot get observable of in-array fields because order cannot be guessed",DOC2:"cannot observe primary path",DOC3:"final fields cannot be observed",DOC4:"RxDocument.get$ cannot observe a non-existed field",DOC5:"RxDocument.populate() cannot populate a non-existed field",DOC6:"RxDocument.populate() cannot populate because path has no ref",DOC7:"RxDocument.populate() ref-collection not in database",DOC8:"RxDocument.set(): primary-key cannot be modified",DOC9:"final fields cannot be modified",DOC10:"RxDocument.set(): cannot set childpath when rootPath not selected",DOC11:"RxDocument.save(): cant save deleted document",DOC12:"RxDocument.save(): error",DOC13:"RxDocument.remove(): Document is already deleted",DOC14:"RxDocument.destroy() does not exist",DOC15:"query cannot be an array",DOC16:"Since version 8.0.0 RxDocument.set() can only be called on temporary RxDocuments",DOC17:"Since version 8.0.0 RxDocument.save() can only be called on non-temporary documents",DM1:"migrate() Migration has already run",DM2:"migration of document failed final document does not match final schema",DM3:"migration already running",AT1:"to use attachments, please define this in your schema",EN1:"password is no string",EN2:"validatePassword: min-length of password not complied",JD1:"You must create the collections before you can import their data",JD2:"RxCollection.importDump(): the imported json relies on a different schema",JD3:"RxCollection.importDump(): json.passwordHash does not match the own",LD1:"RxDocument.allAttachments$ cant use attachments on local documents",LD2:"RxDocument.get(): objPath must be a string",LD3:"RxDocument.get$ cannot get observable of in-array fields because order cannot be guessed",LD4:"cannot observe primary path",LD5:"RxDocument.set() id cannot be modified",LD6:"LocalDocument: Function is not useable on local documents",LD7:"Local document already exists",RC1:"Replication: already added",RC2:"RxCollection.sync() query must be from the same RxCollection",RC3:"RxCollection.sync() Do not use a collection's pouchdb as remote, use the collection instead",SC1:"fieldnames do not match the regex",SC2:"SchemaCheck: name 'item' reserved for array-fields",SC3:"SchemaCheck: fieldname has a ref-array but items-type is not string",SC4:"SchemaCheck: fieldname has a ref but is not type string, [string,null] or array",SC5:"SchemaCheck: fieldname cannot be primary and ref at same time",SC6:"SchemaCheck: primary can only be defined at top-level",SC7:"SchemaCheck: default-values can only be defined at top-level",SC8:"SchemaCheck: first level-fields cannot start with underscore _",SC10:"SchemaCheck: schema defines ._rev, this will be done automatically",SC11:"SchemaCheck: schema needs a number >=0 as version",SC12:"SchemaCheck: primary can only be defined once",SC13:"SchemaCheck: primary is always index, do not declare it as index",SC14:"SchemaCheck: primary is always unique, do not declare it as index",SC15:"SchemaCheck: primary cannot be encrypted",SC16:"SchemaCheck: primary must have type: string",SC17:"SchemaCheck: top-level fieldname is not allowed",SC18:"SchemaCheck: indexes must be an array",SC19:"SchemaCheck: indexes must contain strings or arrays of strings",SC20:"SchemaCheck: indexes.array must contain strings",SC21:"SchemaCheck: given index is not defined in schema",SC22:"SchemaCheck: given indexKey is not type:string",SC23:"SchemaCheck: fieldname is not allowed",SC24:"SchemaCheck: required fields must be set via array. See https://spacetelescope.github.io/understanding-json-schema/reference/object.html#required",SC25:"SchemaCheck: compoundIndexes needs to be specified in the indexes field",SC26:"SchemaCheck: indexes needs to be specified at collection schema level",SC27:"SchemaCheck: encrypted fields need to be specified at collection schema level",SC28:"SchemaCheck: encrypted fields is not defined in the schema",VD1:"Sub-schema not found, does the schemaPath exists in your schema?",VD2:"object does not match schema",IM1:"InMemory: Memory-Adapter must be added. Use RxDB.plugin(require('pouchdb-adapter-memory'));",IM2:"inMemoryCollection.sync(): Do not replicate with the in-memory instance. Replicate with the parent instead",S1:"You cannot create collections after calling RxDatabase.server()"}},{}],18:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={RxDBDevModePlugin:!0};r.RxDBDevModePlugin=void 0;var o=e("./error-messages"),i=e("./check-schema");Object.keys(i).forEach((function(e){"default"!==e&&"__esModule"!==e&&(Object.prototype.hasOwnProperty.call(n,e)||e in r&&r[e]===i[e]||Object.defineProperty(r,e,{enumerable:!0,get:function(){return i[e]}}))}));var u=e("./check-orm"),s=e("./check-migration-strategies"),a=e("./unallowed-properties"),c={rxdb:!0,overwritable:{isDevMode:function(){return!0},tunnelErrorMessage:function(e){if(!o.ERROR_MESSAGES[e])throw console.error("RxDB: Error-Code not known: "+e),new Error("Error-Code "+e+" not known, contact the maintainer");return o.ERROR_MESSAGES[e]}},hooks:{preCreateRxSchema:i.checkSchema,preCreateRxDatabase:function(e){(0,a.ensureDatabaseNameIsValid)(e)},preCreateRxCollection:function(e){(0,a.ensureCollectionNameValid)(e)},createRxCollection:function(e){(0,u.checkOrmMethods)(e.statics),(0,u.checkOrmMethods)(e.methods),(0,u.checkOrmMethods)(e.attachments),e.schema&&e.migrationStrategies&&(0,s.checkMigrationStrategies)(e.schema,e.migrationStrategies)}}};r.RxDBDevModePlugin=c},{"./check-migration-strategies":13,"./check-orm":14,"./check-schema":15,"./error-messages":17,"./unallowed-properties":19}],19:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.ensureCollectionNameValid=function(e){if((0,o.rxDatabaseProperties)().includes(e.name))throw(0,n.newRxError)("DB5",{name:e.name})},r.ensureDatabaseNameIsValid=function(e){if((0,i.validateCouchDBString)(e.name),(0,u.isFolderPath)(e.name)&&(e.name.endsWith("/")||e.name.endsWith("\\")))throw(0,n.newRxError)("DB11",{name:e.name})};var n=e("../../rx-error"),o=e("./entity-properties"),i=e("../../pouch-db"),u=e("../../util")},{"../../pouch-db":35,"../../rx-error":44,"../../util":54,"./entity-properties":16}],20:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireWildcard"),o=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.encrypt=c,r.decrypt=f,r.storePasswordHashIntoDatabase=h,r.RxDBEncryptionPlugin=r.overwritable=r.prototypes=r.rxdb=void 0;var i=o(e("crypto-js/aes")),u=n(e("crypto-js/enc-utf8")),s=e("../rx-error"),a=e("../util");function c(e,t){return i.default.encrypt(e,t).toString()}function f(e,t){return i.default.decrypt(e,t).toString(u)}var l=function(e){return c(JSON.stringify(e),this.password)},p=function(e){var t=f(e,this.password);return JSON.parse(t)};function h(e){if(!e.password)return Promise.resolve(!1);var t=(0,a.hash)(e.password);return e.internalStore.get(a.LOCAL_PREFIX+"pwHash").catch((function(){return null})).then((function(r){return r?t===r.value||e.destroy().then((function(){throw(0,s.newRxError)("DB1",{passwordHash:(0,a.hash)(e.password),existingPasswordHash:r.value})})):e.internalStore.put({_id:a.LOCAL_PREFIX+"pwHash",value:t}).catch((function(){return null})).then((function(){return!0}))}))}r.rxdb=true;var d={Crypter:function(e){e._encryptValue=l,e._decryptValue=p}};r.prototypes=d;var y={validatePassword:function(e){if(e&&"string"!=typeof e)throw(0,s.newRxTypeError)("EN1",{password:e});if(e&&e.length<8)throw(0,s.newRxError)("EN2",{minPassLength:8,password:e})}};r.overwritable=y;var b={rxdb:true,prototypes:d,overwritable:y,hooks:{createRxDatabase:function(e){return h(e)}}};r.RxDBEncryptionPlugin=b},{"../rx-error":44,"../util":54,"@babel/runtime/helpers/interopRequireDefault":63,"@babel/runtime/helpers/interopRequireWildcard":64,"crypto-js/aes":416,"crypto-js/enc-utf8":420}],21:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.replicateExistingDocuments=O,r.setIndexes=j,r.streamChangedDocuments=P,r.applyChangedDocumentToPouch=E,r.spawnInMemory=k,r.RxDBInMemoryPlugin=r.prototypes=r.rxdb=r.InMemoryRxCollection=void 0;var o=n(e("@babel/runtime/helpers/assertThisInitialized")),i=n(e("@babel/runtime/helpers/inheritsLoose")),u=e("rxjs"),s=e("rxjs/operators"),a=e("../rx-collection"),c=e("../util"),f=e("../core"),l=e("../crypter"),p=e("../change-event-buffer"),h=e("../rx-schema"),d=e("../pouch-db"),y=e("../rx-error"),b=e("../rx-storage-pouchdb"),v=e("../plugins/watch-for-changes");(0,f.addRxPlugin)(v.RxDBWatchForChangesPlugin);var m=new WeakMap,_=new WeakMap,g={new_edits:!0},w={new_edits:!1},x=function(e){function t(t){var r,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};(r=e.call(this,t.database,t.name,S(t.schema),n,{},t._methods)||this)._eventCounter=0,r._isInMemory=!0,r._parentCollection=t,r._parentCollection.onDestroy.then((function(){return r.destroy()})),r._crypter=(0,l.createCrypter)(r.database.password,r.schema),r._changeStreams=[],r.onDestroy.then((function(){r._changeStreams.forEach((function(e){return e.cancel()})),r.pouch.destroy()})),r.options=t.options,Object.entries(t.statics).forEach((function(e){var t=e[0],n=e[1];Object.defineProperty((0,o.default)(r),t,{get:function(){return n.bind((0,o.default)(r))}})}));var i=(0,b.getRxStoragePouchDb)("memory");r.pouch=i.createStorageInstance("rxdb-in-memory",(0,c.randomCouchString)(10),0),r._observable$=new u.Subject,r._changeEventBuffer=(0,p.createChangeEventBuffer)((0,o.default)(r));var s=Object.getPrototypeOf(t);return r._oldPouchPut=s._pouchPut.bind((0,o.default)(r)),r._nonPersistentRevisions=new Set,r._nonPersistentRevisionsSubject=new u.Subject,r}(0,i.default)(t,e);var r=t.prototype;return r.prepareChild=function(){var e=this;return j(this.schema,this.pouch).then((function(){e._subs.push(e._observable$.subscribe((function(t){var r=e._docCache.get(t.documentId);r&&r._handleChangeEvent(t)})))})).then((function(){return O(e._parentCollection,e)})).then((function(){e._parentCollection.watchForChanges(),e.watchForChanges();var t=P(e).pipe((0,s.mergeMap)((function(t){return E(e._parentCollection,t).then((function(){return t._rev}))}))).subscribe((function(t){e._nonPersistentRevisions.delete(t),e._nonPersistentRevisionsSubject.next(e._nonPersistentRevisions.size)}));e._subs.push(t);var r=P(e._parentCollection).subscribe((function(t){return E(e,t)}));e._subs.push(r)}))},r.awaitPersistence=function(){var e=this;return 0===this._nonPersistentRevisions.size?Promise.resolve():this._nonPersistentRevisionsSubject.pipe((0,s.filter)((function(){return 0===e._nonPersistentRevisions.size})),(0,s.first)()).toPromise()},r._pouchPut=function(e,t){var r=this;return this._oldPouchPut(e,t).then((function(e){return r._nonPersistentRevisions.add(e.rev),e}))},r.$emit=function(e){this._changeEventBuffer.hasChangeWithRevision(e.documentData&&e.documentData._rev)||(this._observable$.next(e),this._eventCounter++,10===this._eventCounter&&(this._eventCounter=0,this.pouch.compact()))},r.sync=function(){throw(0,y.newRxError)("IM2")},t}(a.RxCollectionBase);function S(e){var t=(0,c.clone)(e.jsonSchema);t.keyCompression=!1,delete t.properties._id,delete t.properties._rev,delete t.properties._attachments;return function e(t,r){delete t.encrypted,Object.values(t).filter((function(e){return"object"==typeof e})).forEach((function(t){return e(t,r)}))}(t,t),(0,h.createRxSchema)(t)}function O(e,t){return e.pouch.allDocs({attachments:!1,include_docs:!0}).then((function(r){var n=r.rows.map((function(e){return e.doc})).filter((function(e){return!e.language})).map((function(t){return e._handleFromPouch(t)})).map((function(t){return e.schema.swapPrimaryToId(t)}));return 0===n.length?Promise.resolve([]):t.pouch.bulkDocs({docs:n},w).then((function(){return n}))}))}function j(e,t){return Promise.all(e.indexes.map((function(e){return t.createIndex({index:{fields:e}})})))}function P(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(e){return!0};e._doNotEmitSet||(e._doNotEmitSet=new Set);var r=(0,u.fromEvent)(e.pouch.changes({since:"now",live:!0,include_docs:!0}),"change").pipe((0,s.delay)(0),(0,s.map)((function(e){return e[0]})),(0,s.filter)((function(t){var r=t.id+":"+t.doc._rev;return!e._doNotEmitSet.has(r)})),(0,s.filter)((function(e){return t(e)})),(0,s.map)((function(t){return e._handleFromPouch(t.doc)})));return r}function E(e,t){e._doNotEmitSet||(e._doNotEmitSet=new Set);var r=e._handleToPouch(t);return e.pouch.get(r._id).then((function(e){return r._rev=e._rev})).catch((function(){delete r._rev})).then((function(){return e.pouch.bulkDocs({docs:[r]},g)})).then((function(t){if(t.length>0&&!t[0].ok)throw new Error(JSON.stringify(t[0]));var n=r._id+":"+t[0].rev;return e._doNotEmitSet.add(n),setTimeout((function(){return e._doNotEmitSet.delete(n)}),3e4),r}))}r.InMemoryRxCollection=x;var A=!1;function k(){var e=this;if(!A&&(A=!0,!d.PouchDB.adapters||!d.PouchDB.adapters.memory))throw(0,y.newRxError)("IM1");if(m.has(this))return _.get(this).then((function(){return m.get(e)}));var t=new x(this),r=t.prepareChild();return m.set(this,t),_.set(this,r),r.then((function(){return t}))}r.rxdb=true;var C={RxCollection:function(e){e.inMemory=k}};r.prototypes=C;var R={rxdb:true,prototypes:C};r.RxDBInMemoryPlugin=R},{"../change-event-buffer":2,"../core":3,"../crypter":4,"../plugins/watch-for-changes":34,"../pouch-db":35,"../rx-collection":39,"../rx-error":44,"../rx-schema":46,"../rx-storage-pouchdb":47,"../util":54,"@babel/runtime/helpers/assertThisInitialized":57,"@babel/runtime/helpers/inheritsLoose":62,"@babel/runtime/helpers/interopRequireDefault":63,rxjs:542,"rxjs/operators":741}],22:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.RxDBJsonDumpPlugin=r.overwritable=r.prototypes=r.rxdb=void 0;var n=e("../util"),o=e("../rx-query"),i=e("../rx-error"),u=e("../rx-change-event");function s(){var e=this,t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],r=arguments.length>1?arguments[1]:void 0,o={name:this.name,instanceToken:this.token,encrypted:!1,passwordHash:null,collections:[]};this.password&&(o.passwordHash=(0,n.hash)(this.password),o.encrypted=!t);var i=Object.keys(this.collections).filter((function(e){return!r||r.includes(e)})).filter((function(e){return"_"!==e.charAt(0)})).map((function(t){return e.collections[t]}));return Promise.all(i.map((function(e){return e.dump(t)}))).then((function(e){return o.collections=e,o}))}var a=function(e){var t=this,r=e.collections.filter((function(e){return!t.collections[e.name]})).map((function(e){return e.name}));if(r.length>0)throw(0,i.newRxError)("JD1",{missingCollections:r});return Promise.all(e.collections.map((function(e){return t.collections[e.name].importDump(e)})))},c=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=!e,r={name:this.name,schemaHash:this.schema.hash,encrypted:!1,passwordHash:null,docs:[]};this.database.password&&t&&(r.passwordHash=(0,n.hash)(this.database.password),r.encrypted=!0);var i=(0,o.createRxQuery)("find",(0,o._getDefaultQuery)(this),this);return this._pouchFind(i,void 0,t).then((function(e){return r.docs=e.map((function(e){return delete e._rev,delete e._attachments,e})),r}))};function f(e){var t=this;if(e.schemaHash!==this.schema.hash)throw(0,i.newRxError)("JD2",{schemaHash:e.schemaHash,own:this.schema.hash});if(e.encrypted&&e.passwordHash!==(0,n.hash)(this.database.password))throw(0,i.newRxError)("JD3",{passwordHash:e.passwordHash,own:(0,n.hash)(this.database.password)});var r,o=e.docs.map((function(e){return t._crypter.decrypt(e)})).map((function(e){return t.schema.validate(e)})).map((function(e){return t._handleToPouch(e)}));return this.database.lockedRun((function(){return r=(0,n.now)(),t.pouch.bulkDocs(o)})).then((function(){var e=(0,n.now)();o.forEach((function(n){var o=(0,u.createInsertEvent)(t,n,r,e);t.$emit(o)}))}))}r.rxdb=true;var l={RxDatabase:function(e){e.dump=s,e.importDump=a},RxCollection:function(e){e.dump=c,e.importDump=f}};r.prototypes=l;var p={};r.overwritable=p;var h={rxdb:true,prototypes:l,overwritable:p};r.RxDBJsonDumpPlugin=h},{"../rx-change-event":37,"../rx-error":44,"../rx-query":45,"../util":54}],23:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.create=a,r.RxDBKeyCompressionPlugin=r.overwritable=r.prototypes=r.rxdb=r.KeyCompressor=void 0;var o=n(e("@babel/runtime/helpers/createClass")),i=e("jsonschema-key-compression"),u=e("../util"),s=function(){function e(e){this.schema=e}var t=e.prototype;return t.compress=function(e){return this.schema.doKeyCompression()?(0,i.compressObject)(this.table,e):e},t.decompress=function(e){return this.schema.doKeyCompression()?(0,i.decompressObject)(this.table,e):e},t.transformKey=function(e){return(0,i.compressedPath)(this.table,e)},t.compressQuery=function(e){return this.schema.doKeyCompression()?(0,i.compressQuery)(this.table,e):e},(0,o.default)(e,[{key:"table",get:function(){var e=this.schema.normalized,t=(0,i.createCompressionTable)(e,i.DEFAULT_COMPRESSION_FLAG,[this.schema.primaryPath,"_rev","_attachments"]);return(0,u.overwriteGetterForCaching)(this,"table",t)}}]),e}();function a(e){return new s(e)}r.KeyCompressor=s;r.rxdb=true;var c={};r.prototypes=c;var f={createKeyCompressor:a};r.overwritable=f;var l={rxdb:true,prototypes:c,overwritable:f};r.RxDBKeyCompressionPlugin=l},{"../util":54,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"jsonschema-key-compression":494}],24:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.getForDatabase=u,r.isLeader=s,r.waitForLeadership=a,r.onDestroy=c,r.RxDBLeaderElectionPlugin=r.prototypes=r.rxdb=r.LeaderElector=void 0;var n=e("broadcast-channel"),o=new WeakMap,i=function(){function e(e){this.destroyed=!1,this.isLeader=!1,this.isDead=!1,this.database=e,this.elector=(0,n.createLeaderElection)(e.broadcastChannel)}var t=e.prototype;return t.die=function(){return this.elector.die()},t.waitForLeadership=function(){var e=this;return this.elector.awaitLeadership().then((function(){return e.isLeader=!0,!0}))},t.destroy=function(){if(!this.destroyed)return this.destroyed=!0,this.isDead=!0,this.die()},e}();function u(){return o.has(this)||o.set(this,new i(this)),o.get(this)}function s(){return!this.multiInstance||this.leaderElector().isLeader}function a(){return this.multiInstance?this.leaderElector().waitForLeadership():Promise.resolve(!0)}function c(e){var t=o.get(e);t&&t.destroy()}r.LeaderElector=i;r.rxdb=true;var f={RxDatabase:function(e){e.leaderElector=u,e.isLeader=s,e.waitForLeadership=a}};r.prototypes=f;var l={rxdb:true,prototypes:f,hooks:{preDestroyRxDatabase:c}};r.RxDBLeaderElectionPlugin=l},{"broadcast-channel":96}],25:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.RxDBLocalDocumentsPlugin=r.overwritable=r.prototypes=r.rxdb=r.RxLocalDocument=void 0;var o=n(e("@babel/runtime/helpers/inheritsLoose")),i=n(e("object-path")),u=e("../rx-document"),s=e("../rx-change-event"),a=e("../doc-cache"),c=e("../rx-error"),f=e("../util"),l=e("../rx-database"),p=e("../rx-collection"),h=e("rxjs/operators"),d=new WeakMap,y=function(e){return d.has(e)||d.set(e,(0,a.createDocCache)()),d.get(e)},b=new WeakMap,v=function(e){function t(t,r,n){var o;return(o=e.call(this,null,r)||this).id=t,o.parent=n,o}return(0,o.default)(t,e),t}((0,u.createRxDocumentConstructor)());r.RxLocalDocument=v;var m=function(e){return(0,l.isInstanceOf)(e)?e.internalStore:e.pouch},_={toPouchJson:function(){(0,f.clone)(this._data)._id=f.LOCAL_PREFIX+this.id},get isLocal(){return!0},get parentPouch(){return m(this.parent)},_handleChangeEvent:function(e){if(e.documentId===this.primary)switch(e.operation){case"UPDATE":var t=(0,f.clone)(e.documentData);this._dataSync$.next((0,f.clone)(t));break;case"DELETE":y(this.parent).delete(this.primary),this._deleted$.next(!0)}},get allAttachments$(){throw(0,c.newRxError)("LD1",{document:this})},get primaryPath(){return"id"},get primary(){return this.id},get $(){return this._dataSync$.asObservable()},$emit:function(e){return this.parent.$emit(e)},get:function(e){if(this._data){if("string"!=typeof e)throw(0,c.newRxTypeError)("LD2",{objPath:e});var t=i.default.get(this._data,e);return t=(0,f.clone)(t)}},get$:function(e){if(e.includes(".item."))throw(0,c.newRxError)("LD3",{path:e});if(e===this.primaryPath)throw(0,c.newRxError)("LD4");return this._dataSync$.pipe((0,h.map)((function(t){return i.default.get(t,e)})),(0,h.distinctUntilChanged)())},set:function(e,t){if(!t){var r=(0,f.clone)(e);return r._rev=this._data._rev,this._data=r,this}if("_id"===e)throw(0,c.newRxError)("LD5",{objPath:e,value:t});if(!Object.is(this.get(e),t))return i.default.set(this._data,e,t),this},_saveData:function(e){var t=this,r=this._dataSync$.getValue();(e=(0,f.clone)(e))._id=f.LOCAL_PREFIX+this.id;var n=(0,f.now)();return this.parentPouch.put(e).then((function(o){var i=(0,f.now)();e._rev=o.rev;var u=new s.RxChangeEvent("UPDATE",t.id,(0,f.clone)(e),(0,l.isInstanceOf)(t.parent)?t.parent.token:t.parent.database.token,(0,p.isInstanceOf)(t.parent)?t.parent.name:null,!0,n,i,r,t);t.$emit(u)}))},remove:function(){var e=this,t=f.LOCAL_PREFIX+this.id,r=(0,f.now)();return this.parentPouch.remove(t,this._data._rev).then((function(){y(e.parent).delete(e.id);var t=(0,f.now)(),n=new s.RxChangeEvent("DELETE",e.id,(0,f.clone)(e._data),(0,l.isInstanceOf)(e.parent)?e.parent.token:e.parent.database.token,(0,p.isInstanceOf)(e.parent)?e.parent.name:null,!0,r,t,null,e);e.$emit(n)}))}},g=!1,w=function(){if(!g){g=!0;var e=u.basePrototype;Object.getOwnPropertyNames(e).forEach((function(t){if(!Object.getOwnPropertyDescriptor(_,t)){var r=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(_,t,r)}}));["populate","update","putAttachment","getAttachment","allAttachments"].forEach((function(e){return _[e]=function(e){return function(){throw(0,c.newRxError)("LD6",{functionName:e})}}(e)}))}};function x(e,t){var r=this;return(0,p.isInstanceOf)(this)&&this._isInMemory?this._parentCollection.insertLocal(e,t):(t=(0,f.clone)(t),this.getLocal(e).then((function(n){if(n)throw(0,c.newRxError)("LD7",{id:e,data:t});var o=m(r),i=(0,f.clone)(t);return i._id=f.LOCAL_PREFIX+e,o.put(i)})).then((function(n){return t._rev=n.rev,v.create(e,t,r)})))}function S(e,t){var r=this;return(0,p.isInstanceOf)(this)&&this._isInMemory?this._parentCollection.upsertLocal(e,t):this.getLocal(e).then((function(n){return n?(t._rev=n._data._rev,n.atomicUpdate((function(){return t})).then((function(){return n}))):r.insertLocal(e,t)}))}function O(e){var t=this;if((0,p.isInstanceOf)(this)&&this._isInMemory)return this._parentCollection.getLocal(e);var r=m(this),n=y(this).get(e);return n?Promise.resolve(n):r.get(f.LOCAL_PREFIX+e).then((function(r){return r?v.create(e,r,t):null})).catch((function(){return null}))}v.create=function(e,t,r){w(),function(e){if(!b.has(e)){var t=e.$.pipe((0,h.filter)((function(e){return e.isLocal}))).subscribe((function(t){var r=y(e).get(t.documentId);r&&r._handleChangeEvent(t)}));e._subs.push(t),b.set(e,t)}b.get(e)}(r);var n=new v(e,t,r);return n.__proto__=_,y(r).set(e,n),n};r.rxdb=true;var j={RxCollection:function(e){e.insertLocal=x,e.upsertLocal=S,e.getLocal=O},RxDatabase:function(e){e.insertLocal=x,e.upsertLocal=S,e.getLocal=O}};r.prototypes=j;var P={};r.overwritable=P;var E={rxdb:true,prototypes:j,overwritable:P};r.RxDBLocalDocumentsPlugin=E},{"../doc-cache":5,"../rx-change-event":37,"../rx-collection":39,"../rx-database":41,"../rx-document":43,"../rx-error":44,"../util":54,"@babel/runtime/helpers/inheritsLoose":62,"@babel/runtime/helpers/interopRequireDefault":63,"object-path":507,"rxjs/operators":741}],26:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.createOldCollection=h,r._getOldCollections=d,r.mustMigrate=y,r.createDataMigrator=function(e,t){return new p(e,t)},r._runStrategyIfNotNull=b,r.getBatchOfOldCollection=v,r.migrateDocumentData=m,r._migrateDocument=_,r.deleteOldCollection=g,r.migrateOldCollection=w,r.migratePromise=function(e,t){e._migratePromise||(e._migratePromise=new Promise((function(r,n){w(e,t).subscribe(null,n,r)})));return e._migratePromise},r.DataMigrator=void 0;var n=e("rxjs"),o=e("../../pouch-db"),i=e("../../util"),u=e("../../rx-schema"),s=e("../../rx-error"),a=e("../../overwritable"),c=e("../../hooks"),f=e("../../crypter"),l=e("../../rx-collection-helper"),p=function(){function e(e,t){this._migrated=!1,this.newestCollection=e,this.migrationStrategies=t,this.currentSchema=e.schema,this.database=e.database,this.name=e.name}var t=e.prototype;return t.migrate=function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:10;if(this._migrated)throw(0,s.newRxError)("DM1");this._migrated=!0;var r,u={done:!1,total:0,handled:0,success:0,deleted:0,percent:0},a=new n.Subject;return d(e).then((function(e){return r=e,Promise.all(r.map((function(e){return(0,o.countAllUndeleted)(e.pouchdb)})))})).then((function(e){var n=e.reduce((function(e,t){return e+t}),0);u.total=n,a.next((0,i.flatClone)(u));for(var o=r.shift(),s=Promise.resolve(),c=function(){var e=w(o,t);s=s.then((function(){return new Promise((function(t){var r=e.subscribe((function(e){u.handled++,u[e.type]=u[e.type]+1,u.percent=Math.round(u.handled/u.total*100),a.next((0,i.flatClone)(u))}),(function(e){r.unsubscribe(),a.error(e)}),(function(){r.unsubscribe(),t()}))}))})),o=r.shift()};o;)c();return s})).then((function(){u.done=!0,u.percent=100,a.next((0,i.flatClone)(u)),a.complete()})),a.asObservable()},t.migratePromise=function(e){var t=this;return this._migratePromise||(this._migratePromise=y(this).then((function(r){return r?new Promise((function(r,n){t.migrate(e).subscribe(null,n,r)})):Promise.resolve(!1)}))),this._migratePromise},e}();function h(e,t,r){var n=r.newestCollection.database,o=(0,u.createRxSchema)(t,!1),i={version:e,dataMigrator:r,newestCollection:r.newestCollection,database:n,schema:(0,u.createRxSchema)(t,!1),pouchdb:n._spawnPouchDB(r.newestCollection.name,e,r.newestCollection.pouchSettings),_crypter:(0,f.createCrypter)(n.password,o)};return o.doKeyCompression()&&(i._keyCompressor=a.overwritable.createKeyCompressor(o)),i}function d(e){return Promise.all((0,u.getPreviousVersions)(e.currentSchema.jsonSchema).map((function(t){return e.database.internalStore.get(e.name+"-"+t)})).map((function(e){return e.catch((function(){return null}))}))).then((function(t){return t.filter((function(e){return null!==e})).map((function(t){return h(t.schema.version,t.schema,e)}))}))}function y(e){return 0===e.currentSchema.version?Promise.resolve(!1):d(e).then((function(e){return 0!==e.length}))}function b(e,t,r){if(null===r)return Promise.resolve(null);var n=e.dataMigrator.migrationStrategies[t](r);return(0,i.toPromise)(n)}function v(e,t){return(0,o.getBatch)(e.pouchdb,t).then((function(t){return t.map((function(t){return(0,l._handleFromPouch)(e,t)}))}))}function m(e,t){t=(0,i.clone)(t);for(var r=e.version+1,n=Promise.resolve(t),o=function(){var t=r;n=n.then((function(r){return b(e,t,r)})),r++};r<=e.newestCollection.schema.version;)o();return n.then((function(t){if(null===t)return Promise.resolve(null);try{e.newestCollection.schema.validate(t)}catch(r){throw(0,s.newRxError)("DM2",{fromVersion:e.version,toVersion:e.newestCollection.schema.version,finalDoc:t})}return t}))}function _(e,t){var r={res:null,type:"",migrated:null,doc:t,oldCollection:e,newestCollection:e.newestCollection};return m(e,t).then((function(t){if(r.migrated=t,t)return(0,c.runPluginHooks)("preMigrateDocument",r),delete t._rev,e.newestCollection._pouchPut(t,!0).then((function(e){return r.res=e,r.type="success",(0,c.runAsyncPluginHooks)("postMigrateDocument",r)}));r.type="deleted"})).then((function(){return e.pouchdb.remove((0,l._handleToPouch)(e,t)).catch((function(){}))})).then((function(){return r}))}function g(e){return e.pouchdb.destroy().then((function(){return e.database.removeCollectionDoc(e.dataMigrator.name,e.schema)}))}function w(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:10;if(e._migrate)throw(0,s.newRxError)("DM3");e._migrate=!0;var r,o=new n.Subject;return function n(){return v(e,t).then((function(t){return 0===t.length?(g(e).then((function(){return o.complete()})),!1):Promise.all(t.map((function(t){return _(e,t).then((function(e){return o.next(e)}))}))).catch((function(e){return r=e})).then((function(){return!0}))})).then((function(e){e&&(r?o.error(r):n())}))}(),o.asObservable()}r.DataMigrator=p},{"../../crypter":4,"../../hooks":7,"../../overwritable":9,"../../pouch-db":35,"../../rx-collection-helper":38,"../../rx-error":44,"../../rx-schema":46,"../../util":54,rxjs:542}],27:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"_getOldCollections",{enumerable:!0,get:function(){return n._getOldCollections}}),Object.defineProperty(r,"getBatchOfOldCollection",{enumerable:!0,get:function(){return n.getBatchOfOldCollection}}),Object.defineProperty(r,"migrateDocumentData",{enumerable:!0,get:function(){return n.migrateDocumentData}}),Object.defineProperty(r,"_migrateDocument",{enumerable:!0,get:function(){return n._migrateDocument}}),Object.defineProperty(r,"deleteOldCollection",{enumerable:!0,get:function(){return n.deleteOldCollection}}),Object.defineProperty(r,"migrateOldCollection",{enumerable:!0,get:function(){return n.migrateOldCollection}}),Object.defineProperty(r,"migratePromise",{enumerable:!0,get:function(){return n.migratePromise}}),Object.defineProperty(r,"DataMigrator",{enumerable:!0,get:function(){return n.DataMigrator}}),r.RxDBMigrationPlugin=r.DATA_MIGRATOR_BY_COLLECTION=void 0;var n=e("./data-migrator"),o=new WeakMap;r.DATA_MIGRATOR_BY_COLLECTION=o;var i={rxdb:!0,prototypes:{RxCollection:function(e){e.getDataMigrator=function(){return o.has(this)||o.set(this,(0,n.createDataMigrator)(this.asRxCollection,this.migrationStrategies)),o.get(this)},e.migrationNeeded=function(){return(0,n.mustMigrate)(this.getDataMigrator())}}}};r.RxDBMigrationPlugin=i},{"./data-migrator":26}],28:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={runBuildingStep:!0,applyBuildingStep:!0,RxDBQueryBuilderPlugin:!0};r.runBuildingStep=s,r.applyBuildingStep=a,r.RxDBQueryBuilderPlugin=void 0;var o=e("./mquery/nosql-query-builder");Object.keys(o).forEach((function(e){"default"!==e&&"__esModule"!==e&&(Object.prototype.hasOwnProperty.call(n,e)||e in r&&r[e]===o[e]||Object.defineProperty(r,e,{enumerable:!0,get:function(){return o[e]}}))}));var i=e("../../rx-query"),u=e("../../util");function s(e,t,r){var n=(0,o.createQueryBuilder)((0,u.clone)(e.mangoQuery));e.other.queryBuilderPath&&(n._path=e.other.queryBuilderPath),n[t](r);var s=n.toJSON(),a=new i.RxQueryBase(e.op,s.query,e.collection);return s.path&&(a.other.queryBuilderPath=s.path),(0,i.tunnelQueryCache)(a)}function a(e,t){e[t]=function(e){return s(this,t,e)}}var c={rxdb:!0,prototypes:{RxQuery:function(e){["where","equals","eq","or","nor","and","mod","exists","elemMatch","sort"].forEach((function(t){a(e,t)})),o.OTHER_MANGO_ATTRIBUTES.forEach((function(t){a(e,t)})),o.OTHER_MANGO_OPERATORS.forEach((function(t){a(e,t)}))}}};r.RxDBQueryBuilderPlugin=c},{"../../rx-query":45,"../../util":54,"./mquery/nosql-query-builder":30}],29:[function(e,t,r){"use strict";function n(e){return"[object Object]"===e.toString()}Object.defineProperty(r,"__esModule",{value:!0}),r.merge=function e(t,r){Object.keys(r).forEach((function(o){void 0===t[o]?t[o]=r[o]:n(r[o])?e(t[o],r[o]):t[o]=r[o]}))},r.isObject=n},{}],30:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.mQuerySortToRxDBSort=u,r.canMerge=l,r.createQueryBuilder=function(e){return new i(e)},r.OTHER_MANGO_OPERATORS=r.OTHER_MANGO_ATTRIBUTES=r.NoSqlQueryBuilderClass=void 0;var n=e("./mquery-utils"),o=e("../../../rx-error"),i=function(){function e(e){if(this.options={},this._conditions={},this._fields={},e){var t=this;e.selector&&t.find(e.selector),e.limit&&t.limit(e.limit),e.skip&&t.skip(e.skip),e.sort&&e.sort.forEach((function(e){return t.sort(e)}))}}var t=e.prototype;return t.where=function(e,t){if(!arguments.length)return this;var r=typeof arguments[0];if("string"===r)return this._path=arguments[0],2===arguments.length&&(this._conditions[this._path]=arguments[1]),this;if("object"===r&&!Array.isArray(arguments[0]))return this.merge(arguments[0]);throw(0,o.newRxTypeError)("MQ1",{path:arguments[0]})},t.equals=function(e){this._ensurePath("equals");var t=this._path;return this._conditions[t]=e,this},t.eq=function(e){this._ensurePath("eq");var t=this._path;return this._conditions[t]=e,this},t.or=function(e){var t=this._conditions.$or||(this._conditions.$or=[]);return Array.isArray(e)||(e=[e]),t.push.apply(t,e),this},t.nor=function(e){var t=this._conditions.$nor||(this._conditions.$nor=[]);return Array.isArray(e)||(e=[e]),t.push.apply(t,e),this},t.and=function(e){var t=this._conditions.$and||(this._conditions.$and=[]);return Array.isArray(e)||(e=[e]),t.push.apply(t,e),this},t.mod=function(e,t){var r,n;1===arguments.length?(this._ensurePath("mod"),r=arguments[0],n=this._path):2!==arguments.length||Array.isArray(arguments[1])?3===arguments.length?(r=arguments.slice(1),n=arguments[0]):(r=arguments[1],n=arguments[0]):(this._ensurePath("mod"),r=arguments.slice(),n=this._path);var o=this._conditions[n]||(this._conditions[n]={});return o.$mod=r,this},t.exists=function(e,t){var r,n;0===arguments.length?(this._ensurePath("exists"),r=this._path,n=!0):1===arguments.length?"boolean"==typeof arguments[0]?(this._ensurePath("exists"),r=this._path,n=arguments[0]):(r=arguments[0],n=!0):2===arguments.length&&(r=arguments[0],n=arguments[1]);var o=this._conditions[r]||(this._conditions[r]={});return o.$exists=n,this},t.elemMatch=function(t,r){if(null===arguments[0])throw(0,o.newRxTypeError)("MQ2");var i,u,s;if("function"==typeof arguments[0])this._ensurePath("elemMatch"),u=this._path,i=arguments[0];else if((0,n.isObject)(arguments[0]))this._ensurePath("elemMatch"),u=this._path,s=arguments[0];else if("function"==typeof arguments[1])u=arguments[0],i=arguments[1];else{if(!arguments[1]||!(0,n.isObject)(arguments[1]))throw(0,o.newRxTypeError)("MQ2");u=arguments[0],s=arguments[1]}i&&(i(s=new e),s=s._conditions);var a=this._conditions[u]||(this._conditions[u]={});return a.$elemMatch=s,this},t.sort=function(e){var t,r=this;if(!e)return this;var i=typeof e;if(Array.isArray(e)){t=e.length;for(var u=0;u1&&void 0!==arguments[1]?arguments[1]:c;if(p.has(e))return;h.has(e)||(e.onDestroy.then((function(){var t=p.get(e);t&&clearTimeout(t)})),h.add(e));var r=setTimeout((function(){p.delete(e),e.cacheReplacementPolicy(e,e._queryCache)}),t);p.set(e,r)},r.COLLECTIONS_WITH_DESTROY_HOOK=r.CACHE_REPLACEMENT_STATE_BY_COLLECTION=r.defaultCacheReplacementPolicy=r.defaultCacheReplacementPolicyMonad=r.DEFAULT_CACHE_REPLACEMENT_WAIT_TIME=r.DEFAULT_UNEXECUTED_LIFETME=r.DEFAULT_TRY_TO_KEEP_MAX=r.QueryCache=void 0;var n=e("./util");function o(e,t){var r;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(r=function(e,t){if(!e)return;if("string"==typeof e)return i(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);"Object"===r&&e.constructor&&(r=e.constructor.name);if("Map"===r||"Set"===r)return Array.from(e);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return i(e,t)}(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var n=0;return function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}return(r=e[Symbol.iterator]()).next.bind(r)}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r0||(0===p._lastEnsureEqual&&p._creationTime2&&void 0!==arguments[2]&&arguments[2];t=e.schema.swapIdToPrimary(t),e.schema.doKeyCompression()&&(t=e._keyCompressor.decompress(t));return r?t:t=e._crypter.decrypt(t)},r.fillObjectDataBeforeInsert=function(e,t){var r=e.schema.fillObjectWithDefaults(t);if(r._id&&"_id"!==e.schema.primaryPath)throw(0,o.newRxError)("COL2",{data:t});"_id"!==e.schema.primaryPath||r._id||(r._id=(0,n.generateId)());return r};var n=e("./util"),o=e("./rx-error")},{"./rx-error":44,"./util":54}],39:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.create=A,r.isInstanceOf=k,r.default=r.RxCollectionBase=void 0;var o=n(e("@babel/runtime/regenerator")),i=n(e("@babel/runtime/helpers/asyncToGenerator")),u=n(e("@babel/runtime/helpers/createClass")),s=e("rxjs/operators"),a=e("./util"),c=e("./pouch-db"),f=e("./rx-collection-helper"),l=e("./rx-query"),p=e("./rx-schema"),h=e("./rx-change-event"),d=e("./rx-error"),y=e("./crypter"),b=e("./doc-cache"),v=e("./query-cache"),m=e("./change-event-buffer"),_=e("./overwritable"),g=e("./hooks"),w=e("./rx-document"),x=e("./rx-document-prototype-merge"),S=["pre","post"],O=["insert","save","remove","create"],j=!1,P=function(){function e(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},i=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},u=arguments.length>6&&void 0!==arguments[6]?arguments[6]:{},s=arguments.length>7&&void 0!==arguments[7]?arguments[7]:{},a=arguments.length>8&&void 0!==arguments[8]?arguments[8]:v.defaultCacheReplacementPolicy,c=arguments.length>9&&void 0!==arguments[9]?arguments[9]:{};this._isInMemory=!1,this.destroyed=!1,this._atomicUpsertQueues=new Map,this.synced=!1,this.hooks={},this._subs=[],this._repStates=[],this.pouch={},this._docCache=(0,b.createDocCache)(),this._queryCache=(0,v.createQueryCache)(),this._crypter={},this._changeEventBuffer={},this.database=e,this.name=t,this.schema=r,this.pouchSettings=n,this.migrationStrategies=o,this.methods=i,this.attachments=u,this.options=s,this.cacheReplacementPolicy=a,this.statics=c,E(this.asRxCollection)}var t=e.prototype;return t.prepare=function(){var e=this;this.pouch=this.database._spawnPouchDB(this.name,this.schema.version,this.pouchSettings),this.schema.doKeyCompression()&&(this._keyCompressor=_.overwritable.createKeyCompressor(this.schema));var t=this.pouch.info(),r=function(e,t){return Promise.all(e.schema.indexes.map((function(r){var n=r.map((function(t){var r=t===e.schema.primaryPath?"_id":t;return e.schema.doKeyCompression()?e._keyCompressor.transformKey(r):r}));return t.then((function(){return e.pouch.createIndex({index:{fields:n}})}))})))}(this.asRxCollection,t);return this._crypter=(0,y.createCrypter)(this.database.password,this.schema),this._observable$=this.database.$.pipe((0,s.filter)((function(t){return t.collectionName===e.name}))),this._changeEventBuffer=(0,m.createChangeEventBuffer)(this.asRxCollection),this._subs.push(this._observable$.pipe((0,s.filter)((function(e){return!e.isLocal}))).subscribe((function(t){var r=e._docCache.get(t.documentId);r&&r._handleChangeEvent(t)}))),Promise.all([t,r])},t.migrationNeeded=function(){if(0===this.schema.version)return Promise.resolve(!1);throw(0,a.pluginMissing)("migration")},t.getDataMigrator=function(){throw(0,a.pluginMissing)("migration")},t.migrate=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:10;return this.getDataMigrator().migrate(e)},t.migratePromise=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:10;return this.getDataMigrator().migratePromise(e)},t._handleToPouch=function(e){return(0,f._handleToPouch)(this,e)},t._handleFromPouch=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return(0,f._handleFromPouch)(this,e,t)},t._pouchPut=function(e){var t=this,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return e=this._handleToPouch(e),this.database.lockedRun((function(){return t.pouch.put(e)})).catch((function(n){if(r&&409===n.status)return t.database.lockedRun((function(){return t.pouch.get(e._id)})).then((function(r){return e._rev=r._rev,t.database.lockedRun((function(){return t.pouch.put(e)}))}));throw 409===n.status?(0,d.newRxError)("COL19",{id:e._id,pouchDbError:n,data:e}):n}))},t._pouchGet=function(e){var t=this;return this.pouch.get(e).then((function(e){return t._handleFromPouch(e)}))},t._pouchFind=function(e,t){var r=this,n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],o=e.keyCompress();return t&&(o.limit=t),this.database.lockedRun((function(){return r.pouch.find(o)})).then((function(e){return e.docs.map((function(e){return r._handleFromPouch(e,n)}))}))},t.$emit=function(e){return this.database.$emit(e)},t.insert=function(e){var t=this,r=null;if((0,w.isInstanceOf)(e)){if(!(r=e)._isTemporary)throw(0,d.newRxError)("COL1",{data:e});e=r.toJSON()}var n,o,i=(0,f.fillObjectDataBeforeInsert)(this,e),u=r;return this._runHooks("pre","insert",i).then((function(){return t.schema.validate(i),n=(0,a.now)(),t._pouchPut(i)})).then((function(e){return o=(0,a.now)(),i[t.schema.primaryPath]=e.id,i._rev=e.rev,r?r._dataSync$.next(i):u=(0,x.createRxDocument)(t,i),t._runHooks("post","insert",i,u)})).then((function(){var e=(0,h.createInsertEvent)(t,i,n,o,u);return t.$emit(e),u}))},t.bulkInsert=function(e){var t=this,r=e.map((function(e){return(0,f.fillObjectDataBeforeInsert)(t,e)}));return Promise.all(r.map((function(e){return t._runHooks("pre","insert",e).then((function(){return t.schema.validate(e),e}))}))).then((function(e){var r=e.map((function(e){return t._handleToPouch(e)})),n=new Map;return e.forEach((function(e){n.set(e[t.schema.primaryPath],e)})),t.database.lockedRun((function(){var e=(0,a.now)();return t.pouch.bulkDocs(r).then((function(r){var o=(0,a.now)(),i=r.filter((function(e){return e.ok})).map((function(e){var r=n.get(e.id);return r._rev=e.rev,(0,x.createRxDocument)(t,r)}));return i.forEach((function(r){var i=(0,h.createInsertEvent)(t,r.toJSON(!0),e,o,n.get(r.primary));t.$emit(i)})),{success:i,error:r.filter((function(e){return!e.ok}))}}))}))}))},t.upsert=function(e){var t=this,r=(0,a.flatClone)(e),n=r[this.schema.primaryPath];if(!n)throw(0,d.newRxError)("COL3",{primaryPath:this.schema.primaryPath,data:r});return this.findOne(n).exec().then((function(n){return n?(r._rev=n._rev,n.atomicUpdate((function(){return r})).then((function(){return n}))):t.insert(e)}))},t.atomicUpsert=function(e){var t,r=this,n=e[this.schema.primaryPath];if(!n)throw(0,d.newRxError)("COL4",{data:e});return t=(t=this._atomicUpsertQueues.has(n)?this._atomicUpsertQueues.get(n):Promise.resolve()).then((function(){return function(e,t,r){return e.findOne(t).exec().then((function(t){return t?{doc:t,inserted:!1}:e.insert(r).then((function(e){return{doc:e,inserted:!0}}))}))}(r,n,e)})).then((function(t){return t.inserted?t.doc:function(e,t){return e.atomicUpdate((function(e){return t._rev=e._rev,e._data=t,e._data})).then((function(){return e}))}(t.doc,e).then((function(){return(0,a.nextTick)()})).then((function(){return t.doc}))})),this._atomicUpsertQueues.set(n,t),t},t.find=function(e){if("string"==typeof e)throw(0,d.newRxError)("COL5",{queryObj:e});return e||(e=(0,l._getDefaultQuery)(this)),(0,l.createRxQuery)("find",e,this)},t.findOne=function(e){var t;if("string"==typeof e)t=(0,l.createRxQuery)("findOne",{selector:{_id:e}},this);else{if(e||(e=(0,l._getDefaultQuery)(this)),e.limit)throw(0,d.newRxError)("QU6");t=(0,l.createRxQuery)("findOne",e,this)}if("number"==typeof e||Array.isArray(e))throw(0,d.newRxTypeError)("COL6",{queryObj:e});return t},t.findByIds=function(){var e=(0,i.default)(o.default.mark((function e(t){var r,n,i=this;return o.default.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(r=new Map,n=[],t.forEach((function(e){var t=i._docCache.get(e);t?r.set(e,t):n.push(e)})),!(n.length>0)){e.next=8;break}return e.next=6,this.pouch.allDocs({include_docs:!0,keys:n});case 6:e.sent.rows.forEach((function(e){if(e.doc){var t=i._handleFromPouch(e.doc),n=(0,x.createRxDocument)(i,t);r.set(n.primary,n)}}));case 8:return e.abrupt("return",r);case 9:case"end":return e.stop()}}),e,this)})));return function(t){return e.apply(this,arguments)}}(),t.findByIds$=function(e){var t=this,r=null,n=this.findByIds(e).then((function(e){r=e}));return this.$.pipe((0,s.startWith)(null),(0,s.mergeMap)((function(e){return n.then((function(){return e}))})),(0,s.map)((function(n){if(!r)throw new Error("should not happen");if(!n)return r;if(!e.includes(n.documentId))return null;var o=n.operation;return"INSERT"===o||"UPDATE"===o?r.set(n.documentId,t._docCache.get(n.documentId)):r.delete(n.documentId),r})),(0,s.filter)((function(e){return!!e})),(0,s.shareReplay)(1))},t.dump=function(){throw(0,a.pluginMissing)("json-dump")},t.importDump=function(e){throw(0,a.pluginMissing)("json-dump")},t.watchForChanges=function(){throw(0,a.pluginMissing)("watch-for-changes")},t.sync=function(e){throw(0,a.pluginMissing)("replication")},t.syncGraphQL=function(e){throw(0,a.pluginMissing)("replication-graphql")},t.inMemory=function(){throw(0,a.pluginMissing)("in-memory")},t.addHook=function(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if("function"!=typeof r)throw(0,d.newRxTypeError)("COL7",{key:t,when:e});if(!S.includes(e))throw(0,d.newRxTypeError)("COL8",{key:t,when:e});if(!O.includes(t))throw(0,d.newRxError)("COL9",{key:t});if("post"===e&&"create"===t&&!0===n)throw(0,d.newRxError)("COL10",{when:e,key:t,parallel:n});var o=r.bind(this),i=n?"parallel":"series";this.hooks[t]=this.hooks[t]||{},this.hooks[t][e]=this.hooks[t][e]||{series:[],parallel:[]},this.hooks[t][e][i].push(o)},t.getHooks=function(e,t){try{return this.hooks[t][e]}catch(e){return{series:[],parallel:[]}}},t._runHooks=function(e,t,r,n){var o=this.getHooks(e,t);if(!o)return Promise.resolve();var i=o.series.map((function(e){return function(){return e(r,n)}}));return(0,a.promiseSeries)(i).then((function(){return Promise.all(o.parallel.map((function(e){return e(r,n)})))}))},t._runHooksSync=function(e,t,r,n){var o=this.getHooks(e,t);o&&o.series.forEach((function(e){return e(r,n)}))},t.newDocument=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};e=this.schema.fillObjectWithDefaults(e);var t=(0,w.createWithConstructor)((0,x.getRxDocumentConstructor)(this),this,e);return t._isTemporary=!0,this._runHooksSync("post","create",e,t),t},t.destroy=function(){return this.destroyed?Promise.resolve(!1):(this._onDestroyCall&&this._onDestroyCall(),this._subs.forEach((function(e){return e.unsubscribe()})),this._changeEventBuffer&&this._changeEventBuffer.destroy(),this._repStates.forEach((function(e){return e.cancel()})),delete this.database.collections[this.name],this.destroyed=!0,Promise.resolve(!0))},t.remove=function(){return this.database.removeCollection(this.name)},(0,u.default)(e,[{key:"$",get:function(){return this._observable$}},{key:"insert$",get:function(){return this.$.pipe((0,s.filter)((function(e){return"INSERT"===e.operation})))}},{key:"update$",get:function(){return this.$.pipe((0,s.filter)((function(e){return"UPDATE"===e.operation})))}},{key:"remove$",get:function(){return this.$.pipe((0,s.filter)((function(e){return"DELETE"===e.operation})))}},{key:"onDestroy",get:function(){var e=this;return this._onDestroy||(this._onDestroy=new Promise((function(t){return e._onDestroyCall=t}))),this._onDestroy}},{key:"asRxCollection",get:function(){return this}}]),e}();function E(e){if(!j){j=!0;var t=Object.getPrototypeOf(e);O.forEach((function(e){S.map((function(r){var n=r+(0,a.ucfirst)(e);t[n]=function(t,n){return this.addHook(r,e,t,n)}}))}))}}function A(e){var t=e.database,r=e.name,n=e.schema,o=e.pouchSettings,i=void 0===o?{}:o,u=e.migrationStrategies,s=void 0===u?{}:u,a=e.autoMigrate,f=void 0===a||a,l=e.statics,h=void 0===l?{}:l,y=e.methods,b=void 0===y?{}:y,m=e.attachments,_=void 0===m?{}:m,w=e.options,x=void 0===w?{}:w,S=e.cacheReplacementPolicy,O=void 0===S?v.defaultCacheReplacementPolicy:S;(0,c.validateCouchDBString)(r),(0,p.isInstanceOf)(n)||(n=(0,p.createRxSchema)(n)),Object.keys(b).filter((function(e){return n.topLevelFields.includes(e)})).forEach((function(e){throw(0,d.newRxError)("COL18",{funName:e})}));var j=new P(t,r,n,i,s,b,_,x,O,h);return j.prepare().then((function(){Object.entries(h).forEach((function(e){var t=e[0],r=e[1];Object.defineProperty(j,t,{get:function(){return r.bind(j)}})}));var e=Promise.resolve();return f&&0!==j.schema.version&&(e=j.migratePromise()),e})).then((function(){return(0,g.runPluginHooks)("createRxCollection",j),j}))}function k(e){return e instanceof P}r.RxCollectionBase=P;var C={create:A,isInstanceOf:k,RxCollectionBase:P};r.default=C},{"./change-event-buffer":2,"./crypter":4,"./doc-cache":5,"./hooks":7,"./overwritable":9,"./pouch-db":35,"./query-cache":36,"./rx-change-event":37,"./rx-collection-helper":38,"./rx-document":43,"./rx-document-prototype-merge":42,"./rx-error":44,"./rx-query":45,"./rx-schema":46,"./util":54,"@babel/runtime/helpers/asyncToGenerator":58,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"@babel/runtime/regenerator":70,"rxjs/operators":741}],40:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.getLocalDocument=function(e,t){return e.get(n.LOCAL_PREFIX+t).catch((function(){return null}))},r.setLocalDocument=function(e,t,r){return e.put({_id:t,value:r}).then((function(){}))},r.putDocument=function(e,t){return e.put(t).then((function(e){return Object.assign({_id:e.id,_rev:e.rev},t)}))},r.getAllDocuments=function(e){return e.allDocs({include_docs:!0}).then((function(e){return e.rows}))},r.deleteStorageInstance=function(e){return e.destroy()},r.INTERNAL_STORAGE_NAME=void 0;var n=e("./util");r.INTERNAL_STORAGE_NAME="_rxdb_internal"},{"./util":54}],41:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r._ensureStorageTokenExists=S,r.writeToSocket=O,r._collectionNamePrimary=j,r._removeAllOfCollection=P,r.createRxDatabase=A,r.removeRxDatabase=k,r.checkAdapter=C,r.isInstanceOf=R,r.dbCount=M,r.default=r.RxDatabaseBase=void 0;var o=n(e("@babel/runtime/helpers/createClass")),i=n(e("random-token")),u=e("custom-idle-queue"),s=e("broadcast-channel"),a=e("./util"),c=e("./rx-error"),f=e("./rx-schema"),l=e("./rx-change-event"),p=e("./overwritable"),h=e("./hooks"),d=e("rxjs"),y=e("rxjs/operators"),b=e("./pouch-db"),v=e("./rx-collection"),m=e("./rx-storage-pouchdb"),_=e("./rx-database-internal-store"),g={},w=0,x=function(){function e(e,t,r,n){var o=arguments.length>4&&void 0!==arguments[4]&&arguments[4],s=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},a=arguments.length>6?arguments[6]:void 0;this.internalStore={},this.idleQueue=new u.IdleQueue,this.token=(0,i.default)(10),this._subs=[],this.destroyed=!1,this.subject=new d.Subject,this.observable$=this.subject.asObservable().pipe((0,y.filter)((function(e){return(0,l.isInstanceOf)(e)}))),this.name=e,this.adapter=t,this.password=r,this.multiInstance=n,this.eventReduce=o,this.options=s,this.pouchSettings=a,this.storage=(0,m.getRxStoragePouchDb)(t,a),this.collections={},w++}var t=e.prototype;return t.dangerousRemoveCollectionInfo=function(){var e=this;return(0,_.getAllDocuments)(this.internalStore).then((function(t){return Promise.all(t.map((function(e){return{_id:e.key,_rev:e.value.rev}})).map((function(t){return e.internalStore.remove(t._id,t._rev)})))}))},t._spawnPouchDB=function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.storage.createStorageInstance(this.name,e,t,{pouchSettings:r})},t.$emit=function(e){e&&(this.subject.next(e),e.databaseToken===this.token&&O(this,e))},t.removeCollectionDoc=function(e,t){var r=this,n=j(e,t);return this.internalStore.get(n).then((function(e){return r.lockedRun((function(){return r.internalStore.remove(e)}))}))},t.collection=function(e){var t=this;if("string"==typeof e)return Promise.resolve(this.collections[e]);if((e=Object.assign({},e)).database=this,(0,h.runPluginHooks)("preCreateRxCollection",e),"_"===e.name.charAt(0))throw(0,c.newRxError)("DB2",{name:e.name});if(this.collections[e.name])throw(0,c.newRxError)("DB3",{name:e.name});if(!e.schema)throw(0,c.newRxError)("DB4",{name:e.name,args:e});var r=j(e.name,e.schema),n=(0,f.createRxSchema)(e.schema);e.schema=n;var o,i,u=n.hash;return this.lockedRun((function(){return t.internalStore.get(r)})).catch((function(){return null})).then((function(r){return o=r,r&&r.schemaHash!==u?t._spawnPouchDB(e.name,e.schema.version,e.pouchSettings).find({selector:{},limit:1}).then((function(t){if(0!==t.docs.length)throw(0,c.newRxError)("DB6",{name:e.name,previousSchemaHash:r.schemaHash,schemaHash:u});return r})):r})).then((function(){return(0,v.create)(e)})).then((function(n){if(i=n,n.schema.crypt&&!t.password)throw(0,c.newRxError)("DB7",{name:e.name});if(!o)return t.lockedRun((function(){return t.internalStore.put({_id:r,schemaHash:u,schema:n.schema.normalized,version:n.schema.version})})).catch((function(){}))})).then((function(){return t.collections[e.name]=i,t[e.name]||Object.defineProperty(t,e.name,{get:function(){return t.collections[e.name]}}),i}))},t.removeCollection=function(e){var t=this;return this.collections[e]&&this.collections[e].destroy(),P(this,e).then((function(r){return r.map((function(r){return t._spawnPouchDB(e,r)}))})).then((function(e){return Promise.all(e.map((function(e){return t.lockedRun((function(){return e.destroy()}))})))})).then((function(){}))},t.lockedRun=function(e){return this.idleQueue.wrapCall(e)},t.requestIdlePromise=function(){return this.idleQueue.requestIdlePromise()},t.dump=function(){throw(0,a.pluginMissing)("json-dump")},t.importDump=function(e){throw(0,a.pluginMissing)("json-dump")},t.server=function(e){throw(0,a.pluginMissing)("server")},t.leaderElector=function(){throw(0,a.pluginMissing)("leader-election")},t.isLeader=function(){throw(0,a.pluginMissing)("leader-election")},t.waitForLeadership=function(){throw(0,a.pluginMissing)("leader-election")},t.destroy=function(){var e=this;return this.destroyed?Promise.resolve(!1):((0,h.runPluginHooks)("preDestroyRxDatabase",this),w--,this.destroyed=!0,this.broadcastChannel&&setTimeout((function(){return e.broadcastChannel.close()}),1e3),this._subs.map((function(e){return e.unsubscribe()})),Promise.all(Object.keys(this.collections).map((function(t){return e.collections[t]})).map((function(e){return e.destroy()}))).then((function(){return function(e,t){if(!g[e])return;var r=g[e].indexOf(t);g[e].splice(r,1)}(e.name,e.adapter)})).then((function(){return!0})))},t.remove=function(){var e=this;return this.destroy().then((function(){return k(e.name,e.adapter)}))},(0,o.default)(e,[{key:"$",get:function(){return this.observable$}}]),e}();function S(e){return e.internalStore.get(a.LOCAL_PREFIX+"storageToken").catch((function(){return e.internalStore.put({_id:a.LOCAL_PREFIX+"storageToken",value:(0,i.default)(10)}).catch((function(){})).then((function(){return(0,a.promiseWait)(0)}))})).then((function(){return e.internalStore.get(a.LOCAL_PREFIX+"storageToken")})).then((function(e){return e.value}))}function O(e,t){if(e.multiInstance&&!t.isIntern()&&e.broadcastChannel){var r={cE:t.toJSON(),storageToken:e.storageToken};return e.broadcastChannel.postMessage(r).then((function(){return!0}))}return Promise.resolve(!1)}function j(e,t){return e+"-"+t.version}function P(e,t){return e.lockedRun((function(){return(0,_.getAllDocuments)(e.internalStore)})).then((function(r){var n=r.map((function(e){return e.doc})).filter((function(e){return e._id.split("-")[0]===t}));return Promise.all(n.map((function(t){return e.lockedRun((function(){return e.internalStore.remove(t)}))}))).then((function(){return n.map((function(e){return e.version}))}))}))}function E(e){return e.storage.createInternalStorageInstance(e.name).then((function(t){return e.internalStore=t,S(e)})).then((function(t){e.storageToken=t,e.multiInstance&&function(e){e.broadcastChannel=new s.BroadcastChannel("RxDB:"+e.name+":socket"),e.broadcastChannel$=new d.Subject,e.broadcastChannel.onmessage=function(t){if(t.storageToken===e.storageToken&&t.cE.databaseToken!==e.token){var r=new l.RxChangeEvent(t.cE.operation,t.cE.documentId,t.cE.documentData,t.cE.databaseToken,t.cE.collectionName,t.cE.isLocal,t.cE.startTime,t.cE.endTime,t.cE.previousData);e.broadcastChannel$.next(r)}},e._subs.push(e.broadcastChannel$.subscribe((function(t){e.$emit(t)})))}(e)}))}function A(e){var t=e.name,r=e.adapter,n=e.password,o=e.multiInstance,i=void 0===o||o,u=e.eventReduce,s=void 0!==u&&u,a=e.ignoreDuplicate,f=void 0!==a&&a,l=e.options,d=void 0===l?{}:l,y=e.pouchSettings,v=void 0===y?{}:y;if((0,h.runPluginHooks)("preCreateRxDatabase",{name:t,adapter:r,password:n,multiInstance:i,eventReduce:s,ignoreDuplicate:f,options:d,pouchSettings:v}),"string"==typeof r){if(!b.PouchDB.adapters||!b.PouchDB.adapters[r])throw(0,c.newRxError)("DB9",{adapter:r})}else if((0,b.isLevelDown)(r),!b.PouchDB.adapters||!b.PouchDB.adapters.leveldb)throw(0,c.newRxError)("DB10",{adapter:r});n&&p.overwritable.validatePassword(n),f||function(e,t){if(!g[e])return!1;var r=!1;if(g[e].forEach((function(e){e===t&&(r=!0)})),r)throw(0,c.newRxError)("DB8",{name:e,adapter:t,link:"https://pubkey.github.io/rxdb/rx-database.html#ignoreduplicate"})}(t,r),g[t]||(g[t]=[]),g[t].push(r);var m=new x(t,r,n,i,s,d,v);return E(m).then((function(){return(0,h.runAsyncPluginHooks)("createRxDatabase",m)})).then((function(){return m}))}function k(e,t){var r=(0,m.getRxStoragePouchDb)(t);return r.createInternalStorageInstance(e).then((function(t){return(0,_.getAllDocuments)(t).then((function(t){return Promise.all(t.map((function(e){return e.id})).map((function(t){var n=t.split("-"),o=n[0],i=parseInt(n[1],10);return r.createStorageInstance(e,o,i).destroy()})))})).then((function(){return(0,_.deleteStorageInstance)(t)}))}))}function C(e){return p.overwritable.checkAdapter(e)}function R(e){return e instanceof x}function M(){return w}r.RxDatabaseBase=x;var I={createRxDatabase:A,removeRxDatabase:k,checkAdapter:C,isInstanceOf:R,RxDatabaseBase:x,dbCount:M};r.default=I},{"./hooks":7,"./overwritable":9,"./pouch-db":35,"./rx-change-event":37,"./rx-collection":39,"./rx-database-internal-store":40,"./rx-error":44,"./rx-schema":46,"./rx-storage-pouchdb":47,"./util":54,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"broadcast-channel":96,"custom-idle-queue":425,"random-token":534,rxjs:542,"rxjs/operators":741}],42:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.getDocumentPrototype=s,r.getRxDocumentConstructor=a,r.createRxDocument=c,r.createRxDocuments=function(e,t){return t.map((function(t){return c(e,t)}))},r.getDocumentOrmPrototype=f;var n=e("./rx-document"),o=e("./hooks"),i=new WeakMap,u=new WeakMap;function s(e){if(!i.has(e)){var t=e.schema.getDocumentPrototype(),r=f(e),o=n.basePrototype,u={};[t,r,o].forEach((function(e){Object.getOwnPropertyNames(e).forEach((function(t){var r=Object.getOwnPropertyDescriptor(e,t),n=!0;(t.startsWith("_")||t.endsWith("_")||t.startsWith("$")||t.endsWith("$"))&&(n=!1),"function"==typeof r.value?Object.defineProperty(u,t,{get:function(){return r.value.bind(this)},enumerable:n,configurable:!1}):(r.enumerable=n,r.configurable=!1,r.writable&&(r.writable=!1),Object.defineProperty(u,t,r))}))})),i.set(e,u)}return i.get(e)}function a(e){if(!u.has(e)){var t=(0,n.createRxDocumentConstructor)(s(e));u.set(e,t)}return u.get(e)}function c(e,t){var r=t[e.schema.primaryPath],i=e._docCache.get(r);if(i)return i;var u=(0,n.createWithConstructor)(a(e),e,t);return e._docCache.set(r,u),e._runHooksSync("post","create",t,u),(0,o.runPluginHooks)("postCreateRxDocument",u),u}function f(e){var t={};return Object.entries(e.methods).forEach((function(e){var r=e[0],n=e[1];t[r]=n})),t}},{"./hooks":7,"./rx-document":43}],43:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.createRxDocumentConstructor=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:h,t=function(e,t){this.collection=e,this._isTemporary=!1,this._dataSync$=new s.BehaviorSubject(t),this._deleted$=new s.BehaviorSubject(!1),this._atomicQueue=Promise.resolve(),this.isInstanceOfRxDocument=!0};return t.prototype=e,t},r.defineGetterSetter=d,r.createWithConstructor=function(e,t,r){if(r[t.schema.primaryPath]&&r[t.schema.primaryPath].startsWith("_design"))return null;var n=new e(t,r);return(0,p.runPluginHooks)("createRxDocument",n),n},r.isInstanceOf=function(e){return void 0!==e&&!!e.isInstanceOfRxDocument},r.basePrototype=void 0;var o=n(e("@babel/runtime/regenerator")),i=n(e("@babel/runtime/helpers/asyncToGenerator")),u=n(e("object-path")),s=e("rxjs"),a=e("rxjs/operators"),c=e("./util"),f=e("./rx-change-event"),l=e("./rx-error"),p=e("./hooks"),h={get _data(){if(this.isInstanceOfRxDocument)return this._dataSync$.getValue()},get primaryPath(){if(this.isInstanceOfRxDocument)return this.collection.schema.primaryPath},get primary(){var e=this;if(e.isInstanceOfRxDocument)return e._data[e.primaryPath]},get revision(){if(this.isInstanceOfRxDocument)return this._data._rev},get deleted$(){if(this.isInstanceOfRxDocument)return this._deleted$.asObservable()},get deleted(){if(this.isInstanceOfRxDocument)return this._deleted$.getValue()},get $(){return this._dataSync$.asObservable()},_handleChangeEvent:function(e){if(e.documentId===this.primary){var t=(0,c.getHeightOfRevision)(e.documentData._rev);if(!((0,c.getHeightOfRevision)(this._data._rev)>t))switch(e.operation){case"INSERT":break;case"UPDATE":var r=e.documentData;this._dataSync$.next(r);break;case"DELETE":this.collection._docCache.delete(this.primary),this._deleted$.next(!0)}}},$emit:function(e){return this.collection.$emit(e)},get$:function(e){if(e.includes(".item."))throw(0,l.newRxError)("DOC1",{path:e});if(e===this.primaryPath)throw(0,l.newRxError)("DOC2");if(this.collection.schema.finalFields.includes(e))throw(0,l.newRxError)("DOC3",{path:e});if(!this.collection.schema.getSchemaByObjectPath(e))throw(0,l.newRxError)("DOC4",{path:e});return this._dataSync$.pipe((0,a.map)((function(t){return u.default.get(t,e)})),(0,a.distinctUntilChanged)())},populate:function(e){var t=this.collection.schema.getSchemaByObjectPath(e),r=this.get(e);if(!r)return Promise.resolve(null);if(!t)throw(0,l.newRxError)("DOC5",{path:e});if(!t.ref)throw(0,l.newRxError)("DOC6",{path:e,schemaObj:t});var n=this.collection.database.collections[t.ref];if(!n)throw(0,l.newRxError)("DOC7",{ref:t.ref,path:e,schemaObj:t});return"array"===t.type?n.findByIds(r).then((function(e){var t=e.values();return Array.from(t)})):n.findOne(r).exec()},get:function(e){if(this._data){var t=u.default.get(this._data,e);return"object"!=typeof(t=(0,c.clone)(t))||Array.isArray(t)||d(this.collection.schema,t,e,this),t}},toJSON:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=(0,c.clone)(this._data);return e||(delete t._rev,delete t._attachments),t},set:function(e,t){if(!this._isTemporary)throw(0,l.newRxTypeError)("DOC16",{objPath:e,value:t});if("string"!=typeof e)throw(0,l.newRxTypeError)("DOC15",{objPath:e,value:t});if(!Object.is(this.get(e),t)){var r=e.split(".");r.pop();var n=r.join(".");if(void 0===u.default.get(this._data,n))throw(0,l.newRxError)("DOC10",{childpath:e,rootPath:n});return u.default.set(this._data,e,t),this}},update:function(e){throw(0,c.pluginMissing)("update")},putAttachment:function(){throw(0,c.pluginMissing)("attachments")},getAttachment:function(){throw(0,c.pluginMissing)("attachments")},allAttachments:function(){throw(0,c.pluginMissing)("attachments")},get allAttachments$(){throw(0,c.pluginMissing)("attachments")},atomicUpdate:function(e){var t=this;return this._atomicQueue=this._atomicQueue.then((0,i.default)(o.default.mark((function r(){var n,i,u,s;return o.default.wrap((function(r){for(;;)switch(r.prev=r.next){case 0:n=!1;case 1:if(n){r.next=24;break}return i=t._dataSync$.getValue(),u=e((0,c.clone)(t._dataSync$.getValue()),t),r.next=6,(0,c.toPromise)(u);case 6:return s=r.sent,t.collection&&(s=t.collection.schema.fillObjectWithDefaults(s)),r.prev=8,r.next=11,t._saveData(s,i);case 11:n=!0,r.next=22;break;case 14:if(r.prev=14,r.t0=r.catch(8),!(0,l.isPouchdbConflictError)(r.t0)){r.next=21;break}return r.next=19,(0,c.nextTick)();case 19:r.next=22;break;case 21:throw r.t0;case 22:r.next=1;break;case 24:case"end":return r.stop()}}),r,null,[[8,14]])})))),this._atomicQueue.then((function(){return t}))},atomicPatch:function(e){return this.atomicUpdate((function(t){return Object.entries(e).forEach((function(e){var r=e[0],n=e[1];t[r]=n})),t}))},atomicSet:function(e,t){return this.atomicUpdate((function(r){return u.default.set(r,e,t),r}))},_saveData:function(e,t){var r,n=this;if(e=e,this._deleted$.getValue())throw(0,l.newRxError)("DOC11",{id:this.primary,document:this});return this.collection.schema.validateChange(t,e),this.collection._runHooks("pre","save",e,this).then((function(){return n.collection.schema.validate(e),r=(0,c.now)(),n.collection._pouchPut(e)})).then((function(o){var i=(0,c.now)();if(!o.ok)throw(0,l.newRxError)("DOC12",{data:o});e._rev=o.rev;var u=(0,f.createUpdateEvent)(n.collection,e,t,r,i,n);return n.$emit(u),n.collection._runHooks("post","save",e,n)}))},save:function(){var e=this;if(!this._isTemporary)throw(0,l.newRxError)("DOC17",{id:this.primary,document:this});return this.collection.insert(this).then((function(){return e._isTemporary=!1,e.collection._docCache.set(e.primary,e),e._dataSync$.next(e._data),!0}))},remove:function(){var e=this;if(this.deleted)return Promise.reject((0,l.newRxError)("DOC13",{document:this,id:this.primary}));var t,r=(0,c.clone)(this._data);return this.collection._runHooks("pre","remove",r,this).then((function(){return r._deleted=!0,t=(0,c.now)(),e.collection._pouchPut(r)})).then((function(){var n=(0,c.now)();return e.$emit((0,f.createDeleteEvent)(e.collection,r,e._data,t,n,e)),e.collection._runHooks("post","remove",r,e)})).then((function(){return e}))},destroy:function(){throw(0,l.newRxError)("DOC14")}};function d(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(null!==t){var o=e.getSchemaByObjectPath(r);void 0!==o&&(o.properties&&(o=o.properties),Object.keys(o).forEach((function(e){var o=(0,c.trimDots)(r+"."+e);t.__defineGetter__(e,(function(){var e=n||this;if(e.get&&"function"==typeof e.get)return e.get(o)})),Object.defineProperty(t,e+"$",{get:function(){return(n||this).get$(o)},enumerable:!1,configurable:!1}),Object.defineProperty(t,e+"_",{get:function(){return(n||this).populate(o)},enumerable:!1,configurable:!1}),t.__defineSetter__(e,(function(e){return(n||this).set(o,e)}))})))}}r.basePrototype=h},{"./hooks":7,"./rx-change-event":37,"./rx-error":44,"./util":54,"@babel/runtime/helpers/asyncToGenerator":58,"@babel/runtime/helpers/interopRequireDefault":63,"@babel/runtime/regenerator":70,"object-path":507,rxjs:542,"rxjs/operators":741}],44:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.newRxError=function(e,t){return new c(e,s.overwritable.tunnelErrorMessage(e),t)},r.newRxTypeError=function(e,t){return new f(e,s.overwritable.tunnelErrorMessage(e),t)},r.isPouchdbConflictError=function(e){return!(!e.parameters||!e.parameters.pouchDbError||409!==e.parameters.pouchDbError.status)},r.RxTypeError=r.RxError=void 0;var o=n(e("@babel/runtime/helpers/createClass")),i=n(e("@babel/runtime/helpers/inheritsLoose")),u=n(e("@babel/runtime/helpers/wrapNativeSuper")),s=e("./overwritable");function a(e,t){return"RxError:\n"+e+"\n"+function(e){var t="";return 0===Object.keys(e).length?t:(t+="Given parameters: {\n",t+=Object.keys(e).map((function(t){var r="[object Object]";try{r=JSON.stringify(e[t],(function(e,t){return void 0===t?null:t}),2)}catch(e){}return t+":"+r})).join("\n"),t+="}")}(t)}var c=function(e){function t(t,r){var n,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=a(r,o);return(n=e.call(this,i)||this).code=t,n.message=i,n.parameters=o,n.rxdb=!0,n}return(0,i.default)(t,e),t.prototype.toString=function(){return this.message},(0,o.default)(t,[{key:"name",get:function(){return"RxError ("+this.code+")"}},{key:"typeError",get:function(){return!1}}]),t}((0,u.default)(Error));r.RxError=c;var f=function(e){function t(t,r){var n,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=a(r,o);return(n=e.call(this,i)||this).code=t,n.message=i,n.parameters=o,n.rxdb=!0,n}return(0,i.default)(t,e),t.prototype.toString=function(){return this.message},(0,o.default)(t,[{key:"name",get:function(){return"RxTypeError ("+this.code+")"}},{key:"typeError",get:function(){return!0}}]),t}((0,u.default)(TypeError));r.RxTypeError=f},{"./overwritable":9,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/inheritsLoose":62,"@babel/runtime/helpers/interopRequireDefault":63,"@babel/runtime/helpers/wrapNativeSuper":69}],45:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r._getDefaultQuery=v,r.tunnelQueryCache=m,r.createRxQuery=function(e,t,r){if(t&&"object"!=typeof t)throw(0,f.newRxTypeError)("QU7",{queryObj:t});if(Array.isArray(t))throw(0,f.newRxTypeError)("QU8",{queryObj:t});var n=new b(e,t,r);return n=m(n),(0,l.runPluginHooks)("createRxQuery",n),(0,d.triggerCacheReplacement)(r),n},r.isInstanceOf=function(e){return e instanceof b},r.RxQueryBase=void 0;var o=n(e("@babel/runtime/helpers/createClass")),i=n(e("deep-equal")),u=e("rxjs"),s=e("rxjs/operators"),a=e("pouchdb-selector-core"),c=e("./util"),f=e("./rx-error"),l=e("./hooks"),p=e("./rx-document-prototype-merge"),h=e("./event-reduce"),d=e("./query-cache"),y=0,b=function(){function e(e,t,r){this.id=++y,this._execOverDatabaseCount=0,this._creationTime=(0,c.now)(),this._lastEnsureEqual=0,this.other={},this.uncached=!1,this.refCount$=new u.BehaviorSubject(null),this._latestChangeEvent=-1,this._resultsData=null,this._resultsDataMap=new Map,this._lastExecStart=0,this._lastExecEnd=0,this._resultsDocs$=new u.BehaviorSubject(null),this._ensureEqualQueue=Promise.resolve(!1),this.op=e,this.mangoQuery=t,this.collection=r,t||(t=v(this.collection))}var t=e.prototype;return t._setResultData=function(e){this._resultsData=e;var t=(0,p.createRxDocuments)(this.collection,this._resultsData);return this._resultsDocs$.next(t),t},t._execOverDatabase=function(){var e,t=this;switch(this._execOverDatabaseCount=this._execOverDatabaseCount+1,this._lastExecStart=(0,c.now)(),this.op){case"find":e=this.collection._pouchFind(this);break;case"findOne":e=this.collection._pouchFind(this,1);break;default:throw(0,f.newRxError)("QU1",{op:this.op})}return e.then((function(e){t._lastExecEnd=(0,c.now)(),t._resultsDataMap=new Map;var r=t.collection.schema.primaryPath;return e.forEach((function(e){var n=e[r];t._resultsDataMap.set(n,e)})),e}))},t.exec=function(e){var t=this;if(e&&"findOne"!==this.op)throw(0,f.newRxError)("QU9",{query:this.mangoQuery,op:this.op});return _(this).then((function(){return t.$.pipe((0,s.first)()).toPromise()})).then((function(r){if(!r&&e)throw(0,f.newRxError)("QU10",{query:t.mangoQuery,op:t.op});return r}))},t.toString=function(){var e=(0,c.sortObject)({op:this.op,query:this.mangoQuery,other:this.other},!0),t=JSON.stringify(e,c.stringifyFilter);return this.toString=function(){return t},t},t.toJSON=function(){var e=this.collection.database.storage.prepareQuery(this.asRxQuery,(0,c.clone)(this.mangoQuery));return this.toJSON=function(){return e},e},t.keyCompress=function(){var e;return e=this.collection.schema.doKeyCompression()?this.collection._keyCompressor.compressQuery(this.toJSON()):this.toJSON(),this.keyCompress=function(){return e},e},t.doesDocumentDataMatch=function(e){if(e._deleted)return!1;e=this.collection.schema.swapPrimaryToId(e);var t=this.massageSelector,r={doc:e},n=(0,a.filterInMemoryFields)([r],{selector:t},Object.keys(t));return n&&1===n.length},t.remove=function(){var e;return this.exec().then((function(t){return e=t,Array.isArray(t)?Promise.all(t.map((function(e){return e.remove()}))):t.remove()})).then((function(){return e}))},t.update=function(e){throw(0,c.pluginMissing)("update")},t.where=function(e){throw(0,c.pluginMissing)("query-builder")},t.sort=function(e){throw(0,c.pluginMissing)("query-builder")},t.skip=function(e){throw(0,c.pluginMissing)("query-builder")},t.limit=function(e){throw(0,c.pluginMissing)("query-builder")},(0,o.default)(e,[{key:"$",get:function(){var e=this;if(!this._$){var t=this._resultsDocs$.pipe((0,s.mergeMap)((function(t){return _(e).then((function(e){return!e&&t}))})),(0,s.filter)((function(e){return!!e})),(0,s.map)((function(t){return"findOne"===e.op?0===t.length?null:t[0]:t})),(0,s.map)((function(e){return Array.isArray(e)?e.slice():e}))).asObservable(),r=this.collection.$.pipe((0,s.tap)((function(){return _(e)})),(0,s.filter)((function(){return!1})));this._$=(0,u.merge)(t,r,this.refCount$.pipe((0,s.filter)((function(){return!1}))))}return this._$}},{key:"massageSelector",get:function(){return(0,c.overwriteGetterForCaching)(this,"massageSelector",(0,a.massageSelector)(this.mangoQuery.selector))}},{key:"asRxQuery",get:function(){return this}}]),e}();function v(e){var t;return{selector:(t={},t[e.schema.primaryPath]={},t)}}function m(e){return e.collection._queryCache.getByQuery(e)}function _(e){return e._ensureEqualQueue=e._ensureEqualQueue.then((function(){return new Promise((function(e){return setTimeout(e,0)}))})).then((function(){return function(e){if(e._lastEnsureEqual=(0,c.now)(),e.collection.database.destroyed)return!1;if(function(e){return e._latestChangeEvent>=e.collection._changeEventBuffer.counter}(e))return!1;var t=!1,r=!1;-1===e._latestChangeEvent&&(r=!0);if(!r){var n=e.collection._changeEventBuffer.getFrom(e._latestChangeEvent+1);if(null===n)r=!0;else{e._latestChangeEvent=e.collection._changeEventBuffer.counter,n=n.filter((function(t){return!t.startTime||t.startTime>e._lastExecStart}));var o=e.collection._changeEventBuffer.reduceByLastOfDoc(n),u=(0,h.calculateNewResults)(e,o);u.runFullQueryAgain?r=!0:u.changed&&(t=!0,e._setResultData(u.newResults))}}if(r){var s=e.collection._changeEventBuffer.counter;return e._execOverDatabase().then((function(r){return e._latestChangeEvent=s,(0,i.default)(r,e._resultsData)||(t=!0,e._setResultData(r)),t}))}return t}(e)})).then((function(e){return new Promise((function(e){return setTimeout(e,0)})).then((function(){return e}))})),e._ensureEqualQueue}r.RxQueryBase=b},{"./event-reduce":6,"./hooks":7,"./query-cache":36,"./rx-document-prototype-merge":42,"./rx-error":44,"./util":54,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"deep-equal":427,"pouchdb-selector-core":531,rxjs:542,"rxjs/operators":741}],46:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.getIndexes=p,r.getPrimary=h,r.getPreviousVersions=function(e){var t=e.version?e.version:0,r=0;return new Array(t).fill(0).map((function(){return r++}))},r.getFinalFields=d,r.normalize=y,r.createRxSchema=function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];t&&(0,c.runPluginHooks)("preCreateRxSchema",e);var r=new l(b(e));return(0,c.runPluginHooks)("createRxSchema",r),r},r.isInstanceOf=function(e){return e instanceof l},r.fillWithDefaultSettings=r.RxSchema=void 0;var o=n(e("@babel/runtime/helpers/createClass")),i=n(e("object-path")),u=n(e("deep-equal")),s=e("./util"),a=e("./rx-error"),c=e("./hooks"),f=e("./rx-document"),l=function(){function e(e){this.jsonSchema=e,this.indexes=p(this.jsonSchema),this.primaryPath=h(this.jsonSchema),this.primaryPath&&this.jsonSchema.required.push(this.primaryPath),this.finalFields=d(this.jsonSchema),this.jsonSchema.required=this.jsonSchema.required.concat(this.finalFields).filter((function(e,t,r){return r.indexOf(e)===t})),this.jsonSchema.properties[this.primaryPath]||(this.jsonSchema.properties[this.primaryPath]={type:"string",minLength:1})}var t=e.prototype;return t.getSchemaByObjectPath=function(e){var t=e;return t="properties."+(t=t.replace(/\./g,".properties.")),t=(0,s.trimDots)(t),i.default.get(this.jsonSchema,t)},t.validateChange=function(e,t){this.finalFields.forEach((function(r){if(!(0,u.default)(e[r],t[r]))throw(0,a.newRxError)("DOC9",{dataBefore:e,dataAfter:t,fieldName:r})}))},t.validate=function(e,t){throw(0,s.pluginMissing)("validate")},t.fillObjectWithDefaults=function(e){return e=(0,s.clone)(e),Object.entries(this.defaultValues).filter((function(t){var r=t[0];return!e.hasOwnProperty(r)||void 0===e[r]})).forEach((function(t){var r=t[0],n=t[1];return e[r]=n})),e},t.swapIdToPrimary=function(e){return"_id"===this.primaryPath||e[this.primaryPath]||(e[this.primaryPath]=e._id,delete e._id),e},t.swapPrimaryToId=function(e){var t=this;if("_id"===this.primaryPath)return e;var r={};return Object.entries(e).forEach((function(e){var n=e[0]===t.primaryPath?"_id":e[0];r[n]=e[1]})),r},t.doKeyCompression=function(){return this.jsonSchema.keyCompression},t.getDocumentPrototype=function(){var e={};return(0,f.defineGetterSetter)(this,e,""),(0,s.overwriteGetterForCaching)(this,"getDocumentPrototype",(function(){return e})),e},(0,o.default)(e,[{key:"version",get:function(){return this.jsonSchema.version}},{key:"normalized",get:function(){return(0,s.overwriteGetterForCaching)(this,"normalized",y(this.jsonSchema))}},{key:"topLevelFields",get:function(){return Object.keys(this.normalized.properties)}},{key:"defaultValues",get:function(){var e={};return Object.entries(this.normalized.properties).filter((function(e){return e[1].hasOwnProperty("default")})).forEach((function(t){var r=t[0],n=t[1];return e[r]=n.default})),(0,s.overwriteGetterForCaching)(this,"defaultValues",e)}},{key:"crypt",get:function(){return!!(this.jsonSchema.encrypted&&this.jsonSchema.encrypted.length>0||this.jsonSchema.attachments&&this.jsonSchema.attachments.encrypted)}},{key:"encryptedPaths",get:function(){return this.jsonSchema.encrypted||[]}},{key:"hash",get:function(){return(0,s.overwriteGetterForCaching)(this,"hash",(0,s.hash)(this.normalized))}}]),e}();function p(e){return(e.indexes||[]).map((function(e){return Array.isArray(e)?e:[e]}))}function h(e){var t=Object.keys(e.properties).filter((function(t){return e.properties[t].primary})).shift();return t||"_id"}function d(e){var t=Object.keys(e.properties).filter((function(t){return e.properties[t].final}));return t.push(h(e)),t}function y(e){var t=(0,s.sortObject)((0,s.clone)(e));return e.indexes&&(t.indexes=Array.from(e.indexes)),t}r.RxSchema=l;var b=function(e){return(e=(0,s.clone)(e)).additionalProperties=!1,e.hasOwnProperty("keyCompression")||(e.keyCompression=!1),e.indexes=e.indexes||[],e.required=e.required||[],e.encrypted=e.encrypted||[],e.properties._rev={type:"string",minLength:1},e.properties._attachments={type:"object"},e.version=e.version||0,e};r.fillWithDefaultSettings=b},{"./hooks":7,"./rx-document":43,"./rx-error":44,"./util":54,"@babel/runtime/helpers/createClass":60,"@babel/runtime/helpers/interopRequireDefault":63,"deep-equal":427,"object-path":507}],47:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.primarySwapPouchDbQuerySelector=c,r.getPouchLocation=f,r.getRxStoragePouchDb=function(e,t){if(!e)throw new Error("adapter missing");return new a(e,t)},r.RxStoragePouchDbClass=void 0;var n=e("pouchdb-selector-core"),o=e("./util"),i=e("./hooks"),u=e("./pouch-db"),s=e("./rx-error"),a=function(){function e(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.name="pouchdb",this.adapter=e,this.pouchSettings=t}var t=e.prototype;return t.getSortComparator=function(e,t){var r,i=t.sort?t.sort:[(r={},r[e]="asc",r)],u=(0,n.massageSelector)(t.selector),s=Object.keys(t.selector);return function(t,r){var a=[t,r].map((function(t){var r=(0,o.flatClone)(t),n=r[e];return delete r[e],r._id=n,{doc:r}}));return(0,n.filterInMemoryFields)(a,{selector:u,sort:i},s)[0].doc._id===a[0].doc._id?-1:1}},t.getQueryMatcher=function(e,t){var r=(0,n.massageSelector)(t.selector);return function(i){var u=(0,o.flatClone)(i),s=u[e];delete u[e],u._id=s;var a={doc:u},c=(0,n.filterInMemoryFields)([a],{selector:r},Object.keys(t.selector));return c&&1===c.length}},t.createStorageInstance=function(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};n.pouchSettings||(n.pouchSettings={});var s=f(e,t,r),a={location:s,adapter:(0,o.adapterObject)(this.adapter),settings:n.pouchSettings},c=Object.assign({},a.adapter,this.pouchSettings,a.settings);return(0,i.runPluginHooks)("preCreatePouchDb",a),new u.PouchDB(a.location,c)},t.createInternalStorageInstance=function(e,t){var r=this.createStorageInstance(e,"_rxdb_internal",0,{pouchSettings:{auto_compaction:!1,revs_limit:1}});return Promise.resolve(r)},t.prepareQuery=function(e,t){var r=e.collection.schema.primaryPath,n=t;if(n.sort&&n.sort.forEach((function(t){var r=Object.keys(t)[0],o=["$gt","$gte","$lt","$lte"];if(!(n.selector[r]&&Object.keys(n.selector[r]).some((function(e){return o.includes(e)}))||!1)){var i=e.collection.schema.getSchemaByObjectPath(r);if(!i)throw(0,s.newRxError)("QU5",{key:r});switch(n.selector[r]||(n.selector[r]={}),i.type){case"number":case"integer":n.selector[r].$gt=-1e28;break;case"string":"string"!=typeof n.selector[r]&&(n.selector[r].$gt="");break;default:n.selector[r].$gt=null}}})),n.selector[r]&&n.selector[r].$regex)throw(0,s.newRxError)("QU4",{path:r,query:e.mangoQuery});if(n.sort){var o=n.sort.map((function(e){var t,n=Object.keys(e)[0],o=Object.values(e)[0];return(t={})[n===r?"_id":n]=o,t}));n.sort=o}return Object.entries(n.selector).forEach((function(e){var t=e[0],r=e[1];"object"!=typeof r||null===r||Array.isArray(r)||0!==Object.keys(r).length||delete n.selector[t]})),"_id"!==r&&(n.selector=c(n.selector,r)),n},e}();function c(e,t){if(Array.isArray(e))return e.map((function(e){return c(e,t)}));if("object"==typeof e){var r={};return Object.entries(e).forEach((function(e){var n=e[0],o=e[1];n===t?r._id=o:n.startsWith("$")?r[n]=c(o,t):r[n]=o})),r}return e}function f(e,t,r){var n=e+"-rxdb-"+r+"-";if(t.includes("/")){var o=t.split("/"),i=o.pop(),u=o.join("/");return u+="/"+n+i}return n+t}r.RxStoragePouchDbClass=a},{"./hooks":7,"./pouch-db":35,"./rx-error":44,"./util":54,"pouchdb-selector-core":531}],48:[function(e,t,r){},{}],49:[function(e,t,r){},{}],50:[function(e,t,r){},{}],51:[function(e,t,r){},{}],52:[function(e,t,r){},{}],53:[function(e,t,r){},{}],54:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.pluginMissing=function(e){var t=e.split("-"),r="RxDB";return t.forEach((function(e){r+=l(e)})),r+="Plugin",new Error("You are using a function which must be overwritten by a plugin.\n You should either prevent the usage of this function or add the plugin via:\n import { "+r+" } from 'rxdb/plugins/"+e+"';\n addRxPlugin("+r+");\n ")},r.fastUnsecureHash=function(e){"string"!=typeof e&&(e=JSON.stringify(e));var t,r,n,o=0;if(0===e.length)return o;for(t=0,n=e.length;t0&&void 0!==arguments[0]?arguments[0]:0;return new Promise((function(t){return setTimeout(t,e)}))},r.toPromise=function(e){return e&&"function"==typeof e.then?e:Promise.resolve(e)},r.requestIdlePromise=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return"object"==typeof window&&window.requestIdleCallback?new Promise((function(t){return window.requestIdleCallback(t,{timeout:e})})):Promise.resolve()},r.promiseSeries=function(e,t){return e.reduce((function(e,t){return e.then(t)}),Promise.resolve(t))},r.requestIdleCallbackIfAvailable=function(e){"object"==typeof window&&window.requestIdleCallback&&window.requestIdleCallback(e)},r.ucfirst=l,r.trimDots=function(e){for(;"."===e.charAt(0);)e=e.substr(1);for(;"."===e.slice(-1);)e=e.slice(0,-1);return e},r.sortObject=function e(t){var r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(!t)return t;if(!r&&Array.isArray(t))return t.sort((function(e,t){return"string"==typeof e&&"string"==typeof t?e.localeCompare(t):"object"==typeof e?1:-1})).map((function(t){return e(t,r)}));if("object"==typeof t&&!Array.isArray(t)){if(t instanceof RegExp)return t;var n={};return Object.keys(t).sort((function(e,t){return e.localeCompare(t)})).forEach((function(o){n[o]=e(t[o],r)})),n}return t},r.stringifyFilter=function(e,t){return t instanceof RegExp?t.toString():t},r.randomCouchString=function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:10,t="",r="abcdefghijklmnopqrstuvwxyz",n=0;n>1)],t)<=0?u=s+1:i=s-1}r(o[s],t)<=0&&s++;return o.splice(s,0,t),o}},{}],74:[function(e,t,r){(function(r){(function(){"use strict";var n=e("array-filter");t.exports=function(){return n(["BigInt64Array","BigUint64Array","Float32Array","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Uint8Array","Uint8ClampedArray"],(function(e){return"function"==typeof r[e]}))}}).call(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"array-filter":72}],75:[function(e,t,r){"use strict";r.byteLength=function(e){var t=c(e),r=t[0],n=t[1];return 3*(r+n)/4-n},r.toByteArray=function(e){var t,r,n=c(e),u=n[0],s=n[1],a=new i(function(e,t,r){return 3*(t+r)/4-r}(0,u,s)),f=0,l=s>0?u-4:u;for(r=0;r>16&255,a[f++]=t>>8&255,a[f++]=255&t;2===s&&(t=o[e.charCodeAt(r)]<<2|o[e.charCodeAt(r+1)]>>4,a[f++]=255&t);1===s&&(t=o[e.charCodeAt(r)]<<10|o[e.charCodeAt(r+1)]<<4|o[e.charCodeAt(r+2)]>>2,a[f++]=t>>8&255,a[f++]=255&t);return a},r.fromByteArray=function(e){for(var t,r=e.length,o=r%3,i=[],u=16383,s=0,a=r-o;sa?a:s+u));1===o?(t=e[r-1],i.push(n[t>>2]+n[t<<4&63]+"==")):2===o&&(t=(e[r-2]<<8)+e[r-1],i.push(n[t>>10]+n[t>>4&63]+n[t<<2&63]+"="));return i.join("")};for(var n=[],o=[],i="undefined"!=typeof Uint8Array?Uint8Array:Array,u="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",s=0,a=u.length;s0)throw new Error("Invalid string. Length must be a multiple of 4");var r=e.indexOf("=");return-1===r&&(r=t),[r,r===t?0:4-r%4]}function f(e,t,r){for(var o,i,u=[],s=t;s>18&63]+n[i>>12&63]+n[i>>6&63]+n[63&i]);return u.join("")}o["-".charCodeAt(0)]=62,o["_".charCodeAt(0)]=63},{}],76:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("./util"),o=e("./find-similar-node"),i=function(){function e(e,t,r){this.level=e,this.id=n.nextNodeId(),this.deleted=!1,this.type=r,this.rootNode=t,t&&this.rootNode.addNode(this)}return e.prototype.isEqualToOtherNode=function(e,t){return void 0===t&&(t=this.toString()),t===e.toString()},e.prototype.remove=function(){var e;if((this.ensureNotDeleted("remove"),this.isInternalNode())&&(e=this).parents.size>0)throw new Error("cannot remove node with parents "+this.id);this.branches&&((e=this).branches.areBranchesStrictEqual()?e.branches.getBranch("0").parents.remove(e):(e.branches.getBranch("0").parents.remove(e),e.branches.getBranch("1").parents.remove(e)));this.deleted=!0,this.rootNode.removeNode(this)},e.prototype.toJSON=function(e){void 0===e&&(e=!1);var t={id:e?this.id:void 0,deleted:e?this.deleted:void 0,type:this.type,level:this.level};if(e&&this.parents&&(t.parents=this.parents.toString()),this.isLeafNode()&&(t.value=this.asLeafNode().value),this.branches&&!this.branches.deleted){var r=this.branches;t.branches={0:r.getBranch("0").toJSON(e),1:r.getBranch("1").toJSON(e)}}return t},e.prototype.toString=function(){var e="<"+this.type+":"+this.level;if(this.branches){var t=this.branches;e+="|0:"+t.getBranch("0"),e+="|1:"+t.getBranch("1")}return this.isLeafNode()&&(e+="|v:"+this.asLeafNode().value),e+=">"},e.prototype.isRootNode=function(){return"RootNode"===this.type},e.prototype.isInternalNode=function(){return"InternalNode"===this.type},e.prototype.isLeafNode=function(){return"LeafNode"===this.type},e.prototype.asRootNode=function(){if(!this.isRootNode())throw new Error("ouch");return this},e.prototype.asInternalNode=function(){if(!this.isInternalNode())throw new Error("ouch");return this},e.prototype.asLeafNode=function(){if(!this.isLeafNode())throw new Error("ouch");return this},e.prototype.ensureNotDeleted=function(e){if(void 0===e&&(e="unknown"),this.deleted)throw new Error("forbidden operation "+e+" on deleted node "+this.id)},e.prototype.log=function(){console.log(JSON.stringify(this.toJSON(!0),null,2))},e.prototype.applyEliminationRule=function(e){var t=this;this.ensureNotDeleted("applyEliminationRule"),e||(e=this.rootNode.getNodesOfLevel(this.level));var r=o.findSimilarNode(this,e);if(r){var n=this.parents.getAll(),i=[];return n.forEach((function(e){var n=e.branches.getKeyOfNode(t);e.branches.setBranch(n,r),e.branches.areBranchesStrictEqual()&&i.push(e),t.parents.remove(e)})),i.forEach((function(e){e.isInternalNode()&&e.applyReductionRule()})),!0}return!1},e}();r.AbstractNode=i},{"./find-similar-node":81,"./util":94}],77:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=function(){function e(e){this.node=e,this.deleted=!1,this.branches={}}return e.prototype.setBranch=function(e,t){this.branches[e]!==t&&(this.branches[e]=t,t.parents.add(this.node))},e.prototype.getKeyOfNode=function(e){if(this.getBranch("0")===e)return"0";if(this.getBranch("1")===e)return"1";throw new Error("none matched")},e.prototype.getBranch=function(e){return this.branches[e]},e.prototype.getBothBranches=function(){return[this.getBranch("0"),this.getBranch("1")]},e.prototype.hasBranchAsNode=function(e){return this.getBranch("0")===e||this.getBranch("1")===e},e.prototype.hasNodeIdAsBranch=function(e){return this.getBranch("0").id===e||this.getBranch("1").id===e},e.prototype.areBranchesStrictEqual=function(){return this.branches[0]===this.branches[1]},e.prototype.hasEqualBranches=function(){return JSON.stringify(this.branches[0])===JSON.stringify(this.branches[1])},e}();r.Branches=n,r.ensureNodesNotStrictEqual=function(e,t){if(e===t)throw new Error("cannot have two strict equal branches")}},{}],78:[function(e,t,r){"use strict";var n=this&&this.__values||function(e){var t="function"==typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&"number"==typeof e.length)return{next:function(){return e&&n>=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")},o=this&&this.__read||function(e,t){var r="function"==typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,i=r.call(e),u=[];try{for(;(void 0===t||t-- >0)&&!(n=i.next()).done;)u.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=i.return)&&r.call(i)}finally{if(o)throw o.error}}return u};Object.defineProperty(r,"__esModule",{value:!0});var i=e("./root-node"),u=e("./util"),s=e("./internal-node"),a=e("./leaf-node");r.createBddFromTruthTable=function(e){var t,r,c=new i.RootNode,f=e.keys().next().value.length,l=Math.pow(2,f);if(e.size!==l)throw new Error("truth table has missing entries");try{for(var p=n(e),h=p.next();!h.done;h=p.next()){for(var d=o(h.value,2),y=d[0],b=d[1],v=c,m=0;mr.length){var a=s[0],c=r.find((function(e){return!!e.isInternalNode()&&e.branches.hasNodeIdAsBranch(a)}));console.log("referenceToFirst:"),null==c||c.log()}throw new Error("ensureCorrectBdd() nodes in list not equal size to recursive nodes allNodes: "+r.length+" recursiveNodes: "+i.size+" nodesOnlyInRecursive: "+s.join(", ")+" ")}if(r.forEach((function(e){if(!e.isRootNode()){var t=e;if(e.deleted)throw new Error("ensureCorrectBdd() bdd includes a deleted node");if(0===t.parents.size)throw new Error("ensureCorrectBdd() node has no parent "+t.id);if(t.isInternalNode()){var r=t,n=r.branches.getBothBranches();if(r.branches.areBranchesStrictEqual())throw new Error("ensureCorrectBdd() node has two equal branches: "+n.map((function(e){return e.id})).join(", "));n.forEach((function(e){if(!e.parents.has(r))throw new Error("ensureCorrectBdd() branch must have the node as parent")}))}t.parents.getAll().forEach((function(e){if(!e.branches.hasBranchAsNode(t))throw new Error("ensureCorrectBdd() parent node does not have child as branch")}))}})),t.includes('"deleted":true'))throw new Error("ensureCorrectBdd() bdd includes a deleted node")},r.getNodesRecursive=n},{}],80:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("./util");r.fillTruthTable=function(e,t,r){for(var o=n.maxBinaryWithLength(t),i=n.minBinaryWithLength(t),u=!1;!u;)e.has(i)||e.set(i,r),i===o?u=!0:i=n.getNextStateSet(i)}},{"./util":94}],81:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.findSimilarNode=function(e,t){for(var r=e.toString(),n=0;n99)throw new Error("cannot build string with too many leaf nodes");t+=n.toString().padStart(2,"0");var u=e.levels.slice().reverse(),s=new Map;return u.forEach((function(n){e.getNodesOfLevel(n).forEach((function(e){var n=i(e,s,r);r=n.nextCode,s.set(e,n.id),t+=n.str}))})),t},r.nodeToString=i},{"./string-format":90}],86:[function(e,t,r){"use strict";function n(e){var t=e.branches.getBranch("0"),r=e.branches.getBranch("1");return{l:e.level,0:t.isLeafNode()?t.asLeafNode().value:n(t),1:r.isLeafNode()?r.asLeafNode().value:n(r)}}Object.defineProperty(r,"__esModule",{value:!0}),r.bddToSimpleBdd=function(e){return n(e)},r.nodeToSimpleBddNode=n},{}],87:[function(e,t,r){"use strict";function n(e){for(var t in e)r.hasOwnProperty(t)||(r[t]=e[t])}Object.defineProperty(r,"__esModule",{value:!0}),n(e("./bdd-to-minimal-string")),n(e("./minimal-string-to-simple-bdd")),n(e("./resolve-with-simple-bdd")),n(e("./string-format")),n(e("./bdd-to-simple-bdd"))},{"./bdd-to-minimal-string":85,"./bdd-to-simple-bdd":86,"./minimal-string-to-simple-bdd":88,"./resolve-with-simple-bdd":89,"./string-format":90}],88:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("../util"),o=e("./string-format");r.minimalStringToSimpleBdd=function(e){for(var t=new Map,r=2+2*parseInt(e.charAt(0)+e.charAt(1),10),i=e.substring(2,r),u=n.splitStringToChunks(i,2),s=0;s=128&&e<=160&&(e=161),{char:String.fromCharCode(e),nextCode:e+1}}},{}],91:[function(e,t,r){"use strict";var n=this&&this.__awaiter||function(e,t,r,n){return new(r||(r=Promise))((function(o,i){function u(e){try{a(n.next(e))}catch(e){i(e)}}function s(e){try{a(n.throw(e))}catch(e){i(e)}}function a(e){var t;e.done?o(e.value):(t=e.value,t instanceof r?t:new r((function(e){e(t)}))).then(u,s)}a((n=n.apply(e,t||[])).next())}))},o=this&&this.__generator||function(e,t){var r,n,o,i,u={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(i){return function(s){return function(i){if(r)throw new TypeError("Generator is already executing.");for(;u;)try{if(r=1,n&&(o=2&i[0]?n.return:i[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,i[1])).done)return o;switch(n=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return u.label++,{value:i[1],done:!1};case 5:u.label++,n=i[1],i=[0];continue;case 7:i=u.ops.pop(),u.trys.pop();continue;default:if(!(o=u.trys,(o=o.length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){u=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")},u=this&&this.__read||function(e,t){var r="function"==typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,i=r.call(e),u=[];try{for(;(void 0===t||t-- >0)&&!(n=i.next()).done;)u.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=i.return)&&r.call(i)}finally{if(o)throw o.error}}return u};Object.defineProperty(r,"__esModule",{value:!0});var s=e("./create-bdd-from-truth-table"),a=e("./util");function c(e){var t,r,n=l(a.firstKeyOfMap(e).length),o=a.shuffleArray(n),s={},c={};o.forEach((function(e,t){s[t]=e,c[e]=t}));var p=new Map;try{for(var h=i(e.entries()),d=h.next();!d.done;d=h.next()){var y=u(d.value,2),b=y[0],v=y[1],m=f(b,s);p.set(m,v)}}catch(e){t={error:e}}finally{try{d&&!d.done&&(r=h.return)&&r.call(h)}finally{if(t)throw t.error}}return{newTable:p,mapping:s,mappingBeforeToAfter:c}}function f(e,t){return e.split("").map((function(e,r){return{char:e,indexBefore:r,indexAfter:t[r]}})).sort((function(e,t){return e.indexAfter-t.indexAfter})).map((function(e){return e.char})).join("")}function l(e){for(var t=[],r=0;r=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")};Object.defineProperty(r,"__esModule",{value:!0});var o=function(){function e(e){this.node=e,this.parents=new Set}return e.prototype.remove=function(e){this.parents.delete(e),0===this.parents.size&&this.node.remove()},e.prototype.getAll=function(){return Array.from(this.parents)},e.prototype.add=function(e){if(this.node.level===e.level)throw new Error("a node cannot be parent of a node with the same level");this.parents.add(e)},e.prototype.has=function(e){return this.parents.has(e)},e.prototype.toString=function(){var e,t,r=[];try{for(var o=n(this.parents),i=o.next();!i.done;i=o.next()){var u=i.value;r.push(u.id)}}catch(t){e={error:t}}finally{try{i&&!i.done&&(t=o.return)&&t.call(o)}finally{if(e)throw e.error}}return r.join(", ")},Object.defineProperty(e.prototype,"size",{get:function(){return this.parents.size},enumerable:!0,configurable:!0}),e}();r.Parents=o},{}],93:[function(e,t,r){"use strict";var n,o=this&&this.__extends||(n=function(e,t){return(n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(e,t)},function(e,t){function r(){this.constructor=e}n(e,t),e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)}),i=this&&this.__values||function(e){var t="function"==typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&"number"==typeof e.length)return{next:function(){return e&&n>=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")};Object.defineProperty(r,"__esModule",{value:!0});var u=e("./abstract-node"),s=e("./branches"),a=e("./util"),c=e("./minimal-string"),f=function(e){function t(){var t=e.call(this,0,null,"RootNode")||this;t.branches=new s.Branches(t),t.levels=[],t.nodesByLevel=new Map,t.levels.push(0);var r=new Set;return r.add(t),t.nodesByLevel.set(0,r),t}return o(t,e),t.prototype.addNode=function(e){var t=e.level;this.levels.includes(t)||this.levels.push(t),this.ensureLevelSetExists(t);var r=this.nodesByLevel.get(t);null==r||r.add(e)},t.prototype.removeNode=function(e){var t=this.nodesByLevel.get(e.level);if(!t.has(e))throw new Error("removed non-existing node "+e.id);t.delete(e)},t.prototype.ensureLevelSetExists=function(e){this.nodesByLevel.has(e)||this.nodesByLevel.set(e,new Set)},t.prototype.getLevels=function(){return Array.from(this.levels).sort((function(e,t){return e-t}))},t.prototype.getNodesOfLevel=function(e){this.ensureLevelSetExists(e);var t=this.nodesByLevel.get(e);return Array.from(t)},t.prototype.countNodes=function(){var e=this,t=0;return this.getLevels().forEach((function(r){var n=e.getNodesOfLevel(r).length;t+=n})),t},t.prototype.minimize=function(e){var t,r;void 0===e&&(e=!1);for(var n=!1;!n;){e&&console.log("minimize() itterate once");for(var o=0,u=a.lastOfArray(this.getLevels());u>0;){var s=this.getNodesOfLevel(u);e&&console.log("minimize() run for level "+u+" with "+s.length+" nodes");var c=0;try{for(var f=(t=void 0,i(s)),l=f.next();!l.done;l=f.next()){var p=l.value;if(c++,e&&c%4e3==0&&console.log("minimize() node #"+p.id),p.isLeafNode())(d=p.asLeafNode().applyEliminationRule())&&o++;if(!p.deleted&&p.isInternalNode()){var h=p,d=h.applyReductionRule(),y=!1;h.deleted||(y=h.applyEliminationRule(s)),(d||y)&&o++}}}catch(e){t={error:e}}finally{try{l&&!l.done&&(r=f.return)&&r.call(f)}finally{if(t)throw t.error}}u--}0===o?n=!0:e&&console.log("minimize() itteration done with "+o+" minimisations")}},t.prototype.getLeafNodes=function(){var e=a.lastOfArray(this.getLevels());return this.getNodesOfLevel(e).reverse()},t.prototype.removeIrrelevantLeafNodes=function(e){for(var t,r,n=!1;!n;){var o=0,u=this.getLeafNodes();try{for(var s=(t=void 0,i(u)),a=s.next();!a.done;a=s.next()){a.value.removeIfValueEquals(e)&&o++}}catch(e){t={error:e}}finally{try{a&&!a.done&&(r=s.return)&&r.call(s)}finally{if(t)throw t.error}}this.minimize(),0===o&&(n=!0)}},t.prototype.resolve=function(e,t){for(var r=this;;){var n=e[r.level](t),o=a.booleanToBooleanString(n);if((r=r.branches.getBranch(o)).isLeafNode())return r.asLeafNode().value}},t.prototype.toSimpleBdd=function(){return c.bddToSimpleBdd(this)},t}(u.AbstractNode);r.RootNode=f},{"./abstract-node":76,"./branches":77,"./minimal-string":87,"./util":94}],94:[function(e,t,r){"use strict";var n=this&&this.__read||function(e,t){var r="function"==typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,i=r.call(e),u=[];try{for(;(void 0===t||t-- >0)&&!(n=i.next()).done;)u.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=i.return)&&r.call(i)}finally{if(o)throw o.error}}return u};Object.defineProperty(r,"__esModule",{value:!0}),r.booleanStringToBoolean=function(e){return"1"===e},r.booleanToBooleanString=function(e){return e?"1":"0"},r.oppositeBoolean=function(e){return"1"===e?"0":"1"},r.lastChar=function(e){return e.slice(-1)};var o=function(e){void 0===e&&(e=6);for(var t="",r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",n=r.length,o=0;o>>0).toString(2).padStart(t,"0")}function s(e){return parseInt(e,2)}r.nextNodeId=function(){var e="node_"+o+"_"+i;return i++,e},r.decimalToPaddedBinary=u,r.oppositeBinary=function(e){if("1"===e)return"0";if("0"===e)return"1";throw new Error("non-binary given")},r.binaryToDecimal=s,r.minBinaryWithLength=function(e){return new Array(e).fill(0).map((function(){return"0"})).join("")},r.maxBinaryWithLength=function(e){return new Array(e).fill(0).map((function(){return"1"})).join("")},r.getNextStateSet=function(e){return u(s(e)+1,e.length)},r.firstKeyOfMap=function(e){return e.keys().next().value},r.shuffleArray=function(e){for(var t,r=e.length-1;r>0;r--){var o=Math.floor(Math.random()*(r+1));t=n([e[o],e[r]],2),e[r]=t[0],e[o]=t[1]}return e},r.lastOfArray=function(e){return e[e.length-1]},r.splitStringToChunks=function(e,t){for(var r=[],n=0,o=e.length;n0||e._addEL.internal.length>0}function f(e,t,r){e._addEL[t].push(r),function(e){if(!e._iL&&c(e)){var t=function(t){e._addEL[t.type].forEach((function(e){t.time>=e.time&&e.fn(t.data)}))},r=e.method.microSeconds();e._prepP?e._prepP.then((function(){e._iL=!0,e.method.onMessage(e._state,t,r)})):(e._iL=!0,e.method.onMessage(e._state,t,r))}}(e)}function l(e,t,r){e._addEL[t]=e._addEL[t].filter((function(e){return e!==r})),function(e){if(e._iL&&!c(e)){e._iL=!1;var t=e.method.microSeconds();e.method.onMessage(e._state,null,t)}}(e)}r.BroadcastChannel=s,s._pubkey=!0,s.prototype={postMessage:function(e){if(this.closed)throw new Error("BroadcastChannel.postMessage(): Cannot post message after channel has closed");return a(this,"message",e)},postInternal:function(e){return a(this,"internal",e)},set onmessage(e){var t={time:this.method.microSeconds(),fn:e};l(this,"message",this._onML),e&&"function"==typeof e?(this._onML=t,f(this,"message",t)):this._onML=null},addEventListener:function(e,t){f(this,e,{time:this.method.microSeconds(),fn:t})},removeEventListener:function(e,t){l(this,e,this._addEL[e].find((function(e){return e.fn===t})))},close:function(){var e=this;if(!this.closed){this.closed=!0;var t=this._prepP?this._prepP:Promise.resolve();return this._onML=null,this._addEL.message=[],t.then((function(){return Promise.all(e._befC.map((function(e){return e()})))})).then((function(){return e.method.close(e._state)}))}},get type(){return this.method.type}}},{"./method-chooser.js":99,"./options.js":105,"./util.js":106}],96:[function(e,t,r){"use strict";var n=e("./index.js");t.exports={BroadcastChannel:n.BroadcastChannel,createLeaderElection:n.createLeaderElection,clearNodeFolder:n.clearNodeFolder,enforceOptions:n.enforceOptions}},{"./index.js":97}],97:[function(e,t,r){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),Object.defineProperty(r,"BroadcastChannel",{enumerable:!0,get:function(){return n.BroadcastChannel}}),Object.defineProperty(r,"clearNodeFolder",{enumerable:!0,get:function(){return n.clearNodeFolder}}),Object.defineProperty(r,"enforceOptions",{enumerable:!0,get:function(){return n.enforceOptions}}),Object.defineProperty(r,"createLeaderElection",{enumerable:!0,get:function(){return o.createLeaderElection}});var n=e("./broadcast-channel"),o=e("./leader-election")},{"./broadcast-channel":95,"./leader-election":98}],98:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.createLeaderElection=function(e,t){if(e._leaderElector)throw new Error("BroadcastChannel already has a leader-elector");t=function(e,t){e||(e={});(e=JSON.parse(JSON.stringify(e))).fallbackInterval||(e.fallbackInterval=3e3);e.responseTime||(e.responseTime=t.method.averageResponseTime(t.options));return e}(t,e);var r=new u(e,t);return e._befC.push((function(){return r.die()})),e._leaderElector=r,r};var o=e("./util.js"),i=n(e("unload")),u=function(e,t){this._channel=e,this._options=t,this.isLeader=!1,this.isDead=!1,this.token=(0,o.randomToken)(),this._isApl=!1,this._reApply=!1,this._unl=[],this._lstns=[],this._invs=[]};function s(e,t){var r={context:"leader",action:t,token:e.token};return e._channel.postInternal(r)}u.prototype={applyOnce:function(){var e=this;if(this.isLeader)return Promise.resolve(!1);if(this.isDead)return Promise.resolve(!1);if(this._isApl)return this._reApply=!0,Promise.resolve(!1);this._isApl=!0;var t=!1,r=[],n=function(n){"leader"===n.context&&n.token!=e.token&&(r.push(n),"apply"===n.action&&n.token>e.token&&(t=!0),"tell"===n.action&&(t=!0))};return this._channel.addEventListener("internal",n),s(this,"apply").then((function(){return(0,o.sleep)(e._options.responseTime)})).then((function(){return t?Promise.reject(new Error):s(e,"apply")})).then((function(){return(0,o.sleep)(e._options.responseTime)})).then((function(){return t?Promise.reject(new Error):s(e)})).then((function(){return function(e){e.isLeader=!0;var t=i.default.add((function(){return e.die()}));e._unl.push(t);var r=function(t){"leader"===t.context&&"apply"===t.action&&s(e,"tell")};return e._channel.addEventListener("internal",r),e._lstns.push(r),s(e,"tell")}(e)})).then((function(){return!0})).catch((function(){return!1})).then((function(t){return e._channel.removeEventListener("internal",n),e._isApl=!1,!t&&e._reApply?(e._reApply=!1,e.applyOnce()):t}))},awaitLeadership:function(){var e;return this._aLP||(this._aLP=(e=this).isLeader?Promise.resolve():new Promise((function(t){var r=!1,n=function(){r||(r=!0,clearInterval(o),e._channel.removeEventListener("internal",i),t(!0))};e.applyOnce().then((function(){e.isLeader&&n()}));var o=setInterval((function(){e.applyOnce().then((function(){e.isLeader&&n()}))}),e._options.fallbackInterval);e._invs.push(o);var i=function(t){"leader"===t.context&&"death"===t.action&&e.applyOnce().then((function(){e.isLeader&&n()}))};e._channel.addEventListener("internal",i),e._lstns.push(i)}))),this._aLP},die:function(){var e=this;if(!this.isDead)return this.isDead=!0,this._lstns.forEach((function(t){return e._channel.removeEventListener("internal",t)})),this._invs.forEach((function(e){return clearInterval(e)})),this._unl.forEach((function(e){e.remove()})),s(this,"death")}}},{"./util.js":106,"@babel/runtime/helpers/interopRequireDefault":63,unload:745}],99:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.chooseMethod=function(e){var t=[].concat(e.methods,c).filter(Boolean);if(e.type){if("simulate"===e.type)return s.default;var r=t.find((function(t){return t.type===e.type}));if(r)return r;throw new Error("method-type "+e.type+" not found")}e.webWorkerSupport||a.isNode||(t=t.filter((function(e){return"idb"!==e.type})));var n=t.find((function(e){return e.canBeUsed()}));if(n)return n;throw new Error("No useable methode found:"+JSON.stringify(c.map((function(e){return e.type}))))};var o=n(e("./methods/native.js")),i=n(e("./methods/indexed-db.js")),u=n(e("./methods/localstorage.js")),s=n(e("./methods/simulate.js")),a=e("./util"),c=[o.default,i.default,u.default];if(a.isNode){var f=e("../../src/methods/node.js");"function"==typeof f.canBeUsed&&c.push(f)}},{"./methods/indexed-db.js":100,"./methods/localstorage.js":101,"./methods/native.js":102,"./methods/simulate.js":103,"./util":106,"@babel/runtime/helpers/interopRequireDefault":63}],100:[function(e,t,r){"use strict";var n=e("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(r,"__esModule",{value:!0}),r.getIdb=c,r.createDatabase=f,r.writeMessage=l,r.getAllMessages=function(e){var t=e.transaction(a).objectStore(a),r=[];return new Promise((function(e){t.openCursor().onsuccess=function(t){var n=t.target.result;n?(r.push(n.value),n.continue()):e(r)}}))},r.getMessagesHigherThen=p,r.removeMessageById=h,r.getOldMessages=d,r.cleanOldMessages=y,r.create=b,r.close=_,r.postMessage=g,r.onMessage=w,r.canBeUsed=x,r.averageResponseTime=S,r.default=r.type=r.microSeconds=void 0;var o=e("../util.js"),i=n(e("../oblivious-set")),u=e("../options"),s=o.microSeconds;r.microSeconds=s;var a="messages";function c(){if("undefined"!=typeof indexedDB)return indexedDB;if("undefined"!=typeof window){if(void 0!==window.mozIndexedDB)return window.mozIndexedDB;if(void 0!==window.webkitIndexedDB)return window.webkitIndexedDB;if(void 0!==window.msIndexedDB)return window.msIndexedDB}return!1}function f(e){var t="pubkey.broadcast-channel-0-"+e,r=c().open(t,1);return r.onupgradeneeded=function(e){e.target.result.createObjectStore(a,{keyPath:"id",autoIncrement:!0})},new Promise((function(e,t){r.onerror=function(e){return t(e)},r.onsuccess=function(){e(r.result)}}))}function l(e,t,r){var n={uuid:t,time:(new Date).getTime(),data:r},o=e.transaction([a],"readwrite");return new Promise((function(e,t){o.oncomplete=function(){return e()},o.onerror=function(e){return t(e)},o.objectStore(a).add(n)}))}function p(e,t){var r=e.transaction(a).objectStore(a),n=[],o=IDBKeyRange.bound(t+1,1/0);return new Promise((function(e){r.openCursor(o).onsuccess=function(t){var r=t.target.result;r?(n.push(r.value),r.continue()):e(n)}}))}function h(e,t){var r=e.transaction([a],"readwrite").objectStore(a).delete(t);return new Promise((function(e){r.onsuccess=function(){return e()}}))}function d(e,t){var r=(new Date).getTime()-t,n=e.transaction(a).objectStore(a),o=[];return new Promise((function(e){n.openCursor().onsuccess=function(t){var n=t.target.result;if(n){var i=n.value;if(!(i.timee.lastCursorId&&(e.lastCursorId=t.id),t})).filter((function(t){return function(e,t){return!(e.uuid===t.uuid||t.eMIs.has(e.id)||e.data.time0&&void 0!==arguments[0]?arguments[0]:{},t=JSON.parse(JSON.stringify(e));void 0===t.webWorkerSupport&&(t.webWorkerSupport=!0);t.idb||(t.idb={});t.idb.ttl||(t.idb.ttl=45e3);t.idb.fallbackInterval||(t.idb.fallbackInterval=150);e.idb&&"function"==typeof e.idb.onclose&&(t.idb.onclose=e.idb.onclose);t.localstorage||(t.localstorage={});t.localstorage.removeTimeout||(t.localstorage.removeTimeout=6e4);e.methods&&(t.methods=e.methods);t.node||(t.node={});t.node.ttl||(t.node.ttl=12e4);void 0===t.node.useFastPath&&(t.node.useFastPath=!0);return t}},{}],106:[function(e,t,r){(function(e){(function(){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.isPromise=function(e){return!(!e||"function"!=typeof e.then)},r.sleep=function(e){e||(e=0);return new Promise((function(t){return setTimeout(t,e)}))},r.randomInt=function(e,t){return Math.floor(Math.random()*(t-e+1)+e)},r.randomToken=function(){return Math.random().toString(36).substring(2)},r.microSeconds=function(){var e=(new Date).getTime();return e===t?(n++,1e3*e+n):(t=e,n=0,1e3*e)},r.isNode=void 0;var t=0,n=0;var o="[object process]"===Object.prototype.toString.call(void 0!==e?e:0);r.isNode=o}).call(this)}).call(this,e("_process"))},{_process:533}],107:[function(e,t,r){},{}],108:[function(e,t,r){(function(t){(function(){ /*! * The buffer module from node.js, for the browser. * * @author Feross Aboukhadijeh * @license MIT */ -"use strict";var t=e("base64-js"),n=e("ieee754");r.Buffer=u,r.SlowBuffer=function(e){+e!=e&&(e=0);return u.alloc(+e)},r.INSPECT_MAX_BYTES=50;var o=2147483647;function i(e){if(e>o)throw new RangeError('The value "'+e+'" is invalid for option "size"');var t=new Uint8Array(e);return t.__proto__=u.prototype,t}function u(e,t,r){if("number"==typeof e){if("string"==typeof t)throw new TypeError('The "string" argument must be of type string. Received type number');return c(e)}return s(e,t,r)}function s(e,t,r){if("string"==typeof e)return function(e,t){"string"==typeof t&&""!==t||(t="utf8");if(!u.isEncoding(t))throw new TypeError("Unknown encoding: "+t);var r=0|p(e,t),n=i(r),o=n.write(e,t);o!==r&&(n=n.slice(0,o));return n}(e,t);if(ArrayBuffer.isView(e))return f(e);if(null==e)throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e);if(q(e,ArrayBuffer)||e&&q(e.buffer,ArrayBuffer))return function(e,t,r){if(t<0||e.byteLength=o)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+o.toString(16)+" bytes");return 0|e}function p(e,t){if(u.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||q(e,ArrayBuffer))return e.byteLength;if("string"!=typeof e)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof e);var r=e.length,n=arguments.length>2&&!0===arguments[2];if(!n&&0===r)return 0;for(var o=!1;;)switch(t){case"ascii":case"latin1":case"binary":return r;case"utf8":case"utf-8":return B(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*r;case"hex":return r>>>1;case"base64":return L(e).length;default:if(o)return n?-1:B(e).length;t=(""+t).toLowerCase(),o=!0}}function h(e,t,r){var n=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return"";if((r>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return A(this,t,r);case"utf8":case"utf-8":return O(this,t,r);case"ascii":return E(this,t,r);case"latin1":case"binary":return P(this,t,r);case"base64":return S(this,t,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return k(this,t,r);default:if(n)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),n=!0}}function d(e,t,r){var n=e[t];e[t]=e[r],e[r]=n}function b(e,t,r,n,o){if(0===e.length)return-1;if("string"==typeof r?(n=r,r=0):r>2147483647?r=2147483647:r<-2147483648&&(r=-2147483648),U(r=+r)&&(r=o?0:e.length-1),r<0&&(r=e.length+r),r>=e.length){if(o)return-1;r=e.length-1}else if(r<0){if(!o)return-1;r=0}if("string"==typeof t&&(t=u.from(t,n)),u.isBuffer(t))return 0===t.length?-1:y(e,t,r,n,o);if("number"==typeof t)return t&=255,"function"==typeof Uint8Array.prototype.indexOf?o?Uint8Array.prototype.indexOf.call(e,t,r):Uint8Array.prototype.lastIndexOf.call(e,t,r):y(e,[t],r,n,o);throw new TypeError("val must be string, number or Buffer")}function y(e,t,r,n,o){var i,u=1,s=e.length,a=t.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(e.length<2||t.length<2)return-1;u=2,s/=2,a/=2,r/=2}function c(e,t){return 1===u?e[t]:e.readUInt16BE(t*u)}if(o){var f=-1;for(i=r;is&&(r=s-a),i=r;i>=0;i--){for(var l=!0,p=0;po&&(n=o):n=o;var i=t.length;n>i/2&&(n=i/2);for(var u=0;u>8,o=r%256,i.push(o),i.push(n);return i}(t,e.length-r),e,r,n)}function S(e,r,n){return 0===r&&n===e.length?t.fromByteArray(e):t.fromByteArray(e.slice(r,n))}function O(e,t,r){r=Math.min(e.length,r);for(var n=[],o=t;o239?4:c>223?3:c>191?2:1;if(o+l<=r)switch(l){case 1:c<128&&(f=c);break;case 2:128==(192&(i=e[o+1]))&&(a=(31&c)<<6|63&i)>127&&(f=a);break;case 3:i=e[o+1],u=e[o+2],128==(192&i)&&128==(192&u)&&(a=(15&c)<<12|(63&i)<<6|63&u)>2047&&(a<55296||a>57343)&&(f=a);break;case 4:i=e[o+1],u=e[o+2],s=e[o+3],128==(192&i)&&128==(192&u)&&128==(192&s)&&(a=(15&c)<<18|(63&i)<<12|(63&u)<<6|63&s)>65535&&a<1114112&&(f=a)}null===f?(f=65533,l=1):f>65535&&(f-=65536,n.push(f>>>10&1023|55296),f=56320|1023&f),n.push(f),o+=l}return function(e){var t=e.length;if(t<=j)return String.fromCharCode.apply(String,e);var r="",n=0;for(;nt&&(e+=" ... "),""},u.prototype.compare=function(e,t,r,n,o){if(q(e,Uint8Array)&&(e=u.from(e,e.offset,e.byteLength)),!u.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(void 0===t&&(t=0),void 0===r&&(r=e?e.length:0),void 0===n&&(n=0),void 0===o&&(o=this.length),t<0||r>e.length||n<0||o>this.length)throw new RangeError("out of range index");if(n>=o&&t>=r)return 0;if(n>=o)return-1;if(t>=r)return 1;if(this===e)return 0;for(var i=(o>>>=0)-(n>>>=0),s=(r>>>=0)-(t>>>=0),a=Math.min(i,s),c=this.slice(n,o),f=e.slice(t,r),l=0;l>>=0,isFinite(r)?(r>>>=0,void 0===n&&(n="utf8")):(n=r,r=void 0)}var o=this.length-t;if((void 0===r||r>o)&&(r=o),e.length>0&&(r<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var i=!1;;)switch(n){case"hex":return v(this,e,t,r);case"utf8":case"utf-8":return m(this,e,t,r);case"ascii":return _(this,e,t,r);case"latin1":case"binary":return g(this,e,t,r);case"base64":return w(this,e,t,r);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return x(this,e,t,r);default:if(i)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),i=!0}},u.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var j=4096;function E(e,t,r){var n="";r=Math.min(e.length,r);for(var o=t;on)&&(r=n);for(var o="",i=t;ir)throw new RangeError("Trying to access beyond buffer length")}function R(e,t,r,n,o,i){if(!u.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>o||te.length)throw new RangeError("Index out of range")}function M(e,t,r,n,o,i){if(r+n>e.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("Index out of range")}function I(e,t,r,o,i){return t=+t,r>>>=0,i||M(e,0,r,4),n.write(e,t,r,o,23,4),r+4}function D(e,t,r,o,i){return t=+t,r>>>=0,i||M(e,0,r,8),n.write(e,t,r,o,52,8),r+8}u.prototype.slice=function(e,t){var r=this.length;(e=~~e)<0?(e+=r)<0&&(e=0):e>r&&(e=r),(t=void 0===t?r:~~t)<0?(t+=r)<0&&(t=0):t>r&&(t=r),t>>=0,t>>>=0,r||C(e,t,this.length);for(var n=this[e],o=1,i=0;++i>>=0,t>>>=0,r||C(e,t,this.length);for(var n=this[e+--t],o=1;t>0&&(o*=256);)n+=this[e+--t]*o;return n},u.prototype.readUInt8=function(e,t){return e>>>=0,t||C(e,1,this.length),this[e]},u.prototype.readUInt16LE=function(e,t){return e>>>=0,t||C(e,2,this.length),this[e]|this[e+1]<<8},u.prototype.readUInt16BE=function(e,t){return e>>>=0,t||C(e,2,this.length),this[e]<<8|this[e+1]},u.prototype.readUInt32LE=function(e,t){return e>>>=0,t||C(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},u.prototype.readUInt32BE=function(e,t){return e>>>=0,t||C(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},u.prototype.readIntLE=function(e,t,r){e>>>=0,t>>>=0,r||C(e,t,this.length);for(var n=this[e],o=1,i=0;++i=(o*=128)&&(n-=Math.pow(2,8*t)),n},u.prototype.readIntBE=function(e,t,r){e>>>=0,t>>>=0,r||C(e,t,this.length);for(var n=t,o=1,i=this[e+--n];n>0&&(o*=256);)i+=this[e+--n]*o;return i>=(o*=128)&&(i-=Math.pow(2,8*t)),i},u.prototype.readInt8=function(e,t){return e>>>=0,t||C(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},u.prototype.readInt16LE=function(e,t){e>>>=0,t||C(e,2,this.length);var r=this[e]|this[e+1]<<8;return 32768&r?4294901760|r:r},u.prototype.readInt16BE=function(e,t){e>>>=0,t||C(e,2,this.length);var r=this[e+1]|this[e]<<8;return 32768&r?4294901760|r:r},u.prototype.readInt32LE=function(e,t){return e>>>=0,t||C(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},u.prototype.readInt32BE=function(e,t){return e>>>=0,t||C(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},u.prototype.readFloatLE=function(e,t){return e>>>=0,t||C(e,4,this.length),n.read(this,e,!0,23,4)},u.prototype.readFloatBE=function(e,t){return e>>>=0,t||C(e,4,this.length),n.read(this,e,!1,23,4)},u.prototype.readDoubleLE=function(e,t){return e>>>=0,t||C(e,8,this.length),n.read(this,e,!0,52,8)},u.prototype.readDoubleBE=function(e,t){return e>>>=0,t||C(e,8,this.length),n.read(this,e,!1,52,8)},u.prototype.writeUIntLE=function(e,t,r,n){(e=+e,t>>>=0,r>>>=0,n)||R(this,e,t,r,Math.pow(2,8*r)-1,0);var o=1,i=0;for(this[t]=255&e;++i>>=0,r>>>=0,n)||R(this,e,t,r,Math.pow(2,8*r)-1,0);var o=r-1,i=1;for(this[t+o]=255&e;--o>=0&&(i*=256);)this[t+o]=e/i&255;return t+r},u.prototype.writeUInt8=function(e,t,r){return e=+e,t>>>=0,r||R(this,e,t,1,255,0),this[t]=255&e,t+1},u.prototype.writeUInt16LE=function(e,t,r){return e=+e,t>>>=0,r||R(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},u.prototype.writeUInt16BE=function(e,t,r){return e=+e,t>>>=0,r||R(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},u.prototype.writeUInt32LE=function(e,t,r){return e=+e,t>>>=0,r||R(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},u.prototype.writeUInt32BE=function(e,t,r){return e=+e,t>>>=0,r||R(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},u.prototype.writeIntLE=function(e,t,r,n){if(e=+e,t>>>=0,!n){var o=Math.pow(2,8*r-1);R(this,e,t,r,o-1,-o)}var i=0,u=1,s=0;for(this[t]=255&e;++i>0)-s&255;return t+r},u.prototype.writeIntBE=function(e,t,r,n){if(e=+e,t>>>=0,!n){var o=Math.pow(2,8*r-1);R(this,e,t,r,o-1,-o)}var i=r-1,u=1,s=0;for(this[t+i]=255&e;--i>=0&&(u*=256);)e<0&&0===s&&0!==this[t+i+1]&&(s=1),this[t+i]=(e/u>>0)-s&255;return t+r},u.prototype.writeInt8=function(e,t,r){return e=+e,t>>>=0,r||R(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},u.prototype.writeInt16LE=function(e,t,r){return e=+e,t>>>=0,r||R(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},u.prototype.writeInt16BE=function(e,t,r){return e=+e,t>>>=0,r||R(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},u.prototype.writeInt32LE=function(e,t,r){return e=+e,t>>>=0,r||R(this,e,t,4,2147483647,-2147483648),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},u.prototype.writeInt32BE=function(e,t,r){return e=+e,t>>>=0,r||R(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},u.prototype.writeFloatLE=function(e,t,r){return I(this,e,t,!0,r)},u.prototype.writeFloatBE=function(e,t,r){return I(this,e,t,!1,r)},u.prototype.writeDoubleLE=function(e,t,r){return D(this,e,t,!0,r)},u.prototype.writeDoubleBE=function(e,t,r){return D(this,e,t,!1,r)},u.prototype.copy=function(e,t,r,n){if(!u.isBuffer(e))throw new TypeError("argument should be a Buffer");if(r||(r=0),n||0===n||(n=this.length),t>=e.length&&(t=e.length),t||(t=0),n>0&&n=this.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),e.length-t=0;--i)e[i+t]=this[i+r];else Uint8Array.prototype.set.call(e,this.subarray(r,n),t);return o},u.prototype.fill=function(e,t,r,n){if("string"==typeof e){if("string"==typeof t?(n=t,t=0,r=this.length):"string"==typeof r&&(n=r,r=this.length),void 0!==n&&"string"!=typeof n)throw new TypeError("encoding must be a string");if("string"==typeof n&&!u.isEncoding(n))throw new TypeError("Unknown encoding: "+n);if(1===e.length){var o=e.charCodeAt(0);("utf8"===n&&o<128||"latin1"===n)&&(e=o)}}else"number"==typeof e&&(e&=255);if(t<0||this.length>>=0,r=void 0===r?this.length:r>>>0,e||(e=0),"number"==typeof e)for(i=t;i55295&&r<57344){if(!o){if(r>56319){(t-=3)>-1&&i.push(239,191,189);continue}if(u+1===n){(t-=3)>-1&&i.push(239,191,189);continue}o=r;continue}if(r<56320){(t-=3)>-1&&i.push(239,191,189),o=r;continue}r=65536+(o-55296<<10|r-56320)}else o&&(t-=3)>-1&&i.push(239,191,189);if(o=null,r<128){if((t-=1)<0)break;i.push(r)}else if(r<2048){if((t-=2)<0)break;i.push(r>>6|192,63&r|128)}else if(r<65536){if((t-=3)<0)break;i.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;i.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return i}function L(e){return t.toByteArray(function(e){if((e=(e=e.split("=")[0]).trim().replace(T,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function F(e,t,r,n){for(var o=0;o=t.length||o>=e.length);++o)t[o+r]=e[o];return o}function q(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}function U(e){return e!=e}}).call(this)}).call(this,e("buffer").Buffer)},{"base64-js":75,buffer:108,ieee754:455}],109:[function(e,t,r){(function(e){(function(){var r=function(){"use strict";function t(e,t){return null!=t&&e instanceof t}var r,n,o;try{r=Map}catch(e){r=function(){}}try{n=Set}catch(e){n=function(){}}try{o=Promise}catch(e){o=function(){}}function i(u,a,c,f,l){"object"==typeof a&&(c=a.depth,f=a.prototype,l=a.includeNonEnumerable,a=a.circular);var p=[],h=[],d=void 0!==e;return void 0===a&&(a=!0),void 0===c&&(c=1/0),function u(c,b){if(null===c)return null;if(0===b)return c;var y,v;if("object"!=typeof c)return c;if(t(c,r))y=new r;else if(t(c,n))y=new n;else if(t(c,o))y=new o((function(e,t){c.then((function(t){e(u(t,b-1))}),(function(e){t(u(e,b-1))}))}));else if(i.__isArray(c))y=[];else if(i.__isRegExp(c))y=new RegExp(c.source,s(c)),c.lastIndex&&(y.lastIndex=c.lastIndex);else if(i.__isDate(c))y=new Date(c.getTime());else{if(d&&e.isBuffer(c))return y=e.allocUnsafe?e.allocUnsafe(c.length):new e(c.length),c.copy(y),y;t(c,Error)?y=Object.create(c):void 0===f?(v=Object.getPrototypeOf(c),y=Object.create(v)):(y=Object.create(f),v=f)}if(a){var m=p.indexOf(c);if(-1!=m)return h[m];p.push(c),h.push(y)}for(var _ in t(c,r)&&c.forEach((function(e,t){var r=u(t,b-1),n=u(e,b-1);y.set(r,n)})),t(c,n)&&c.forEach((function(e){var t=u(e,b-1);y.add(t)})),c){var g;v&&(g=Object.getOwnPropertyDescriptor(v,_)),g&&null==g.set||(y[_]=u(c[_],b-1))}if(Object.getOwnPropertySymbols){var w=Object.getOwnPropertySymbols(c);for(_=0;_2?arguments[2]:void 0,f=Math.min((void 0===c?u:o(c,u))-a,u-s),l=1;for(a0;)a in r?r[s]=r[a]:delete r[s],s+=l,a+=l;return r}},{"./_to-absolute-index":244,"./_to-length":248,"./_to-object":249}],147:[function(e,t,r){"use strict";var n=e("./_to-object"),o=e("./_to-absolute-index"),i=e("./_to-length");t.exports=function(e){for(var t=n(this),r=i(t.length),u=arguments.length,s=o(u>1?arguments[1]:void 0,r),a=u>2?arguments[2]:void 0,c=void 0===a?r:o(a,r);c>s;)t[s++]=e;return t}},{"./_to-absolute-index":244,"./_to-length":248,"./_to-object":249}],148:[function(e,t,r){var n=e("./_to-iobject"),o=e("./_to-length"),i=e("./_to-absolute-index");t.exports=function(e){return function(t,r,u){var s,a=n(t),c=o(a.length),f=i(u,c);if(e&&r!=r){for(;c>f;)if((s=a[f++])!=s)return!0}else for(;c>f;f++)if((e||f in a)&&a[f]===r)return e||f||0;return!e&&-1}}},{"./_to-absolute-index":244,"./_to-iobject":247,"./_to-length":248}],149:[function(e,t,r){var n=e("./_ctx"),o=e("./_iobject"),i=e("./_to-object"),u=e("./_to-length"),s=e("./_array-species-create");t.exports=function(e,t){var r=1==e,a=2==e,c=3==e,f=4==e,l=6==e,p=5==e||l,h=t||s;return function(t,s,d){for(var b,y,v=i(t),m=o(v),_=n(s,d,3),g=u(m.length),w=0,x=r?h(t,g):a?h(t,0):void 0;g>w;w++)if((p||w in m)&&(y=_(b=m[w],w,v),e))if(r)x[w]=y;else if(y)switch(e){case 3:return!0;case 5:return b;case 6:return w;case 2:x.push(b)}else if(f)return!1;return l?-1:c||f?f:x}}},{"./_array-species-create":152,"./_ctx":161,"./_iobject":184,"./_to-length":248,"./_to-object":249}],150:[function(e,t,r){var n=e("./_a-function"),o=e("./_to-object"),i=e("./_iobject"),u=e("./_to-length");t.exports=function(e,t,r,s,a){n(t);var c=o(e),f=i(c),l=u(c.length),p=a?l-1:0,h=a?-1:1;if(r<2)for(;;){if(p in f){s=f[p],p+=h;break}if(p+=h,a?p<0:l<=p)throw TypeError("Reduce of empty array with no initial value")}for(;a?p>=0:l>p;p+=h)p in f&&(s=t(s,f[p],p,c));return s}},{"./_a-function":140,"./_iobject":184,"./_to-length":248,"./_to-object":249}],151:[function(e,t,r){var n=e("./_is-object"),o=e("./_is-array"),i=e("./_wks")("species");t.exports=function(e){var t;return o(e)&&("function"!=typeof(t=e.constructor)||t!==Array&&!o(t.prototype)||(t=void 0),n(t)&&null===(t=t[i])&&(t=void 0)),void 0===t?Array:t}},{"./_is-array":186,"./_is-object":188,"./_wks":259}],152:[function(e,t,r){var n=e("./_array-species-constructor");t.exports=function(e,t){return new(n(e))(t)}},{"./_array-species-constructor":151}],153:[function(e,t,r){"use strict";var n=e("./_a-function"),o=e("./_is-object"),i=e("./_invoke"),u=[].slice,s={},a=function(e,t,r){if(!(t in s)){for(var n=[],o=0;o1?arguments[1]:void 0,3);r=r?r.n:this._f;)for(n(r.v,r.k,this);r&&r.r;)r=r.p},has:function(e){return!!y(d(this,t),e)}}),p&&n(f.prototype,"size",{get:function(){return d(this,t)[b]}}),f},def:function(e,t,r){var n,o,i=y(e,t);return i?i.v=r:(e._l=i={i:o=h(t,!0),k:t,v:r,p:n=e._l,n:void 0,r:!1},e._f||(e._f=i),n&&(n.n=i),e[b]++,"F"!==o&&(e._i[o]=i)),e},getEntry:y,setStrong:function(e,t,r){c(e,t,(function(e,r){this._t=d(e,t),this._k=r,this._l=void 0}),(function(){for(var e=this,t=e._k,r=e._l;r&&r.r;)r=r.p;return e._t&&(e._l=r=r?r.n:e._t._f)?f(0,"keys"==t?r.k:"values"==t?r.v:[r.k,r.v]):(e._t=void 0,f(1))}),r?"entries":"values",!r,!0),l(t)}}},{"./_an-instance":144,"./_ctx":161,"./_descriptors":165,"./_for-of":175,"./_iter-define":192,"./_iter-step":194,"./_meta":201,"./_object-create":205,"./_object-dp":206,"./_redefine-all":224,"./_set-species":230,"./_validate-collection":256}],157:[function(e,t,r){"use strict";var n=e("./_redefine-all"),o=e("./_meta").getWeak,i=e("./_an-object"),u=e("./_is-object"),s=e("./_an-instance"),a=e("./_for-of"),c=e("./_array-methods"),f=e("./_has"),l=e("./_validate-collection"),p=c(5),h=c(6),d=0,b=function(e){return e._l||(e._l=new y)},y=function(){this.a=[]},v=function(e,t){return p(e.a,(function(e){return e[0]===t}))};y.prototype={get:function(e){var t=v(this,e);if(t)return t[1]},has:function(e){return!!v(this,e)},set:function(e,t){var r=v(this,e);r?r[1]=t:this.a.push([e,t])},delete:function(e){var t=h(this.a,(function(t){return t[0]===e}));return~t&&this.a.splice(t,1),!!~t}},t.exports={getConstructor:function(e,t,r,i){var c=e((function(e,n){s(e,c,t,"_i"),e._t=t,e._i=d++,e._l=void 0,null!=n&&a(n,r,e[i],e)}));return n(c.prototype,{delete:function(e){if(!u(e))return!1;var r=o(e);return!0===r?b(l(this,t)).delete(e):r&&f(r,this._i)&&delete r[this._i]},has:function(e){if(!u(e))return!1;var r=o(e);return!0===r?b(l(this,t)).has(e):r&&f(r,this._i)}}),c},def:function(e,t,r){var n=o(i(t),!0);return!0===n?b(e).set(t,r):n[e._i]=r,e},ufstore:b}},{"./_an-instance":144,"./_an-object":145,"./_array-methods":149,"./_for-of":175,"./_has":178,"./_is-object":188,"./_meta":201,"./_redefine-all":224,"./_validate-collection":256}],158:[function(e,t,r){"use strict";var n=e("./_global"),o=e("./_export"),i=e("./_redefine"),u=e("./_redefine-all"),s=e("./_meta"),a=e("./_for-of"),c=e("./_an-instance"),f=e("./_is-object"),l=e("./_fails"),p=e("./_iter-detect"),h=e("./_set-to-string-tag"),d=e("./_inherit-if-required");t.exports=function(e,t,r,b,y,v){var m=n[e],_=m,g=y?"set":"add",w=_&&_.prototype,x={},S=function(e){var t=w[e];i(w,e,"delete"==e||"has"==e?function(e){return!(v&&!f(e))&&t.call(this,0===e?0:e)}:"get"==e?function(e){return v&&!f(e)?void 0:t.call(this,0===e?0:e)}:"add"==e?function(e){return t.call(this,0===e?0:e),this}:function(e,r){return t.call(this,0===e?0:e,r),this})};if("function"==typeof _&&(v||w.forEach&&!l((function(){(new _).entries().next()})))){var O=new _,j=O[g](v?{}:-0,1)!=O,E=l((function(){O.has(1)})),P=p((function(e){new _(e)})),A=!v&&l((function(){for(var e=new _,t=5;t--;)e[g](t,t);return!e.has(-0)}));P||((_=t((function(t,r){c(t,_,e);var n=d(new m,t,_);return null!=r&&a(r,y,n[g],n),n}))).prototype=w,w.constructor=_),(E||A)&&(S("delete"),S("has"),y&&S("get")),(A||j)&&S(g),v&&w.clear&&delete w.clear}else _=b.getConstructor(t,e,y,g),u(_.prototype,r),s.NEED=!0;return h(_,e),x[e]=_,o(o.G+o.W+o.F*(_!=m),x),v||b.setStrong(_,e,y),_}},{"./_an-instance":144,"./_export":169,"./_fails":171,"./_for-of":175,"./_global":177,"./_inherit-if-required":182,"./_is-object":188,"./_iter-detect":193,"./_meta":201,"./_redefine":225,"./_redefine-all":224,"./_set-to-string-tag":231}],159:[function(e,t,r){arguments[4][125][0].apply(r,arguments)},{dup:125}],160:[function(e,t,r){"use strict";var n=e("./_object-dp"),o=e("./_property-desc");t.exports=function(e,t,r){t in e?n.f(e,t,o(0,r)):e[t]=r}},{"./_object-dp":206,"./_property-desc":223}],161:[function(e,t,r){arguments[4][126][0].apply(r,arguments)},{"./_a-function":140,dup:126}],162:[function(e,t,r){"use strict";var n=e("./_fails"),o=Date.prototype.getTime,i=Date.prototype.toISOString,u=function(e){return e>9?e:"0"+e};t.exports=n((function(){return"0385-07-25T07:06:39.999Z"!=i.call(new Date(-50000000000001))}))||!n((function(){i.call(new Date(NaN))}))?function(){if(!isFinite(o.call(this)))throw RangeError("Invalid time value");var e=this,t=e.getUTCFullYear(),r=e.getUTCMilliseconds(),n=t<0?"-":t>9999?"+":"";return n+("00000"+Math.abs(t)).slice(n?-6:-4)+"-"+u(e.getUTCMonth()+1)+"-"+u(e.getUTCDate())+"T"+u(e.getUTCHours())+":"+u(e.getUTCMinutes())+":"+u(e.getUTCSeconds())+"."+(r>99?r:"0"+u(r))+"Z"}:i},{"./_fails":171}],163:[function(e,t,r){"use strict";var n=e("./_an-object"),o=e("./_to-primitive"),i="number";t.exports=function(e){if("string"!==e&&e!==i&&"default"!==e)throw TypeError("Incorrect hint");return o(n(this),e!=i)}},{"./_an-object":145,"./_to-primitive":250}],164:[function(e,t,r){t.exports=function(e){if(null==e)throw TypeError("Can't call method on "+e);return e}},{}],165:[function(e,t,r){arguments[4][127][0].apply(r,arguments)},{"./_fails":171,dup:127}],166:[function(e,t,r){arguments[4][128][0].apply(r,arguments)},{"./_global":177,"./_is-object":188,dup:128}],167:[function(e,t,r){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},{}],168:[function(e,t,r){var n=e("./_object-keys"),o=e("./_object-gops"),i=e("./_object-pie");t.exports=function(e){var t=n(e),r=o.f;if(r)for(var u,s=r(e),a=i.f,c=0;s.length>c;)a.call(e,u=s[c++])&&t.push(u);return t}},{"./_object-gops":211,"./_object-keys":214,"./_object-pie":215}],169:[function(e,t,r){var n=e("./_global"),o=e("./_core"),i=e("./_hide"),u=e("./_redefine"),s=e("./_ctx"),a=function(e,t,r){var c,f,l,p,h=e&a.F,d=e&a.G,b=e&a.S,y=e&a.P,v=e&a.B,m=d?n:b?n[t]||(n[t]={}):(n[t]||{}).prototype,_=d?o:o[t]||(o[t]={}),g=_.prototype||(_.prototype={});for(c in d&&(r=t),r)l=((f=!h&&m&&void 0!==m[c])?m:r)[c],p=v&&f?s(l,n):y&&"function"==typeof l?s(Function.call,l):l,m&&u(m,c,l,e&a.U),_[c]!=l&&i(_,c,p),y&&g[c]!=l&&(g[c]=l)};n.core=o,a.F=1,a.G=2,a.S=4,a.P=8,a.B=16,a.W=32,a.U=64,a.R=128,t.exports=a},{"./_core":159,"./_ctx":161,"./_global":177,"./_hide":179,"./_redefine":225}],170:[function(e,t,r){var n=e("./_wks")("match");t.exports=function(e){var t=/./;try{"/./"[e](t)}catch(r){try{return t[n]=!1,!"/./"[e](t)}catch(e){}}return!0}},{"./_wks":259}],171:[function(e,t,r){arguments[4][130][0].apply(r,arguments)},{dup:130}],172:[function(e,t,r){"use strict";e("./es6.regexp.exec");var n=e("./_redefine"),o=e("./_hide"),i=e("./_fails"),u=e("./_defined"),s=e("./_wks"),a=e("./_regexp-exec"),c=s("species"),f=!i((function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$")})),l=function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var r="ab".split(e);return 2===r.length&&"a"===r[0]&&"b"===r[1]}();t.exports=function(e,t,r){var p=s(e),h=!i((function(){var t={};return t[p]=function(){return 7},7!=""[e](t)})),d=h?!i((function(){var t=!1,r=/a/;return r.exec=function(){return t=!0,null},"split"===e&&(r.constructor={},r.constructor[c]=function(){return r}),r[p](""),!t})):void 0;if(!h||!d||"replace"===e&&!f||"split"===e&&!l){var b=/./[p],y=r(u,p,""[e],(function(e,t,r,n,o){return t.exec===a?h&&!o?{done:!0,value:b.call(t,r,n)}:{done:!0,value:e.call(r,t,n)}:{done:!1}})),v=y[0],m=y[1];n(String.prototype,e,v),o(RegExp.prototype,p,2==t?function(e,t){return m.call(e,this,t)}:function(e){return m.call(e,this)})}}},{"./_defined":164,"./_fails":171,"./_hide":179,"./_redefine":225,"./_regexp-exec":227,"./_wks":259,"./es6.regexp.exec":355}],173:[function(e,t,r){"use strict";var n=e("./_an-object");t.exports=function(){var e=n(this),t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.unicode&&(t+="u"),e.sticky&&(t+="y"),t}},{"./_an-object":145}],174:[function(e,t,r){"use strict";var n=e("./_is-array"),o=e("./_is-object"),i=e("./_to-length"),u=e("./_ctx"),s=e("./_wks")("isConcatSpreadable");t.exports=function e(t,r,a,c,f,l,p,h){for(var d,b,y=f,v=0,m=!!p&&u(p,h,3);v0)y=e(t,r,d,i(d.length),y,l-1)-1;else{if(y>=9007199254740991)throw TypeError();t[y]=d}y++}v++}return y}},{"./_ctx":161,"./_is-array":186,"./_is-object":188,"./_to-length":248,"./_wks":259}],175:[function(e,t,r){var n=e("./_ctx"),o=e("./_iter-call"),i=e("./_is-array-iter"),u=e("./_an-object"),s=e("./_to-length"),a=e("./core.get-iterator-method"),c={},f={};(r=t.exports=function(e,t,r,l,p){var h,d,b,y,v=p?function(){return e}:a(e),m=n(r,l,t?2:1),_=0;if("function"!=typeof v)throw TypeError(e+" is not iterable!");if(i(v)){for(h=s(e.length);h>_;_++)if((y=t?m(u(d=e[_])[0],d[1]):m(e[_]))===c||y===f)return y}else for(b=v.call(e);!(d=b.next()).done;)if((y=o(b,m,d.value,t))===c||y===f)return y}).BREAK=c,r.RETURN=f},{"./_an-object":145,"./_ctx":161,"./_is-array-iter":185,"./_iter-call":190,"./_to-length":248,"./core.get-iterator-method":260}],176:[function(e,t,r){t.exports=e("./_shared")("native-function-to-string",Function.toString)},{"./_shared":233}],177:[function(e,t,r){arguments[4][131][0].apply(r,arguments)},{dup:131}],178:[function(e,t,r){arguments[4][132][0].apply(r,arguments)},{dup:132}],179:[function(e,t,r){arguments[4][133][0].apply(r,arguments)},{"./_descriptors":165,"./_object-dp":206,"./_property-desc":223,dup:133}],180:[function(e,t,r){var n=e("./_global").document;t.exports=n&&n.documentElement},{"./_global":177}],181:[function(e,t,r){arguments[4][134][0].apply(r,arguments)},{"./_descriptors":165,"./_dom-create":166,"./_fails":171,dup:134}],182:[function(e,t,r){var n=e("./_is-object"),o=e("./_set-proto").set;t.exports=function(e,t,r){var i,u=t.constructor;return u!==r&&"function"==typeof u&&(i=u.prototype)!==r.prototype&&n(i)&&o&&o(e,i),e}},{"./_is-object":188,"./_set-proto":229}],183:[function(e,t,r){t.exports=function(e,t,r){var n=void 0===r;switch(t.length){case 0:return n?e():e.call(r);case 1:return n?e(t[0]):e.call(r,t[0]);case 2:return n?e(t[0],t[1]):e.call(r,t[0],t[1]);case 3:return n?e(t[0],t[1],t[2]):e.call(r,t[0],t[1],t[2]);case 4:return n?e(t[0],t[1],t[2],t[3]):e.call(r,t[0],t[1],t[2],t[3])}return e.apply(r,t)}},{}],184:[function(e,t,r){var n=e("./_cof");t.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==n(e)?e.split(""):Object(e)}},{"./_cof":155}],185:[function(e,t,r){var n=e("./_iterators"),o=e("./_wks")("iterator"),i=Array.prototype;t.exports=function(e){return void 0!==e&&(n.Array===e||i[o]===e)}},{"./_iterators":195,"./_wks":259}],186:[function(e,t,r){var n=e("./_cof");t.exports=Array.isArray||function(e){return"Array"==n(e)}},{"./_cof":155}],187:[function(e,t,r){var n=e("./_is-object"),o=Math.floor;t.exports=function(e){return!n(e)&&isFinite(e)&&o(e)===e}},{"./_is-object":188}],188:[function(e,t,r){arguments[4][135][0].apply(r,arguments)},{dup:135}],189:[function(e,t,r){var n=e("./_is-object"),o=e("./_cof"),i=e("./_wks")("match");t.exports=function(e){var t;return n(e)&&(void 0!==(t=e[i])?!!t:"RegExp"==o(e))}},{"./_cof":155,"./_is-object":188,"./_wks":259}],190:[function(e,t,r){var n=e("./_an-object");t.exports=function(e,t,r,o){try{return o?t(n(r)[0],r[1]):t(r)}catch(t){var i=e.return;throw void 0!==i&&n(i.call(e)),t}}},{"./_an-object":145}],191:[function(e,t,r){"use strict";var n=e("./_object-create"),o=e("./_property-desc"),i=e("./_set-to-string-tag"),u={};e("./_hide")(u,e("./_wks")("iterator"),(function(){return this})),t.exports=function(e,t,r){e.prototype=n(u,{next:o(1,r)}),i(e,t+" Iterator")}},{"./_hide":179,"./_object-create":205,"./_property-desc":223,"./_set-to-string-tag":231,"./_wks":259}],192:[function(e,t,r){"use strict";var n=e("./_library"),o=e("./_export"),i=e("./_redefine"),u=e("./_hide"),s=e("./_iterators"),a=e("./_iter-create"),c=e("./_set-to-string-tag"),f=e("./_object-gpo"),l=e("./_wks")("iterator"),p=!([].keys&&"next"in[].keys()),h="keys",d="values",b=function(){return this};t.exports=function(e,t,r,y,v,m,_){a(r,t,y);var g,w,x,S=function(e){if(!p&&e in P)return P[e];switch(e){case h:case d:return function(){return new r(this,e)}}return function(){return new r(this,e)}},O=t+" Iterator",j=v==d,E=!1,P=e.prototype,A=P[l]||P["@@iterator"]||v&&P[v],k=A||S(v),C=v?j?S("entries"):k:void 0,R="Array"==t&&P.entries||A;if(R&&(x=f(R.call(new e)))!==Object.prototype&&x.next&&(c(x,O,!0),n||"function"==typeof x[l]||u(x,l,b)),j&&A&&A.name!==d&&(E=!0,k=function(){return A.call(this)}),n&&!_||!p&&!E&&P[l]||u(P,l,k),s[t]=k,s[O]=b,v)if(g={values:j?k:S(d),keys:m?k:S(h),entries:C},_)for(w in g)w in P||i(P,w,g[w]);else o(o.P+o.F*(p||E),t,g);return g}},{"./_export":169,"./_hide":179,"./_iter-create":191,"./_iterators":195,"./_library":196,"./_object-gpo":212,"./_redefine":225,"./_set-to-string-tag":231,"./_wks":259}],193:[function(e,t,r){var n=e("./_wks")("iterator"),o=!1;try{var i=[7][n]();i.return=function(){o=!0},Array.from(i,(function(){throw 2}))}catch(e){}t.exports=function(e,t){if(!t&&!o)return!1;var r=!1;try{var i=[7],u=i[n]();u.next=function(){return{done:r=!0}},i[n]=function(){return u},e(i)}catch(e){}return r}},{"./_wks":259}],194:[function(e,t,r){t.exports=function(e,t){return{value:t,done:!!e}}},{}],195:[function(e,t,r){t.exports={}},{}],196:[function(e,t,r){t.exports=!1},{}],197:[function(e,t,r){var n=Math.expm1;t.exports=!n||n(10)>22025.465794806718||n(10)<22025.465794806718||-2e-17!=n(-2e-17)?function(e){return 0==(e=+e)?e:e>-1e-6&&e<1e-6?e+e*e/2:Math.exp(e)-1}:n},{}],198:[function(e,t,r){var n=e("./_math-sign"),o=Math.pow,i=o(2,-52),u=o(2,-23),s=o(2,127)*(2-u),a=o(2,-126);t.exports=Math.fround||function(e){var t,r,o=Math.abs(e),c=n(e);return os||r!=r?c*(1/0):c*r}},{"./_math-sign":200}],199:[function(e,t,r){t.exports=Math.log1p||function(e){return(e=+e)>-1e-8&&e<1e-8?e-e*e/2:Math.log(1+e)}},{}],200:[function(e,t,r){t.exports=Math.sign||function(e){return 0==(e=+e)||e!=e?e:e<0?-1:1}},{}],201:[function(e,t,r){var n=e("./_uid")("meta"),o=e("./_is-object"),i=e("./_has"),u=e("./_object-dp").f,s=0,a=Object.isExtensible||function(){return!0},c=!e("./_fails")((function(){return a(Object.preventExtensions({}))})),f=function(e){u(e,n,{value:{i:"O"+ ++s,w:{}}})},l=t.exports={KEY:n,NEED:!1,fastKey:function(e,t){if(!o(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!i(e,n)){if(!a(e))return"F";if(!t)return"E";f(e)}return e[n].i},getWeak:function(e,t){if(!i(e,n)){if(!a(e))return!0;if(!t)return!1;f(e)}return e[n].w},onFreeze:function(e){return c&&l.NEED&&a(e)&&!i(e,n)&&f(e),e}}},{"./_fails":171,"./_has":178,"./_is-object":188,"./_object-dp":206,"./_uid":254}],202:[function(e,t,r){var n=e("./_global"),o=e("./_task").set,i=n.MutationObserver||n.WebKitMutationObserver,u=n.process,s=n.Promise,a="process"==e("./_cof")(u);t.exports=function(){var e,t,r,c=function(){var n,o;for(a&&(n=u.domain)&&n.exit();e;){o=e.fn,e=e.next;try{o()}catch(n){throw e?r():t=void 0,n}}t=void 0,n&&n.enter()};if(a)r=function(){u.nextTick(c)};else if(!i||n.navigator&&n.navigator.standalone)if(s&&s.resolve){var f=s.resolve(void 0);r=function(){f.then(c)}}else r=function(){o.call(n,c)};else{var l=!0,p=document.createTextNode("");new i(c).observe(p,{characterData:!0}),r=function(){p.data=l=!l}}return function(n){var o={fn:n,next:void 0};t&&(t.next=o),e||(e=o,r()),t=o}}},{"./_cof":155,"./_global":177,"./_task":243}],203:[function(e,t,r){"use strict";var n=e("./_a-function");function o(e){var t,r;this.promise=new e((function(e,n){if(void 0!==t||void 0!==r)throw TypeError("Bad Promise constructor");t=e,r=n})),this.resolve=n(t),this.reject=n(r)}t.exports.f=function(e){return new o(e)}},{"./_a-function":140}],204:[function(e,t,r){"use strict";var n=e("./_descriptors"),o=e("./_object-keys"),i=e("./_object-gops"),u=e("./_object-pie"),s=e("./_to-object"),a=e("./_iobject"),c=Object.assign;t.exports=!c||e("./_fails")((function(){var e={},t={},r=Symbol(),n="abcdefghijklmnopqrst";return e[r]=7,n.split("").forEach((function(e){t[e]=e})),7!=c({},e)[r]||Object.keys(c({},t)).join("")!=n}))?function(e,t){for(var r=s(e),c=arguments.length,f=1,l=i.f,p=u.f;c>f;)for(var h,d=a(arguments[f++]),b=l?o(d).concat(l(d)):o(d),y=b.length,v=0;y>v;)h=b[v++],n&&!p.call(d,h)||(r[h]=d[h]);return r}:c},{"./_descriptors":165,"./_fails":171,"./_iobject":184,"./_object-gops":211,"./_object-keys":214,"./_object-pie":215,"./_to-object":249}],205:[function(e,t,r){var n=e("./_an-object"),o=e("./_object-dps"),i=e("./_enum-bug-keys"),u=e("./_shared-key")("IE_PROTO"),s=function(){},a=function(){var t,r=e("./_dom-create")("iframe"),n=i.length;for(r.style.display="none",e("./_html").appendChild(r),r.src="javascript:",(t=r.contentWindow.document).open(),t.write(" diff --git a/docs/contribute.html b/docs/contribute.html index cffe7f0939f..043355ce944 100644 --- a/docs/contribute.html +++ b/docs/contribute.html @@ -1027,6 +1027,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1038,7 +1051,7 @@
  • -
  • +
  • @@ -1051,7 +1064,7 @@
  • -
  • +
  • @@ -1064,7 +1077,7 @@
  • -
  • +
  • @@ -1077,7 +1090,7 @@
  • -
  • +
  • @@ -1090,7 +1103,7 @@
  • -
  • +
  • @@ -1103,7 +1116,7 @@
  • -
  • +
  • @@ -1116,7 +1129,7 @@
  • -
  • +
  • @@ -1642,7 +1655,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Contribute","level":"1.24","depth":1,"previous":{"title":"Questions & Answers","level":"1.23","depth":1,"path":"questions-answers.md","ref":"./questions-answers.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"contribute.md","mtime":"2020-07-22T22:17:56.173Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Contribute","level":"1.24","depth":1,"previous":{"title":"Questions & Answers","level":"1.23","depth":1,"path":"questions-answers.md","ref":"./questions-answers.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"contribute.md","mtime":"2020-07-22T22:17:56.173Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/custom-build.html b/docs/custom-build.html index 444b1f6824c..cd83d18ae9e 100644 --- a/docs/custom-build.html +++ b/docs/custom-build.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1757,7 +1770,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Custom Build","level":"1.19","depth":1,"next":{"title":"Creating Plugins","level":"1.20","depth":1,"path":"plugins.md","ref":"./plugins.md","articles":[]},"previous":{"title":"LocalDocuments","level":"1.18","depth":1,"path":"rx-local-document.md","ref":"./rx-local-document.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"custom-build.md","mtime":"2020-07-22T22:17:56.177Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Custom Build","level":"1.19","depth":1,"next":{"title":"Creating Plugins","level":"1.20","depth":1,"path":"plugins.md","ref":"./plugins.md","articles":[]},"previous":{"title":"LocalDocuments","level":"1.18","depth":1,"path":"rx-local-document.md","ref":"./rx-local-document.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"custom-build.md","mtime":"2020-07-22T22:17:56.177Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/data-migration.html b/docs/data-migration.html index e34cb76ecc6..603ef5b0049 100644 --- a/docs/data-migration.html +++ b/docs/data-migration.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1732,7 +1745,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"DataMigration","level":"1.12","depth":1,"next":{"title":"LeaderElection","level":"1.13","depth":1,"path":"leader-election.md","ref":"./leader-election.md","articles":[]},"previous":{"title":"Population","level":"1.11","depth":1,"path":"population.md","ref":"./population.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"data-migration.md","mtime":"2020-07-22T22:17:56.177Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"DataMigration","level":"1.12","depth":1,"next":{"title":"LeaderElection","level":"1.13","depth":1,"path":"leader-election.md","ref":"./leader-election.md","articles":[]},"previous":{"title":"Population","level":"1.11","depth":1,"path":"population.md","ref":"./population.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"data-migration.md","mtime":"2020-07-22T22:17:56.177Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/in-memory.html b/docs/in-memory.html index 81e75677e40..1059853d44b 100644 --- a/docs/in-memory.html +++ b/docs/in-memory.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1660,7 +1673,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"InMemory","level":"1.16","depth":1,"next":{"title":"QueryCache","level":"1.17","depth":1,"path":"query-cache.md","ref":"./query-cache.md","articles":[]},"previous":{"title":"Replication GraphQL","level":"1.15","depth":1,"path":"replication-graphql.md","ref":"./replication-graphql.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"in-memory.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"InMemory","level":"1.16","depth":1,"next":{"title":"QueryCache","level":"1.17","depth":1,"path":"query-cache.md","ref":"./query-cache.md","articles":[]},"previous":{"title":"Replication GraphQL","level":"1.15","depth":1,"path":"replication-graphql.md","ref":"./replication-graphql.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"in-memory.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/index.html b/docs/index.html index 9bde173fe11..012c1f0de7e 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1027,6 +1027,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1038,7 +1051,7 @@
  • -
  • +
  • @@ -1051,7 +1064,7 @@
  • -
  • +
  • @@ -1064,7 +1077,7 @@
  • -
  • +
  • @@ -1077,7 +1090,7 @@
  • -
  • +
  • @@ -1090,7 +1103,7 @@
  • -
  • +
  • @@ -1103,7 +1116,7 @@
  • -
  • +
  • @@ -1116,7 +1129,7 @@
  • -
  • +
  • @@ -1738,7 +1751,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Introduction","level":"1.1","depth":1,"next":{"title":"Install","level":"1.2","depth":1,"path":"install.md","ref":"./install.md","articles":[{"title":"npm","level":"1.2.1","depth":2,"anchor":"#npm","path":"install.md","ref":"./install.md#npm","articles":[]},{"title":"import","level":"1.2.2","depth":2,"anchor":"#import","path":"install.md","ref":"./install.md#import","articles":[]}]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"README.md","mtime":"2020-10-17T00:07:37.964Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Introduction","level":"1.1","depth":1,"next":{"title":"Install","level":"1.2","depth":1,"path":"install.md","ref":"./install.md","articles":[{"title":"npm","level":"1.2.1","depth":2,"anchor":"#npm","path":"install.md","ref":"./install.md#npm","articles":[]},{"title":"import","level":"1.2.2","depth":2,"anchor":"#import","path":"install.md","ref":"./install.md#import","articles":[]}]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"README.md","mtime":"2020-10-17T00:07:37.964Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/install.html b/docs/install.html index 6a3b2938f68..32e8c299a92 100644 --- a/docs/install.html +++ b/docs/install.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1656,7 +1669,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Install","level":"1.2","depth":1,"next":{"title":"npm","level":"1.2.1","depth":2,"anchor":"#npm","path":"install.md","ref":"./install.md#npm","articles":[]},"previous":{"title":"Introduction","level":"1.1","depth":1,"path":"README.md","ref":"README.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"install.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Install","level":"1.2","depth":1,"next":{"title":"npm","level":"1.2.1","depth":2,"anchor":"#npm","path":"install.md","ref":"./install.md#npm","articles":[]},"previous":{"title":"Introduction","level":"1.1","depth":1,"path":"README.md","ref":"README.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"install.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/leader-election.html b/docs/leader-election.html index 80a0ccdbb92..eaa3b141cb7 100644 --- a/docs/leader-election.html +++ b/docs/leader-election.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1663,7 +1676,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"LeaderElection","level":"1.13","depth":1,"next":{"title":"Replication CouchDB","level":"1.14","depth":1,"path":"replication.md","ref":"./replication.md","articles":[]},"previous":{"title":"DataMigration","level":"1.12","depth":1,"path":"data-migration.md","ref":"./data-migration.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"leader-election.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"LeaderElection","level":"1.13","depth":1,"next":{"title":"Replication CouchDB","level":"1.14","depth":1,"path":"replication.md","ref":"./replication.md","articles":[]},"previous":{"title":"DataMigration","level":"1.12","depth":1,"path":"data-migration.md","ref":"./data-migration.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"leader-election.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/middleware.html b/docs/middleware.html index b45d33f313b..4cfb3f6c74f 100644 --- a/docs/middleware.html +++ b/docs/middleware.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1822,7 +1835,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Middleware-hooks","level":"1.9","depth":1,"next":{"title":"ORM/DRM","level":"1.10","depth":1,"path":"orm.md","ref":"./orm.md","articles":[]},"previous":{"title":"RxAttachment","level":"1.8","depth":1,"path":"rx-attachment.md","ref":"./rx-attachment.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"middleware.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Middleware-hooks","level":"1.9","depth":1,"next":{"title":"ORM/DRM","level":"1.10","depth":1,"path":"orm.md","ref":"./orm.md","articles":[]},"previous":{"title":"RxAttachment","level":"1.8","depth":1,"path":"rx-attachment.md","ref":"./rx-attachment.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"middleware.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/orm.html b/docs/orm.html index 1258aa2a987..987eb4048a8 100644 --- a/docs/orm.html +++ b/docs/orm.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1705,7 +1718,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"ORM/DRM","level":"1.10","depth":1,"next":{"title":"Population","level":"1.11","depth":1,"path":"population.md","ref":"./population.md","articles":[]},"previous":{"title":"Middleware-hooks","level":"1.9","depth":1,"path":"middleware.md","ref":"./middleware.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"orm.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"ORM/DRM","level":"1.10","depth":1,"next":{"title":"Population","level":"1.11","depth":1,"path":"population.md","ref":"./population.md","articles":[]},"previous":{"title":"Middleware-hooks","level":"1.9","depth":1,"path":"middleware.md","ref":"./middleware.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"orm.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/plugins.html b/docs/plugins.html index 51977ab373c..96ab21958be 100644 --- a/docs/plugins.html +++ b/docs/plugins.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1691,7 +1704,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Creating Plugins","level":"1.20","depth":1,"next":{"title":"Adapters","level":"1.21","depth":1,"path":"adapters.md","ref":"./adapters.md","articles":[]},"previous":{"title":"Custom Build","level":"1.19","depth":1,"path":"custom-build.md","ref":"./custom-build.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"plugins.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Creating Plugins","level":"1.20","depth":1,"next":{"title":"Adapters","level":"1.21","depth":1,"path":"adapters.md","ref":"./adapters.md","articles":[]},"previous":{"title":"Custom Build","level":"1.19","depth":1,"path":"custom-build.md","ref":"./custom-build.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"plugins.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/population.html b/docs/population.html index a5c6e0aa0f7..12554b3a5dd 100644 --- a/docs/population.html +++ b/docs/population.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1753,7 +1766,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Population","level":"1.11","depth":1,"next":{"title":"DataMigration","level":"1.12","depth":1,"path":"data-migration.md","ref":"./data-migration.md","articles":[]},"previous":{"title":"ORM/DRM","level":"1.10","depth":1,"path":"orm.md","ref":"./orm.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"population.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Population","level":"1.11","depth":1,"next":{"title":"DataMigration","level":"1.12","depth":1,"path":"data-migration.md","ref":"./data-migration.md","articles":[]},"previous":{"title":"ORM/DRM","level":"1.10","depth":1,"path":"orm.md","ref":"./orm.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"population.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/query-cache.html b/docs/query-cache.html index 44af268ef9e..bb4005337e9 100644 --- a/docs/query-cache.html +++ b/docs/query-cache.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1644,7 +1657,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"QueryCache","level":"1.17","depth":1,"next":{"title":"LocalDocuments","level":"1.18","depth":1,"path":"rx-local-document.md","ref":"./rx-local-document.md","articles":[]},"previous":{"title":"InMemory","level":"1.16","depth":1,"path":"in-memory.md","ref":"./in-memory.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"query-cache.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"QueryCache","level":"1.17","depth":1,"next":{"title":"LocalDocuments","level":"1.18","depth":1,"path":"rx-local-document.md","ref":"./rx-local-document.md","articles":[]},"previous":{"title":"InMemory","level":"1.16","depth":1,"path":"in-memory.md","ref":"./in-memory.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"query-cache.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/questions-answers.html b/docs/questions-answers.html index ee8f750d225..eae3a795429 100644 --- a/docs/questions-answers.html +++ b/docs/questions-answers.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1636,7 +1649,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Questions & Answers","level":"1.23","depth":1,"next":{"title":"Contribute","level":"1.24","depth":1,"path":"contribute.md","ref":"./contribute.md","articles":[]},"previous":{"title":"Using the Server Plugin","level":"1.22.2","depth":2,"path":"tutorials/server.md","ref":"./tutorials/server.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"questions-answers.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Questions & Answers","level":"1.23","depth":1,"next":{"title":"Contribute","level":"1.24","depth":1,"path":"contribute.md","ref":"./contribute.md","articles":[]},"previous":{"title":"Using the Server Plugin","level":"1.22.2","depth":2,"path":"tutorials/server.md","ref":"./tutorials/server.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"questions-answers.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/replication-graphql.html b/docs/replication-graphql.html index 636c102d0ac..cdbcd94dfd3 100644 --- a/docs/replication-graphql.html +++ b/docs/replication-graphql.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1882,7 +1895,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Replication GraphQL","level":"1.15","depth":1,"next":{"title":"InMemory","level":"1.16","depth":1,"path":"in-memory.md","ref":"./in-memory.md","articles":[]},"previous":{"title":"Replication CouchDB","level":"1.14","depth":1,"path":"replication.md","ref":"./replication.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"replication-graphql.md","mtime":"2020-10-17T00:07:37.964Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Replication GraphQL","level":"1.15","depth":1,"next":{"title":"InMemory","level":"1.16","depth":1,"path":"in-memory.md","ref":"./in-memory.md","articles":[]},"previous":{"title":"Replication CouchDB","level":"1.14","depth":1,"path":"replication.md","ref":"./replication.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"replication-graphql.md","mtime":"2020-10-17T00:07:37.964Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/replication.html b/docs/replication.html index 0c71c8644bb..0d6601f0208 100644 --- a/docs/replication.html +++ b/docs/replication.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1599,6 +1612,12 @@

    Rx.Collection.sync()

    query: myCollection.find().where('age').gt(18) // query (optional) only documents that match that query will be synchronised }); +

    Limitations

    +

    Since CouchDB only allows synchronization through HTTP1.1 long polling requests there is a limitation of 6 active synchronization connections before the browser prevents sending any further request. This limitation is at the level of browser per tab per domain (some browser, especially older ones, might have a different limit, see here).

    +

    Since this limitation is at the browser level there are several solutions: + 1) Use a proxy (ex: HAProxy) between the browser and CouchDB and configure it to use HTTP2.0, since HTTP2.0 doesn't have this limitation (RECOMMENDED) + 2) Use only a single database for all entities and set a "type" field for each of the documents + 3) Create multiple subdomains for CouchDB and use a max of 6 active synchronizations (or less) for each

    RxReplicationState

    The method RxCollection.sync() returns a RxReplicationState which can be used to observe events via rxjs-observables and to cancel the replication.

    change$

    @@ -1680,7 +1699,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Replication CouchDB","level":"1.14","depth":1,"next":{"title":"Replication GraphQL","level":"1.15","depth":1,"path":"replication-graphql.md","ref":"./replication-graphql.md","articles":[]},"previous":{"title":"LeaderElection","level":"1.13","depth":1,"path":"leader-election.md","ref":"./leader-election.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"replication.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Replication CouchDB","level":"1.14","depth":1,"next":{"title":"Replication GraphQL","level":"1.15","depth":1,"path":"replication-graphql.md","ref":"./replication-graphql.md","articles":[]},"previous":{"title":"LeaderElection","level":"1.13","depth":1,"path":"leader-election.md","ref":"./leader-election.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"replication.md","mtime":"2020-11-02T13:01:34.157Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-attachment.html b/docs/rx-attachment.html index 27bde4a6035..a7cf6da0de4 100644 --- a/docs/rx-attachment.html +++ b/docs/rx-attachment.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1695,7 +1708,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"RxAttachment","level":"1.8","depth":1,"next":{"title":"Middleware-hooks","level":"1.9","depth":1,"path":"middleware.md","ref":"./middleware.md","articles":[]},"previous":{"title":"isRxQuery()","level":"1.7.9","depth":2,"anchor":"#isrxquery","path":"rx-query.md","ref":"./rx-query.md#isrxquery","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"rx-attachment.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"RxAttachment","level":"1.8","depth":1,"next":{"title":"Middleware-hooks","level":"1.9","depth":1,"path":"middleware.md","ref":"./middleware.md","articles":[]},"previous":{"title":"isRxQuery()","level":"1.7.9","depth":2,"anchor":"#isrxquery","path":"rx-query.md","ref":"./rx-query.md#isrxquery","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"rx-attachment.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-collection.html b/docs/rx-collection.html index 19e29f6623e..20d0a034287 100644 --- a/docs/rx-collection.html +++ b/docs/rx-collection.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1803,7 +1816,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"RxCollection","level":"1.5","depth":1,"next":{"title":"Creation","level":"1.5.1","depth":2,"anchor":"#creating-a-collection","path":"rx-collection.md","ref":"./rx-collection.md#creating-a-collection","articles":[{"title":"name","level":"1.5.1.1","depth":3,"anchor":"#name","path":"rx-collection.md","ref":"./rx-collection.md#name","articles":[]},{"title":"schema","level":"1.5.1.2","depth":3,"anchor":"#schema","path":"rx-collection.md","ref":"./rx-collection.md#schema","articles":[]},{"title":"pouchSettings","level":"1.5.1.3","depth":3,"anchor":"#pouchSettings","path":"rx-collection.md","ref":"./rx-collection.md#pouchSettings","articles":[]},{"title":"ORM-functions","level":"1.5.1.4","depth":3,"anchor":"#orm-functions","path":"rx-collection.md","ref":"./rx-collection.md#orm-functions","articles":[]},{"title":"Migration","level":"1.5.1.5","depth":3,"anchor":"#Migration","path":"rx-collection.md","ref":"./rx-collection.md#Migration","articles":[]}]},"previous":{"title":"encryption","level":"1.4.9","depth":2,"anchor":"#encryption","path":"rx-schema.md","ref":"./rx-schema.md#encryption","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"rx-collection.md","mtime":"2020-09-06T20:58:07.447Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"RxCollection","level":"1.5","depth":1,"next":{"title":"Creation","level":"1.5.1","depth":2,"anchor":"#creating-a-collection","path":"rx-collection.md","ref":"./rx-collection.md#creating-a-collection","articles":[{"title":"name","level":"1.5.1.1","depth":3,"anchor":"#name","path":"rx-collection.md","ref":"./rx-collection.md#name","articles":[]},{"title":"schema","level":"1.5.1.2","depth":3,"anchor":"#schema","path":"rx-collection.md","ref":"./rx-collection.md#schema","articles":[]},{"title":"pouchSettings","level":"1.5.1.3","depth":3,"anchor":"#pouchSettings","path":"rx-collection.md","ref":"./rx-collection.md#pouchSettings","articles":[]},{"title":"ORM-functions","level":"1.5.1.4","depth":3,"anchor":"#orm-functions","path":"rx-collection.md","ref":"./rx-collection.md#orm-functions","articles":[]},{"title":"Migration","level":"1.5.1.5","depth":3,"anchor":"#Migration","path":"rx-collection.md","ref":"./rx-collection.md#Migration","articles":[]}]},"previous":{"title":"encryption","level":"1.4.9","depth":2,"anchor":"#encryption","path":"rx-schema.md","ref":"./rx-schema.md#encryption","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"rx-collection.md","mtime":"2020-09-06T20:58:07.447Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-database.html b/docs/rx-database.html index a430e92644a..6d4eb0bb8a4 100644 --- a/docs/rx-database.html +++ b/docs/rx-database.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1744,7 +1757,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"RxDatabase","level":"1.3","depth":1,"next":{"title":"Creation","level":"1.3.1","depth":2,"anchor":"#creation","path":"rx-database.md","ref":"./rx-database.md#creation","articles":[{"title":"name","level":"1.3.1.1","depth":3,"anchor":"#name","path":"rx-database.md","ref":"./rx-database.md#name","articles":[]},{"title":"adapter","level":"1.3.1.2","depth":3,"anchor":"#adapter","path":"rx-database.md","ref":"./rx-database.md#adapter","articles":[]},{"title":"password","level":"1.3.1.3","depth":3,"anchor":"#password","path":"rx-database.md","ref":"./rx-database.md#password","articles":[]},{"title":"multiInstance","level":"1.3.1.4","depth":3,"anchor":"#multiinstance","path":"rx-database.md","ref":"./rx-database.md#multiinstance","articles":[]},{"title":"eventReduce","level":"1.3.1.5","depth":3,"anchor":"#eventreduce","path":"rx-database.md","ref":"./rx-database.md#eventreduce","articles":[]},{"title":"ignoreDuplicate","level":"1.3.1.6","depth":3,"anchor":"#ignoreduplicate","path":"rx-database.md","ref":"./rx-database.md#ignoreduplicate","articles":[]},{"title":"pouchSettings","level":"1.3.1.7","depth":3,"anchor":"#pouchSettings","path":"rx-database.md","ref":"./rx-database.md#pouchSettings","articles":[]}]},"previous":{"title":"import","level":"1.2.2","depth":2,"anchor":"#import","path":"install.md","ref":"./install.md#import","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"rx-database.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"RxDatabase","level":"1.3","depth":1,"next":{"title":"Creation","level":"1.3.1","depth":2,"anchor":"#creation","path":"rx-database.md","ref":"./rx-database.md#creation","articles":[{"title":"name","level":"1.3.1.1","depth":3,"anchor":"#name","path":"rx-database.md","ref":"./rx-database.md#name","articles":[]},{"title":"adapter","level":"1.3.1.2","depth":3,"anchor":"#adapter","path":"rx-database.md","ref":"./rx-database.md#adapter","articles":[]},{"title":"password","level":"1.3.1.3","depth":3,"anchor":"#password","path":"rx-database.md","ref":"./rx-database.md#password","articles":[]},{"title":"multiInstance","level":"1.3.1.4","depth":3,"anchor":"#multiinstance","path":"rx-database.md","ref":"./rx-database.md#multiinstance","articles":[]},{"title":"eventReduce","level":"1.3.1.5","depth":3,"anchor":"#eventreduce","path":"rx-database.md","ref":"./rx-database.md#eventreduce","articles":[]},{"title":"ignoreDuplicate","level":"1.3.1.6","depth":3,"anchor":"#ignoreduplicate","path":"rx-database.md","ref":"./rx-database.md#ignoreduplicate","articles":[]},{"title":"pouchSettings","level":"1.3.1.7","depth":3,"anchor":"#pouchSettings","path":"rx-database.md","ref":"./rx-database.md#pouchSettings","articles":[]}]},"previous":{"title":"import","level":"1.2.2","depth":2,"anchor":"#import","path":"install.md","ref":"./install.md#import","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"rx-database.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-document.html b/docs/rx-document.html index 4e796677e0a..f3d72a391f2 100644 --- a/docs/rx-document.html +++ b/docs/rx-document.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1604,7 +1617,7 @@

    get$()

    isName = newName; }); -await myDocument.atomicSet('name', 'foobar2'); +await myDocument.atomicPatch({name: 'foobar2'}); console.dir(isName); // isName is now 'foobar2'

    proxy-get

    @@ -1617,7 +1630,7 @@

    proxy-get

    // Also useable with observables: myDocument.firstName$.subscribe(newName => console.log('name is: ' + newName)); // > 'name is: Stefe' - await myDocument.atomicSet('firstName', 'Steve'); + await myDocument.atomicPatch({firstName: 'Steve'}); // > 'name is: Steve'

    update()

    @@ -1632,7 +1645,8 @@

    update()

    });

    atomicUpdate()

    -

    Updates a documents data based on a function that transforms the current data and returns the new value.

    +

    Updates a documents data based on a function that mutates the current data and returns the new value. +In difference to update(), the atomic function cannot lead to 409 write conflicts.

    
     const changeFunction = (oldData) => {
         oldData.age = oldData.age + 1;
    @@ -1642,8 +1656,17 @@ 

    atomicUpdate()

    await myDocument.atomicUpdate(changeFunction); console.log(myDocument.name); // 'foooobarNew'
    +

    atomicPatch()

    +

    Works like atomicUpdate but overwrites the given attributes over the documents data.

    +
    await myDocument.atomicPatch({
    +  name: 'Steve',
    +  age: undefined // setting an attribute to undefined will remove it
    +});
    +console.log(myDocument.name); // 'Steve'
    +

    atomicSet()

    Works like atomicUpdate but only sets the value for a single attribute.

    +

    NOTICE: atomicSet is deprecated, use atomicPatch instead

    await myDocument.atomicSet('nested.attribute', 'foobar');
     console.log(myDocument.nested.attribute); // 'foobar'
     
    @@ -1759,7 +1782,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"RxDocument","level":"1.6","depth":1,"next":{"title":"Insert","level":"1.6.1","depth":2,"anchor":"#insert","path":"rx-document.md","ref":"./rx-document.md#insert","articles":[]},"previous":{"title":"isRxCollection()","level":"1.5.2.15","depth":3,"anchor":"#isrxcollection","path":"rx-collection.md","ref":"./rx-collection.md#isrxcollection","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"rx-document.md","mtime":"2020-10-17T00:07:37.964Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"RxDocument","level":"1.6","depth":1,"next":{"title":"Insert","level":"1.6.1","depth":2,"anchor":"#insert","path":"rx-document.md","ref":"./rx-document.md#insert","articles":[]},"previous":{"title":"isRxCollection()","level":"1.5.2.15","depth":3,"anchor":"#isrxcollection","path":"rx-collection.md","ref":"./rx-collection.md#isrxcollection","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"rx-document.md","mtime":"2020-11-01T21:18:39.305Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-local-document.html b/docs/rx-local-document.html index 586d4a1a2c7..632a2df5883 100644 --- a/docs/rx-local-document.html +++ b/docs/rx-local-document.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1685,7 +1698,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"LocalDocuments","level":"1.18","depth":1,"next":{"title":"Custom Build","level":"1.19","depth":1,"path":"custom-build.md","ref":"./custom-build.md","articles":[]},"previous":{"title":"QueryCache","level":"1.17","depth":1,"path":"query-cache.md","ref":"./query-cache.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"rx-local-document.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"LocalDocuments","level":"1.18","depth":1,"next":{"title":"Custom Build","level":"1.19","depth":1,"path":"custom-build.md","ref":"./custom-build.md","articles":[]},"previous":{"title":"QueryCache","level":"1.17","depth":1,"path":"query-cache.md","ref":"./query-cache.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"rx-local-document.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-query.html b/docs/rx-query.html index b49161a4459..4ca49ac827e 100644 --- a/docs/rx-query.html +++ b/docs/rx-query.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1743,7 +1756,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"RxQuery","level":"1.7","depth":1,"next":{"title":"find()","level":"1.7.1","depth":2,"anchor":"#find","path":"rx-query.md","ref":"./rx-query.md#find","articles":[]},"previous":{"title":"isRxDocument()","level":"1.6.3.13","depth":3,"anchor":"#isrxdocument","path":"rx-document.md","ref":"./rx-document.md#isrxdocument","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"rx-query.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"RxQuery","level":"1.7","depth":1,"next":{"title":"find()","level":"1.7.1","depth":2,"anchor":"#find","path":"rx-query.md","ref":"./rx-query.md#find","articles":[]},"previous":{"title":"isRxDocument()","level":"1.6.3.14","depth":3,"anchor":"#isrxdocument","path":"rx-document.md","ref":"./rx-document.md#isrxdocument","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"rx-query.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/rx-schema.html b/docs/rx-schema.html index 483cf5d32c5..06dbef63f75 100644 --- a/docs/rx-schema.html +++ b/docs/rx-schema.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1819,7 +1832,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"RxSchema","level":"1.4","depth":1,"next":{"title":"Example","level":"1.4.1","depth":2,"anchor":"#example","path":"rx-schema.md","ref":"./rx-schema.md#example","articles":[]},"previous":{"title":"isRxDatabase()","level":"1.3.2.10","depth":3,"anchor":"#isrxdatabase","path":"rx-database.md","ref":"./rx-database.md#isrxdatabase","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"rx-schema.md","mtime":"2020-10-17T00:07:37.964Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":".","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"RxSchema","level":"1.4","depth":1,"next":{"title":"Example","level":"1.4.1","depth":2,"anchor":"#example","path":"rx-schema.md","ref":"./rx-schema.md#example","articles":[]},"previous":{"title":"isRxDatabase()","level":"1.3.2.10","depth":3,"anchor":"#isrxdatabase","path":"rx-database.md","ref":"./rx-database.md#isrxdatabase","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"rx-schema.md","mtime":"2020-10-17T00:07:37.964Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":".","book":{"language":""}}); }); diff --git a/docs/search_index.json b/docs/search_index.json index 24d5c6d8169..5055c539851 100644 --- a/docs/search_index.json +++ b/docs/search_index.json @@ -1 +1 @@ -{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["''","'')","(short","+",".$",".find({",".join();",".map(doc","/","//","40%","=","=>",">","['name']","action","addit","alreadi","app","applic","apps,","automat","available.","base","benefits.","between","broadcast","call","capabl","capac","care","chang","changes.","client","clients.","collection.","come","compliant","compress","continu","core","couchdb","current","custom","data","data,","databas","database)","db.hero","defin","develop","developers.","devic","doc","doc.nam","document","document.","each","easi","electron","emit","encrypt","encrypted.","endpoint","endpoints.","even","featur","field","flawless","framework.","frontend","give","graphql","graphql.","great","hacked,","have","here.","hybrid","inform","instead","introduct","it.","javascript","json","key","make","mean","migrat","modul","much","multi","multipl","mydomelement.innerhtml","new","nodejs.","normal","nosql","observ","onc","open","optimizations.","parties.","perform","predict","progress","provid","pull","queri","queries,","queries.","reactiv","read","readabl","realtim","replic","representation.","result","rxdb","rxdb,","rxj","same","save","schema","sensit","server","server,","simpl","singl","sort:","space.","specif","state","state,","states.","stolen","storag","store","strategi","stream","structur","subscrib","support","sure","synchron","tab","take","team","third","time","time,","togeth","tricki","ui","updat","us","version","visual","way","web","websites,","window","work","{","})","});"],"install.html":["\"dependencies\":","\"git+https://git@github.com/pubkey/rxdb.git#commithash\"","\"rxdb\":","'@babel/polyfill';","'rxdb';","(window","*/","...","/*","=","@babel/polyfil","ad","add","angular","any).glob","any).process","assum","babel","base","before.","browser","browsers.","build","bundlers.","code","code.","commit.","commithash","continu","createrxdatabase,","debug:","defined.","depend","develop","env:","error","es5.","es8","exampl","file:","frameworks,","git","global","hash","here","here.","import","instal","javascript","latest","mean","need","new","nodej","npm","older","own,","package.json,","package.json.","peer","polyfil","polyfills,","pouchdb","referenceerror:","releas","replac","run:","runtim","rxdatabas","rxdb","rxdb,","rxj","save","specif","state","support","transpil","uncaught","undefin","us","variabl","webpack","window;","with:","{","}","},","};"],"rx-database.html":["$","'heroesdb',","'idb'","'localstorage');","'mydatabase',","'rxdb';","'websql',","(optional)","(optional=false)","(optional=true)","*/).then(()",".create()",".then(()",".then(json","/*","//","12","=","=>","actual","ad","adapt","adapter,","adapter.","adapter:","addrxplugin","addrxplugin(require('pouchdb","advantag","affect","algorithm","allow","app","app,","app.","assum","asynchron","at.","await","becom","befor","benefit","between","big","browsers,","browsers:","call","case","chang","characters.","check","checkadapter('localstorage');","checkadapter()","checkadapter,","cleanup","code","collect","common","compat","console.dir(changeevent));","console.dir(json));","console.dir(ok);","console.log('done'));","const","contain","continu","continuously.","cordova","couchdb","cpu.","creat","createrxdatabas","createrxdatabase({","creation","current","data","data.","databas","database,","database.","db","db1","db2","decrypt","defin","depend","destroy","destroy()","destroyed.","differ","directli","document.","done","dump","dump()","each","elect","electron","emptydatabase.importdump(json)","enabl","encrypt","environ","environment.","equal","error","event","eventreduc","events.","exampl","explicitli","export","fals","field","folder","follow","free","function","function.","given","gone","handl","have","here","idb'));","identifi","idl","idle.","ignoredupl","ignoreduplicate:","import","importdump()","in.","indexeddb","instanc","instance.","instead","intent","isrxdatabas","isrxdatabase(myobj);","it'","it.","javascript","json","know","leader.","learn","list","localstorage'));","main","memori","mistake,","module.","moment","more","ms","multiinst","multipl","mycollection.customcleanupfunction();","mydatabase.destroy();","mydatabase.dump()","mydatabase.dump(true)","mydatabase.remove();","mydatabase.requestidlepromise().then(()","mydatabase.requestidlepromise(1000","mydb.$.subscribe(changeev","name","name:","nativ","need","ness","new","nodej","not.","noth","notice:","now","object","observ","ok","on","optim","option","other.","out","paramet","parameters:","pass","password","perform","piec","pouchdb","pouchset","prevent","process,","promis","property.","queri","queries.","rare","react","read","realtim","recur","remov","remove()","removerxdatabas","removerxdatabase('mydatabasename',","replications.","requestidlecallback","requestidlepromise()","resolv","result","return","run","runtime,","rxdatabas","rxdatabase.","rxdb","rxdb,","rxj","same","semi","server","server()","serverless.","set","share","similar","singl","someth","spawn","speed","stop","storag","storage.","store","stream","string","switch","synchronis","task","tasks.","tests,","this.","through","throw","time","timeout","track","true","true.","two","uniqu","unit","up","updat","us","use.","veri","waitforleadership()","want","window","wipe","without","work","wrong.","{","}","});"],"rx-schema.html":["\"array\",","\"attachments\":","\"birthyear\":","\"color\":","\"damage\":","\"describ","\"description\":","\"encrypted\":","\"final\":","\"healthpoints\":","\"hero","\"items\":","\"maximum\":","\"maxitems\":","\"minimum\":","\"name\":","\"number\"","\"number\",","\"object\",","\"primary\":","\"properties\":","\"required\":","\"secret\":","\"skills\":","\"string\"","\"string\",","\"title\":","\"type\":","\"uniqueitems\":","\"version\":","'array',","'firstname',","'heroes',","'human","'integer',","'lastname']","'number'","'object',","'string'","//","0","0,","0.","100","1900,","20","2050","5","5,","8.0.0,","9]$","9_]*]?[a","=","[","[\"color\"],","[\"secret\"],","['firstname',","['secret']","^[a","access","accident","ad","add","additionalproperti","advantages:","age:","allow","alway","amount","anyway","array","attach","attribut","attribute.","await","befor","between","birthyear","chang","change.","collect","collection,","collection.","color","compression',","conform","console.dir(mydatabase.heroes.name);","const","contain","continu","creat","creation.","creditcards:","cvc:","damag","data","databas","database,","default","default.","default:","defin","definit","detection,","dev","disabl","disk","document","document,","document.","don't","done","dure","enabl","encrypt","encrypted,","encrypted.","encrypted:","ensur","error","even","everyth","exampl","example,","false.","familyname:","field","fieldnam","fieldnames,","fields.","fill","final","final,","final:","find","first","firstname:","follow","getter","greater","healthpoint","here","hero","hero\",","hero.","huge","improv","index","indexed,","indexes:","insert","insid","instantli","integ","internally,","invalid","it.","items:","json","jsonschema","keycompress","keycompression:","know","lastname:","later.","level","list,","looks.","make","map","match","maximum","mean","migrationstrategi","modifi","mydatabase.collection({","myheroschema","myschema","name","name:","nest","new","notic","notice:","number","number,","object","objects.","observ","over","pass","password","per","perform","popul","primary,","primary.","projects.","properti","properties:","provid","queri","regex","requir","required.","required:","run","rxattachment.","rxdatabase.","rxdb","rxdb,","rxdocument,","rxschema","save","schema","schema\",","schema.","schema.org.","schema:","schemawithdefaultag","schemawithfinalag","schemawithindex","secondari","secret","secret:","see","sens","set","settings:","simpl","singl","skill","space.","spec","standard","start","store","store.","string","string,","support","sure","team","temporari","therefor","things.","throw","title:","top","true","true,","type","type:","unencrypt","unique,","unset","us","valid","valu","value.","values.","version","version:","whenev","within","worry,","written","z0","z][[a","za","{","}","});","},","};"],"rx-collection.html":["$","$or","'alice',","'bar'","'bar1'","'bar2'","'bob'","'bob',","'foo',","'foo1',","'foo2',","'heroes',","'humans',","'kelso'","'kelso';","(optional)","(primari","*/","...",".collection()",".exec().then(doc",".exec();",".find()",".gt(18)",".insert()",".then(()",".then(json",".upsert()",".where('age')","/*","//","//>","18","409","77;","9]*$.","=","===","=>",">","[","[]","[rxdocument,","];","^[a","abov","allow","appli","array.","atom","atomicupsert()","attach","attachments,","attachments:","attribut","automat","automigr","automigrate:","await","basic","befor","behavior","belong","beta","better","between","big","bulk","bulkinsert","bulkinsert()","cach","cachereplacementpolicy:","call","chang","collect","collection'","collection,","collection.","collection2","collection2);","conflict","console.dir(changeevent));","console.dir(doc));","console.dir(docsmap);","console.dir(json));","console.log('done'));","console.log(collect","const","continu","couchdb","creat","custom","custoom","data","data.","databas","database,","database.","database:","db.collection({","db.heroes;","decrypt","defin","deleted,","destroy","destroy()","differ","directli","doc","docdata","docsmap","document","document,","document.","documents,","documents.","does,","done.","dump","dump()","each","easily.","emit","encrypt","error","error.","error:","errors,","especi","event","execut","exist","expect","export","fail","failur","fals","faster","field","fields.","fill","find","find()","findbyids$()","findbyids()","findone()","finish","firstname:","follow","form","free","full","function","function(){},","function.","generated.","given","handled.","help","here","here.","id","ident","identifi","import","importdump()","insert","insert$","insert()","insert.","inserted.","insid","instanc","instance.","isrxcollect","isrxcollection(myobj);","it.","javascript","json","key","known","last","lastname:","later","look","mani","map","map(2)","map.","match","mean","memori","method","method.","methods:","migrat","migration.","migrationstrategi","migrationstrategies:","mirgrat","more","much","multipl","mycollect","mycollection.$.subscribe(changeev","mycollection.atomicupsert(docdata);","mycollection.bulkinsert([{","mycollection.destroy();","mycollection.dump()","mycollection.dump(true)","mycollection.findbyids(ids);","mycollection.findone('foo')","mycollection.findone().where('name').eq('foo')","mycollection.importdump(json)","mycollection.insert$.subscribe(changeev","mycollection.insert({","mycollection.newdocument({","mycollection.remove$.subscribe(changeev","mycollection.remove();","mycollection.update$.subscribe(changeev","mycollection.upsert(docdata);","mycollection.upsert({","mydatabase.collection({","myschema","myschema,","name","name.","name:","name:foobar","need","never","new","newdocument()","newli","not.","notice.","notice:","now","object","observ","older","olderdocu","once,","oper","operations.","option","optional.","options:","orm","orm/drm.","otherwis","overwrit","overwritten","paramet","paramt","parrallel","pass","perform","plugin","polici","pouchdb","pouchset","pouchsettings:","prefil","prevent","previou","primari","primary,","property.","protocol.","queri","re","refind","regex:","remot","remov","remove$","remove()","replac","replic","replications.","result","return","run","running.","rxcollect","rxcollection.","rxcollection.newdocument(initaldata).","rxcollections,","rxdatabas","rxdb,","rxdocument","rxdocument.","rxdocument.atomicupdate.","rxdocument],","rxj","rxquery.find().","rxschema","rxschema.","same","save","schema","schema:","schemas,","schemaversions.","see","selector.","server","set","short","similar","simpl","singl","sometim","spawn","specifi","standard","statics,","statics:","still","stop","store","stream","success","success:","support","sync","sync()","tempdoc","tempdoc.ag","tempdoc.lastnam","tempdoc.save();","temporari","through","throw","time","times.","timespan,","transform","tri","true","true,","two","type","type.","uniqu","until","up","updat","update$","upsert","upsert()","us","valid","valu","value).","veri","version","versions.","wait","want","way","within","without","work","write.","z0","z][a","{","{}","{},","}","});","},","};","}]);"],"rx-document.html":["$","$inc:","$set:","'","'bar'","'carolina',","'foo',","'foobar'","'foobar');","'foobar';","'foobar2'","'foobar2');","'foobar2';","'foooobarnew'","'foooobarnew';","'gibson',","'h1rg9ugdd30o',","'name","'name'","'steve');","(olddata)","(via","*/","+","...",".find()",".insert()",".save()",".subscribe(changeev",".subscribe(newnam","/*","//","1","1;","3.","33","=","=>",">","_deleted:tru","access","ag","age:","anyth","assign","atomicset()","atomicupd","atomicupdate()","attribute.","automat","await","base","befor","belong","boolean","bound","call","chang","changed.","changeev","changefunct","changes.","collection'","collection,","collection.","compar","console.dir(changeevent));","console.dir(documents));","console.dir(isname);","console.dir(json);","console.log('nam","console.log(laststate);","console.log(mydocument.deleted);","console.log(mydocument.get('firstname'));","console.log(mydocument.name);","console.log(mydocument.nested.attribute);","const","continu","current","data","databas","decrypt","delet","deleted$","deleted$.","depend","describ","directli","directly.","doc","document","document'","document,","document.","each","emit","encrypted,","event","fals","field","find","firstnam","firstname:","foobar","function","function.","get$()","get()","getter","given","here","ident","increas","insert","inserts,","instanc","instance.","instead","is:","isnam","isname;","isrxdocu","isrxdocument(myobj);","json","jsx.","lastname:","laststat","life","mean","method","modifi","modifyjs.","mongo","mycollection.find().exec()","mycollection.insert({","mydocument.$","mydocument.atomicset('firstname',","mydocument.atomicset('name',","mydocument.atomicset('nested.attribute',","mydocument.atomicupdate(changefunction);","mydocument.deleted$.subscribe(st","mydocument.firstnam","mydocument.firstname$.subscribe(newnam","mydocument.get$('name')","mydocument.get('name');","mydocument.nam","mydocument.name;","mydocument.remove();","mydocument.save();","mydocument.set('firstname',","mydocument.tojson();","mydocument.update({","mydocument.whatever.nestedfield","mydocument.whatever.nestedfield;","mymethod.bind(mydocument)","name","name:","nest","nestedvalu","new","newname));","newname;","not.","note","notic","notice:","now","null;","object","object.","observ","observables:","olddata.ag","olddata.nam","olddata;","option","parameter.","passportid:","path","plain","pouchdb","properti","proxi","purg","queries.","record","relat","remov","remove()","result","return","returning.","rxdb,","rxdocument","rxdocument,","rxdocument.","rxj","rxquery.","save()","see","set","set()","set).","setter","singl","state);","stefe'","steve'","storag","store","submit","syntax,","table.","take","temporari","thing","time","tojson()","transform","true","updat","update()","us","useabl","valu","value,","value.","values.","var","whether","work","{","}","});","},"],"rx-query.html":["$","$.subscribe()","$eq:","$exists:","$inc:","$or","'","'%like%'","'.*foo.*'}","'fifoo'","'fifoofa'","'foo'","'foo'}","'foobar',","'foofa'","'got","'i');","*/});","+","...",".exec().then(docu",".find()",".findone()",".gt(18);",".sort('age')",".where('age')",".where()","//","1","18","19","5'","6'","=","=>",">","[","[rxdocument,rxdocument,rxdocument..]","afterwards.","ag","again","age:","allow","alway","array","await","basic","behaviorsubject","call","case","chain","chang","changed.","check","collect","collection.","composit","console.dir(documents));","console.dir(results);","console.log('got","const","continu","creat","current","data","database,","database.","databases,","delet","directli","doc","docs.","document","documentdata","documents.","doesdocumentdatamatch()","eg:","emit","equival","etc...","exampl","example:","exec()","exist","extrem","fals","fast","fe:","field.","find","find()","findon","findone()","foo","found","function","given","heavi","helpful","here","id:","immut","immutable.","increas","insensit","insert","instanc","instead","isrxqueri","isrxquery(myobj);","it,","keep","learn","less","mango","match","means,","methods.","mind","modifi","mqueri","mycollect","mycollection.find().where('age').gt(18).doesdocumentdatamatch(documentdata);","mycollection.find().where('age').gt(18);","mycollection.find().where('age').gt(20).doesdocumentdatamatch(documentdata);","mycollection.find().where('age').lt(18);","mycollection.find().where('name').eq('foo')","mycollection.find();","mycollection.find({","mycollection.insert({/*","name","name:","new","normal","nosql","not.","notice:","now","null","object","object,","observ","older","on","optimis","origin","over","pass","perform","possibl","pouch","previou","promis","queri","query.","query.$.subscribe(result","query.exec();","query.remove();","query.update({","queryobject","queryobject.exec();","queryobject.sort('name');","queryobjectsort","queryobjectsort.exec();","reactiv","read","regexp","regexp('^foo$',","regexp}}","remov","remove()","removeddoc","resolv","result","result.","results.length);","results:","return","run","rxdb","rxdb,","rxdocument","rxqueri","rxquery'","rxquery,","rxquery.","same","search","see","selector:","selectors.","set","set.","show","singl","sort","sql","state","statement","subscript","syntax","syntax.","this,","time.","togeth","true","ui","updat","update()","us","value.","var","without","write","written","youngest","{","{$eq:","{$or:","{$regex:","{name:","}","})","});","},","};","}]}"],"rx-attachment.html":["'cat.jpg'","'humans',","'image/jpeg'","'object',","(async)","(string)","(string|blob|buffer)",");",".","//","0,","=","=>","[];","ad","add","allattachments$","allattachments()","array","assign","attach","attachment'","attachment.","attachment.getdata();","attachment.getstringdata();","attachment.remove();","attachments,","attachments:","attributes/methods.","await","befor","better","binari","blob","blobbuff","buffer.","const","continu","data","data,","data.","db","digest","doc","document.","documents.","done.","each","emit","encrypt","encrypted:","ensur","exist.","files,","follow","get","getattachment()","getdata()","getstringdata()","here","higher","id","id,","id.","imag","length","limit","md5","mycollect","mydatabase.collection({","mydocument.allattachments$.subscribe(","mydocument.allattachments();","mydocument.getattachment('cat.jpg');","mydocument.putattachment({","myschema","name","name:","new","null","number","number.","object","observ","password","perform","pouchdb,","promis","properties:","putattachment()","quota","re","regular","remov","remove()","repres","resolv","return","rev","revis","rxattach","rxcollection.","rxdb","rxdb,","rxdocument","rxdocument.","schema","schema:","set","side","store","stream","string","string,","string.","sum","time","to.","true","true,","type","type:","us","version:","want","whatev","{","}","});","},","};"],"middleware.html":["'anyvalue';","'foobar'","'foobar',","'myfield',","()","(also","//","100));","50","50;","=","=>","action","add","ag","alreadi","another.","anyfield","async","asynchron","asynchronous.","atom","attribut","avoid","await","befor","behavior","bind","block","cach","call","case","certain","chang","clear","code.","collection.","complex","console.log(doc.myfield);","const","constructed.","continu","control","creat","custom","data","databas","database.","default","defin","delet","depend","differ","doc","document","document.","documents.","dure","emit","error('stop');","error.","event","execut","false);","field","field,","first","flexibl","follow","function","functions.","get:","getter/sett","happen","help","here","hook","hook,","hook?","hooks)","hooks:","ideas:","insert","instanc","instance.","interact","lastnam","level","lifecycl","list","logic","make","mean","middlewar","model","modifi","mongoose,","mongoose.","mycollection.findone().exec();","mycollection.postcreate(function(plaindata,","mycollection.postinsert(function(plaindata,","mycollection.postremove(function(plaindata,","mycollection.postsave(function(plaindata,","mycollection.preinsert(function(plaindata){","mycollection.preremove(function(plaindata,","mycollection.presave(function(plaindata,","nest","new","notice:","notif","object","object.defineproperty(rxdocument,","on","oper","parallel","parameter,","parameter.","pass","plain","plaindata.ag","plaindata.anyfield","post","postcreat","postinsert","postremov","postsav","pre","preinsert","preremov","presav","promise(r","promise.","receiv","remov","removed.","return","run","rxcollect","rxcollection.insert","rxdatabas","rxdb","rxdb,","rxdocument","rxdocument){","rxdocument,","rxdocument.remov","rxdocument.sav","save","saved.","schema","second","seri","set","settimeout(res,","specif","specifi","stop","structur","support","sure","synchron","task","therefor","throw","trigger","true);","updat","us","usag","valid","valu","want","way","whenev","whole","written","{","});","},"],"orm.html":["'","'!!';","'aaah!!'","'aaah!!';","'cat.txt',","'heroes'","'heroes',","'i","'meow","'skeletor'","'text/plain'","+","//","=","add","attach","attachments:","await","behavior","call","capabl","collect","collection.","collection:","collections.","console.log(attachment.scream());","console.log(doc.scream());","console.log(doc.whoami());","console.log(heroes.scream());","console.log(heroes.whoami());","const","contain","continu","creat","data","data:","defin","doc","doc.putattachment({","document","function","function(){","functions,","here","hero","heroes.findone().exec();","heroes.insert({","id:","instanc","keyword","keyword:","kitty',","map","method","methods:","mongoose,","mydatabase.collection({","myschema,","name:","names.","new","object","orm","orm/drm","pass","relat","resolv","return","rxattachemnt","rxdb","rxdb,","rxdocument","schema:","scream:","skeletor!!'","specif","static","statics:","this.nam","this.name;","type:","us","whoami:","wide","wide.","{","}","});"],"population.html":["'alice'","'alice',","'array',","'bob',","'carol'","'carol',","'dave'","'human","'human'","'human',","'object',","'string'","'string',","(primari","//","//>","//[insert","0,","=","[","['string','null']","]","_","add","alway","anoth","array","array.","attribut","await","belong","bestfriend","bestfriend:","collect","collections.","come","console.dir(bestfriend);","console.dir(friends);","console.dir(mother);","const","continu","database.","describ","direct","doc","doc.bestfriend_;","doc.populate('bestfriend');","document","exactli","exampl","export","family:","field","fieldname.","foreign","found.","friend","friends:","getter","getter.","here","here]","human","human',","humanscollection.findone('alice').exec();","humanscollection.findone('bob').exec();","humanscollection.insert({","in.","items:","join","keyword","mani","method","method.","mongoose.","mother","mother:","mycollect","mycollection.insert({","mydatabase.collection({","mydocument.family.mother_;","mydocument.friends_;","name:","nest","new","notic","null","on","path","popul","populate()","primary:","promis","properties:","ref","ref:","refer","referenc","refhuman","relat","resolv","return","rxcollect","rxdb","rxdb,","rxdocument","rxdocument)","rxdocument,","rxdocument[alice]","same","schema","schema:","schemawithonetomanyrefer","sometim","specifi","still","string","suffix","take","therefor","title:","to.","true","true,","type:","underscor","underscore_","us","valu","values.","version:","via","want","work","{","}","});","},","};"],"data-migration.html":["'bi","'messages',","'sendercountry'","(or","(string)","(version:",");","*","*/",".migratepromise():",".then(respons","/**","//","0","0,","0.","02","1","12","12t23:03:05+00:00","1486940585","1:","2","2)","2017","2:","50,","=","=>","accomplish","add","alreadi","alway","amount","app","appear","assigned.","assur","asynchron","automat","automigr","automigrate:","await","awesom","bar.","better","call)","chang","client'","code","collect","collection,","collection.","combin","compar","console.dir(state),","console.error(error),","console.log('done')","const","continu","coordin","countri","created.","creation","data","data.","datamigr","date","date(olddoc.time).gettime();","dates.","decid","default,","defin","delet","deleted:","devic","distribut","doc","document","don't","done","done:","easier","emit","error","exist","false,","fetch('http://myserver.com/api/countrybycoordinates/'+coordinates+'/')","field","filter","finish","function","function(olddoc){","get","greater","hand'","handl","handled:","happen","here","hint","if(olddoc.tim","imagin","incom","increas","instead","leaderelect","load","long","look","lot","make","mani","match","means,","messag","messagecol","messagecol.migratepromise(10);","messages.","messageschemav1,","messeng","migrat","migrated.","migrated:","migratepromise;","migrationpromis","migrationstrategi","migrationstrategies:","mydatabase.collection({","name:","new","new,","newer","newest","null,","number","object","old","olddoc.coordinates;","olddoc.sendercountry=response;","olddoc.tim","olddoc;","older","on","open","paramet","percent:","percentag","problem","promis","properti","provid","remains:","remov","requir","resolv","resourc","respons","response.json();","return","run","rxdb","rxdb,","save","schema","schema'","schema:","schema?","schemas.","sender","server","show","start","state","strategi","string","succeed","success:","sure","tabs.","take","this,","this:","time,","timestamp","total:","transform","true","unix","upon","us","used:","user","user'","user,","users'","users.","version","version,","version.","want","wast","while,","{","}","});","},"],"leader-election.html":["'dies'.","'localstorage',","'mypassword',","'temperature',","'weatherdb',","*",".then(()","//","10","10);","1000","5","6*5=30","=","=>","access.","adapter:","algorithm","alway","api","await","becom","befor","between","broadcast","browser","build,","case","channel","charts,","check","client","closed,","closed.","code","collection.","come","conflict","connections.","console.log('long","const","continu","corner.","count","createrxdatabase({","crown","current","data","data,","date().gettime()","db","db.collection({","db.temperature.insert({","db.waitforleadership()","degrees:","device,","differ","display","easy,","elect","exact","exactli","exampl","fetch('https://example.com/api/temp/');","hand","heatmaps.","here","imagin","implement","inspect","instanc","instances.","javascript","king!');","lead","leader","leader,","leader.","leaderelect","live","locat","machine.","make","manag","mani","mark","matter","messag","minute.","module.","moment","more","multiinstance:","multipl","mupltipl","myschema","name:","new","nodej","notic","now","number","old","on","once.","open","out","over","password:","per","pleas","polling.","power","process","produce,","pull","read","reassign","redund","remot","replic","resourc","right","run","runtime.","rxdb","rxdb,","same","save","schema:","second","seconds.","see","send","sent","server","site","solut","solv","start","stay","sure","system","tab","tab.","tabs,","temp","temp,","temperatur","ten","them,","these","thing","this,","time","time:","top","traffic","tri","true","until","us","usag","vanillaj","variou","via","visitor","wait..","wast","way","websit","websocket","wire","you.","{","});","},","♛"],"replication.html":["'http://localhost:10102/db/',","(default)","(e.g.","(optional)","(remot","//","=","=>","[default=true]","active$","adapt","add","addrxplugin(require('pouchdb","aliv","alive$","anoth","async","await","basic","between","call","cancel","cancel()","chang","change$","collect","complete$","complete.","completed.","completes.","connect","console.dir(active));","console.dir(alive));","console.dir(change));","console.dir(completed));","console.dir(docdata));","console.dir(error));","const","continu","couchdb","couchdb,","couldn't","data","data.","database)","database,","database.","databases.","db.","default=tru","denied$","depend","di","died.","dies.","direct","direction:","docs$","document","due","dure","each","emit","enabl","error","error$","event","example.","fail","fals","featur","handler","here","here.","http","http'));","https://pouchdb.com/api.html#repl","immedi","impli","instanc","instance,","intern","leader","live:","make","match","method","mycollection.find().where('age').gt(18)","mycollection.sync({","need","never","new","observ","occur","on","option","options:","over","pend","performance,","permissions).","plugin","pouch/couch","pouchdb","power","properli","pull:","push:","queri","query:","recogn","remot","remote:","replic","replicated.","replication,","replication.","replicationst","replicationstate.active$.subscribe(act","replicationstate.alive$.subscribe(al","replicationstate.cancel();","replicationstate.change$.subscribe(chang","replicationstate.complete$.subscribe(complet","replicationstate.denied$.subscribe(docdata","replicationstate.docs$.subscribe(docdata","replicationstate.error$.subscribe(error","retry:","return","rx.collection.sync()","rxcollect","rxcollection,","rxcollection.sync()","rxcollection.sync().","rxdb","rxdb,","rxj","rxreplicationst","same","save","serverurl,","specifi","start","stream.","sure","sync","sync.","synchronis","time","transmit","true","true,","us","valu","via","waitforleadership:","won't","you'r","{","});","},"],"replication-graphql.html":["!==","\"${doc.name}\",","\"alice\",","\"deleted\":","\"foobar\",","\"id\":","\"lastname\":","\"name\":","\"updatedat\":","\"wilson\",","$human)","${doc.updatedat},","'',","'deleted',","'http://example.com/graphql',","'new'","'rxdb/plugins/repl","'subscript","'ws://example.com/subscriptions',","(!doc)","(a.id","(a.updatedat","(beta)","(doc.id","(doc.updatedat","(graphql","(optional)","(or",");","*","*/",".active$",".awaitinitialreplication()",".cancel()",".canceled$",".error$",".isstopped()",".recieved$",".run()",".send$",".setheaders()","/","/**","//","0","10","1000","1000);","1564783474,","1;","5)","5,","60","=","===","=>",">","[human!]!","`","`...`","`;","`subscript","`{","abov","addrxplugin(rxdbreplicationgraphqlplugin);","again","allow","alway","amount","arg","args.human;","args.lastid)","args.limit);","args.minupdatedat)","around,","assum","authorization:","autmat","automat","automatically,","await","b)","b.id)","b.updatedat)","back","batch","batchsize:","befor","boolean!","build","builder","call","called.","cancel","canceled,","canceled.","case,","caus","chang","changeobserv","changeobservable.subscribe({","changes,","check","client","client.","compar","comparison","compliant","conflict","conflict,","conflicts,","cons:","console.dir(error);","console.log('initi","console.log('someth","const","construct","continu","couchdb","cours","creat","createhuman($human:","cycl","d","d.id","data","data');","data.","databas","date","date().gettime()","debug","debugging.","default","delet","deleted,","deleted:","deletedflag:","design","destroyed.","developer.","do","doc","doc.id);","doc.updatedat","doc;","document","document.","documents,","documents.","documents.filter(d","documents.push(doc);","documents.sort((a,","done","done,","done.","down","download","dure","each","emit","endpoint","endpoint,","endpoint.","ensur","equal","equal,","error","even","event","events,","exampl","example)[https://github.com/pubkey/rxdb/tree/master/examples/graphql]","exist","fals","false,","false;","faster","feedforrxdbrepl","feedforrxdbreplication(lastid:","feedforrxdbreplication:","fetch","filterforminupdatedatandid.slice(0,","finish","first","flag","flags.","full","function","functions.","gener","get","given","graphql","graphql';","graphqlschemafromrxschema(),","handel","handl","handler","happen","happens,","header","height","helper","here","here,","human","human:","humanchang","humaninput","humaninput)","humaninput):","id","id!,","id,","id:","import","improv","indic","initi","input","input.","inspect","int!):","int!,","internally.","interv","it'","it.","known","last","lastname,","lastname:","later","latest","learn","less","let","like:","limit","limit:","limited;","list","live","live:","liveinterv","liveinterval:","logic","look","mani","math.round(new","mean","minupdatedat:","modifi","modifier:","multipl","mutat","mycollection.syncgraphql()","mycollection.syncgraphql().","mycollection.syncgraphql({","name,","name:","need","network","never","new","newer","next(data)","non","not.","notice:","notifiers,","null","object","object).","observ","offlin","offline,","on","one,","ongo","onhumanchang","onlin","out","part","play","pleas","plugin","problem","promis","pros:","provid","pull","pull:","pullquerybuild","pullquerybuilder,","pullquerybuilder.","pullquerybuilderfromrxschema()","push","push:","pushquerybuild","pushquerybuilder,","pushquerybuilderfromrxschema()","queri","query,","querybuild","querybuilder,","querybuilder.","querybuilder:","queu","realtime.","reciev","recommend","reconnect:","relat","reli","replic","replication,","replication.","replicationst","replicationstate.","replicationstate.awaitinitialreplication();","replicationstate.cancel();","replicationstate.error$.subscribe(error","replicationstate.isstopped();","replicationstate.run();","replicationstate.setheaders({","resolut","resolv","resourc","result","return","revis","rootvalu","row","run","run()","rxcollect","rxdatabas","rxdb","rxdb,","rxdb.","rxdbreplicationgraphqlplugin","rxgraphqlreplicationst","rxjsonschema.","same","schema","second","send","server","server,","server.","set","set.","sethuman(human:","sethuman:","setup","side","side,","side.","singl","skip","solv","someth","something,","soon","sort","sortabl","sorteddocu","sourc","start","state","still","stopped.","string!,","subscrib","subscript","subscriptioncli","subscriptionclient(","sync","systems.","take","them,","thing","this,","time","transport","trigger","true","true,","true/fals","true;","truth","two","type","until","up.","updat","updatedat","updatedat.","updatedat:","url","url:","us","usag","user","value.","variabl","variables:","veri","watch","way","will,","work","worst","wrong');","ws';","wsclient","wsclient.request({","{","{}","}","});","},","};","}`;"],"in-memory.html":["'bar'});","'npm","'pouchdb","(all","//","=","adapt","add","addrxplugin(pouchadaptermemory);","amount","anoth","apply.","attach","automat","await","awaitpersistence()","befor","behav","both.","call","case","chang","collect","collection,","collection.","collections.","comput","cons:","const","continu","creation","data","decrypt","disc","doc","document","drive.","encrypt","enough","equal","event","everyth","faster","field","fields.","fire","fit","hard","heavi","here","hook","import","important:","inherit","initi","inmemori","inmemorycollection,","insid","instal","instead","it'","know","load","longer","mean","memcol","memcol.awaitpersistence();","memcol.find().exec();","memcol.insert({foo:","memori","memory';","memory)","mycollect","mycollection.inmemory();","new","now","on","oper","optim","origin","over","parent","pouchadaptermemori","pouchdb","promis","pros:","queri","regist","replic","replicated,","resolv","result","return","run","rxcollect","rxcollection().awaitpersistence()","rxcollection().inmemory();","rxcollection,","rxdb,","same","save'","separ","share","small","static","store","stream.","support","sure","take","them,","time","two","u","until","updat","us","version","want","way","work","write","you'd"],"query-cache.html":["'humans',","*/","...","/*","100","30","=","accord","add","again","algorithm","alway","appli","applic","attribut","await","backward","between","cach","cache.","cachereplacementpolicy.","cachereplacementpolicy:","case","chang","clean","clear","code","collect","const","contain.","continu","count","creat","custom","data","databas","default","default.","defin","depend","desir","differ","document","enough","especi","even","event","execut","execution.","fill","first","function","function(){","get","good","happen","have","here","however,","idle.","implement","instanc","instead","itter","javascript","javascript,","last","less","longer","look","make","mani","memory,","move","much","mydatabase.collection({","myschema,","name:","never","new","normal","now","occur","older","on","one.","optim","optimization,","over","page","paramet","peopl","polici","policy,","possibl","prefer","problem,","queri","queries.","querycach","reduc","refer","referenc","regularly,","replac","result","results.","reus","rout","run","runtime.","rxcachereplacementpolicy.","rxcollect","rxcollection,","rxdb","rxdb,","rxqueri","same","schema:","second","second.","sens","sense.","start","still","subscrib","subscript","therefor","time","times.","tri","two","type","ui","uncach","uncacherxquery(rxquery).","up","us","user","valuabl","variables.","without","work.","}","});"],"rx-local-document.html":["'bar'","'bar');","'bar';","'bar2');","'foobar',",");","*/","..","/*","//","=","=>","access","addit","alreadi","attach","await","behav","chang","class","collect","collection.","come","const","continu","creat","data","databas","document","documents.","exist","exists.","field","find","foo","foo:","found","getlocal()","handi","handl","here","id","id.","insertlocal()","it'","local","localdoc","localdoc.foo","localdoc.foo;","localdoc.get$('foo').subscribe(valu","localdoc.get('foo');","localdoc.remove();","localdoc.save();","localdoc.set('foo',","localdocu","match","metadata.","migrat","mycollection.getlocal('foobar');","mycollection.insertlocal(","mycollection.upsertlocal(","mydatabase.insertlocal(","new","next","normal","notice:","null","observ","overwrit","promis","proxi","pseudo","queri","remov","replic","resolv","return","rxcollect","rxdatabas","rxdb,","rxdocument.","rxlocaldocu","rxlocaldocument.","same","schema","schema,","set","special","store","throw","undefin","upsertlocal()","us","via","want","work","work!","work.","works!","{","}","});"],"custom-build.html":["'npm","'rxdb/plugins/adapt","'rxdb/plugins/ajv","'rxdb/plugins/attachments';","'rxdb/plugins/core';","'rxdb/plugins/dev","'rxdb/plugins/encryption';","'rxdb/plugins/in","'rxdb/plugins/json","'rxdb/plugins/key","'rxdb/plugins/lead","'rxdb/plugins/loc","'rxdb/plugins/migration';","'rxdb/plugins/no","'rxdb/plugins/queri","'rxdb/plugins/repl","'rxdb/plugins/replication';","'rxdb/plugins/server';","'rxdb/plugins/update';","'rxdb/plugins/valid","'rxdb/plugins/validate';","'rxdb/plugins/watch","'unsaf","*/","*/});","...","/*","//","activ","adapt","add","addit","addrxplugin","addrxplugin(rxdbadaptercheckplugin);","addrxplugin(rxdbajvvalidateplugin);","addrxplugin(rxdbattachmentsplugin);","addrxplugin(rxdbdevmodeplugin);","addrxplugin(rxdbencryptionplugin);","addrxplugin(rxdbinmemoryplugin);","addrxplugin(rxdbjsondumpplugin);","addrxplugin(rxdbkeycompressionplugin);","addrxplugin(rxdbleaderelectionplugin);","addrxplugin(rxdblocaldocumentsplugin);","addrxplugin(rxdbmigrationplugin);","addrxplugin(rxdbnovalidateplugin);","addrxplugin(rxdbquerybuilderplugin);","addrxplugin(rxdbreplicationgraphqlplugin);","addrxplugin(rxdbreplicationplugin);","addrxplugin(rxdbserverplugin);","addrxplugin(rxdbupdateplugin);","addrxplugin(rxdbvalidateplugin);","addrxplugin(rxdbvalidatezschemaplugin);","addrxplugin(rxdbwatchforchangesplugin);","advantag","ajv","allow","altern","alway","anoth","applications.","attach","bandwidth","basic","batteri","befor","better","bigger","bit","both","browser","build","build,","build.","builder","builder';","builds.","call","chang","changeev","changes';","changes.","changestream.","check","check';","checkadapt","cherri","choos","collect","collection,","collections.","compat","compliant","compress","compression';","content","continu","core","core,","couchdb","creat","createrxdatabase,","crypto","custom","data","databas","database.","databases.","decreas","default","default,","dev","develop","disablekeycompress","disadvantag","document","documents';","doesn't","don't","done","dump","dump';","elect","election';","electron","emit","enabled.","encrypt","endpoint.","environment.","error","eval'","eval()","eval.","expos","express","extend","fast","faster.","featur","full","function","functionality.","graphql","graphql';","handl","here","hook","import","import/export","imported.","includ","increas","input","insert","instal","instanc","instead.","integr","intern","internet,","it.","javascript,","js","json","jsonschema","key","keycompress","keycompressor","leader","leaderelect","leaderelection.","let","local","lot","make","mani","manual","mean","meant","memori","memory';","messages.","migrat","mode","mode';","mode.","models,","modul","module,","module.","more.","mycollection.find().where('x').eq(5)","myrxcollection.pouch.put({/*","myrxcollection.watchforchanges();","need","need.","never","new","node","normal","not.","noth","now","on","onc","option","origin","overwrit","part","parti","password.","perform","performance.","pick","plugin","plugin.","policies.","pouchdb","pouchdb'","product","production.","provid","queri","react","realli","reduc","reli","replic","requir","required.","run","rxdatabase.","rxdb","rxdb'","rxdb,","rxdb.","rxdbadaptercheckplugin","rxdbajvvalidateplugin","rxdbattachmentsplugin","rxdbdevmodeplugin","rxdbencryptionplugin","rxdbinmemoryplugin","rxdbjsondumpplugin","rxdbkeycompressionplugin","rxdbleaderelectionplugin","rxdblocaldocumentsplugin","rxdbmigrationplugin","rxdbnovalidateplugin","rxdbquerybuilderplugin","rxdbreplicationgraphqlplugin","rxdbreplicationplugin","rxdbserverplugin","rxdbupdateplugin","rxdbvalidateplugin","rxdbvalidatezschemaplugin","rxdbwatchforchangesplugin","rxdocument.","rxdocument.upd","rxquery.update.","save","schema","schema';","secur","see:","server","set","setup","size","size,","size.","spawn","standart","start","sth","support","sure","tell","therefor","thing","third","this,","this:","timestamps,","true","tutorial:","updat","us","util","valid","valid.","validate';","validation.","values,","view","want","watch","whose","window.","write","z","{","}"],"plugins.html":["!==","&&","'bar'","'foo'.","'mycollection.hello()'","'string'","'world';","()=>'bar'","(password","(proto)","*","*/","/**","//","=","=>","@link","@param","ad","add","addit","afterward","alway","anyth","avail","basic","call","call.","class","classes,","code","collect","collection.options.foo();","const","contain","continu","correspond","creat","data","don't","each","exist","extend","fill","find","foo:","function","function(){","function(password)","get","here","here.","hook","hooks.","https://github.com/pubkey/rxdb/blob/master/src/plugin.ts#l22","insid","intern","it.","javascript","jump","keynam","know","list","list:","manipul","manipulate.","method","method,","modifi","mydatabase.collection({","myplugin","myschema,","name:","new","object","object.","option","options:","overwrit","overwritable:","overwritten","paramet","parameter,","pass","password","password.length","plugin","plugin.","plugins:","pouchdb","properti","proto.hello","prototyp","prototypes:","requir","return","rxcollect","rxcollection:","rxdatabas","rxdb","rxdb'","rxdb,","rxdb:","schema:","see","set","signal","simple.","sometim","static","static.","these","time","true","true,","true.","typeof","us","validatepassword:","valu","veri","want","{","{object}","||","}","})","},","};"],"adapters.html":["'/root/user/project/mydatabase',","'base","'cordova","'idb'","'indexeddb'","'memory'","'mydatabase',","'node","'pouchdb","'react","'rxdb';","'websql'","(!global.atob)","(!global.btoa)","(new)","/","//","2","2'","2.","64","64'","=","abstract","access","adapt","adapter.","adapter:","adapters.","add","addrxplugin(require('pouchdb","addrxplugin(sqliteadapter);","addrxplugin,","advantag","alway","asyncstorag","asyncstorage'","asyncstorage'));","asyncstorage.","asyncstoragedown","avoid","await","base","behav","behavior.","best","better","between","bind","browser","build","c++","cases.","choos","claim","code.","compar","const","contain","continu","cordova","cordova'","cordova.sqliteplugin.","core","createrxdatabas","createrxdatabase({","data","databas","database.","decode,","decode;","default.","defin","depend","deprecated.","differ","down","down');","edg","encod","encode;","ensur","environ","environment,","event","exampl","faster","files.","filesystem","filesystem.","first","folder","full","global","global.atob","global.btoa","good","here","http'));","idb","idb'));","implement","import","in,","includ","indexeddb","indexeddb'));","indexes.","insid","instal","it'","it,","it.","itself","javascript","known","leveldb","leveldb'));","leveldown","library.","link","lost","mean","memdown","memori","memory'));","memory.","modul","much","multipl","name","name:","nativ","native'","native.","need","new","node","nodej","notice:","npm","otherwis","over","overview","package.json.","page","perform","persist","phonegap","pleas","plugin","polyfil","pouchdb","problem","process","process.brows","react","reactn","realli","reason.","recommend","reimplement","require('asyncstorag","require('leveldown');","require('memdown');","runtim","rxdb","rxdb,","same","save","secondari","self","shim","specif","sqlite","sqlite'","sqlite'));","sqliteadapt","sqliteadapterfactori","sqliteadapterfactory(sqlite)","state,","step","storage.","store","stored.","strang","suit","terminates.","test","true;","tutorial.","unless","us","version","want","websql","websql'));","websql.","when:","where.","work","{","}","});"],"tutorials/typescript.html":["'","'describ","'heroes',","'human","'integer'","'lastname']","'memory'","'mydb',","'myid',","'object',","'piotr',","'potter',","'rxdb';","'string'","'string',","()","(v9+)","(v:",")",");","*","*/","+","/**","//","0,","5","=","=>","['firstname',","access","adapter:","add","age:","age?:","alldoc","alldocs.length;","amount:","anyth","async","await","base","basic","befor","being',","bound","clean","collect","collection.","collection:","collections,","come","console.log('insert","console.log(amount);","console.log(hero.firstname);","const","contain","continu","countalldocuments:","creat","createrxdatabase({","createrxdatabase,","data","databas","database,","database.","declar","defin","description:","directli","doc.firstname);","doc:","docdata:","document","document.","documents.","else,","fals","first","firstname:","fulli","function","function(this:","gener","go","helper","here","hero.scream('aah!');","hero:","herocollect","herocollection)","herocollection,","herocollectionmethod","herocollectionmethods:","herodocmethod","herodocmethods,","herodocmethods:","herodoctyp","herodoctype,","herodocu","herodocument,","herodocument.","heroes:","heroschema,","heroschema:","higher.","hook","human","import","insert","instal","it'","it.","json","jsonschema","keycompression:","lastname:","latest","learn","look","make","mani","merg","method","methods,","methods:","mydatabas","mydatabase.collection({","mydatabase.destroy();","mydatabase.heroes.countalldocuments();","mydatabase.heroes.insert({","mydatabase.heroes.postinsert(","mydatabase:","mydatabasecollect","mypostinserthook(","name:","new","now","number","number;","on","option","orm","passportid:","postinsert","primary:","promise;","properti","properties:","represent","requir","required:","return","rxcollection,","rxcollection;","rxdatabase,","rxdatabase;","rxdb","rxdb,","rxdb.","rxdocument","rxdocument,","rxdocument;","rxjsonschema","rxjsonschema,","schema","schema',","schema:","scope","scream:","screams:","sever","static","statics:","string)","string;","them.","this.find().exec();","this.firstnam","this.nam","this:","title:","true","true,","tutori","type","type:","typed!","types,","typescript","typescript.","up","us","v3.8","version","version:","way","what.touppercase();","what:","{","}","});","},","};"],"tutorials/server.html":["'/',","'/db',","'/tmp/rxdb","'bar'","'clientdb',","'foo',","'http://localhost:3000/db/items'","'items',","'memory'","'mydb',","'object',","'pouchdb","'rxdb';","'rxdb/plugins/server';","'string'","'string',","()","(default)","(optional)","(optional),","(req,","*","/","//","0,","3000,","3000`));","=","=>","access","adapt","adapter:","add","addrxplugin","addrxplugin(memoryadapter);","addrxplugin(pouchhttpplugin);","addrxplugin(rxdbserverplugin);","addrxplugin,","allow","api","app","app);","app.","await","befor","besid","between","bigger","build.","client","client.","clientdb","clientdb.collection({","clientdb.items.find().exec();","clientdb.items.sync({","collect","collection.","come","config.json","configur","console.log(`serv","const","continu","cor","cors,","cors:","couchdb","creat","createrxdatabas","createrxdatabase({","data","databas","db","db.collection({","db.items.insert({","db.server({","default","defin","develop","disabl","doc","document","document.","electron","enabl","ensur","everyth","express","express();","fals","false,","fast","folder","forc","have","header","here","http","http';","http://localhost:3000/db","http://localhost:3000/db/item","import","info","inmemoryconfig:","insert","instal","instanc","internet,","it.","key:","learn","listen","log","log.txt'","logpath:","main","mainapp","mainapp.listen(3000,","mainapp.use('/',","mainapp.use('/db',","memori","memory';","memoryadapt","middlewares...","mode","modul","module.","mount","myschema","name:","need","never","new","node","node,","nodej","now","npm","ok,","omit","on","open","openli","option","options,","over","part","path:","plugin","port","port:","pouchdb","pouchdbexpressopt","pouchdbexpressoptions:","pouchhttpplugin","primary:","probabl","process","production.","properties:","prototyp","real","relic","remote:","render","replic","res)","res.send('hello'));","rxdb","rxdb,","rxdb.","rxdbserverplugin","same","save","schema:","server","server.","server}","set","simul","spawn","specif","spin","start","startserv","startserver:","tmp","true","true,","tutori","type:","up","us","useful","value:","version:","want","without","work","worked,","write","{","{app,","}","});","},","};"],"questions-answers.html":["&","'adapter');","'heroesdb'","+","1","ad","adapt","add","anoth","answer","appropri","befor","bug","call","can't","caus","chang","check'","collect","collection():","collection,","collection.","creat","data","databas","date().gettime()","db","debug,","develop","differ","document","each","error","error.","error:","follow","hard","increas","insid","instanc","it.","make","match","mean","memori","migrationstrategi","mode,","modifi","name","name:","new","now","on","perman","product","question","removerxdatabase('mydatabasename',","reset","restart","run","rxdatabas","rxdb","safe","save","schema","schema,","schema.","simplifi","sometim","strang","strategies:","suffix","throw","timestamp","us","version"],"contribute.html":["&&","(anyth","7","ad","add","ask","befor","bug,","bugfix","build","cd","change.","changes,","check","clone","commit","community.","console.","contribut","contributing!","contribution,","creat","depend","dev","develop","developing,","device,","discuss","dist","doc","docs:instal","docs:serv","document","don't","ensur","everyth","expect","expected.","featur","feature,","file","file.","flow","folder)","folder.","following:","for,","get","git","gitter.","grate","help","higher","http://localhost:4000/","https://github.com/pubkey/rxdb.git","instal","integr","issu","it.","leav","locally,","made","make","manual","merg","modifi","need","nodej","non","npm","open","pr","pull","read","repositori","reproduc","request,","requir","run","rxdb","slow","sourc","src","start","sure","test","test/unit","test:nod","tests,","thank","time","time.","to,","togeth","trivial","unit","version","want","wast","work","work."]},"length":25},"tokenStore":{"root":{"0":{"2":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.014010507880910683},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0121580547112462},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"1":{"0":{"0":{"0":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},")":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387}}}}}},"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}},")":{"docs":{},";":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"2":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"t":{"2":{"3":{"docs":{},":":{"0":{"3":{"docs":{},":":{"0":{"5":{"docs":{},"+":{"0":{"0":{"docs":{},":":{"0":{"0":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"4":{"8":{"6":{"9":{"4":{"0":{"5":{"8":{"5":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"5":{"6":{"4":{"7":{"8":{"3":{"4":{"7":{"4":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"8":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}},"9":{"0":{"0":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},"docs":{}},"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}},"2":{"0":{"1":{"7":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},"docs":{}},"5":{"0":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},"docs":{}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}},"3":{"0":{"0":{"0":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}},"`":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}},"docs":{}},"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}},"3":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"4":{"0":{"9":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"docs":{},"%":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}},"docs":{}},"5":{"0":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"6":{"0":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"4":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}},"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},"*":{"5":{"docs":{},"=":{"3":{"0":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"docs":{}},"docs":{}}},"docs":{}}},"7":{"7":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"8":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},"docs":{}}},"docs":{}}},"9":{"docs":{},"]":{"docs":{},"$":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},"*":{"docs":{},"$":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}},"_":{"docs":{},"]":{"docs":{},"*":{"docs":{},"]":{"docs":{},"?":{"docs":{},"[":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}},"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013054830287206266}},"'":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}},")":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"@":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"'":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.007952286282306162},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}}}},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"j":{"docs":{},"v":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"o":{"docs":{},"c":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}}}},"h":{"1":{"docs":{},"r":{"docs":{},"g":{"9":{"docs":{},"u":{"docs":{},"g":{"docs":{},"d":{"docs":{},"d":{"3":{"0":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},"docs":{}},"docs":{}}}}}},"docs":{}}}},"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622}}}}}},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"population.html":{"ref":"population.html","tf":0.00303951367781155},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}},",":{"docs":{"population.html":{"ref":"population.html","tf":0.015197568389057751}}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"1":{"0":{"1":{"0":{"2":{"docs":{},"/":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"'":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"3":{"0":{"0":{"0":{"docs":{},"/":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"'":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009174311926605505}},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"d":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"/":{"docs":{},"j":{"docs":{},"p":{"docs":{},"e":{"docs":{},"g":{"docs":{},"'":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},"]":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.01634472511144131}}}}}}}}}}},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"(":{"docs":{},")":{"docs":{},"'":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}},"e":{"docs":{},"o":{"docs":{},"w":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}}}}}}}},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{},"'":{"docs":{},";":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"population.html":{"ref":"population.html","tf":0.0060790273556231}}}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"population.html":{"ref":"population.html","tf":0.00911854103343465}}}}}}}},"n":{"docs":{},"y":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}},"a":{"docs":{},"a":{"docs":{},"h":{"docs":{},"!":{"docs":{},"!":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013761467889908258}},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013761467889908258}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},"f":{"docs":{},"a":{"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}},"o":{"docs":{},"o":{"1":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"2":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.011135857461024499}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},"}":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}},"b":{"docs":{},"a":{"docs":{},"r":{"2":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}}}}}}},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},"e":{"docs":{},"w":{"docs":{},"'":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"p":{"docs":{},"m":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.010507880910683012},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0121580547112462},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"'":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.017513134851138354},"population.html":{"ref":"population.html","tf":0.0182370820668693},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},",":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"r":{"1":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"2":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681}},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}},"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"}":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"s":{"docs":{},"e":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"o":{"docs":{},"b":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"population.html":{"ref":"population.html","tf":0.00911854103343465}}}}}},"i":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"k":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231}},",":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{},"'":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}},"t":{"docs":{},"x":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"b":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}},"o":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}}}},"%":{"docs":{},"l":{"docs":{},"i":{"docs":{},"k":{"docs":{},"e":{"docs":{},"%":{"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}},".":{"docs":{},"*":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"*":{"docs":{},"'":{"docs":{},"}":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}},"!":{"docs":{},"!":{"docs":{},"'":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"'":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"t":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"/":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"/":{"docs":{},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"t":{"docs":{},"m":{"docs":{},"p":{"docs":{},"/":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}},"(":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"|":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"|":{"docs":{},"b":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{"install.html":{"ref":"install.html","tf":0.015267175572519083}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.011594202898550725},"replication.html":{"ref":"replication.html","tf":0.01556420233463035},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}}}}}}}}}}}}}}},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}},"v":{"9":{"docs":{},"+":{"docs":{},")":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}},"docs":{},"i":{"docs":{},"a":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"l":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}}}}}},"n":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},")":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"=":{"docs":{},">":{"docs":{},"'":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"'":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}}}}}}}}},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}},"q":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"!":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"g":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"b":{"docs":{},")":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}},"b":{"docs":{},"t":{"docs":{},"o":{"docs":{},"a":{"docs":{},")":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},")":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}},"+":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013054830287206266},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723}},"$":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"{":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}}},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681}},"u":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.011135857461024499}}}}}}}}}}}},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"g":{"docs":{},"t":{"docs":{},"(":{"1":{"8":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"docs":{}},"docs":{}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}},"/":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"/":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.027833001988071572},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0070052539404553416},"rx-collection.html":{"ref":"rx-collection.html","tf":0.042028985507246375},"rx-document.html":{"ref":"rx-document.html","tf":0.046511627906976744},"rx-query.html":{"ref":"rx-query.html","tf":0.053452115812917596},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.029411764705882353},"middleware.html":{"ref":"middleware.html","tf":0.04838709677419355},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.00911854103343465},"data-migration.html":{"ref":"data-migration.html","tf":0.03865979381443299},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.021212121212121213},"in-memory.html":{"ref":"in-memory.html","tf":0.025906735751295335},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.06912442396313365},"custom-build.html":{"ref":"custom-build.html","tf":0.006993006993006993},"plugins.html":{"ref":"plugins.html","tf":0.01834862385321101},"adapters.html":{"ref":"adapters.html","tf":0.04606240713224369},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.031331592689295036},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.04513064133016627}},">":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"population.html":{"ref":"population.html","tf":0.0121580547112462}}},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}},"*":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"*":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759}}}}},"=":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.015267175572519083},"rx-database.html":{"ref":"rx-database.html","tf":0.011928429423459244},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177},"rx-collection.html":{"ref":"rx-collection.html","tf":0.020289855072463767},"rx-document.html":{"ref":"rx-document.html","tf":0.03255813953488372},"rx-query.html":{"ref":"rx-query.html","tf":0.0334075723830735},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.05042016806722689},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"orm.html":{"ref":"orm.html","tf":0.04128440366972477},"population.html":{"ref":"population.html","tf":0.03343465045592705},"data-migration.html":{"ref":"data-migration.html","tf":0.01804123711340206},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.01818181818181818},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.041474654377880185},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258},"adapters.html":{"ref":"adapters.html","tf":0.029717682020802376},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.03655352480417755},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.019002375296912115}},">":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.011928429423459244},"rx-collection.html":{"ref":"rx-collection.html","tf":0.013043478260869565},"rx-document.html":{"ref":"rx-document.html","tf":0.011627906976744186},"rx-query.html":{"ref":"rx-query.html","tf":0.013363028953229399},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.014112903225806451},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.027237354085603113},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00909090909090909},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}},"=":{"docs":{},"=":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},">":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.011135857461024499},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},"[":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"population.html":{"ref":"population.html","tf":0.00303951367781155}},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},"]":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"'":{"docs":{},"]":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"'":{"docs":{},",":{"docs":{},"'":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"'":{"docs":{},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"]":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"]":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}},"]":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},".":{"docs":{},"]":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"]":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"!":{"docs":{},"]":{"docs":{},"!":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"v":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"e":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"r":{"docs":{},"d":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.022900763358778626},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"orm.html":{"ref":"orm.html","tf":0.01834862385321101},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.02097902097902098},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"i":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"adapters.html":{"ref":"adapters.html","tf":0.01634472511144131}}}}}}}}}}}}}}}}},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"v":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}},"z":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}}}}},",":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.02385685884691849},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":10.075780089153046},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356}}},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"adapters.html":{"ref":"adapters.html","tf":0.019316493313521546},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}},"s":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"m":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.008741258741258742},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"$":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.006993006993006993},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"i":{"docs":{},"v":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},"e":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"p":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.014251781472684086}},"l":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"c":{"docs":{"./":{"ref":"./","tf":0.019762845849802372},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}},"y":{"docs":{},".":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"s":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.007905138339920948}}}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}},"i":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}}}}},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}},"y":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}},"t":{"docs":{},"h":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231},"replication.html":{"ref":"replication.html","tf":0.011673151750972763},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}},"s":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":3.3429487179487176}}}}}}},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.014112903225806451},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.007429420505200594}},"e":{"docs":{},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}}}}}}}}}}}}},"k":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},"s":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}},"t":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0070052539404553416},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.10504201680672269},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}},"'":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.01680672268907563}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.00303951367781155},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},"s":{"docs":{},"/":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.013916500994035786},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.015942028985507246},"rx-document.html":{"ref":"rx-document.html","tf":0.018604651162790697},"rx-query.html":{"ref":"rx-query.html","tf":0.013363028953229399},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.025210084033613446},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.045871559633027525},"population.html":{"ref":"population.html","tf":0.0425531914893617},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"in-memory.html":{"ref":"in-memory.html","tf":0.025906735751295335},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.03225806451612903},"adapters.html":{"ref":"adapters.html","tf":0.019316493313521546},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013054830287206266},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.014251781472684086}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}}},"?":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.00303951367781155}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"population.html":{"ref":"population.html","tf":0.0060790273556231}}}}}},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}},"s":{"docs":{},".":{"docs":{},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}},"j":{"docs":{},"v":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245}}}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.011857707509881422},"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759}}},"i":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}},"r":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"c":{"docs":{},"k":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"n":{"docs":{},"d":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}}}},"t":{"docs":{},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.015810276679841896},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"a":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},"e":{"docs":{},".":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}}}}}}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}},"s":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.015197568389057751}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}},"r":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356}},"s":{"docs":{},".":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":5.010489510489511},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"e":{"docs":{},"r":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},"s":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}}},"l":{"docs":{},"k":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"g":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}},"i":{"docs":{},"g":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"y":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"!":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}},"t":{"docs":{},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},".":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"b":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"c":{"docs":{},"k":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362},"rx-document.html":{"ref":"rx-document.html","tf":0.013953488372093023},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}},"p":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}},"c":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}},"r":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}},"s":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"s":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"c":{"docs":{},"h":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"query-cache.html":{"ref":"query-cache.html","tf":0.03271028037383177}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"(":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175}}}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"'":{"docs":{},"t":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"u":{"docs":{},"s":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.015810276679841896},"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-document.html":{"ref":"rx-document.html","tf":0.009302325581395349},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication.html":{"ref":"replication.html","tf":0.011673151750972763},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.011111111111111112},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245},"questions-answers.html":{"ref":"questions-answers.html","tf":0.057692307692307696}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"d":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}},"e":{"docs":{},"v":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},"o":{"docs":{},"b":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"i":{"docs":{},"n":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}}}}}}}}},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}},"'":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.019762845849802372},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.010101010101010102},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.009501187648456057}},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},"d":{"docs":{},"b":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"u":{"docs":{},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"n":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}},"i":{"docs":{},"m":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177},"rx-collection.html":{"ref":"rx-collection.html","tf":0.02608695652173913},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.0060790273556231},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"in-memory.html":{"ref":"in-memory.html","tf":0.03626943005181347},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.020887728459530026},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.011876484560570071},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},"i":{"docs":{},"o":{"docs":{},"n":{"2":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.01834862385321101},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"in-memory.html":{"ref":"in-memory.html","tf":0.02072538860103627},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}}}}}}}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"s":{"docs":{},".":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.00303951367781155},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"(":{"docs":{},")":{"docs":{},":":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}},"m":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"population.html":{"ref":"population.html","tf":0.00303951367781155},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}}}}}},"e":{"docs":{},"x":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"t":{"docs":{},"e":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},"d":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"s":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.011857707509881422},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"i":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}},"u":{"docs":{},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":10.012422360248447}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"!":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}},"o":{"docs":{},"k":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681}}}}},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.011135857461024499}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231}}}}}}}}}}}}}},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"g":{"docs":{},"o":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"m":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"o":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"o":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}}}}},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}}}}}},"`":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},")":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.011928429423459244},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177},"rx-collection.html":{"ref":"rx-collection.html","tf":0.017391304347826087},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.031180400890868598},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.046218487394957986},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.04128440366972477},"population.html":{"ref":"population.html","tf":0.03343465045592705},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.015151515151515152},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.03686635944700461},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505},"adapters.html":{"ref":"adapters.html","tf":0.02526002971768202},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.018276762402088774},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.019002375296912115}},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"s":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}},"u":{"docs":{},"r":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.011673151750972763}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}},"r":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}},"e":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"d":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475}},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},".":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505}}}}}}}}},"s":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication.html":{"ref":"replication.html","tf":5},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}},"n":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"r":{"docs":{},"i":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}}}}}}}}}}}}}}}}},"l":{"docs":{},"d":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}},"r":{"docs":{},"s":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"d":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"query-cache.html":{"ref":"query-cache.html","tf":0.018691588785046728},"custom-build.html":{"ref":"custom-build.html","tf":5.005244755244755}}},"o":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.013916500994035786},"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"rx-collection.html":{"ref":"rx-collection.html","tf":0.010144927536231883},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.014018691588785047},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":5.009174311926605},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0166270783847981},"questions-answers.html":{"ref":"questions-answers.html","tf":0.038461538461538464},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},"e":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},"e":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"(":{"docs":{},"{":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007952286282306162},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"adapters.html":{"ref":"adapters.html","tf":0.019316493313521546},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}}}}}}}}}},"d":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"$":{"docs":{},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}}},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"o":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"p":{"docs":{},"u":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}},"v":{"docs":{},"c":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}},"+":{"docs":{},"+":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}},"d":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"./":{"ref":"./","tf":0.019762845849802372},"rx-database.html":{"ref":"rx-database.html","tf":0.013916500994035786},"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008695652173913044},"rx-document.html":{"ref":"rx-document.html","tf":0.009302325581395349},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.03361344537815126},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"data-migration.html":{"ref":"data-migration.html","tf":0.020618556701030927},"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00808080808080808},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.041474654377880185},"custom-build.html":{"ref":"custom-build.html","tf":0.006993006993006993},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.01634472511144131},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},",":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.011857707509881422},"rx-database.html":{"ref":"rx-database.html","tf":0.033797216699801194},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.007246376811594203},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"adapters.html":{"ref":"adapters.html","tf":0.020802377414561663},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.010443864229765013},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.014251781472684086},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.009940357852882704},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.00303951367781155},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"s":{"docs":{},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":10.00257731958763}}}}}},"'":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"e":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"(":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}},"b":{"1":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"2":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}},"e":{"docs":{},"s":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}}}}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013054830287206266},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}},"i":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.014018691588785047},"custom-build.html":{"ref":"custom-build.html","tf":0.008741258741258742},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175}}}}}}}}}}},"v":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"install.html":{"ref":"install.html","tf":0.007633587786259542},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}},"i":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"e":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},":":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},",":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.030534351145038167},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication.html":{"ref":"replication.html","tf":0.011673151750972763},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"i":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},",":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.010443864229765013}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.00303951367781155}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"r":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.007070707070707071}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}},"f":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"n":{"docs":{},"i":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}},"o":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"c":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"population.html":{"ref":"population.html","tf":0.00911854103343465},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.007070707070707071},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"contribute.html":{"ref":"contribute.html","tf":0.024844720496894408}},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.015810276679841896},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0070052539404553416},"rx-collection.html":{"ref":"rx-collection.html","tf":0.028985507246376812},"rx-document.html":{"ref":"rx-document.html","tf":0.03255813953488372},"rx-query.html":{"ref":"rx-query.html","tf":0.017817371937639197},"middleware.html":{"ref":"middleware.html","tf":0.016129032258064516},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.00911854103343465},"data-migration.html":{"ref":"data-migration.html","tf":0.01804123711340206},"replication.html":{"ref":"replication.html","tf":0.01556420233463035},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.022222222222222223},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.06912442396313365},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"(":{"docs":{},"a":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},":":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"n":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"'":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"w":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"'":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}},"i":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155},"replication.html":{"ref":"replication.html","tf":0.007782101167315175}},"l":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"y":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"e":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}},"k":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}}}},"c":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"u":{"docs":{},"s":{"docs":{},"s":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"s":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"r":{"docs":{},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"e":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},".":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}},"s":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"y":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"leader-election.html":{"ref":"leader-election.html","tf":0.02413793103448276},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.03501945525291829},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.014010507880910683},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"in-memory.html":{"ref":"in-memory.html","tf":0.02072538860103627},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}},"o":{"docs":{},"d":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"e":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}},"d":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051}},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}}}}}}}}},"v":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},"i":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},",":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"replication.html":{"ref":"replication.html","tf":0.019455252918287938},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}}}}}}},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"(":{"docs":{},")":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"(":{"docs":{},"'":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}}}}},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}},"s":{"5":{"docs":{},".":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}},"8":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"rx-query.html":{"ref":"rx-query.html","tf":0.011135857461024499},"population.html":{"ref":"population.html","tf":0.0060790273556231},"leader-election.html":{"ref":"leader-election.html","tf":0.020689655172413793},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}},"e":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},")":{"docs":{},"[":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"/":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},"]":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"l":{"docs":{},"i":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"population.html":{"ref":"population.html","tf":0.0060790273556231}}}},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.023752969121140142}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}},"(":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"s":{"docs":{},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304}}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"i":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}},"g":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}},"t":{"docs":{},"c":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}},"d":{"docs":{},"g":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"f":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}},"(":{"docs":{},"'":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"m":{"docs":{},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"b":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"'":{"docs":{},"+":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"+":{"docs":{},"'":{"docs":{},"/":{"docs":{},"'":{"docs":{},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"/":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.02626970227670753},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0060790273556231},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}},"l":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},":":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},"s":{"docs":{},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356}}}}}}}}},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},".":{"docs":{},"s":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"0":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.007246376811594203},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.013363028953229399},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"$":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681}}}}}}}}},"o":{"docs":{},"n":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0070052539404553416},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759}}}}}}}}},"e":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"l":{"docs":{},"a":{"docs":{},"w":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051}},"s":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}},"o":{"docs":{},"w":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}},"s":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}}},"e":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}},"s":{"docs":{},":":{"docs":{"population.html":{"ref":"population.html","tf":0.00911854103343465}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"replication.html":{"ref":"replication.html","tf":0.023346303501945526},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.009501187648456057}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.03024193548387097}}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}},"i":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},"u":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}},"s":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},")":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}}}}},"r":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231}}}}}},"c":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"o":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},":":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-collection.html":{"ref":"rx-collection.html","tf":0.011594202898550725},"rx-document.html":{"ref":"rx-document.html","tf":0.009302325581395349},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"query-cache.html":{"ref":"query-cache.html","tf":0.014018691588785047},"custom-build.html":{"ref":"custom-build.html","tf":0.012237762237762238},"plugins.html":{"ref":"plugins.html","tf":0.01834862385321101},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.011627906976744186}}},"(":{"docs":{},")":{"docs":{},"{":{"docs":{"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},"}":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},"{":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}}}}}}}},"s":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009174311926605505}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475}},"i":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}},"g":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"replication-graphql.html":{"ref":"replication-graphql.html","tf":5.019191919191919},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245}},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}},"'":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"x":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007905138339920948}},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.022900763358778626},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"b":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"b":{"docs":{},"t":{"docs":{},"o":{"docs":{},"a":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}},"o":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"n":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},"o":{"docs":{},"d":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}},"e":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"population.html":{"ref":"population.html","tf":0.00303951367781155}},"/":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231}}}}}},"$":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}},":":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}},"v":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"s":{"docs":{},"h":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}},"n":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"e":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"i":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"s":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"r":{"docs":{},"d":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505}}},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"o":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"orm.html":{"ref":"orm.html","tf":0.022935779816513763}},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"a":{"docs":{},"h":{"docs":{},"!":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013761467889908258}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759}},"s":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}},"s":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"e":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}},"u":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},".":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}},"v":{"docs":{},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"t":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}},"l":{"docs":{},"p":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"e":{"docs":{},"r":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"y":{"docs":{},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}},"u":{"docs":{},"g":{"docs":{},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"'":{"docs":{},",":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"population.html":{"ref":"population.html","tf":0.0121580547112462}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},".":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}},"n":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"middleware.html":{"ref":"middleware.html","tf":5.05241935483871},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.01834862385321101},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129}}},"?":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"s":{"docs":{},")":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},":":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}},"w":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"#":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"/":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"t":{"docs":{},"s":{"docs":{},"#":{"docs":{},"l":{"2":{"2":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"3":{"0":{"0":{"0":{"docs":{},"/":{"docs":{},"d":{"docs":{},"b":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},"/":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"4":{"0":{"0":{"0":{"docs":{},"/":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.009501187648456057}},"r":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"a":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":10.038167938931299},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.022288261515601784},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}},"n":{"docs":{},"c":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.013916500994035786},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.011673151750972763},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"$":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"s":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"r":{"docs":{},"n":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"e":{"docs":{},"t":{"docs":{},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}},"v":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"!":{"docs":{},")":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"population.html":{"ref":"population.html","tf":0.00303951367781155}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177}},"e":{"docs":{},"d":{"docs":{},"d":{"docs":{},"b":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.010401188707280832}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}},"i":{"docs":{},"c":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}},"o":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":10.010362694300518}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}},",":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}},"t":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"'":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"population.html":{"ref":"population.html","tf":0.0060790273556231}}}}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.03816793893129771},"rx-database.html":{"ref":"rx-database.html","tf":0.015904572564612324},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.04020979020979021},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0166270783847981}},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}},"i":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"a":{"docs":{},"g":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"i":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}},"d":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304}},"b":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}},"a":{"docs":{},"s":{"docs":{},":":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"!":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}}}}}}}}}}}}}}}}},"s":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}},"e":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},"y":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}}}}}}},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"s":{"docs":{},"u":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"f":{"docs":{},"(":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},",":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"custom-build.html":{"ref":"custom-build.html","tf":0.006993006993006993},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}},"x":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.010507880910683012},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}},"o":{"docs":{},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.00303951367781155}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}},"e":{"docs":{},"p":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}},"n":{"docs":{},"g":{"docs":{},"!":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.024844720496894408}}}},"i":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},".":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"3":{"0":{"0":{"0":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"/":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}}}}},"p":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"orm.html":{"ref":"orm.html","tf":0.009174311926605505}},"(":{"2":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"docs":{}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}}},"h":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}},"x":{"docs":{},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}},"n":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}},"g":{"docs":{},"o":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}}},"a":{"docs":{},"g":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"r":{"docs":{},"k":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}},"d":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"s":{"docs":{},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"in-memory.html":{"ref":"in-memory.html","tf":0.05181347150259067},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245},"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},"y":{"docs":{},"'":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},")":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}},",":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202}},".":{"docs":{},"a":{"docs":{},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},":":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.007429420505200594}}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.00303951367781155},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.010443864229765013}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"population.html":{"ref":"population.html","tf":0.00303951367781155}}},"s":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"docs":{},")":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"v":{"1":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}},"docs":{}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"r":{"docs":{},"g":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}}}}}}}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}},"r":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}},"n":{"docs":{},"d":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}}}}}}},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":5.008064516129032}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.015810276679841896},"custom-build.html":{"ref":"custom-build.html","tf":0.022727272727272728},"adapters.html":{"ref":"adapters.html","tf":0.007429420505200594},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}},"y":{"docs":{},"j":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}},"e":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"s":{"docs":{},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},",":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"r":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}},"v":{"docs":{},"e":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}},"p":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}},"y":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"_":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"$":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.01680672268907563}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}},"e":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"0":{"0":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.0060790273556231},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}}}},"b":{"docs":{},".":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0060790273556231},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"u":{"docs":{},"p":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}}}}}}}}}}}}}}}}}}}}}}}}}},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"l":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"[":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"t":{"docs":{},"(":{"1":{"8":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},".":{"docs":{},"d":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}}}},"docs":{}},"2":{"0":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}},"l":{"docs":{},"t":{"docs":{},"(":{"1":{"8":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"docs":{}},"docs":{}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}},"x":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"(":{"5":{"docs":{},")":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"docs":{}}}}}}}}}}}}}}}},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}}},"{":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.008908685968819599}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}}}},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.00303951367781155}},"/":{"docs":{},"*":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681}}}}}}}}}}},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},"{":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"{":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},".":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{},"/":{"docs":{},"*":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"(":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}}}}}},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}},"d":{"5":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"docs":{}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.011135857461024499},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.024193548387096774},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.020618556701030927},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"questions-answers.html":{"ref":"questions-answers.html","tf":0.04807692307692308}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}},"s":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"e":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.022900763358778626},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"custom-build.html":{"ref":"custom-build.html","tf":0.013986013986013986},"adapters.html":{"ref":"adapters.html","tf":0.007429420505200594},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}}}}},"s":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0060790273556231}},"e":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.014018691588785047},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"x":{"docs":{},"t":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"(":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.007429420505200594},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},"j":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"t":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"i":{"docs":{},"c":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.00303951367781155},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"e":{"docs":{},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"f":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.009501187648456057},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"p":{"docs":{},"m":{"docs":{"install.html":{"ref":"install.html","tf":0.030534351145038167},"adapters.html":{"ref":"adapters.html","tf":0.020802377414561663},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"contribute.html":{"ref":"contribute.html","tf":0.043478260869565216}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.009940357852882704},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.007246376811594203},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"adapters.html":{"ref":"adapters.html","tf":0.01337295690936107},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007952286282306162},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.010144927536231883},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.008908685968819599},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.027522935779816515},"population.html":{"ref":"population.html","tf":0.03343465045592705},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.019316493313521546},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.009501187648456057},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"s":{"docs":{},".":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.017830609212481426}},"e":{"docs":{},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}},"l":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.00303951367781155},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"o":{"docs":{},"b":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.009940357852882704},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.007246376811594203},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.010144927536231883},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.008908685968819599},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"plugins.html":{"ref":"plugins.html","tf":0.01834862385321101}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"(":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},")":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0060790273556231},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364},"custom-build.html":{"ref":"custom-build.html","tf":0.006993006993006993},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},"c":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"e":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"e":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}},"g":{"docs":{},"o":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.034482758620689655},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.009501187648456057},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},"l":{"docs":{},"i":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"i":{"docs":{},"z":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}},",":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}}},"s":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.01834862385321101},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"a":{"docs":{},"l":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"s":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}},"l":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"e":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"=":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}}}}}},"w":{"docs":{},"n":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}},"u":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.03211009174311927}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}},"r":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.008695652173913044},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013054830287206266}},"/":{"docs":{},"d":{"docs":{},"r":{"docs":{},"m":{"docs":{"orm.html":{"ref":"orm.html","tf":10}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"in-memory.html":{"ref":"in-memory.html","tf":0.031088082901554404},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"f":{"docs":{},"f":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"e":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129}}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.02620967741935484}}}}}}},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135}}}}}},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"population.html":{"ref":"population.html","tf":0.00303951367781155}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}},"g":{"docs":{},"e":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"a":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}}}},"e":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.015267175572519083}}}},"n":{"docs":{},"d":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"o":{"docs":{},"p":{"docs":{},"l":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"r":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"e":{"docs":{},"r":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}},"o":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.019762845849802372},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},".":{"docs":{},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.01680672268907563},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}},"e":{"docs":{},"(":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387}}}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.010507880910683012},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.015197568389057751},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}},"l":{"docs":{},"i":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.045871559633027525},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}},"x":{"docs":{},"i":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}},",":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}},"s":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522}}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.013131313131313131},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"x":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.006060606060606061}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"x":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.030534351145038167},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"l":{"docs":{},"s":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"query-cache.html":{"ref":"query-cache.html","tf":0.037383177570093455}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"y":{"docs":{},",":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},"d":{"docs":{},"b":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"replication.html":{"ref":"replication.html","tf":0.01556420233463035},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.006993006993006993},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505},"adapters.html":{"ref":"adapters.html","tf":0.020802377414561663},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.009501187648456057}},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"'":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"population.html":{"ref":"population.html","tf":10.015197568389057}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}},"r":{"docs":{},"t":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}},"i":{"docs":{},"e":{"docs":{},"c":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},"c":{"docs":{},"k":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"custom-build.html":{"ref":"custom-build.html","tf":0.015734265734265736},"plugins.html":{"ref":"plugins.html","tf":5.032110091743119},"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356},"tutorials/server.html":{"ref":"tutorials/server.html","tf":3.347585114806017}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258}}},"s":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"n":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}}}}}}}},"y":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"s":{"docs":{},"e":{"docs":{},"u":{"docs":{},"d":{"docs":{},"o":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.015810276679841896},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.035634743875278395},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.010101010101010102},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"query-cache.html":{"ref":"query-cache.html","tf":0.06074766355140187},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"y":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":10.014018691588785}}}}}}}},"u":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":3.3429487179487176}}}}}}}},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"r":{"docs":{},"e":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.01634472511144131}},"i":{"docs":{},"v":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}},"n":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"d":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}},"l":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.019762845849802372},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}},"e":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"l":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.015810276679841896},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":5.042801556420233},"replication-graphql.html":{"ref":"replication-graphql.html","tf":5.026262626262627},"in-memory.html":{"ref":"in-memory.html","tf":0.03626943005181347},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.015734265734265736},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.011876484560570071}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"i":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"s":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"docs":{},"{":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},",":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}},"a":{"docs":{},"c":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"query-cache.html":{"ref":"query-cache.html","tf":0.014018691588785047}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.011857707509881422},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.024498886414253896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},"s":{"docs":{},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995}}}}}}},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}}},"u":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}},")":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"'":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}},"f":{"docs":{"population.html":{"ref":"population.html","tf":0.00911854103343465}},"e":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.015197568389057751},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0121580547112462}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}},"a":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0060790273556231},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"i":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"c":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"g":{"docs":{},"n":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"m":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}}}},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"$":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.011673151750972763}},"e":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}}}}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"i":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.011928429423459244},"rx-collection.html":{"ref":"rx-collection.html","tf":0.014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.020930232558139535},"rx-query.html":{"ref":"rx-query.html","tf":0.013363028953229399},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.029411764705882353},"middleware.html":{"ref":"middleware.html","tf":0.014112903225806451},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.020618556701030927},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.020202020202020204},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}},"r":{"docs":{},"y":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"g":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"p":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},"(":{"docs":{},"'":{"docs":{},"^":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"$":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}},"}":{"docs":{},"}":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"v":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"i":{"docs":{},"s":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"d":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}},"c":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"u":{"docs":{},"s":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.03557312252964427},"install.html":{"ref":"install.html","tf":0.030534351145038167},"rx-database.html":{"ref":"rx-database.html","tf":0.013916500994035786},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.015151515151515152},"query-cache.html":{"ref":"query-cache.html","tf":0.014018691588785047},"custom-build.html":{"ref":"custom-build.html","tf":0.027972027972027972},"plugins.html":{"ref":"plugins.html","tf":0.027522935779816515},"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":3.343777197563098},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},",":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.022900763358778626},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"custom-build.html":{"ref":"custom-build.html","tf":0.006993006993006993},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}},"'":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"v":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}},"z":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":10.009940357852882},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":10.013953488372094},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"population.html":{"ref":"population.html","tf":0.0121580547112462},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.00303951367781155},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"]":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},")":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.036290322580645164}}}},"[":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231}}}}}}}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}},"j":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.015267175572519083},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":10.012605042016807}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}},"e":{"docs":{},"m":{"docs":{},"n":{"docs":{},"t":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":10.001751313485114},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":10.001449275362319},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"population.html":{"ref":"population.html","tf":0.00303951367781155},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":10.011135857461024},"query-cache.html":{"ref":"query-cache.html","tf":0.014018691588785047}}}}}}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175}}}}}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.06832298136645963}},":":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"e":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"w":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"u":{"docs":{},"t":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.011928429423459244},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008695652173913044},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"population.html":{"ref":"population.html","tf":0.0060790273556231},"leader-election.html":{"ref":"leader-election.html","tf":0.020689655172413793},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"v":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"install.html":{"ref":"install.html","tf":0.030534351145038167},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.017830609212481426},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"d":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"'":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"f":{"docs":{},"e":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"./":{"ref":"./","tf":0.011857707509881422},"rx-schema.html":{"ref":"rx-schema.html","tf":0.021015761821366025},"rx-collection.html":{"ref":"rx-collection.html","tf":0.007246376811594203},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.008741258741258742},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"questions-answers.html":{"ref":"questions-answers.html","tf":0.07692307692307693}},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.0060790273556231},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"?":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}}},"s":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"i":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}},"e":{"docs":{},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00808080808080808}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.013131313131313131},"custom-build.html":{"ref":"custom-build.html","tf":0.006993006993006993},"tutorials/server.html":{"ref":"tutorials/server.html","tf":3.364212193190815}},",":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}}},"}":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}}}}}},"i":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.02620967741935484}}}},"m":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.011928429423459244},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.01627906976744186},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115}}}},")":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"u":{"docs":{},"p":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}},"u":{"docs":{},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505}},":":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.008908685968819599}}},"s":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}},"f":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"e":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}},"u":{"docs":{},"l":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.007952286282306162},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-document.html":{"ref":"rx-document.html","tf":0.009302325581395349},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}},"d":{"docs":{},"e":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}},"t":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"z":{"docs":{},"e":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}}}}},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}},":":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}},"e":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"i":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"population.html":{"ref":"population.html","tf":0.00303951367781155},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}},"v":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"o":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}},"w":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"e":{"docs":{},"c":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}},"i":{"docs":{},"f":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.007633587786259542},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"population.html":{"ref":"population.html","tf":0.00303951367781155},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"a":{"docs":{},"l":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}},"e":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}},"i":{"docs":{},"n":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},",":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}},"i":{"docs":{},"c":{"docs":{"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"r":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.009501187648456057},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}}}}}}}}}}},"y":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}}},"e":{"docs":{"./":{"ref":"./","tf":0.011857707509881422},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"adapters.html":{"ref":"adapters.html","tf":0.014858841010401188}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},"d":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}},"n":{"docs":{},"g":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"population.html":{"ref":"population.html","tf":0.0060790273556231},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},"!":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051}}}},")":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.010443864229765013}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"population.html":{"ref":"population.html","tf":0.00303951367781155},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364}}}}},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"v":{"docs":{},"e":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"p":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}},"p":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"r":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"e":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"m":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}},"i":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication.html":{"ref":"replication.html","tf":0.0311284046692607},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.007070707070707071}},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"i":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"s":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"w":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}}},"i":{"docs":{},"m":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}},"k":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}}},"p":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"!":{"docs":{},"!":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}},"q":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.01634472511144131}},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356}},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},"y":{"docs":{},"(":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"r":{"docs":{},"c":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.011857707509881422},"leader-election.html":{"ref":"leader-election.html","tf":0.03103448275862069}},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"s":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"k":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135}}}},"s":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},"s":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"contribute.html":{"ref":"contribute.html","tf":0.062111801242236024}},"s":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"/":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},":":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"m":{"docs":{},"p":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896}}}}}}}}}},"n":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"l":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"r":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"e":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"n":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.00303951367781155},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"m":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}},".":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"s":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},",":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}}}}},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"s":{"docs":{},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"population.html":{"ref":"population.html","tf":0.00303951367781155},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}},"o":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"p":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.00303951367781155}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"r":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"c":{"docs":{},"k":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.007905138339920948}}}}},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}}},"v":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175}}}}}}},"c":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}},"u":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.009940357852882704},"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.023346303501945526},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.006060606060606061},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.00303951367781155},"replication.html":{"ref":"replication.html","tf":0.011673151750972763},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387}}}},"/":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}},"t":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"w":{"docs":{},"o":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.02100840336134454},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.044386422976501305}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.03502626970227671},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0425531914893617},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013054830287206266},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"o":{"docs":{},"f":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}},"d":{"docs":{},"!":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"s":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":3.343777197563098}},".":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}},"m":{"docs":{},"p":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"u":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"i":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"query-cache.html":{"ref":"query-cache.html","tf":0.014018691588785047},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.011627906976744186},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245}},"e":{"docs":{},"$":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.006060606060606061}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"s":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.015267175572519083},"rx-database.html":{"ref":"rx-database.html","tf":0.02186878727634195},"rx-schema.html":{"ref":"rx-schema.html","tf":0.01576182136602452},"rx-collection.html":{"ref":"rx-collection.html","tf":0.017391304347826087},"rx-document.html":{"ref":"rx-document.html","tf":0.009302325581395349},"rx-query.html":{"ref":"rx-query.html","tf":0.015590200445434299},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"population.html":{"ref":"population.html","tf":0.0060790273556231},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.013131313131313131},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"query-cache.html":{"ref":"query-cache.html","tf":0.03271028037383177},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.033216783216783216},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.03268945022288262},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":3.354221061792863},"tutorials/server.html":{"ref":"tutorials/server.html","tf":3.347585114806017},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}},"d":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"s":{"docs":{},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"a":{"docs":{},"g":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"n":{"docs":{},"c":{"docs":{},"a":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}},"c":{"docs":{},"h":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.028037383177570093}},"e":{"docs":{},"r":{"docs":{},"x":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},"r":{"docs":{},"x":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"r":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}},"e":{"docs":{},"_":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}}},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"e":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}},"x":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}},"r":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"v":{"3":{"docs":{},".":{"8":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"docs":{}}},"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.023195876288659795},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0121580547112462},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}},"i":{"docs":{},"s":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}},"a":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"e":{"docs":{},"w":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"a":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.009302325581395349},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}},"o":{"docs":{},"u":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387},"custom-build.html":{"ref":"custom-build.html","tf":0.033216783216783216}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}},"u":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-document.html":{"ref":"rx-document.html","tf":0.01627906976744186},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0060790273556231},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.00303951367781155}}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},")":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"j":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"i":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}},"s":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245}}}}}},"e":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896}}}}}}},"q":{"docs":{},"l":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.010401188707280832}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}},";":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"t":{"docs":{},"h":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}}}}},"i":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}},"p":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},"d":{"docs":{},"e":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}},".":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009174311926605505}}}}},"r":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"l":{"docs":{},"l":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"population.html":{"ref":"population.html","tf":0.0060790273556231},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"!":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"s":{"docs":{},"!":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"r":{"docs":{},"y":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}},"s":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}}}}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"'":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}},"e":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},":":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},"r":{"docs":{},"e":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}}}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009174311926605505}}}}}},"s":{"docs":{},"e":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"s":{"docs":{},"'":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}},"{":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.030534351145038167},"rx-database.html":{"ref":"rx-database.html","tf":0.011928429423459244},"rx-schema.html":{"ref":"rx-schema.html","tf":0.06830122591943957},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-document.html":{"ref":"rx-document.html","tf":0.011627906976744186},"rx-query.html":{"ref":"rx-query.html","tf":0.0200445434298441},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.060790273556231005},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.031313131313131314},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304},"custom-build.html":{"ref":"custom-build.html","tf":0.03671328671328671},"plugins.html":{"ref":"plugins.html","tf":0.027522935779816515},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.04177545691906005},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.021377672209026127}},"}":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.007246376811594203}}}},"$":{"docs":{},"e":{"docs":{},"q":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"o":{"docs":{},"r":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"x":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"}":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}}}}}}},"}":{"docs":{"install.html":{"ref":"install.html","tf":0.015267175572519083},"rx-database.html":{"ref":"rx-database.html","tf":0.007952286282306162},"rx-schema.html":{"ref":"rx-schema.html","tf":0.021015761821366025},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"rx-query.html":{"ref":"rx-query.html","tf":0.011135857461024499},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.045871559633027525},"population.html":{"ref":"population.html","tf":0.0425531914893617},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.01616161616161616},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"custom-build.html":{"ref":"custom-build.html","tf":0.03671328671328671},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.015665796344647518},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0166270783847981}},")":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-query.html":{"ref":"rx-query.html","tf":0.008908685968819599},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},";":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.009940357852882704},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.007246376811594203},"rx-document.html":{"ref":"rx-document.html","tf":0.0069767441860465115},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.03211009174311927},"population.html":{"ref":"population.html","tf":0.02127659574468085},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00808080808080808},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.019316493313521546},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.021377672209026127}}}},",":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-schema.html":{"ref":"rx-schema.html","tf":0.03502626970227671},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.04233870967741935},"population.html":{"ref":"population.html","tf":0.0121580547112462},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013054830287206266},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},";":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0060790273556231},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.006060606060606061},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013054830287206266},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},"]":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"}":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}},"`":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}},"\"":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"+":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"@":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"/":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"#":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"\"":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"\"":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"b":{"docs":{},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"y":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}},"k":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.017513134851138354}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}},"$":{"docs":{},"{":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"}":{"docs":{},"\"":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}},"*":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"plugins.html":{"ref":"plugins.html","tf":0.03211009174311927},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},"/":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759}},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}},"}":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"@":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.030534351145038167},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}},"s":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0070052539404553416},"rx-collection.html":{"ref":"rx-collection.html","tf":0.007246376811594203},"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004651162790697674}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.03103448275862069},"replication.html":{"ref":"replication.html","tf":0.0038910505836575876},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":10},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"r":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"v":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129}},"d":{"docs":{},"b":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.010401188707280832}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356}}}}}}},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.020802377414561663}}}}}}}}},"s":{"docs":{},"s":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}}}}},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}},"e":{"docs":{},"n":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"f":{"docs":{},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},"e":{"docs":{},"d":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"v":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.007782101167315175},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}},"n":{"docs":{},"k":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.06451612903225806},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.02304147465437788}},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"$":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}},"u":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":10}}}}}},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"o":{"docs":{},"k":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}},"g":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"i":{"docs":{},"c":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},".":{"docs":{},"t":{"docs":{},"x":{"docs":{},"t":{"docs":{},"'":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}},"a":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"n":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}},"e":{"docs":{},"r":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"s":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"$":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},"o":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}}}},"e":{"docs":{},"q":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"{":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"}":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}},"^":{"docs":{},"[":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"z":{"0":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245}},"]":{"docs":{},"[":{"docs":{},"[":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},"a":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506}}}},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"_":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},":":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002325581395348837}}}}}}}}}}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"'":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.0038910505836575876}}},"d":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}},")":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"♛":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"!":{"docs":{},"=":{"docs":{},"=":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}},"`":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},".":{"docs":{},".":{"docs":{},".":{"docs":{},"`":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}},"{":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"&":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":3.333333333333333}},"&":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}},"|":{"docs":{},"|":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}},"length":4735},"corpusTokens":["!==","\"${doc.name}\",","\"alice\",","\"array\",","\"attachments\":","\"birthyear\":","\"color\":","\"damage\":","\"deleted\":","\"dependencies\":","\"describ","\"description\":","\"encrypted\":","\"final\":","\"foobar\",","\"git+https://git@github.com/pubkey/rxdb.git#commithash\"","\"healthpoints\":","\"hero","\"id\":","\"items\":","\"lastname\":","\"maximum\":","\"maxitems\":","\"minimum\":","\"name\":","\"number\"","\"number\",","\"object\",","\"primary\":","\"properties\":","\"required\":","\"rxdb\":","\"secret\":","\"skills\":","\"string\"","\"string\",","\"title\":","\"type\":","\"uniqueitems\":","\"updatedat\":","\"version\":","\"wilson\",","$","$.subscribe()","$eq:","$exists:","$human)","$inc:","$or","$set:","${doc.updatedat},","&","&&","'","'!!';","'%like%'","''","'')","'',","'.*foo.*'}","'/',","'/db',","'/root/user/project/mydatabase',","'/tmp/rxdb","'@babel/polyfill';","'aaah!!'","'aaah!!';","'adapter');","'alice'","'alice',","'anyvalue';","'array',","'bar'","'bar');","'bar';","'bar'});","'bar1'","'bar2'","'bar2');","'base","'bi","'bob'","'bob',","'carol'","'carol',","'carolina',","'cat.jpg'","'cat.txt',","'clientdb',","'cordova","'dave'","'deleted',","'describ","'dies'.","'fifoo'","'fifoofa'","'firstname',","'foo'","'foo',","'foo'.","'foo'}","'foo1',","'foo2',","'foobar'","'foobar');","'foobar',","'foobar';","'foobar2'","'foobar2');","'foobar2';","'foofa'","'foooobarnew'","'foooobarnew';","'gibson',","'got","'h1rg9ugdd30o',","'heroes'","'heroes',","'heroesdb'","'heroesdb',","'http://example.com/graphql',","'http://localhost:10102/db/',","'http://localhost:3000/db/items'","'human","'human'","'human',","'humans',","'i","'i');","'idb'","'image/jpeg'","'indexeddb'","'integer'","'integer',","'items',","'kelso'","'kelso';","'lastname']","'localstorage');","'localstorage',","'memory'","'meow","'messages',","'mycollection.hello()'","'mydatabase',","'mydb',","'myfield',","'myid',","'mypassword',","'name","'name'","'new'","'node","'npm","'number'","'object',","'piotr',","'potter',","'pouchdb","'react","'rxdb';","'rxdb/plugins/adapt","'rxdb/plugins/ajv","'rxdb/plugins/attachments';","'rxdb/plugins/core';","'rxdb/plugins/dev","'rxdb/plugins/encryption';","'rxdb/plugins/in","'rxdb/plugins/json","'rxdb/plugins/key","'rxdb/plugins/lead","'rxdb/plugins/loc","'rxdb/plugins/migration';","'rxdb/plugins/no","'rxdb/plugins/queri","'rxdb/plugins/repl","'rxdb/plugins/replication';","'rxdb/plugins/server';","'rxdb/plugins/update';","'rxdb/plugins/valid","'rxdb/plugins/validate';","'rxdb/plugins/watch","'sendercountry'","'skeletor'","'steve');","'string'","'string',","'subscript","'temperature',","'text/plain'","'unsaf","'weatherdb',","'websql'","'websql',","'world';","'ws://example.com/subscriptions',","(!doc)","(!global.atob)","(!global.btoa)","()","()=>'bar'","(a.id","(a.updatedat","(all","(also","(anyth","(async)","(beta)","(default)","(doc.id","(doc.updatedat","(e.g.","(graphql","(new)","(olddata)","(optional)","(optional),","(optional=false)","(optional=true)","(or","(password","(primari","(proto)","(remot","(req,","(short","(string)","(string|blob|buffer)","(v9+)","(v:","(version:","(via","(window",")",");","*","*/","*/).then(()","*/});","+",".",".$","..","...",".active$",".awaitinitialreplication()",".cancel()",".canceled$",".collection()",".create()",".error$",".exec().then(doc",".exec().then(docu",".exec();",".find()",".find({",".findone()",".gt(18)",".gt(18);",".insert()",".isstopped()",".join();",".map(doc",".migratepromise():",".recieved$",".run()",".save()",".send$",".setheaders()",".sort('age')",".subscribe(changeev",".subscribe(newnam",".then(()",".then(json",".then(respons",".upsert()",".where('age')",".where()","/","/*","/**","//","//>","//[insert","0","0,","0.","02","1","10","10);","100","100));","1000","1000);","12","12t23:03:05+00:00","1486940585","1564783474,","18","19","1900,","1:","1;","2","2'","2)","2.","20","2017","2050","2:","3.","30","3000,","3000`));","33","40%","409","5","5'","5)","5,","50","50,","50;","6'","6*5=30","60","64","64'","7","77;","8.0.0,","9]$","9]*$.","9_]*]?[a","=","===","=>",">","@babel/polyfil","@link","@param","[","[\"color\"],","[\"secret\"],","['firstname',","['name']","['secret']","['string','null']","[]","[];","[default=true]","[human!]!","[rxdocument,","[rxdocument,rxdocument,rxdocument..]","]","];","^[a","_","_deleted:tru","`","`...`","`;","`subscript","`{","abov","abstract","access","access.","accident","accomplish","accord","action","activ","active$","actual","ad","adapt","adapter,","adapter.","adapter:","adapters.","add","addit","additionalproperti","addrxplugin","addrxplugin(memoryadapter);","addrxplugin(pouchadaptermemory);","addrxplugin(pouchhttpplugin);","addrxplugin(require('pouchdb","addrxplugin(rxdbadaptercheckplugin);","addrxplugin(rxdbajvvalidateplugin);","addrxplugin(rxdbattachmentsplugin);","addrxplugin(rxdbdevmodeplugin);","addrxplugin(rxdbencryptionplugin);","addrxplugin(rxdbinmemoryplugin);","addrxplugin(rxdbjsondumpplugin);","addrxplugin(rxdbkeycompressionplugin);","addrxplugin(rxdbleaderelectionplugin);","addrxplugin(rxdblocaldocumentsplugin);","addrxplugin(rxdbmigrationplugin);","addrxplugin(rxdbnovalidateplugin);","addrxplugin(rxdbquerybuilderplugin);","addrxplugin(rxdbreplicationgraphqlplugin);","addrxplugin(rxdbreplicationplugin);","addrxplugin(rxdbserverplugin);","addrxplugin(rxdbupdateplugin);","addrxplugin(rxdbvalidateplugin);","addrxplugin(rxdbvalidatezschemaplugin);","addrxplugin(rxdbwatchforchangesplugin);","addrxplugin(sqliteadapter);","addrxplugin,","advantag","advantages:","affect","afterward","afterwards.","ag","again","age:","age?:","ajv","algorithm","aliv","alive$","allattachments$","allattachments()","alldoc","alldocs.length;","allow","alreadi","altern","alway","amount","amount:","angular","anoth","another.","answer","any).glob","any).process","anyfield","anyth","anyway","api","app","app);","app,","app.","appear","appli","applic","applications.","apply.","appropri","apps,","arg","args.human;","args.lastid)","args.limit);","args.minupdatedat)","around,","array","array.","ask","assign","assigned.","assum","assur","async","asynchron","asynchronous.","asyncstorag","asyncstorage'","asyncstorage'));","asyncstorage.","asyncstoragedown","at.","atom","atomicset()","atomicupd","atomicupdate()","atomicupsert()","attach","attachment'","attachment.","attachment.getdata();","attachment.getstringdata();","attachment.remove();","attachments,","attachments:","attribut","attribute.","attributes/methods.","authorization:","autmat","automat","automatically,","automigr","automigrate:","avail","available.","avoid","await","awaitpersistence()","awesom","b)","b.id)","b.updatedat)","babel","back","backward","bandwidth","bar.","base","basic","batch","batchsize:","batteri","becom","befor","before.","behav","behavior","behavior.","behaviorsubject","being',","belong","benefit","benefits.","besid","best","bestfriend","bestfriend:","beta","better","between","big","bigger","binari","bind","birthyear","bit","blob","blobbuff","block","boolean","boolean!","both","both.","bound","broadcast","browser","browsers,","browsers.","browsers:","buffer.","bug","bug,","bugfix","build","build,","build.","builder","builder';","builds.","bulk","bulkinsert","bulkinsert()","bundlers.","c++","cach","cache.","cachereplacementpolicy.","cachereplacementpolicy:","call","call)","call.","called.","can't","cancel","cancel()","canceled,","canceled.","capabl","capac","care","case","case,","cases.","caus","cd","certain","chain","chang","change$","change.","changed.","changeev","changefunct","changeobserv","changeobservable.subscribe({","changes';","changes,","changes.","changestream.","channel","characters.","charts,","check","check'","check';","checkadapt","checkadapter('localstorage');","checkadapter()","checkadapter,","cherri","choos","claim","class","classes,","clean","cleanup","clear","client","client'","client.","clientdb","clientdb.collection({","clientdb.items.find().exec();","clientdb.items.sync({","clients.","clone","closed,","closed.","code","code.","collect","collection'","collection():","collection,","collection.","collection.options.foo();","collection2","collection2);","collection:","collections,","collections.","color","combin","come","commit","commit.","commithash","common","community.","compar","comparison","compat","complete$","complete.","completed.","completes.","complex","compliant","composit","compress","compression',","compression';","comput","config.json","configur","conflict","conflict,","conflicts,","conform","connect","connections.","cons:","console.","console.dir(active));","console.dir(alive));","console.dir(bestfriend);","console.dir(change));","console.dir(changeevent));","console.dir(completed));","console.dir(doc));","console.dir(docdata));","console.dir(docsmap);","console.dir(documents));","console.dir(error));","console.dir(error);","console.dir(friends);","console.dir(isname);","console.dir(json));","console.dir(json);","console.dir(mother);","console.dir(mydatabase.heroes.name);","console.dir(ok);","console.dir(results);","console.dir(state),","console.error(error),","console.log('done')","console.log('done'));","console.log('got","console.log('initi","console.log('insert","console.log('long","console.log('nam","console.log('someth","console.log(`serv","console.log(amount);","console.log(attachment.scream());","console.log(collect","console.log(doc.myfield);","console.log(doc.scream());","console.log(doc.whoami());","console.log(hero.firstname);","console.log(heroes.scream());","console.log(heroes.whoami());","console.log(laststate);","console.log(mydocument.deleted);","console.log(mydocument.get('firstname'));","console.log(mydocument.name);","console.log(mydocument.nested.attribute);","const","construct","constructed.","contain","contain.","content","continu","continuously.","contribut","contributing!","contribution,","control","coordin","cor","cordova","cordova'","cordova.sqliteplugin.","core","core,","corner.","correspond","cors,","cors:","couchdb","couchdb,","couldn't","count","countalldocuments:","countri","cours","cpu.","creat","created.","createhuman($human:","createrxdatabas","createrxdatabase({","createrxdatabase,","creation","creation.","creditcards:","crown","crypto","current","custom","custoom","cvc:","cycl","d","d.id","damag","data","data');","data,","data.","data:","databas","database)","database,","database.","database:","databases,","databases.","datamigr","date","date().gettime()","date(olddoc.time).gettime();","dates.","db","db.","db.collection({","db.hero","db.heroes;","db.items.insert({","db.server({","db.temperature.insert({","db.waitforleadership()","db1","db2","debug","debug,","debug:","debugging.","decid","declar","decode,","decode;","decreas","decrypt","default","default,","default.","default:","default=tru","defin","defined.","definit","degrees:","delet","deleted$","deleted$.","deleted,","deleted:","deletedflag:","denied$","depend","deprecated.","describ","description:","design","desir","destroy","destroy()","destroyed.","detection,","dev","develop","developer.","developers.","developing,","devic","device,","di","died.","dies.","differ","digest","direct","direction:","directli","directly.","disabl","disablekeycompress","disadvantag","disc","discuss","disk","display","dist","distribut","do","doc","doc.bestfriend_;","doc.firstname);","doc.id);","doc.nam","doc.populate('bestfriend');","doc.putattachment({","doc.updatedat","doc:","doc;","docdata","docdata:","docs$","docs.","docs:instal","docs:serv","docsmap","document","document'","document,","document.","documentdata","documents';","documents,","documents.","documents.filter(d","documents.push(doc);","documents.sort((a,","does,","doesdocumentdatamatch()","doesn't","don't","done","done,","done.","done:","down","down');","download","drive.","due","dump","dump';","dump()","dure","each","easi","easier","easily.","easy,","edg","eg:","elect","election';","electron","else,","emit","emptydatabase.importdump(json)","enabl","enabled.","encod","encode;","encrypt","encrypted,","encrypted.","encrypted:","endpoint","endpoint,","endpoint.","endpoints.","enough","ensur","env:","environ","environment,","environment.","equal","equal,","equival","error","error$","error('stop');","error.","error:","errors,","es5.","es8","especi","etc...","eval'","eval()","eval.","even","event","eventreduc","events,","events.","everyth","exact","exactli","exampl","example)[https://github.com/pubkey/rxdb/tree/master/examples/graphql]","example,","example.","example:","exec()","execut","execution.","exist","exist.","exists.","expect","expected.","explicitli","export","expos","express","express();","extend","extrem","fail","failur","fals","false);","false,","false.","false;","family:","familyname:","fast","faster","faster.","fe:","featur","feature,","feedforrxdbrepl","feedforrxdbreplication(lastid:","feedforrxdbreplication:","fetch","fetch('http://myserver.com/api/countrybycoordinates/'+coordinates+'/')","fetch('https://example.com/api/temp/');","field","field,","field.","fieldnam","fieldname.","fieldnames,","fields.","file","file.","file:","files,","files.","filesystem","filesystem.","fill","filter","filterforminupdatedatandid.slice(0,","final","final,","final:","find","find()","findbyids$()","findbyids()","findon","findone()","finish","fire","first","firstnam","firstname:","fit","flag","flags.","flawless","flexibl","flow","folder","folder)","folder.","follow","following:","foo","foo:","foobar","for,","forc","foreign","form","found","found.","framework.","frameworks,","free","friend","friends:","frontend","full","fulli","function","function(){","function(){},","function(olddoc){","function(password)","function(this:","function.","functionality.","functions,","functions.","gener","generated.","get","get$()","get()","get:","getattachment()","getdata()","getlocal()","getstringdata()","getter","getter.","getter/sett","git","gitter.","give","given","global","global.atob","global.btoa","go","gone","good","graphql","graphql';","graphql.","graphqlschemafromrxschema(),","grate","great","greater","hacked,","hand","hand'","handel","handi","handl","handled.","handled:","handler","happen","happens,","hard","hash","have","header","healthpoint","heatmaps.","heavi","height","help","helper","helpful","here","here,","here.","here]","hero","hero\",","hero.","hero.scream('aah!');","hero:","herocollect","herocollection)","herocollection,","herocollectionmethod","herocollectionmethods:","herodocmethod","herodocmethods,","herodocmethods:","herodoctyp","herodoctype,","herodocu","herodocument,","herodocument.","heroes.findone().exec();","heroes.insert({","heroes:","heroschema,","heroschema:","higher","higher.","hint","hook","hook,","hook?","hooks)","hooks.","hooks:","however,","http","http'));","http';","http://localhost:3000/db","http://localhost:3000/db/item","http://localhost:4000/","https://github.com/pubkey/rxdb.git","https://github.com/pubkey/rxdb/blob/master/src/plugin.ts#l22","https://pouchdb.com/api.html#repl","huge","human","human',","human:","humanchang","humaninput","humaninput)","humaninput):","humanscollection.findone('alice').exec();","humanscollection.findone('bob').exec();","humanscollection.insert({","hybrid","id","id!,","id,","id.","id:","idb","idb'));","ideas:","ident","identifi","idl","idle.","if(olddoc.tim","ignoredupl","ignoreduplicate:","imag","imagin","immedi","immut","immutable.","implement","impli","import","import/export","important:","importdump()","imported.","improv","in,","in.","includ","incom","increas","index","indexed,","indexeddb","indexeddb'));","indexes.","indexes:","indic","info","inform","inherit","initi","inmemori","inmemorycollection,","inmemoryconfig:","input","input.","insensit","insert","insert$","insert()","insert.","inserted.","insertlocal()","inserts,","insid","inspect","instal","instanc","instance,","instance.","instances.","instantli","instead","instead.","int!):","int!,","integ","integr","intent","interact","intern","internally,","internally.","internet,","interv","introduct","invalid","is:","isnam","isname;","isrxcollect","isrxcollection(myobj);","isrxdatabas","isrxdatabase(myobj);","isrxdocu","isrxdocument(myobj);","isrxqueri","isrxquery(myobj);","issu","it'","it,","it.","items:","itself","itter","javascript","javascript,","join","js","json","jsonschema","jsx.","jump","keep","key","key:","keycompress","keycompression:","keycompressor","keynam","keyword","keyword:","king!');","kitty',","know","known","last","lastnam","lastname,","lastname:","laststat","later","later.","latest","lead","leader","leader,","leader.","leaderelect","leaderelection.","learn","leav","length","less","let","level","leveldb","leveldb'));","leveldown","library.","life","lifecycl","like:","limit","limit:","limited;","link","list","list,","list:","listen","live","live:","liveinterv","liveinterval:","load","local","localdoc","localdoc.foo","localdoc.foo;","localdoc.get$('foo').subscribe(valu","localdoc.get('foo');","localdoc.remove();","localdoc.save();","localdoc.set('foo',","localdocu","locally,","localstorage'));","locat","log","log.txt'","logic","logpath:","long","longer","look","looks.","lost","lot","machine.","made","main","mainapp","mainapp.listen(3000,","mainapp.use('/',","mainapp.use('/db',","make","manag","mango","mani","manipul","manipulate.","manual","map","map(2)","map.","mark","match","math.round(new","matter","maximum","md5","mean","means,","meant","memcol","memcol.awaitpersistence();","memcol.find().exec();","memcol.insert({foo:","memdown","memori","memory'));","memory';","memory)","memory,","memory.","memoryadapt","merg","messag","messagecol","messagecol.migratepromise(10);","messages.","messageschemav1,","messeng","metadata.","method","method,","method.","methods,","methods.","methods:","middlewar","middlewares...","migrat","migrated.","migrated:","migratepromise;","migration.","migrationpromis","migrationstrategi","migrationstrategies:","mind","minupdatedat:","minute.","mirgrat","mistake,","mode","mode';","mode,","mode.","model","models,","modifi","modifier:","modifyjs.","modul","module,","module.","moment","mongo","mongoose,","mongoose.","more","more.","mother","mother:","mount","move","mqueri","ms","much","multi","multiinst","multiinstance:","multipl","mupltipl","mutat","mycollect","mycollection.$.subscribe(changeev","mycollection.atomicupsert(docdata);","mycollection.bulkinsert([{","mycollection.customcleanupfunction();","mycollection.destroy();","mycollection.dump()","mycollection.dump(true)","mycollection.find().exec()","mycollection.find().where('age').gt(18)","mycollection.find().where('age').gt(18).doesdocumentdatamatch(documentdata);","mycollection.find().where('age').gt(18);","mycollection.find().where('age').gt(20).doesdocumentdatamatch(documentdata);","mycollection.find().where('age').lt(18);","mycollection.find().where('name').eq('foo')","mycollection.find().where('x').eq(5)","mycollection.find();","mycollection.find({","mycollection.findbyids(ids);","mycollection.findone('foo')","mycollection.findone().exec();","mycollection.findone().where('name').eq('foo')","mycollection.getlocal('foobar');","mycollection.importdump(json)","mycollection.inmemory();","mycollection.insert$.subscribe(changeev","mycollection.insert({","mycollection.insert({/*","mycollection.insertlocal(","mycollection.newdocument({","mycollection.postcreate(function(plaindata,","mycollection.postinsert(function(plaindata,","mycollection.postremove(function(plaindata,","mycollection.postsave(function(plaindata,","mycollection.preinsert(function(plaindata){","mycollection.preremove(function(plaindata,","mycollection.presave(function(plaindata,","mycollection.remove$.subscribe(changeev","mycollection.remove();","mycollection.sync({","mycollection.syncgraphql()","mycollection.syncgraphql().","mycollection.syncgraphql({","mycollection.update$.subscribe(changeev","mycollection.upsert(docdata);","mycollection.upsert({","mycollection.upsertlocal(","mydatabas","mydatabase.collection({","mydatabase.destroy();","mydatabase.dump()","mydatabase.dump(true)","mydatabase.heroes.countalldocuments();","mydatabase.heroes.insert({","mydatabase.heroes.postinsert(","mydatabase.insertlocal(","mydatabase.remove();","mydatabase.requestidlepromise().then(()","mydatabase.requestidlepromise(1000","mydatabase:","mydatabasecollect","mydb.$.subscribe(changeev","mydocument.$","mydocument.allattachments$.subscribe(","mydocument.allattachments();","mydocument.atomicset('firstname',","mydocument.atomicset('name',","mydocument.atomicset('nested.attribute',","mydocument.atomicupdate(changefunction);","mydocument.deleted$.subscribe(st","mydocument.family.mother_;","mydocument.firstnam","mydocument.firstname$.subscribe(newnam","mydocument.friends_;","mydocument.get$('name')","mydocument.get('name');","mydocument.getattachment('cat.jpg');","mydocument.nam","mydocument.name;","mydocument.putattachment({","mydocument.remove();","mydocument.save();","mydocument.set('firstname',","mydocument.tojson();","mydocument.update({","mydocument.whatever.nestedfield","mydocument.whatever.nestedfield;","mydomelement.innerhtml","myheroschema","mymethod.bind(mydocument)","myplugin","mypostinserthook(","myrxcollection.pouch.put({/*","myrxcollection.watchforchanges();","myschema","myschema,","name","name,","name.","name:","name:foobar","names.","nativ","native'","native.","need","need.","ness","nest","nestedvalu","network","never","new","new,","newdocument()","newer","newest","newli","newname));","newname;","next","next(data)","node","node,","nodej","nodejs.","non","normal","nosql","not.","note","noth","notic","notice.","notice:","notif","notifiers,","now","npm","null","null,","null;","number","number,","number.","number;","object","object).","object,","object.","object.defineproperty(rxdocument,","objects.","observ","observables:","occur","offlin","offline,","ok","ok,","old","olddata.ag","olddata.nam","olddata;","olddoc.coordinates;","olddoc.sendercountry=response;","olddoc.tim","olddoc;","older","olderdocu","omit","on","onc","once,","once.","one,","one.","ongo","onhumanchang","onlin","open","openli","oper","operations.","optim","optimis","optimization,","optimizations.","option","optional.","options,","options:","origin","orm","orm/drm","orm/drm.","other.","otherwis","out","over","overview","overwrit","overwritable:","overwritten","own,","package.json,","package.json.","page","parallel","paramet","parameter,","parameter.","parameters:","paramt","parent","parrallel","part","parti","parties.","pass","passportid:","password","password.","password.length","password:","path","path:","peer","pend","peopl","per","percent:","percentag","perform","performance,","performance.","perman","permissions).","persist","phonegap","pick","piec","plain","plaindata.ag","plaindata.anyfield","play","pleas","plugin","plugin.","plugins:","polici","policies.","policy,","polling.","polyfil","polyfills,","popul","populate()","port","port:","possibl","post","postcreat","postinsert","postremov","postsav","pouch","pouch/couch","pouchadaptermemori","pouchdb","pouchdb'","pouchdb,","pouchdbexpressopt","pouchdbexpressoptions:","pouchhttpplugin","pouchset","pouchsettings:","power","pr","pre","predict","prefer","prefil","preinsert","preremov","presav","prevent","previou","primari","primary,","primary.","primary:","probabl","problem","problem,","process","process,","process.brows","produce,","product","production.","progress","projects.","promis","promise(r","promise.","promise;","properli","properti","properties:","property.","pros:","proto.hello","protocol.","prototyp","prototypes:","provid","proxi","pseudo","pull","pull:","pullquerybuild","pullquerybuilder,","pullquerybuilder.","pullquerybuilderfromrxschema()","purg","push","push:","pushquerybuild","pushquerybuilder,","pushquerybuilderfromrxschema()","putattachment()","queri","queries,","queries.","query,","query.","query.$.subscribe(result","query.exec();","query.remove();","query.update({","query:","querybuild","querybuilder,","querybuilder.","querybuilder:","querycach","queryobject","queryobject.exec();","queryobject.sort('name');","queryobjectsort","queryobjectsort.exec();","question","queu","quota","rare","re","react","reactiv","reactn","read","readabl","real","realli","realtim","realtime.","reason.","reassign","receiv","reciev","recogn","recommend","reconnect:","record","recur","reduc","redund","ref","ref:","refer","referenc","referenceerror:","refhuman","refind","regex","regex:","regexp","regexp('^foo$',","regexp}}","regist","regular","regularly,","reimplement","relat","releas","reli","relic","remains:","remot","remote:","remov","remove$","remove()","removed.","removeddoc","removerxdatabas","removerxdatabase('mydatabasename',","render","replac","replic","replicated,","replicated.","replication,","replication.","replications.","replicationst","replicationstate.","replicationstate.active$.subscribe(act","replicationstate.alive$.subscribe(al","replicationstate.awaitinitialreplication();","replicationstate.cancel();","replicationstate.change$.subscribe(chang","replicationstate.complete$.subscribe(complet","replicationstate.denied$.subscribe(docdata","replicationstate.docs$.subscribe(docdata","replicationstate.error$.subscribe(error","replicationstate.isstopped();","replicationstate.run();","replicationstate.setheaders({","repositori","repres","represent","representation.","reproduc","request,","requestidlecallback","requestidlepromise()","requir","require('asyncstorag","require('leveldown');","require('memdown');","required.","required:","res)","res.send('hello'));","reset","resolut","resolv","resourc","respons","response.json();","restart","result","result.","results.","results.length);","results:","retry:","return","returning.","reus","rev","revis","right","rootvalu","rout","row","run","run()","run:","running.","runtim","runtime,","runtime.","rx.collection.sync()","rxattach","rxattachemnt","rxattachment.","rxcachereplacementpolicy.","rxcollect","rxcollection().awaitpersistence()","rxcollection().inmemory();","rxcollection,","rxcollection.","rxcollection.insert","rxcollection.newdocument(initaldata).","rxcollection.sync()","rxcollection.sync().","rxcollection:","rxcollection;","rxcollections,","rxdatabas","rxdatabase,","rxdatabase.","rxdatabase;","rxdb","rxdb'","rxdb,","rxdb.","rxdb:","rxdbadaptercheckplugin","rxdbajvvalidateplugin","rxdbattachmentsplugin","rxdbdevmodeplugin","rxdbencryptionplugin","rxdbinmemoryplugin","rxdbjsondumpplugin","rxdbkeycompressionplugin","rxdbleaderelectionplugin","rxdblocaldocumentsplugin","rxdbmigrationplugin","rxdbnovalidateplugin","rxdbquerybuilderplugin","rxdbreplicationgraphqlplugin","rxdbreplicationplugin","rxdbserverplugin","rxdbupdateplugin","rxdbvalidateplugin","rxdbvalidatezschemaplugin","rxdbwatchforchangesplugin","rxdocument","rxdocument)","rxdocument){","rxdocument,","rxdocument.","rxdocument.atomicupdate.","rxdocument.remov","rxdocument.sav","rxdocument.upd","rxdocument;","rxdocument[alice]","rxdocument],","rxgraphqlreplicationst","rxj","rxjsonschema","rxjsonschema,","rxjsonschema.","rxlocaldocu","rxlocaldocument.","rxqueri","rxquery'","rxquery,","rxquery.","rxquery.find().","rxquery.update.","rxreplicationst","rxschema","rxschema.","safe","same","save","save'","save()","saved.","schema","schema\",","schema'","schema',","schema';","schema,","schema.","schema.org.","schema:","schema?","schemas,","schemas.","schemaversions.","schemawithdefaultag","schemawithfinalag","schemawithindex","schemawithonetomanyrefer","scope","scream:","screams:","search","second","second.","secondari","seconds.","secret","secret:","secur","see","see:","selector.","selector:","selectors.","self","semi","send","sender","sens","sense.","sensit","sent","separ","seri","server","server()","server,","server.","serverless.","serverurl,","server}","set","set()","set).","set.","sethuman(human:","sethuman:","setter","settimeout(res,","settings:","setup","sever","share","shim","short","show","side","side,","side.","signal","similar","simpl","simple.","simplifi","simul","singl","site","size","size,","size.","skeletor!!'","skill","skip","slow","small","solut","solv","someth","something,","sometim","soon","sort","sort:","sortabl","sorteddocu","sourc","space.","spawn","spec","special","specif","specifi","speed","spin","sql","sqlite","sqlite'","sqlite'));","sqliteadapt","sqliteadapterfactori","sqliteadapterfactory(sqlite)","src","standard","standart","start","startserv","startserver:","state","state);","state,","statement","states.","static","static.","statics,","statics:","stay","stefe'","step","steve'","sth","still","stolen","stop","stopped.","storag","storage.","store","store.","stored.","strang","strategi","strategies:","stream","stream.","string","string!,","string)","string,","string.","string;","structur","submit","subscrib","subscript","subscriptioncli","subscriptionclient(","succeed","success","success:","suffix","suit","sum","support","sure","switch","sync","sync()","sync.","synchron","synchronis","syntax","syntax,","syntax.","system","systems.","tab","tab.","table.","tabs,","tabs.","take","task","tasks.","team","tell","temp","temp,","tempdoc","tempdoc.ag","tempdoc.lastnam","tempdoc.save();","temperatur","temporari","ten","terminates.","test","test/unit","test:nod","tests,","thank","them,","them.","therefor","these","thing","things.","third","this,","this.","this.find().exec();","this.firstnam","this.nam","this.name;","this:","through","throw","time","time,","time.","time:","timeout","times.","timespan,","timestamp","timestamps,","title:","tmp","to,","to.","togeth","tojson()","top","total:","track","traffic","transform","transmit","transpil","transport","tri","tricki","trigger","trivial","true","true);","true,","true.","true/fals","true;","truth","tutori","tutorial.","tutorial:","two","type","type.","type:","typed!","typeof","types,","typescript","typescript.","u","ui","uncach","uncacherxquery(rxquery).","uncaught","undefin","underscor","underscore_","unencrypt","uniqu","unique,","unit","unix","unless","unset","until","up","up.","updat","update$","update()","updatedat","updatedat.","updatedat:","upon","upsert","upsert()","upsertlocal()","url","url:","us","usag","use.","useabl","used:","useful","user","user'","user,","users'","users.","util","v3.8","valid","valid.","validate';","validatepassword:","validation.","valu","valuabl","value).","value,","value.","value:","values,","values.","vanillaj","var","variabl","variables.","variables:","variou","veri","version","version,","version.","version:","versions.","via","view","visitor","visual","wait","wait..","waitforleadership()","waitforleadership:","want","wast","watch","way","web","webpack","websit","websites,","websocket","websql","websql'));","websql.","what.touppercase();","what:","whatev","when:","whenev","where.","whether","while,","whoami:","whole","whose","wide","wide.","will,","window","window.","window;","wipe","wire","with:","within","without","won't","work","work!","work.","worked,","works!","worry,","worst","write","write.","written","wrong');","wrong.","ws';","wsclient","wsclient.request({","you'd","you'r","you.","youngest","z","z0","z][[a","z][a","za","{","{$eq:","{$or:","{$regex:","{app,","{name:","{object}","{}","{},","||","}","})","});","},","};","}]);","}]}","}`;","♛"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"\n \n \n \n\n\n\n A realtime Database for JavaScript Applications\n\n\n RxDB (short for Reactive Database) is a NoSQL-database for JavaScript Applications like Websites, hybrid Apps, Electron-Apps, Progressive Web Apps and NodeJs.\n Reactive means that you can not only query the current state, but subscribe to all state changes like the result of a query or even a single field of a document.\n This is great for UI-based realtime applications in way that makes it easy to develop and also has great performance benefits. To replicate data between your clients and server, RxDB provides modules for realtime replication with any CouchDB compliant endpoint and also with custom GraphQL endpoints.\n\n\n\n \n \n \n \n \n \n\n \n -->\n\n\n\n\n Core features\n\n\n\n\n Realtime Queries\n\n\n\nIn addition to normal pull-based queries, RxDB is capable of having so called realtime queries. These do not only give you the results once but instead emit the new query results each time the state of your database changes.\nThe stream comes as simple RxJS Observable and works flawless together with your frontend framework.\n\n\ndb.heroes\n .find({\n sort: ['name']\n })\n .$ // {\n myDomElement.innerHTML = docs\n .map(doc => '' + doc.name + '')\n .join();\n });\n\n\n\n Replication\n\n\n\n To synchronize data between your clients and your server, RxDB provides replication modules for CouchDB and GraphQL. So when your server changes data, your application will automatically stream that change to the client and updates its visual representation.\n\n\n\n\n Multi-Window / Tab Support\n\n\n\n When your application is opened in multiple windows or tabs at the same time, it can be tricky to synchronize actions between the open states. RxDB automatically broadcasts all changes between these tabs so you do not have to take any care of it.\n\n\n\n \n\n\n\n\n Other features\n\n\n\n Schema\n\n\n\n RxDB is based on json-schema where the structure of documents is defined for each collection. This is useful when you develope in a team with multiple developers. It also provides information for RxDB to do performance optimizations. Also the schema is versionized and you can provide migration strategies to migrate the data which is already stored on the clients.\n\n\n\n Encryption\n\n\n\n RxDB comes with an encryption module where specific fields of a document can be stored encrypted. So when your clients device is stolen or hacked, you can be sure that sensitive data is not readable by third parties.\n\n\n\n Key Compression\n\n\n Saving data on a client can be tricky because you cannot predict how much storage capacity will be available. RxDB provides a key-compression module that compresses the stored json documents which saves about 40% of storage space.\n\n\n\n\n\n If you are new to RxDB, you should continue reading the documentation here.\n\n"},"install.html":{"url":"install.html","title":"Install","keywords":"","body":"Install\nnpm\nTo install the latest release of rxdb and its dependencies and save it to your package.json, run:\nnpm i rxdb --save\npeer-dependency\nYou also need to install the peer-dependency rxjs if you have not installed it before.\nnpm i rxjs --save\npolyfills\nRxDB is coded with es8 and transpiled to es5. This means you have to install polyfills to support older browsers. For example you can use the babel-polyfills with:\nnpm i @babel/polyfill --save\nIf you need polyfills, you have to import them in your code.\nimport '@babel/polyfill';\n\npolyfill global\nWhen you use RxDB with angular or other webpack based frameworks, you might get the error Uncaught ReferenceError: global is not defined. This is because pouchdb assumes a nodejs-specific global variable that is not added to browser runtimes by some bundlers.\nYou have to add them by your own, like we do here.\n(window as any).global = window;\n(window as any).process = {\n env: { DEBUG: undefined },\n};\n\nLatest\nIf you need the latest development state of RxDB, add it as git-dependency into your package.json.\n \"dependencies\": {\n \"rxdb\": \"git+https://git@github.com/pubkey/rxdb.git#commitHash\"\n }\n\nReplace commitHash with the hash of the latest build-commit.\nImport\nTo import rxdb, add this to your javascript file:\nimport {\n createRxDatabase,\n RxDatabase\n /* ... */\n} from 'rxdb';\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-database.html":{"url":"rx-database.html","title":"RxDatabase","keywords":"","body":"RxDatabase\nA RxDatabase-Object contains your collections and handles the synchronisation of change-events.\nCreation\nThe database is created by the asynchronous .create()-function of the main RxDB-module. It has the following parameters:\nimport { createRxDatabase } from 'rxdb';\nconst db = await createRxDatabase({\n name: 'heroesdb', // \nname\nThe database-name is a string which uniquely identifies the database. When two RxDatabases have the same name and use the same storage-adapter, their data can be assumed as equal and they will share change-events between each other.\nDepending on the adapter this can also be used to define the storage-folder of your data.\nadapter\nRxDB uses adapters to define where the data is actually stored at. You can use different adapters depending on which environment your database runs in. This has the advantage that you can use the same RxDB code in different environments and just switch out the adapter.\nExample for browsers:\n\n// this adapter stores the data in indexeddb\naddRxPlugin(require('pouchdb-adapter-idb'));\n\nconst db = await createRxDatabase({\n name: 'mydatabase',\n adapter: 'idb' // name of the adapter\n});\n\n Check out the List of adapters for RxDB to learn which adapter you should use. \npassword\n(optional)\nIf you want to use encrypted fields in the collections of a database, you have to set a password for it. The password must be a string with at least 12 characters.\nmultiInstance\n(optional=true)\nWhen you create more than one instance of the same database in a single javascript-runtime, you should set multiInstance to true. This will enable the event-sharing between the two instances serverless. This should be set to false when you have single-instances like a single nodejs-process, a react-native-app, a cordova-app or a single-window electron-app.\neventReduce\n(optional=true)\nOne big benefit of having a realtime database is that big performance optimizations can be done when the database knows a query is observed and the updated results are needed continuously. RxDB uses the EventReduce Algorithm to optimize observer or recurring queries.\nignoreDuplicate\n(optional=false)\nIf you create multiple RxDatabase-instances with the same name and same adapter, it's very likely that you have done something wrong.\nTo prevent this common mistake, RxDB will throw an error when you do this.\nIn some rare cases like unit-tests, you want to do this intentional by setting ignoreDuplicate to true.\nconst db1 = await createRxDatabase({\n name: 'heroesdb',\n adapter: 'websql',\n ignoreDuplicate: true\n});\nconst db2 = await createRxDatabase({\n name: 'heroesdb',\n adapter: 'websql',\n ignoreDuplicate: true // this create-call will not throw because you explicitly allow it\n});\n\npouchSettings\nYou can pass settings directly to the pouchdb database create options through this property. This settings will be added to all pouchdb-instances that are created for this database.\nFunctions\nObserve with $\nCalling this will return an rxjs-Observable which streams every change to data of this database.\nmyDb.$.subscribe(changeEvent => console.dir(changeEvent));\n\ndump()\nUse this function to create a json-export from every piece of data in every collection of this database. You can pass true as a parameter to decrypt the encrypted data-fields of your document.\nmyDatabase.dump()\n .then(json => console.dir(json));\n\n// decrypted dump\nmyDatabase.dump(true)\n .then(json => console.dir(json));\n\nimportDump()\nTo import the json-dumps into your database, use this function.\n// import the dump to the database\nemptyDatabase.importDump(json)\n .then(() => console.log('done'));\n\nserver()\nSpawns a couchdb-compatible server from the database. Read more\nwaitForLeadership()\nReturns a Promise which resolves when the RxDatabase becomes elected leader.\nrequestIdlePromise()\nReturns a promise which resolves when the database is in idle. This works similar to requestIdleCallback but tracks the idle-ness of the database instead of the CPU.\nUse this for semi-important tasks like cleanups which should not affect the speed of important tasks.\n\nmyDatabase.requestIdlePromise().then(() => {\n // this will run at the moment the database has nothing else to do\n myCollection.customCleanupFunction();\n});\n\n// with timeout\nmyDatabase.requestIdlePromise(1000 /* time in ms */).then(() => {\n // this will run at the moment the database has nothing else to do\n // or the timeout has passed\n myCollection.customCleanupFunction();\n});\n\ndestroy()\nDestroys the databases object-instance. This is to free up memory and stop all observings and replications.\nReturns a Promise that resolves when the database is destroyed.\nawait myDatabase.destroy();\n\nremove()\nRemoves the database and wipes all data of it from the storage.\nawait myDatabase.remove();\n// database is now gone\n\n// NOTICE: You can also remove a database without its instance\nimport { removeRxDatabase } from 'rxdb';\nremoveRxDatabase('mydatabasename', 'localstorage');\n\ncheckAdapter()\nChecks if the given adapter can be used with RxDB in the current environment.\nimport { checkAdapter, addRxPlugin } from 'rxdb';\naddRxPlugin(require('pouchdb-adapter-localstorage')); // adapter must be added before\n\nconst ok = await checkAdapter('localstorage');\nconsole.dir(ok); // true on most browsers, false on nodejs\n\nisRxDatabase\nReturns true if the given object is an instance of RxDatabase. Returns false if not.\nimport { isRxDatabase } from 'rxdb';\nconst is = isRxDatabase(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-schema.html":{"url":"rx-schema.html","title":"RxSchema","keywords":"","body":"RxSchema\nSchemas define how your data looks. Which field should be used as primary, which fields should be used as indexes and what should be encrypted. The schema also validates that every inserted document of your collections conforms to the schema. Every collection has its own schema. With RxDB, schemas are defined with the jsonschema-standard which you might know from other projects.\nExample\nIn this example-schema we define a hero-collection with the following settings:\n\nthe version-number of the schema is 0\nthe name-property is the primary. This means its an unique, indexed, required string which can be used to definitely find a single document.\nthe color-field is required for every document\nthe healthpoints-field must be a number between 0 and 100\nthe secret-field stores an encrypted value\nthe birthyear-field is final which means it is required and cannot be changed\nthe skills-attribute must be an array with objects which contain the name and the damage-attribute. There is a maximum of 5 skills per hero.\nAllows adding attachments and store them encrypted\n{\n \"title\": \"hero schema\",\n \"version\": 0,\n \"description\": \"describes a simple hero\",\n \"type\": \"object\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"primary\": true\n },\n \"color\": {\n \"type\": \"string\"\n },\n \"healthpoints\": {\n \"type\": \"number\",\n \"minimum\": 0,\n \"maximum\": 100\n },\n \"secret\": {\n \"type\": \"string\"\n },\n \"birthyear\": {\n \"type\": \"number\",\n \"final\": true,\n \"minimum\": 1900,\n \"maximum\": 2050\n },\n \"skills\": {\n \"type\": \"array\",\n \"maxItems\": 5,\n \"uniqueItems\": true,\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"damage\": {\n \"type\": \"number\"\n }\n }\n }\n }\n },\n \"required\": [\"color\"],\n \"encrypted\": [\"secret\"],\n \"attachments\": {\n \"encrypted\": true\n }\n}\n\n\n\nCreate a collection with the schema\nawait myDatabase.collection({\n name: 'heroes',\n schema: myHeroSchema\n});\nconsole.dir(myDatabase.heroes.name);\n// heroes\n\nversion\nThe version field is a number, starting with 0.\nWhen the version is greater than 0, you have to provide the migrationStrategies to create a collection with this schema.\nkeyCompression\nSince version 8.0.0, the keyCompression is disabled by default. If you have a huge amount of documents it makes sense to enable the keyCompression and save disk-space.\nNotice that keyCompression can only be used on the top-level of a schema.\nconst mySchema = {\n keyCompression: true, // set this to true, to enable the keyCompression\n version: 0,\n title: 'human schema no compression',\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n }\n },\n required: ['firstName', 'lastName']\n};\n\nIndexes\nRxDB supports secondary indexes which are defined at the schema-level of the collection.\nIndex is only allowed on field types string, integer and number\nIndex-example\nconst schemaWithIndexes = {\n version: 0,\n title: 'human schema no compression',\n keyCompression: true,\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n },\n familyName: {\n type: 'string'\n },\n creditCards: {\n type: 'array',\n items: {\n type: 'object',\n properties: {\n cvc: {\n type: 'number'\n }\n }\n } \n }\n },\n indexes: [\n 'firstName', // \nattachments\nTo use attachments in the collection, you have to add the attachments-attribute to the schema. See RxAttachment.\ndefault\nDefault values can only be defined for first-level fields.\nWhenever you insert a document or create a temporary-document, unset fields will be filled with default-values.\nconst schemaWithDefaultAge = {\n version: 0,\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n },\n age: {\n type: 'integer',\n default: 20 // \nfinal\nBy setting a field to final, you make sure it cannot be modified later. Final fields are always required.\nFinal fields cannot be observed because they anyway will not change.\nAdvantages:\n\nWith final fields you can ensure that no other in your dev-team accidentally modifies the data\nWhen you enable the query-change-detection, some performance-improvements are done\n\nconst schemaWithFinalAge = {\n version: 0,\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n },\n age: {\n type: 'integer',\n final: true\n }\n },\n};\n\nencryption\nBy adding a field to the encrypted list, it will be stored encrypted inside of the data-store. The encryption will run internally, so when you get the RxDocument, you can access the unencrypted value.\nYou can set all fields to be encrypted, even nested objects. You can not run queries over encrypted fields.\nThe password used for encryption is set during database creation. See RxDatabase.\nconst schemaWithDefaultAge = {\n version: 0,\n type: 'object',\n properties: {\n secret: {\n type: 'string'\n },\n },\n encrypted: ['secret']\n};\n\nNOTICE: Not everything within the jsonschema-spec is allowed\nThe schema is not only used to validate objects before they are written into the database, but also used to map getters to observe and populate single fieldnames, keycompression and other things. Therefore you can not use every schema which would be valid for the spec of json-schema.org.\nFor example, fieldnames must match the regex ^[a-zA-Z][[a-zA-Z0-9_]*]?[a-zA-Z0-9]$ and additionalProperties is always set to false. But don't worry, RxDB will instantly throw an error when you pass a invalid schema into it.\n\nIf you are new to RxDB, you should continue here\n"},"rx-collection.html":{"url":"rx-collection.html","title":"RxCollection","keywords":"","body":"RxCollection\nA collection stores documents of the same type.\nCreating a Collection\nTo create a collection you need a RxDatabase object which has the .collection()-method. Every collection needs a collection name and a valid RxSchema. Other attributes are optional.\nconst myCollection = await myDatabase.collection({\n name: 'humans',\n schema: mySchema,\n pouchSettings: {} // (optional)\n statics: {}, // (optional) // ORM-functions for this collection\n methods: {}, // (optional) ORM-functions for documents\n attachments: {}, // (optional) ORM-functions for attachments\n options: {}, // (optional) Custom paramters that might be used in plugins\n migrationStrategies: {}, // (optional)\n autoMigrate: true, // (optional)\n cacheReplacementPolicy: function(){}, // (optional) custoom cache replacement policy\n});\n\nname\nThe name uniquely identifies the collection and should be used to refind the collection in the database. Two different collections in the same database can never have the same name. Collection names must match the following regex: ^[a-z][a-z0-9]*$.\nschema\nThe schema defines how your data looks and how it should be handled. You can pass a RxSchema object or a simple javascript-object from which the schema will be generated.\npouchSettings\nYou can pass settings directly to the pouchdb database create options through this property.\nORM-functions\nWith the parameters statics, methods and attachments, you can defined ORM-functions that are applied to each of these objects that belong to this collection. See ORM/DRM.\nMigration\nWith the parameters migrationStrategies and autoMigrate you can specify how mirgration between different schema-versions should be done. See Migration.\nGet a collection from the database\nTo get an existing collection from the database, call the collection name directly on the database:\n// newly created collection\nconst collection = await db.collection({\n name: 'heroes',\n schema: mySchema\n});\nconst collection2 = db.heroes;\nconsole.log(collection === collection2); //> true\n\nFunctions\nObserve $\nCalling this will return an rxjs-Observable which streams every change to data of this collection.\nmyCollection.$.subscribe(changeEvent => console.dir(changeEvent));\n\n// you can also observe single event-types with insert$ update$ remove$\nmyCollection.insert$.subscribe(changeEvent => console.dir(changeEvent));\nmyCollection.update$.subscribe(changeEvent => console.dir(changeEvent));\nmyCollection.remove$.subscribe(changeEvent => console.dir(changeEvent));\n\ninsert()\nUse this to insert new documents into the database. The collection will validate the schema and automatically encrypt any encrypted fields. Returns the new RxDocument.\nconst doc = await myCollection.insert({\n name: 'foo',\n lastname: 'bar'\n});\n\nbulkInsert()\nWhen you have to insert many documents at once, use bulk insert. This is much faster then calling .insert() multiple times.\nReturns an object with a success- and error-array.\nconst result = await myCollection.bulkInsert([{\n name: 'foo1',\n lastname: 'bar1'\n},\n{\n name: 'foo2',\n lastname: 'bar2'\n}]);\n\n// > {\n// success: [RxDocument, RxDocument],\n// error: []\n// }\n\nNOTICE: bulkInsert will not fail on update conflicts and you cannot expect that on failure the other documents are not inserted.\nnewDocument()\nSometimes it can be helpful to spawn and use documents before saving them into the database.\nThis is useful especially when you want to use the ORM methods or prefill values from form data.\nYou can create temporary documents by calling RxCollection.newDocument(initalData).\nconst tempDoc = myCollection.newDocument({\n firstName: 'Bob'\n});\n\n// fill in data later\ntempDoc.lastName = 'Kelso';\ntempDoc.age = 77;\n\n// saving a temporary document will transform it to a standard RxDocument\nawait tempDoc.save();\n\nupsert()\nInserts the document if it does not exist within the collection, otherwise it will overwrite it. Returns the new or overwritten RxDocument.\nconst doc = await myCollection.upsert({\n name: 'foo',\n lastname: 'bar2'\n});\n\natomicUpsert()\nWhen you run many upsert operations on the same RxDocument in a very short timespan, you might get a 409 Conflict error.\nThis means that you tried to run a .upsert() on the document, while the previous upsert operation was still running.\nTo prevent these types of errors, you can run atomic upsert operations.\nThe behavior is similar to RxDocument.atomicUpdate.\nconst docData = {\n name: 'Bob', // primary\n lastName: 'Kelso'\n};\n\nmyCollection.upsert(docData);\nmyCollection.upsert(docData);\n// -> throws because of parrallel update to the same document\n\nmyCollection.atomicUpsert(docData);\nmyCollection.atomicUpsert(docData);\nmyCollection.atomicUpsert(docData);\n\n// wait until last upsert finished\nawait myCollection.atomicUpsert(docData);\n// -> works\n\nfind()\nTo find documents in your collection, use this method. See RxQuery.find().\n// find all that are older then 18\nconst olderDocuments = await myCollection\n .find()\n .where('age')\n .gt(18)\n .exec(); // execute\n\nfindOne()\nThis does basically what find() does, but it returns only a single document. You can pass a primary value to find a single document more easily.\nTo find documents in your collection, use this method. See RxQuery.find().\n// get document with name:foobar\nmyCollection.findOne().where('name').eq('foo')\n .exec().then(doc => console.dir(doc));\n\n// get document by primary, functionally identical to above query\nmyCollection.findOne('foo')\n .exec().then(doc => console.dir(doc));\n\nfindByIds()\nNotice: This method is in beta and might be changed without notice.\nFind many documents by their id (primary value). This has a way better performance than running multiple findOne() or a find() with a big $or selector.\nReturns a Map where the primary key of the document is mapped to the document. Documents that do not exist or are deleted, will not be inside of the returned Map.\nconst ids = [\n 'alice',\n 'bob',\n /* ... */\n];\nconst docsMap = await myCollection.findByIds(ids);\n\nconsole.dir(docsMap); // Map(2)\n\nfindByIds$()\nSame as findByIds() but returns and Observable that emits the Map each time a value of it has changed because of a database write.\ndump()\nUse this function to create a json export from every document in the collection. You can pass true as parameter to decrypt the encrypted data fields of your documents.\nmyCollection.dump()\n .then(json => console.dir(json));\n\n// decrypted dump\nmyCollection.dump(true)\n .then(json => console.dir(json));\n\nimportDump()\nTo import the json dump into your collection, use this function.\n// import the dump to the database\nmyCollection.importDump(json)\n .then(() => console.log('done'));\n\nsync()\nThis method allows you to replicate data between other RxCollections, pouchdb instances or remote servers which support the couchdb-sync-protocol.\nFull documentation on how to use replication is here.\nremove()\nRemoves all known data of the collection and its previous versions.\nThis removes the documents, the schemas, and older schemaVersions.\nawait myCollection.remove();\n// collection is now removed and can be re-created\n\ndestroy()\nDestroys the collection's object instance. This is to free up memory and stop all observings and replications.\nawait myCollection.destroy();\n\nisRxCollection\nReturns true if the given object is an instance of RxCollection. Returns false if not.\nconst is = isRxCollection(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-document.html":{"url":"rx-document.html","title":"RxDocument","keywords":"","body":"RxDocument\nA document is a single object which is stored in a collection. It can be compared to a single record in a relational database table. You get an RxDocument either as return on inserts, or as result-set of queries.\ninsert\nTo insert a document into a collection, you have to call the collection's .insert()-function.\nmyCollection.insert({\n name: 'foo',\n lastname: 'bar'\n});\n\nfind\nTo find documents in a collection, you have to call the collection's .find()-function. See RxQuery.\nmyCollection.find().exec() // console.dir(documents));\n\nFunctions\nget()\nThis will get a single field of the document. If the field is encrypted, it will be automatically decrypted before returning.\nvar name = myDocument.get('name'); // returns the name\n\nget$()\nThis function returns an observable of the given paths-value.\nThe current value of this path will be emitted each time the document changes.\n// get the life-updating value of 'name'\nvar isName;\nmyDocument.get$('name')\n .subscribe(newName => {\n isName = newName;\n });\n\nawait myDocument.atomicSet('name', 'foobar2');\nconsole.dir(isName); // isName is now 'foobar2'\n\nproxy-get\nAll properties of a RxDocument are assigned as getters so you can also directly access values instead of using the get()-function.\n // Identical to myDocument.get('name');\n var name = myDocument.name;\n // Can also get nested values.\n var nestedValue = myDocument.whatever.nestedfield;\n\n // Also useable with observables:\n myDocument.firstName$.subscribe(newName => console.log('name is: ' + newName));\n // > 'name is: Stefe'\n await myDocument.atomicSet('firstName', 'Steve');\n // > 'name is: Steve'\n\nupdate()\nUpdates the document based on the mongo-update-syntax, based on modifyjs.\nawait myDocument.update({\n $inc: {\n age: 1 // increases age by 1\n },\n $set: {\n firstName: 'foobar' // sets firstName to foobar\n }\n});\n\natomicUpdate()\nUpdates a documents data based on a function that transforms the current data and returns the new value.\n\nconst changeFunction = (oldData) => {\n oldData.age = oldData.age + 1;\n oldData.name = 'foooobarNew';\n return oldData;\n}\nawait myDocument.atomicUpdate(changeFunction);\nconsole.log(myDocument.name); // 'foooobarNew'\n\natomicSet()\nWorks like atomicUpdate but only sets the value for a single attribute.\nawait myDocument.atomicSet('nested.attribute', 'foobar');\nconsole.log(myDocument.nested.attribute); // 'foobar'\n\nObserve $\nCalling this will return an rxjs-Observable which emits all change-Events belonging to this document.\n// get all changeEvents\nmyDocument.$\n .subscribe(changeEvent => console.dir(changeEvent));\n\nremove()\nThis removes the document from the collection. Notice that this will not purge the document from the store but set _deleted:true like described in the pouchdb-docs in option 3.\nmyDocument.remove();\n\ndeleted$\nEmits a boolean value, depending on whether the RxDocument is deleted or not.\nlet lastState = null;\nmyDocument.deleted$.subscribe(state => lastState = state);\n\nconsole.log(lastState);\n// false\n\nawait myDocument.remove();\n\nconsole.log(lastState);\n// true\n\nget deleted\nA getter to get the current value of deleted$.\nconsole.log(myDocument.deleted);\n// false\n\nawait myDocument.remove();\n\nconsole.log(myDocument.deleted);\n// true\n\ntoJSON()\nReturns the document's data as plain json object.\nconst json = myDocument.toJSON();\nconsole.dir(json);\n/* { passportId: 'h1rg9ugdd30o',\n firstName: 'Carolina',\n lastName: 'Gibson',\n age: 33 ...\n*/\n\nset()\nOnly temporary documents\nTo change data in your document, use this function. It takes the field-path and the new value as parameter. Note that calling the set-function will not change anything in your storage directly. You have to call .save() after to submit changes.\nmyDocument.set('firstName', 'foobar');\nconsole.log(myDocument.get('firstName')); // \nproxy-set\nOnly temporary documents\nAll properties of an RxDocument are assigned as setters to it so you can also directly set values instead of using the set()-function.\nmyDocument.firstName = 'foobar';\nmyDocument.whatever.nestedfield = 'foobar2';\n\nsave()\nOnly temporary documents\nThis will update the document in the storage if it has been changed. Call this after modifying the document (via set() or proxy-set).\nmyDocument.name = 'foobar';\nawait myDocument.save(); // submit the changes to the storage\n\nNOTICE: All methods of RxDocument are bound to the instance\nWhen you get a method from a RxDocument, the method is automatically bound to the documents instance. This means you do not have to use things like myMethod.bind(myDocument) like you would do in jsx.\nisRxDocument\nReturns true if the given object is an instance of RxDocument. Returns false if not.\nconst is = isRxDocument(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-query.html":{"url":"rx-query.html","title":"RxQuery","keywords":"","body":"RxQuery\nA query allows to find documents in your collection.\nLike most other noSQL-Databases, RxDB uses the mango-query-syntax. It is also possible to use chained methods.\nfind()\nTo create a basic RxQuery, call .find() on a collection and insert selectors. The result-set of normal queries is an array with documents.\n// find all that are older then 18\nconst query = myCollection\n .find()\n .where('age')\n .gt(18);\n\nfindOne()\nA findOne-query has only a single RxDocument or null as result-set.\n// find the youngest one\nconst query = myCollection\n .findOne()\n .sort('age')\n\nexec()\nReturns a Promise that resolves with the result-set of the query.\nconst query = myCollection.find();\nconst results = await query.exec();\nconsole.dir(results); // > [RxDocument,RxDocument,RxDocument..]\n\nObserve $\nAn BehaviorSubject see that always has the current result-set as value.\nThis is extremely helpfull when used together with UIs that should always show the same state as what is written in the database.\nconst query = myCollection.find();\nquery.$.subscribe(results => {\n console.log('got results: ' + results.length);\n});\n// > 'got results: 5' // BehaviorSubjects emit on subscription\n\nawait myCollection.insert({/* ... */}); // insert one\n// > 'got results: 6' // $.subscribe() was called again with the new results\n\nupdate()\nRuns and update on every RxDocument of the query-result.\nconst query = myCollection.find().where('age').gt(18);\nawait query.update({\n $inc: {\n age: 1 // increases age of every found document by 1\n }\n});\n\nremove()\nDeletes all found documents. Returns a promise which resolves to the deleted documents.\n// All documents where the age is less than 18\nconst query = myCollection.find().where('age').lt(18);\n// Remove the documents from the collection\nconst removedDocs = await query.remove();\n\ndoesDocumentDataMatch()\nReturns true if the given document data matches the query.\nconst documentData = {\n id: 'foobar',\n age: 19\n};\n\nmyCollection.find().where('age').gt(18).doesDocumentDataMatch(documentData); // > true\n\nmyCollection.find().where('age').gt(20).doesDocumentDataMatch(documentData); // > false\n\nExamples\nHere some examples to fast learn how to write queries without reading the docs.\n\nPouch-find-docs - learn how to use mango-queries\nmquery-docs - learn how to use chained-queries\n\n// directly pass search-object\nmyCollection.find({\n selector: {\n name: {$eq: 'foo'}\n }\n})\n.exec().then(documents => console.dir(documents));\n\n// find by using sql equivalent '%like%' syntax\n// This example will fe: match 'foo' but also 'fifoo' or 'foofa' or 'fifoofa'\nmyCollection.find({\n selector: {\n name: {$regex: '.*foo.*'}\n }\n})\n.exec().then(documents => console.dir(documents));\n\n// find using a composite statement eg: $or\n// This example checks where name is either foo or if name is not existant on the document\nmyCollection.find({\n selector: {$or: [ { name: { $eq: 'foo' } }, { name: { $exists: false } }]}\n})\n.exec().then(documents => console.dir(documents));\n\n// do a case insensitive search\n// This example will match 'foo' or 'FOO' or 'FoO' etc...\nvar regexp = new RegExp('^foo$', 'i');\nmyCollection.find({\n selector: {name: {$regex: regexp}}\n})\n.exec().then(documents => console.dir(documents));\n\n// chained queries\nmyCollection.find().where('name').eq('foo')\n.exec().then(documents => console.dir(documents));\n\nNOTICE: RxQuery's are immutable\nBecause RxDB is a reactive database, we can do heavy performance-optimisation on query-results which change over time. To be able to do this, RxQuery's have to be immutable.\nThis means, when you have a RxQuery and run a .where() on it, the original RxQuery-Object is not changed. Instead the where-function returns a new RxQuery-Object with the changed where-field. Keep this in mind if you create RxQuery's and change them afterwards.\nExample:\nconst queryObject = myCollection.find().where('age').gt(18);\n// Creates a new RxQuery object, does not modify previous one\nqueryObject.sort('name');\nconst results = await queryObject.exec();\nconsole.dir(results); // result-documents are not sorted by name\n\nconst queryObjectSort = queryObject.sort('name');\nconst results = await queryObjectSort.exec();\nconsole.dir(results); // result-documents are now sorted\n\nisRxQuery\nReturns true if the given object is an instance of RxQuery. Returns false if not.\nconst is = isRxQuery(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-attachment.html":{"url":"rx-attachment.html","title":"RxAttachment","keywords":"","body":"Attachments\nLike pouchdb, RxDB can store attachments which has a better performance and a higher quota-limit then regular data.\nYou can store string, binary files, images and whatever you want side by side with your documents.\nBefore you can use attachments, you have to ensure that the attachments-object is set in the schema of your RxCollection.\n\nconst mySchema = {\n version: 0,\n type: 'object',\n properties: {\n // .\n // .\n // .\n },\n attachments: {\n encrypted: true // if true, the attachment-data will be encrypted with the db-password\n }\n};\n\nconst myCollection = await myDatabase.collection({\n name: 'humans',\n schema: mySchema\n});\n\nputAttachment()\nAdds an attachment to a RxDocument. Returns a Promise with the new attachment.\nconst attachment = await myDocument.putAttachment({\n id, // string, name of the attachment like 'cat.jpg'\n data, // (string|Blob|Buffer) data of the attachment\n type // (string) type of the attachment-data like 'image/jpeg'\n});\n\ngetAttachment()\nReturns an RxAttachment by its id. Returns null when the attachment does not exist.\nconst attachment = myDocument.getAttachment('cat.jpg');\n\nallAttachments()\nReturns an array of all attachments of the RxDocument.\nconst attachments = myDocument.allAttachments();\n\nallAttachments$\nGets an Observable which emits a stream of all attachments from the document. Re-emits each time an attachment gets added or removed from the RxDocument.\nconst all = [];\nmyDocument.allAttachments$.subscribe(\n attachments => all = attachments\n);\n\nRxAttachment\nThe attachments of RxDB are represented by the type RxAttachment which has the following attributes/methods.\ndoc\nThe RxDocument which the attachment is assigned to.\nid\nThe id as string of the attachment.\ntype\nThe type as string of the attachment.\nlength\nThe length of the data of the attachment as number.\ndigest\nThe md5-sum of the attachments data as string.\nrev\nThe revision-number of the attachment as number.\nremove()\nRemoves the attachment. Returns a Promise that resolves when done.\nconst attachment = myDocument.getAttachment('cat.jpg');\nawait attachment.remove();\n\ngetData()\nReturns a Promise which resolves the attachment's data as Blob or Buffer. (async)\nconst attachment = myDocument.getAttachment('cat.jpg');\nconst blobBuffer = await attachment.getData();\n\ngetStringData()\nReturns a Promise which resolves the attachment's data as string.\nconst attachment = await myDocument.getAttachment('cat.jpg');\nconst data = await attachment.getStringData();\n\n\nIf you are new to RxDB, you should continue here\n"},"middleware.html":{"url":"middleware.html","title":"Middleware-hooks","keywords":"","body":"Middleware\nRxDB supports middleware-hooks like mongoose.\nMiddleware (also called pre and post hooks) are functions which are passed control during execution of asynchronous functions.\nThe hooks are specified on RxCollection-level and help to create a clear what-happens-when-structure of your code.\nHooks can be defined to run parallel or as series one after another.\nHooks can be synchronous or asynchronous when they return a Promise.\nTo stop the operation at a specific hook, throw an error.\nList\nRxDB supports the following hooks:\n\npreInsert\npostInsert\npreSave\npostSave\npreRemove\npostRemove\npostCreate\n\nWhy is there no validate-hook?\nDifferent to mongoose, the validation on document-data is running on the field-level for every change to a document.\nThis means if you set the value lastName of a RxDocument, then the validation will only run on the changed field, not the whole document.\nTherefore it is not useful to have validate-hooks when a document is written to the database.\nUse Cases\nMiddleware are useful for atomizing model logic and avoiding nested blocks of async code.\nHere are some other ideas:\n\ncomplex validation\nremoving dependent documents\nasynchronous defaults\nasynchronous tasks that a certain action triggers\ntriggering custom events\nnotifications\n\nUsage\nAll hooks have the plain data as first parameter, and all but preInsert also have the RxDocument-instance as second parameter. If you want to modify the data in the hook, change attributes of the first parameter.\nAll hook functions are also this-bind to the RxCollection-instance.\nInsert\nAn insert-hook receives the data-object of the new document.\nlifecycle\n\nRxCollection.insert is called\npreInsert series-hooks\npreInsert parallel-hooks\nschema validation runs\nnew document is written to database\npostInsert series-hooks\npostInsert parallel-hooks\nevent is emitted to RxDatabase and RxCollection\n\npreInsert\n// series\nmyCollection.preInsert(function(plainData){\n // set age to 50 before saving\n plainData.age = 50;\n}, false);\n\n// parallel\nmyCollection.preInsert(function(plainData){\n\n}, true);\n\n// async\nmyCollection.preInsert(function(plainData){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\n// stop the insert-operation\nmyCollection.preInsert(function(plainData){\n throw new Error('stop');\n}, false);\n\npostInsert\n// series\nmyCollection.postInsert(function(plainData, rxDocument){\n\n}, false);\n\n// parallel\nmyCollection.postInsert(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.postInsert(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\nSave\nA save-hook receives the document which is saved.\nlifecycle\n\nRxDocument.save is called\npreSave series-hooks\npreSave parallel-hooks\nupdated document is written to database\npostSave series-hooks\npostSave parallel-hooks\nevent is emitted to RxDatabase and RxCollection\n\npreSave\n// series\nmyCollection.preSave(function(plainData, rxDocument){\n // modify anyField before saving\n plainData.anyField = 'anyValue';\n}, false);\n\n// parallel\nmyCollection.preSave(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.preSave(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\n// stop the save-operation\nmyCollection.preSave(function(plainData, rxDocument){\n throw new Error('stop');\n}, false);\n\npostSave\n// series\nmyCollection.postSave(function(plainData, rxDocument){\n\n}, false);\n\n// parallel\nmyCollection.postSave(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.postSave(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\nRemove\nAn remove-hook receives the document which is removed.\nlifecycle\n\nRxDocument.remove is called\npreRemove series-hooks\npreRemove parallel-hooks\ndeleted document is written to database\npostRemove series-hooks\npostRemove parallel-hooks\nevent is emitted to RxDatabase and RxCollection\n\npreRemove\n// series\nmyCollection.preRemove(function(plainData, rxDocument){\n\n}, false);\n\n// parallel\nmyCollection.preRemove(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.preRemove(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\n// stop the remove-operation\nmyCollection.preRemove(function(plainData, rxDocument){\n throw new Error('stop');\n}, false);\n\npostRemove\n// series\nmyCollection.postRemove(function(plainData, rxDocument){\n\n}, false);\n\n// parallel\nmyCollection.postRemove(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.postRemove(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\npostCreate\nThis hook is called whenever a RxDocument is constructed.\nYou can use postCreate to modify every RxDocument-instance of the collection.\nThis adds a flexible way to add specify behavior to every document. You can also use it to add custom getter/setter to documents. PostCreate-hooks cannot be asynchronous.\nmyCollection.postCreate(function(plainData, rxDocument){\n Object.defineProperty(rxDocument, 'myField', {\n get: () => 'foobar',\n });\n});\n\nconst doc = await myCollection.findOne().exec();\n\nconsole.log(doc.myField);\n// 'foobar'\n\nNotice: This hook does not run on already created or cached documents. Make sure to add postCreate-hooks before interacting with the collection.\n\nIf you are new to RxDB, you should continue here\n"},"orm.html":{"url":"orm.html","title":"ORM/DRM","keywords":"","body":"Object-Data-Relational-Mapping\nLike mongoose, RxDB has ORM-capabilities which can be used to add specific behavior to documents and collections.\nstatics\nStatics are defined collection-wide and can be called on the collection.\nAdd statics to a collection\nTo add static functions, pass a statics-object when you create your collection. The object contains functions, mapped to their function-names.\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n statics: {\n scream: function(){\n return 'AAAH!!';\n }\n }\n});\n\nconsole.log(heroes.scream());\n// 'AAAH!!'\n\nYou can also use the this-keyword which resolves to the collection:\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n statics: {\n whoAmI: function(){\n return this.name;\n }\n }\n});\nconsole.log(heroes.whoAmI());\n// 'heroes'\n\ninstance-methods\nInstance-methods are defined collection-wide. They can be called on the RxDocuments of the collection.\nAdd instance-methods to a collection\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n methods: {\n scream: function(){\n return 'AAAH!!';\n }\n }\n});\nconst doc = await heroes.findOne().exec();\nconsole.log(doc.scream());\n// 'AAAH!!'\n\nHere you can also use the this-keyword:\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n methods: {\n whoAmI: function(){\n return 'I am ' + this.name + '!!';\n }\n }\n});\nawait heroes.insert({\n name: 'Skeletor'\n});\nconst doc = await heroes.findOne().exec();\nconsole.log(doc.whoAmI());\n// 'I am Skeletor!!'\n\nattachment-methods\nAttachment-methods are defined collection-wide. They can be called on the RxAttachemnts of the RxDocuments of the collection.\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n attachments: {\n scream: function(){\n return 'AAAH!!';\n }\n }\n});\nconst doc = await heroes.findOne().exec();\nconst attachment = await doc.putAttachment({\n id: 'cat.txt',\n data: 'meow I am a kitty',\n type: 'text/plain'\n});\nconsole.log(attachment.scream());\n// 'AAAH!!'\n\n\nIf you are new to RxDB, you should continue here\n"},"population.html":{"url":"population.html","title":"Population","keywords":"","body":"Population\nThere are no joins in RxDB but sometimes we still want references to documents in other collections. This is where population comes in. You can specify a relation from one RxDocument to another RxDocument in the same or another RxCollection of the same database.\nThen you can get the referenced document with the population-getter.\nThis works exactly like population with mongoose.\nSchema with ref\nThe ref-keyword describes to which collection the field-value belongs to.\nexport const refHuman = {\n title: 'human related to other human',\n version: 0,\n properties: {\n name: {\n primary: true,\n type: 'string'\n },\n bestFriend: {\n ref: 'human', // refers to collection human\n type: 'string' // ref-values must always be string or ['string','null'] (primary of foreign RxDocument) \n }\n }\n};\n\nYou can also have a one-to-many reference by using a string-array.\nexport const schemaWithOneToManyReference = {\n version: 0,\n type: 'object',\n properties: {\n name: {\n type: 'string',\n primary: true\n },\n friends: {\n type: 'array',\n ref: 'human',\n items: {\n type: 'string'\n }\n }\n }\n};\n\npopulate()\nvia method\nTo get the referred RxDocument, you can use the populate()-method.\nIt takes the field-path as attribute and returns a Promise which resolves to the foreign document or null if not found.\nawait humansCollection.insert({\n name: 'Alice',\n bestFriend: 'Carol'\n});\nawait humansCollection.insert({\n name: 'Bob',\n bestFriend: 'Alice'\n});\nconst doc = await humansCollection.findOne('Bob').exec();\nconst bestFriend = await doc.populate('bestFriend');\nconsole.dir(bestFriend); //> RxDocument[Alice]\n\nvia getter\nYou can also get the populated RxDocument with the direct getter. Therefore you have to add an underscore suffix _ to the fieldname.\nThis works also on nested values.\nawait humansCollection.insert({\n name: 'Alice',\n bestFriend: 'Carol'\n});\nawait humansCollection.insert({\n name: 'Bob',\n bestFriend: 'Alice'\n});\nconst doc = await humansCollection.findOne('Bob').exec();\nconst bestFriend = await doc.bestFriend_; // notice the underscore_\nconsole.dir(bestFriend); //> RxDocument[Alice]\n\nExample with nested reference\nconst myCollection = await myDatabase.collection({\n name: 'human',\n schema: {\n version: 0,\n type: 'object',\n properties: {\n name: {\n type: 'string'\n },\n family: {\n type: 'object',\n properties: {\n mother: {\n type: 'string',\n ref: 'human'\n }\n }\n }\n }\n }\n});\n\nconst mother = await myDocument.family.mother_;\nconsole.dir(mother); //> RxDocument\n\nExample with array\nconst myCollection = await myDatabase.collection({\n name: 'human',\n schema: {\n version: 0,\n type: 'object',\n properties: {\n name: {\n type: 'string'\n },\n friends: {\n type: 'array',\n ref: 'human',\n items: {\n type: 'string'\n }\n }\n }\n }\n});\n\n//[insert other humans here]\n\nawait myCollection.insert({\n name: 'Alice',\n friends: [\n 'Bob',\n 'Carol',\n 'Dave'\n ]\n});\n\nconst doc = await humansCollection.findOne('Alice').exec();\nconst friends = await myDocument.friends_;\nconsole.dir(friends); //> Array.\n\n\nIf you are new to RxDB, you should continue here\n"},"data-migration.html":{"url":"data-migration.html","title":"DataMigration","keywords":"","body":"DataMigration\nImagine you have your awesome messenger-app distributed to many users. After a while, you decide that in your new version, you want to change the schema of the messages-collection. Instead of saving the message-date like 2017-02-12T23:03:05+00:00 you want to have the unix-timestamp like 1486940585 to make it easier to compare dates. To accomplish this, you change the schema and increase the version-number and you also change your code where you save the incoming messages. But one problem remains: what happens with the messages which are already saved on the user's device in the old schema?\nWith RxDB you can provide migrationStrategies for your collections that automatically (or on call) transform your existing data from older to newer schemas. This assures that the client's data always matches your newest code-version.\nProviding strategies\nUpon creation of a collection, you have to provide migrationStrategies when your schema's version-number is greater than 0. To do this, you have to add an object to the migrationStrategies property where a function for every schema-version is assigned. A migrationStrategy is a function which gets the old document-data as a parameter and returns the new, transformed document-data. If the strategy returns null, the document will be removed instead of migrated.\nmyDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n migrationStrategies: {\n // 1 means, this transforms data from version 0 to version 1\n 1: function(oldDoc){\n oldDoc.time = new Date(oldDoc.time).getTime(); // string to unix\n return oldDoc;\n }\n }\n});\n\nAsynchronous strategies can also be used:\nmyDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n migrationStrategies: {\n 1: function(oldDoc){\n oldDoc.time = new Date(oldDoc.time).getTime(); // string to unix\n return oldDoc;\n },\n /**\n * 2 means, this transforms data from version 1 to version 2\n * this returns a promise which resolves with the new document-data\n */\n 2: function(oldDoc){\n // in the new schema (version: 2) we defined 'senderCountry' as required field (string)\n // so we must get the country of the message-sender from the server\n const coordinates = oldDoc.coordinates;\n return fetch('http://myserver.com/api/countryByCoordinates/'+coordinates+'/')\n .then(response => {\n const response = response.json();\n oldDoc.senderCountry=response;\n return oldDoc;\n });\n }\n }\n});\n\nyou can also filter which documents should be migrated:\nmyDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n migrationStrategies: {\n // 1 means, this transforms data from version 0 to version 1\n 1: function(oldDoc){\n oldDoc.time = new Date(oldDoc.time).getTime(); // string to unix\n return oldDoc;\n },\n /**\n * this removes all documents older then 2017-02-12\n * they will not appear in the new collection\n */\n 2: function(oldDoc){\n if(oldDoc.time \nautoMigrate\nBy default, the migration automatically happens when the collection is created. If you have lots of data or the migrationStrategies take a long time, it might be better to start the migration 'by hand' and show the migration-state to the user as a loading-bar.\nconst messageCol = await myDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n autoMigrate: false, // console.dir(state),\n error => console.error(error),\n done => console.log('done')\n);\n\n// the emitted states look like this:\n{\n done: false, // true if finished\n total: 50, // amount of documents which must be migrated\n handled: 0, // amount of handled docs\n success: 0, // handled docs which succeeded\n deleted: 0, // handled docs which got deleted\n percent: 0 // percentage\n}\n\nIf you don't want to show the state to the user, you can also use .migratePromise():\n const migrationPromise = messageCol.migratePromise(10);\n await migratePromise;\n\nHint\nIf your migration takes a long time, combine it with the leaderElection to make sure you don't waste your users' resources by running it in 2 open tabs.\n\nIf you are new to RxDB, you should continue here\n"},"leader-election.html":{"url":"leader-election.html","title":"LeaderElection","keywords":"","body":"Leader-Election\nRxDB comes with a leader-election which elects a leading instance between different instances in the same javascript runtime.\nBefore you read this, please check out on how many of your open browser-tabs you have opened the same website more than once. Count them, I will wait..\nSo if you would now inspect the traffic that theses open tabs produce, you can see that many of them send exact the same data over wire for every tab. No matter if the data is sent with an open websocket or by polling.\nUse-case-example\nImagine we have a website which displays the current temperature of the visitors location in various charts, numbers or heatmaps. To always display the live-data, the website opens a websocket to our API-Server which sends the current temperature every 10 seconds. Using the way most sites are currently build, we can now open it in 5 browser-tabs and it will open 5 websockets which send data 6*5=30 times per minute. This will not only waste the power of your clients device, but also wastes your api-servers resources by opening redundant connections.\nSolution\nThe solution to this redundancy is the usage of a leader-election-algorithm which makes sure that always exactly one tab is managing the remote-data-access. The managing tab is the elected leader and stays leader until it is closed. No matter how many tabs are opened or closed, there must be always exactly one leader.\nYou could now start implementing a messaging-system between your browser-tabs, hand out which one is leader, solve conflicts and reassign a new leader when the old one 'dies'.\nOr just use RxDB which does all these things for you.\nCode-example\nTo make it easy, here is an example where the temperature is pulled every ten seconds and saved to a collection. The pulling starts at the moment where the opened tab becomes the leader.\nconst db = await createRxDatabase({\n name: 'weatherDB',\n adapter: 'localstorage',\n password: 'myPassword',\n multiInstance: true\n});\nawait db.collection({\n name: 'temperature',\n schema: mySchema\n});\n\ndb.waitForLeadership()\n .then(() => {\n console.log('Long lives the king!'); // {\n const temp = await fetch('https://example.com/api/temp/');\n db.temperature.insert({\n degrees: temp,\n time: new Date().getTime()\n });\n }, 1000 * 10);\n });\n\nLive-Example\nIn this example the leader is marked with the crown ♛\n\nTry it out\nRun the vanillaJS-example where the leading tab is marked with a crown on the top-right-corner.\nNotice\nThe leader election is implemented via the broadcast-channel module.\nThe leader is elected between different processes on the same javascript-runtime. Like multiple tabs in the same browser or mupltiple NodeJs-processes on the same machine. It will not run between different replicated instances.\n\nIf you are new to RxDB, you should continue here\n"},"replication.html":{"url":"replication.html","title":"Replication CouchDB","keywords":"","body":"Replication\nOne of the most powerful features with CouchDB, PouchDB and RxDB is sync.\nYou can sync every RxCollection with another RxCollection, a PouchDB-instance or a remote pouch/couch-DB.\nRx.Collection.sync()\nTo replicate the collection with another instance, use RxCollection.sync().\nIt basically does the same as pouchdb-sync but also adds event-handlers to make sure that change-events will be recognized in the internal event-stream.\n\n// you need these plugins to sync\naddRxPlugin(require('pouchdb-adapter-http')); // enable syncing over http (remote database)\n\nconst replicationState = myCollection.sync({\n remote: 'http://localhost:10102/db/', // remote database. This can be the serverURL, another RxCollection or a PouchDB-instance\n waitForLeadership: true, // (optional) [default=true] to save performance, the sync starts on leader-instance only\n direction: { // direction (optional) to specify sync-directions\n pull: true, // default=true\n push: true // default=true\n },\n options: { // sync-options (optional) from https://pouchdb.com/api.html#replication\n live: true,\n retry: true\n },\n query: myCollection.find().where('age').gt(18) // query (optional) only documents that match that query will be synchronised\n});\n\nRxReplicationState\nThe method RxCollection.sync() returns a RxReplicationState which can be used to observe events via rxjs-observables and to cancel the replication.\nchange$\nEmits the change-events every time some documents get replicated.\nreplicationState.change$.subscribe(change => console.dir(change));\n\ndocs$\nEmits each replicated document-data.\nreplicationState.docs$.subscribe(docData => console.dir(docData));\n\ndenied$\nEmits when a document failed to replicate (e.g. due to permissions).\nreplicationState.denied$.subscribe(docData => console.dir(docData));\n\nactive$\nEmits true or false depending if the replication is transmitting data. A false value does not imply the connection has died.\nreplicationState.active$.subscribe(active => console.dir(active));\n\nalive$\nEmits true or false depending if the replication is alive - data is transmitting properly between databases. A false value implies the connection has died -if you're replicating to a remote database, for example. It will only emit false if there are pending changes that couldn't be replicated -it won't emit immediately after the connection dies.\nreplicationState.alive$.subscribe(alive => console.dir(alive));\n\ncomplete$\nEmits true or false depending if the replication is completed.\nIf you do a live: true-sync (default) the replication never completes.\nOnly one-time-replications will complete.\nreplicationState.complete$.subscribe(completed => console.dir(completed));\n\nerror$\nIf errors occur during the replication, they will get emitted here.\nreplicationState.error$.subscribe(error => console.dir(error));\n\ncancel()\nCalling this method will cancel the replication.\nawait replicationState.cancel(); // cancel() is async\n\n\nIf you are new to RxDB, you should continue here\n"},"replication-graphql.html":{"url":"replication-graphql.html","title":"Replication GraphQL","keywords":"","body":"Replication with GraphQL\nWith RxDB you can do a two-way replication with a GraphQL endpoint. This allows you to replicate data from the server into the client-side database and then query and modify it in realtime.\nWhen the user is offline, you still can use the data and later sync it with the server when the client is online again like in other Offline-First systems.\nComparison to Couchdb-Sync\nPros:\n\nThe GraphQL-replication is faster and needs less resources\nYou do not need a couchdb-compliant endpoint, only a GraphQL-endpoint\n\nCons:\n\nYou can not replicate multiple databases with each other\nIt is assumed that the GraphQL-server is the single source of truth\nYou have to setup things at the server side while with couchdb-sync you only have to start a server\n\nNOTICE: To play around, check out the full example of the RxDB GraphQL replication with server and client\nUsage\nData Design\nTo use the GraphQL-replication you first have to ensure that your data is sortable by update time and your documents never get deleted, only have a deleted-flag set.\nFor example if your documents look like this,\n{\n \"id\": \"foobar\",\n \"name\": \"Alice\",\n \"lastName\": \"Wilson\",\n \"updatedAt\": 1564783474,\n \"deleted\": false\n}\n\nThen your data is always sortable by updatedAt. This ensures that when RxDB fetches 'new' changes, it can send the latest updatedAt to the GraphQL-endpoint and then recieve all newer documents.\nDeleted documents still exist but have deleted: true set. This ensures that when RxDB fetches new documents, even the deleted documents are send back and can be known at the client-side.\nGraphQL Server\nAt the server-side, there must exist an endpoint which returns newer rows when the last replicated document is used as input. For example lets say you create a Query feedForRxDBReplication which returns a list of newer documents, related to the given one, sorted by updatedAt.\nFor the push-replication, you also need a modifier which lets RxDB update data with a changed document as input.\ninput HumanInput {\n id: ID!,\n name: String!,\n lastName: String!,\n updatedAt: Int!,\n deleted: Boolean!\n}\ntype Human {\n id: ID!,\n name: String!,\n lastName: String!,\n updatedAt: Int!,\n deleted: Boolean!\n}\ntype Query {\n feedForRxDBReplication(lastId: String!, minUpdatedAt: Int!, limit: Int!): [Human!]!\n}\ntype Mutation {\n setHuman(human: HumanInput): Human\n}\nThe resolver would then look like:\nconst rootValue = {\n feedForRxDBReplication: args => {\n // sorted by updatedAt first and the id as second\n const sortedDocuments = documents.sort((a, b) => {\n if (a.updatedAt > b.updatedAt) return 1;\n if (a.updatedAt b.id) return 1;\n if (a.id {\n if (doc.updatedAt args.minUpdatedAt) return true;\n if (doc.updatedAt === args.minUpdatedAt) {\n // if updatedAt is equal, compare by id\n if (doc.id > args.lastId) return true;\n else return false;\n }\n });\n\n // only return some documents in one batch\n const limited = filterForMinUpdatedAtAndId.slice(0, args.limit);\n\n return limited;\n },\n // a modifier that updates the state on the server\n setHuman: args => {\n const doc = args.human;\n documents = documents.filter(d => d.id !== doc.id);\n doc.updatedAt = Math.round(new Date().getTime() / 1000);\n documents.push(doc);\n return doc;\n },\n}\n\nRxDB Client\nImport the plugin\nThe graphql-replication is not part of the default-build of RxDB. You have to import the plugin before you can use it.\nimport { RxDBReplicationGraphQLPlugin } from 'rxdb/plugins/replication-graphql';\naddRxPlugin(RxDBReplicationGraphQLPlugin);\n\nPull replication\nFor the pull-replication, you first need a pullQueryBuilder. This is a function that gets the last replicated document as input and returns an object with a GraphQL-query and its variables (or a promise that resolves to the same object). RxDB will use the query builder to construct what is later send to the GraphQL endpoint.\nconst pullQueryBuilder = doc => {\n if (!doc) {\n // the first pull does not have a start-document\n doc = {\n id: '',\n updatedAt: 0\n };\n }\n const query = `{\n feedForRxDBReplication(lastId: \"${doc.name}\", minUpdatedAt: ${doc.updatedAt}, limit: 5) {\n id,\n name,\n lastName,\n updatedAt\n deleted\n }\n }`;\n return {\n query,\n variables: {}\n };\n};\n\nWith the queryBuilder, you can then setup the pull-replication.\nconst replicationState = myCollection.syncGraphQL({\n url: 'http://example.com/graphql', // url to the GraphQL endpoint\n pull: {\n queryBuilder: pullQueryBuilder, // the queryBuilder from above\n modifier: doc => doc // (optional) modifies all pulled documents before they are handeled by RxDB. Returning null will skip the document.\n },\n deletedFlag: 'deleted', // the flag which indicates if a pulled document is deleted\n live: true // if this is true, rxdb will watch for ongoing changes and sync them, when false, a one-time-replication will be done\n});\n\nPush replication\nFor the push-replication, you also need a queryBuilder. Here, the builder recieves a changed document as input which has to be send to the server. It also returns a GraphQL-Query and its data.\nconst pushQueryBuilder = doc => {\n const query = `\n mutation CreateHuman($human: HumanInput) {\n setHuman(human: $human) {\n id,\n updatedAt\n }\n }\n `;\n const variables = {\n human: doc\n };\n return {\n query,\n variables\n };\n};\n\nWith the queryBuilder, you can then setup the push-replication.\nconst replicationState = myCollection.syncGraphQL({\n url: 'http://example.com/graphql', // url to the GraphQL endpoint\n push: {\n queryBuilder: pushQueryBuilder, // the queryBuilder from above\n batchSize: 5, // (optional) amount of documents that will be send in one batch\n modifier: d => d // (optional) modifies all pushed documents before they are send to the GraphQL endpoint. Returning null will skip the document.\n },\n deletedFlag: 'deleted', // the flag which indicates if a pulled document is deleted\n live: true // if this is true, rxdb will watch for ongoing changes and sync them\n});\n\nOf course you can start the push- and the pull-replication in a single call to myCollection.syncGraphQL().\nUsing subscriptions\nFor the pull-replication, RxDB will run the pull-function every 10 seconds to fetch new documents from the server.\nThis means that when a change happens on the server, RxDB will, in the worst case, take 10 seconds until the changes is replicated to the client.\nTo improve this, it is recommended to setup GraphQL Subscriptions which will trigger the replication cycle when a change happens on the server.\nimport {\n SubscriptionClient\n} from 'subscriptions-transport-ws';\n\n// start the replication\nconst replicationState = myCollection.syncGraphQL({\n url: 'http://example.com/graphql',\n pull: {\n pullQueryBuilder,\n },\n deletedFlag: 'deleted', // the flag which indicates if a pulled document is deleted\n live: true,\n /**\n * Because we use the subscriptions as notifiers,\n * we can set the liveInterval to a very height value.\n */\n liveInterval: 60 * 1000\n});\n\n\n// setup the subscription client\nconst wsClient = new SubscriptionClient(\n 'ws://example.com/subscriptions', {\n reconnect: true,\n }\n);\n\nconst query = `subscription onHumanChanged {\n humanChanged {\n id\n }\n}`;\nconst changeObservable = wsClient.request({ query });\n// subscribe to all events\nchangeObservable.subscribe({\n next(data) {\n /**\n * When a change happens, call .run() on the replicationState.\n * This will trigger the pull-handler and download changes from the server.\n */\n replicationState.run();\n }\n});\n\nHelper Functions (beta)\nRxDB provides the helper functions graphQLSchemaFromRxSchema(), pullQueryBuilderFromRxSchema() and pushQueryBuilderFromRxSchema() that can be used to generate the GraphQL Schema from the RxJsonSchema. To learn how to use them, please inspect the (GraphQL Example)[https://github.com/pubkey/rxdb/tree/master/examples/graphql]\nConflict Resolution\nRxDB assumes that the Conflict Resolution will happen on the server side.\nWhen the clients sends a document to the server which causes a conflict, this has to be resolved there and then the resulting document can be synced down to RxDB. While CouchDB uses revision-flags for conflicts, you can use any logic like relying on the updatedAt date or other flags.\nRxGraphQLReplicationState\nWhen you call myCollection.syncGraphQL() it returns a RxGraphQLReplicationState which can be used to subscribe to events, for debugging or other functions.\n.isStopped()\nReturns true if the replication is stopped. This can be if a non-live replication is finished or a replication got canceled.\nreplicationState.isStopped(); // true/false\n\n.setHeaders()\nChanges the headers for the replication after it has been set up.\nreplicationState.setHeaders({\n Authorization: `...`\n});\n\n.awaitInitialReplication()\nReturns a Promise that is resolved as soon as the initial replication is done.\nawait replicationState.awaitInitialReplication();\nconsole.log('initial sync done, client data is equal to server data');\n\n.run()\nTriggers a replication cycle with the server. This is done automatically if the data changes on the client side or the pull-interval is called. This returns a Promise which is resolved when the run-cycle is done. Calling run() many times is no problem because it is queued internally.\nawait replicationState.run();\n\n.cancel()\nCancels the replication. This is done autmatically if the RxCollection or it's RxDatabase is destroyed.\nawait replicationState.cancel();\n\n.recieved$\nAn Observable that emits each document that is recieved from the endpoint.\n.send$\nAn Observable that emits each document that is send to the endpoint.\n.error$\nAn Observable that emits each error that happens during the replication. Use this if something does not work for debugging. RxDB will handle network errors automatically, other errors must be solved by the developer.\nreplicationState.error$.subscribe(error => {\n console.log('something was wrong');\n console.dir(error);\n});\n\n.canceled$\nAn Observable that emits true when the replication is canceled, false if not.\n.active$\nAn Observable that emits true when the replication is doing something, false when not.\nNOTICE: To play around, check out the full example of the RxDB GraphQL replication with server and client\n\nIf you are new to RxDB, you should continue here\n"},"in-memory.html":{"url":"in-memory.html","title":"InMemory","keywords":"","body":"InMemory Collections\nWhen you do a heavy amount of operations on a RxCollection, you might want to optimize this by using the in-memory-replication of the collection. The in-memory-replication behaves equal to the original collection but is stored in the Memory of your computer instead of the hard drive. It inherits the statics of the original collection, but not its hooks -so you should register them separately in the case you'd want them to apply.\nPros:\n\nFaster queries\nFaster writes\nQuerying works over encrypted fields\n\nCons:\n\nThe original collection has to be small enough to fit into the memory\nNo attachment-support\nInitial creation takes longer (all data is loaded from disc into the memory)\n\nencryption\nEncrypted fields are automatically decrypted inside of the memory-collection. This means you can do queries over encrypted fields.\nreplication\nThe memory-collection is two-way-replicated with its original collection. This means when you change documents on one of them, the update and the change-event will fire on both.\nRxCollection().inMemory();\nReturns a promise that resolves with another RxCollection that is the in-memory-replicated version of the original collection. The memory-collection has the same documents as it's parent and also shares the same event-stream.\n\n// IMPORTANT: You have to add the memory-adapter before you can use inMemory-Collections\n// RUN 'npm install pouchdb-adapter-memory --save'\nimport PouchAdapterMemory from 'pouchdb-adapter-memory';\naddRxPlugin(PouchAdapterMemory);\n\nconst memCol = await myCollection.inMemory();\n\n// now u can use memCol as it would be myCollection\nconst docs = await memCol.find().exec(); // has same result as on the original collection\n\nRxCollection().awaitPersistence()\nWhen you do a write into the inMemoryCollection, it takes some time until the change is replicated at the parents collections.\nTo know when you can be sure that all writes have been replicated, call awaitPersistence()\nconst memCol = await myCollection.inMemory();\n\nawait memCol.insert({foo: 'bar'});\n\nawait memCol.awaitPersistence(); // after this you can be sure that everything is replicated\n\n\nIf you are new to RxDB, you should continue here\n"},"query-cache.html":{"url":"query-cache.html","title":"QueryCache","keywords":"","body":"QueryCache\nRxDB uses a QueryCache which optimizes the reuse of queries at runtime. This makes sense especially when RxDB is used in UI-applications where people move for- and backwards on different routes or pages and the same queries are used many times. Because of the event-reduce algorithm cached queries are even valuable for optimization, when changes to the database occur between now and the last execution.\nCache Replacement Policy\nTo not let RxDB fill up all the memory, a cache replacement policy is defined that clears up the cached queries. This is implemented as a function which runs regularly, depending on when queries are created and the database is idle. The default policy should be good enough for most use cases but defining custom ones can also make sense.\nThe default policy\nThe default policy starts cleaning up queries depending on how much queries are in the cache and how much document data they contain.\n\nIt will never uncache queries that have subscribers to their results\nIt tries to always have less then 100 queries without subscriptions in the cache.\nIt prefers to uncache queries that have never executed and are older then 30 seconds\nIt prefers to uncache queries that have not been used for longer time\n\nOther references to queries\nWith JavaScript, it is not possible to count references to variables. Therefore it might happen that an uncached RxQuery is still referenced by the users code and used to get results. This should never be a problem, uncached queries must still work. Creating the same query again however, will result in having two RxQuery instances instead of one.\nUsing a custom policy\nA cache replacement policy is a normal JavaScript function according to the type RxCacheReplacementPolicy.\nIt gets the RxCollection as first parameter and the QueryCache as second. Then it itterates over the cached RxQuery instances and uncaches the desired ones with uncacheRxQuery(rxQuery). When you create your custom policy, you should have a look at the default.\nTo apply a custom policy to a RxCollection, add the function as attribute cacheReplacementPolicy.\nconst collection = await myDatabase.collection({\n name: 'humans',\n schema: mySchema,\n cacheReplacementPolicy: function(){ /* ... */ }\n});\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-local-document.html":{"url":"rx-local-document.html","title":"LocalDocuments","keywords":"","body":"Local Documents\nLocal documents are a special class of documents which are used to store local metadata.\nThey come in handy when you want to store settings or additional data next to your documents.\n\nLocal Documents can exist on RxDatabase or RxCollection\nLocal Document do not have to match the collections schema\nLocal Documents do not get replicated\nLocal Documents will not be found on queries\nLocal Documents can not have attachments\nLocal Documents will not get handled by the data-migration\n\ninsertLocal()\nCreates a local document for the database or collection. Throws if a local document with the same id already exists. Returns a Promise which resolves the new RxLocalDocument.\nconst localDoc = await myCollection.insertLocal(\n 'foobar', // id\n { // data\n foo: 'bar'\n }\n);\n\n// you can also use local-documents on a database\nconst localDoc = await myDatabase.insertLocal(\n 'foobar', // id\n { // data\n foo: 'bar'\n }\n);\n\nupsertLocal()\nCreates a local document for the database or collection if not exists. Overwrites the if exists. Returns a Promise which resolves the RxLocalDocument.\nconst localDoc = await myCollection.upsertLocal(\n 'foobar', // id\n { // data\n foo: 'bar'\n }\n);\n\ngetLocal()\nFind a RxLocalDocument by it's id. Returns a Promise which resolves the RxLocalDocument or null if not exists.\nconst localDoc = await myCollection.getLocal('foobar');\n\nRxLocalDocument\nA RxLocalDocument behaves like a normal RxDocument.\nconst localDoc = await myCollection.getLocal('foobar');\n\n// access data\nconst foo = localDoc.get('foo');\n\n// change data\nlocalDoc.set('foo', 'bar2');\nawait localDoc.save();\n\n// observe data\nlocalDoc.get$('foo').subscribe(value => { /* .. */ });\n\n// remove it\nawait localDoc.remove();\n\nNOTICE: Because the local document does not have a schema, accessing the documents data-fields via pseudo-proxy will not work.\nconst foo = localDoc.foo; // undefined\nconst foo = localDoc.get('foo'); // works!\n\nlocalDoc.foo = 'bar'; // does not work!\nlocalDoc.set('foo', 'bar'); // works\n\n\nIf you are new to RxDB, you should continue here\n"},"custom-build.html":{"url":"custom-build.html","title":"Custom Build","keywords":"","body":"Custom Build\nBy default, if you import RxDB into your javascript, a full batteries-included build will be imported. This has the advantage that you don't have to choose which things you need and which not. The disadvantage is the build-size. Often you don't need most of the functionality and you could save a lot of bandwidth by cherry-picking only the things you really need. For this, RxDB supports custom builds.\nCore\nThe core-module is the part of RxDB which is always needed to provide basic functionality. If you need a custom build, you start with the core and then add all modules that you need.\nimport {\n createRxDatabase,\n addRxPlugin\n /* ... */\n} from 'rxdb/plugins/core';\n\nrequired modules\nSome parts of RxDB are not in the core, but are required. This means they must always be overwrite by at least one plugin.\nvalidate\nThe validation-module does the schema-validation when you insert or update a RxDocument. To use RxDB you always have to add a validation-module.\nThis one is using is-my-json-valid but you can also use your own validator instead. To import the default validation-module, do this:\nimport { RxDBValidatePlugin } from 'rxdb/plugins/validate';\naddRxPlugin(RxDBValidatePlugin);\n\najv-validate\nAnother validation-module that does the schema-validation. This one is using ajv as validator which is a bit faster. Better compliant to the jsonschema-standart but also has a bigger build-size.\nimport { RxDBAjvValidatePlugin } from 'rxdb/plugins/ajv-validate';\naddRxPlugin(RxDBAjvValidatePlugin);\n\nvalidate-z-schema\nBoth is-my-json-valid and ajv-validate use eval() to perform validation which might not be wanted when 'unsafe-eval' is not allowed in Content Security Policies. This one is using z-schema as validator which doesn't use eval.\nimport { RxDBValidateZSchemaPlugin } from 'rxdb/plugins/validate-z-schema';\naddRxPlugin(RxDBValidateZSchemaPlugin);\n\nno-validate\nA validation module that does nothing at handles all data as valid. Use this as an alternative for the normal validator when you can rely on the input of the database.\nThis is meant for production to reduce the build-size, do not use this in dev-mode.\nimport { RxDBNoValidatePlugin } from 'rxdb/plugins/no-validate';\naddRxPlugin(RxDBNoValidatePlugin);\n\noptional modules\nSome modules are optional and only needed if you use their functionality.\ndev-mode\nThis plugin add many additional check and validations to RxDB and also the extendes error messages.\nThese checks increase your build size and decrease the performance.\nTherefore this plugin should always be used in development but never in production.\nimport { RxDBDevModePlugin } from 'rxdb/plugins/dev-mode';\naddRxPlugin(RxDBDevModePlugin);\n\nquery-builder\nAdds the query-builder-functionality to RxDB which allows you to run queries like myCollection.find().where('x').eq(5)\nimport { RxDBQueryBuilderPlugin } from 'rxdb/plugins/query-builder';\naddRxPlugin(RxDBQueryBuilderPlugin);\n\nmigration\nAdds the data-migration-functionality to RxDB which allows you to migrate documents when the schema changes.\nimport { RxDBMigrationPlugin } from 'rxdb/plugins/migration';\naddRxPlugin(RxDBMigrationPlugin);\n\nreplication\nAdds the replication-functionality to RxDB which allows you to replicate the database with a CouchDB compliant endpoint.\nimport { RxDBReplicationPlugin } from 'rxdb/plugins/replication';\naddRxPlugin(RxDBReplicationPlugin);\n\nreplication-graphql\nAllows you to do a replication with a GraphQL endpoint.\nSee: Replication with GraphQL\nimport { RxDBReplicationGraphQLPlugin } from 'rxdb/plugins/replication-graphql';\naddRxPlugin(RxDBReplicationGraphQLPlugin);\n\nattachments\nAdds the attachments-functionality to RxDB.\nimport { RxDBAttachmentsPlugin } from 'rxdb/plugins/attachments';\naddRxPlugin(RxDBAttachmentsPlugin);\n\nin-memory\nAdds the in-memory-replication to the collections.\nimport { RxDBInMemoryPlugin } from 'rxdb/plugins/in-memory';\naddRxPlugin(RxDBInMemoryPlugin);\n\nlocal-documents\nAdds the local-documents to the collections and databases.\nimport { RxDBLocalDocumentsPlugin } from 'rxdb/plugins/local-documents';\naddRxPlugin(RxDBLocalDocumentsPlugin);\n\njson-dump\nAdds the json import/export-functionality to RxDB.\nimport { RxDBJsonDumpPlugin } from 'rxdb/plugins/json-dump';\naddRxPlugin(RxDBJsonDumpPlugin);\n\nkey-compression\nThe keycompressor-module is needed when you have keyCompression enabled. This is done by default so make sure that you set disableKeyCompression to true when you do not have this module.\nimport { RxDBKeyCompressionPlugin } from 'rxdb/plugins/key-compression';\naddRxPlugin(RxDBKeyCompressionPlugin);\n\nleader-election\nThe leaderelection-module is needed when want to use the leaderelection.\nimport { RxDBLeaderElectionPlugin } from 'rxdb/plugins/leader-election';\naddRxPlugin(RxDBLeaderElectionPlugin);\n\nencryption\nThe encryption-module is using crypto-js and is only needed when you create your RxDB-Database with a password.\nimport { RxDBEncryptionPlugin } from 'rxdb/plugins/encryption';\naddRxPlugin(RxDBEncryptionPlugin);\n\nupdate\nThe update-module is only required when you use RxDocument.update or RxQuery.update.\nimport { RxDBUpdatePlugin } from 'rxdb/plugins/update';\naddRxPlugin(RxDBUpdatePlugin);\n\nwatch-for-changes\nWhen you write data on the internal pouchdb of a collection, by default the changeEvent will not be emitted to RxDB's changestream.\nThe watch-for-changes plugin lets you tell the collection to actively watch for changes on the pouchdb-instance whose origin is not RxDB.\nThis plugin is used internally by the replication-plugin and the in-memory-plugin.\nimport { RxDBWatchForChangesPlugin } from 'rxdb/plugins/watch-for-changes';\naddRxPlugin(RxDBWatchForChangesPlugin);\n\n// you can now call this once and then do writes on the pouchdb\nmyRxCollection.watchForChanges();\n\n// now write sth on the pouchdb\nmyRxCollection.pouch.put({/* ... */});\n\nadapter-check\nThis module add the checkAdapter-function to RxDB.\nimport { RxDBAdapterCheckPlugin } from 'rxdb/plugins/adapter-check';\naddRxPlugin(RxDBAdapterCheckPlugin);\n\nserver\nSpawns a couchdb-compatible server from a RxDatabase. Use this to replicate data from your electron-node to the browser-window. Or to fast setup a dev-environment.\nSee: Tutorial: Using the RxDB Server-Plugin\nDo never expose this server to the internet, use a couchdb-instance at production.\n// run 'npm install express-pouchdb' before you use this plugin\n\n// This plugin is not included into the default RxDB-build. You have to manually add it.\nimport { RxDBServerPlugin } from 'rxdb/plugins/server';\naddRxPlugin(RxDBServerPlugin);\n\nThird Party Plugins\n\nrxdb-utils Additional features for RxDB like models, timestamps, default values, view and more.\nrxdb-hooks A set of hooks to integrate RxDB into react applications. \n\n\nIf you are new to RxDB, you should continue here\n"},"plugins.html":{"url":"plugins.html","title":"Creating Plugins","keywords":"","body":"Creating Plugins\nCreating an own plugin is very simple. A plugin is basically an javascript-object which overwrites or extends RxDB's internal classes, prototypes and hooks.\nA basic plugins:\n\nconst myPlugin = {\n rxdb: true, // this must be true so rxdb knows that this is a rxdb-plugin and not a pouchdb-plugin\n /**\n * every value in this object can manipulate the prototype of the keynames class\n * You can manipulate every prototype in this list:\n * @link https://github.com/pubkey/rxdb/blob/master/src/plugin.ts#L22\n */\n prototypes: {\n /**\n * add a function to RxCollection so you can call 'myCollection.hello()'\n *\n * @param {object} prototype of RxCollection\n */\n RxCollection: (proto) => {\n proto.hello = function(){\n return 'world';\n };\n }\n },\n /**\n * some methods are static and can be overwritten in the overwriteable-object\n */\n overwritable: {\n validatePassword: function(password) {\n if (password && typeof password !== 'string' || password.length \nProperties\nrxdb\nThe rxdb-property signals that this plugin is and rxdb-plugin and not a pouchdb-plugin. The value should always be true.\nprototypes\nThe prototypes-property contains a function for each of RxDB's internal prototype that you want to manipulate. Each function gets the prototype-object of the corresponding class as parameter and than can modify it. You can see a list of all available prototypes here\noverwritable\nSome of RxDB's functions are not inside of a class-prototype but are static. You can set and overwrite them with the overwritable-object. You can see a list of all overwriteables here.\nhooks\nSometimes you don't want to overwrite an existing RxDB-method, but extend it. You can do this by adding hooks which will be called each time the code jumps into the hooks corresponding call. You can find a list of all hooks here here.\noptions\nRxDatabase and RxCollection have an additional options-parameter, which can be filled with any data required be the plugin.\nconst collection = myDatabase.collection({\n name: 'foo'.\n schema: mySchema,\n options: { // anything can be passed into the options\n foo: ()=>'bar'\n }\n})\n\n// Afterwards you can use theses options in your plugin.\n\ncollection.options.foo(); // 'bar'\n\n\nIf you are new to RxDB, you should continue here\n"},"adapters.html":{"url":"adapters.html","title":"Adapters","keywords":"","body":"Adapters\nRxDB itself is not a self-contained database. It uses adapters that define where the data is stored. Depending on which environment you work in, you can choose between different adapters. For example in the browser you want to store the data inside of IndexedDB but on NodeJs you want to store the data on the filesystem.\nThis page is an overview over the different adapters with recommendations on what to use where.\nPlease always ensure that your pouchdb adapter-version is the same as pouchdb-core in the rxdb package.json. Otherwise you might have strange problems\nAny environment\nMemory\nIn any environment, you can use the memory-adapter. It stores the data in the javascript runtime memory. This means it is not persistent and the data is lost when the process terminates.\nUse this adapter when:\n\nYou want to have a really good performance\nYou do not want persistent state, for example in your test suite\n\n// npm install pouchdb-adapter-memory --save\naddRxPlugin(require('pouchdb-adapter-memory'));\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: 'memory' // the name of your adapter\n});\n\nMemdown\nWith RxDB you can also use adapters that implement abstract-leveldown like the memdown-adapter.\n// npm install memdown --save\n// npm install pouchdb-adapter-leveldb --save\naddRxPlugin(require('pouchdb-adapter-leveldb')); // leveldown adapters need the leveldb plugin to work\n\nconst memdown = require('memdown');\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: memdown // the full leveldown-module\n});\n\nBrowser\nIndexedDB\nThe IndexedDB adapter stores the data inside of IndexedDB use this in browsers environments as default.\n// npm install pouchdb-adapter-idb --save\naddRxPlugin(require('pouchdb-adapter-idb'));\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: 'idb' // the name of your adapter\n});\n\nIndexedDB (new)\nA reimplementation of the indexeddb adapter which uses native secondary indexes. Should have a much better performance but can behave different on some edge cases.\n// npm install pouchdb-adapter-indexeddb --save\naddRxPlugin(require('pouchdb-adapter-indexeddb'));\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: 'indexeddb' // the name of your adapter\n});\n\nWebsql\nThis adapter stores the data inside of websql. It has a different performance behavior. Websql is deprecated. You should not use the websql adapter unless you have a really good reason.\n// npm install pouchdb-adapter-websql --save\naddRxPlugin(require('pouchdb-adapter-websql'));\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: 'websql' // the name of your adapter\n});\n\nNodeJS\nleveldown\nThis adapter uses a LevelDB C++ binding to store that data on the filesystem. It has the best performance compared to other filesystem adapters. This adapter can not be used when multiple nodejs-processes access the same filesystem folders for storage.\n// npm install leveldown --save\n// npm install pouchdb-adapter-leveldb --save\naddRxPlugin(require('pouchdb-adapter-leveldb')); // leveldown adapters need the leveldb plugin to work\nconst leveldown = require('leveldown');\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: leveldown // the full leveldown-module\n});\n\n// or use a specific folder to store the data\nconst database = await createRxDatabase({\n name: '/root/user/project/mydatabase',\n adapter: leveldown // the full leveldown-module\n});\n\nNode-Websql\nThis adapter uses the node-websql-shim to store data on the filesystem. It's advantages are that it does not need a leveldb build and it can be used when multiple nodejs-processes use the same database-files.\n// npm install pouchdb-adapter-node-websql --save\naddRxPlugin(require('pouchdb-adapter-node-websql'));\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: 'websql' // the name of your adapter\n});\n\n// or use a specific folder to store the data\nconst database = await createRxDatabase({\n name: '/root/user/project/mydatabase',\n adapter: 'websql' // the name of your adapter\n});\n\nReact-Native\nreact-native-sqlite\nUses ReactNative SQLite as storage. Claims to be much faster than the asyncstorage adapter.\nTo use it, you have to do some steps from this tutorial.\nFirst install pouchdb-adapter-react-native-sqlite and react-native-sqlite-2.\nnpm install pouchdb-adapter-react-native-sqlite react-native-sqlite-2\n\nThen you have to link the library.\nreact-native link react-native-sqlite-2\n\nYou also have to add some polyfills which are need but not included in react-native.\nnpm install base-64 events\n\nimport { decode, encode } from 'base-64'\n\nif (!global.btoa) {\n global.btoa = encode;\n}\n\nif (!global.atob) {\n global.atob = decode;\n}\n\n// Avoid using node dependent modules\nprocess.browser = true;\n\nThen you can use it inside of your code.\nimport { addRxPlugin, createRxDatabase } from 'rxdb';\nimport SQLite from 'react-native-sqlite-2'\nimport SQLiteAdapterFactory from 'pouchdb-adapter-react-native-sqlite'\n\nconst SQLiteAdapter = SQLiteAdapterFactory(SQLite)\n\naddRxPlugin(SQLiteAdapter);\naddRxPlugin(require('pouchdb-adapter-http'));\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: 'react-native-sqlite' // the name of your adapter\n});\n\nasyncstorage\nUses react-native's asyncstorage.\nNotice: There are known problems with this adapter and it is not recommended to use it.\n// npm install pouchdb-adapter-asyncstorage --save\naddRxPlugin(require('pouchdb-adapter-asyncstorage'));\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: 'node-asyncstorage' // the name of your adapter\n});\n\nasyncstorage-down\nA leveldown adapter that stores on asyncstorage.\n// npm install pouchdb-adapter-asyncstorage-down --save\naddRxPlugin(require('pouchdb-adapter-leveldb')); // leveldown adapters need the leveldb plugin to work\n\nconst asyncstorageDown = require('asyncstorage-down');\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: asyncstorageDown // the full leveldown-module\n});\n\nCordova / Phonegap\ncordova-sqlite\nUses cordova's global cordova.sqlitePlugin.\n// npm install pouchdb-adapter-cordova-sqlite --save\naddRxPlugin(require('pouchdb-adapter-cordova-sqlite'));\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: 'cordova-sqlite' // the name of your adapter\n});\n\n\nIf you are new to RxDB, you should continue here\n"},"tutorials/typescript.html":{"url":"tutorials/typescript.html","title":"Use RxDB with Typescript","keywords":"","body":"Using RxDB with TypeScript\n\nIn this tutorial you learn how to use RxDB with TypeScript.\nWe will create a basic database with one collection and several ORM-methods, fully typed!\nRxDB directly comes with it's typings and you do not have to install anything else, however the latest version of RxDB (v9+) requires that you are using Typescript v3.8 or higher.\nOur way to go is\n\nFirst define how the documents look like\nThen define how the collections look like\nThen define how the database looks like\n\nDeclare the types\nFirst you import the types from RxDB.\nimport {\n createRxDatabase,\n RxDatabase,\n RxCollection,\n RxJsonSchema,\n RxDocument,\n} from 'rxdb';\n\nThen you can declare the base-type for your document. The base-type is basically the typescript-representation of the jsonschema of the collection. If you have many collections, you could also generate the base-type with json-schema-to-typescript\ntype HeroDocType = {\n passportId: string;\n firstName: string;\n lastName: string;\n age?: number; // optional\n};\n\nWe also add some ORM-methods for the document.\ntype HeroDocMethods = {\n scream: (v: string) => string;\n};\n\nWe can merge these into our HeroDocument.\ntype HeroDocument = RxDocument;\n\nNow we can define type for the collection which contains the documents.\n\n// we declare one static ORM-method for the collection\ntype HeroCollectionMethods = {\n countAllDocuments: () => Promise;\n}\n\n// and then merge all our types\ntype HeroCollection = RxCollection;\n\nBefore we can define the database, we make a helper-type which contains all collections of it.\ntype MyDatabaseCollections = {\n heroes: HeroCollection\n}\n\nNow the database.\ntype MyDatabase = RxDatabase;\n\nUsing the types\nNow that we have declare all our types, we can use them.\n\n/**\n * create database and collections\n */\nconst myDatabase: MyDatabase = await createRxDatabase({\n name: 'mydb',\n adapter: 'memory'\n});\n\nconst heroSchema: RxJsonSchema = {\n title: 'human schema',\n description: 'describes a human being',\n version: 0,\n keyCompression: true,\n type: 'object',\n properties: {\n passportId: {\n type: 'string',\n primary: true\n },\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n },\n age: {\n type: 'integer'\n }\n },\n required: ['firstName', 'lastName']\n};\n\nconst heroDocMethods: HeroDocMethods = {\n scream: function(this: HeroDocument, what: string) {\n return this.firstName + ' screams: ' + what.toUpperCase();\n }\n};\n\nconst heroCollectionMethods: HeroCollectionMethods = {\n countAllDocuments: async function(this: HeroCollection) {\n const allDocs = await this.find().exec();\n return allDocs.length;\n }\n};\n\nawait myDatabase.collection({\n name: 'heroes',\n schema: heroSchema,\n methods: heroDocMethods,\n statics: heroCollectionMethods\n});\n\n// add a postInsert-hook\nmyDatabase.heroes.postInsert(\n function myPostInsertHook(\n this: HeroCollection, // own collection is bound to the scope\n docData: HeroDocType, // documents data\n doc: HeroDocument // RxDocument\n ) {\n console.log('insert to ' + this.name + '-collection: ' + doc.firstName);\n },\n false // not async\n);\n\n/**\n * use the database\n */\n\n// insert a document\nconst hero: HeroDocument = await myDatabase.heroes.insert({\n passportId: 'myId',\n firstName: 'piotr',\n lastName: 'potter',\n age: 5\n});\n\n// access a property\nconsole.log(hero.firstName);\n\n// use a orm method\nhero.scream('AAH!');\n\n// use a static orm method from the collection\nconst amount: number = await myDatabase.heroes.countAllDocuments();\nconsole.log(amount);\n\n\n/**\n * clean up\n */\nmyDatabase.destroy();\n\n\nIf you are new to RxDB, you should continue here\n"},"tutorials/server.html":{"url":"tutorials/server.html","title":"Using the Server Plugin","keywords":"","body":"Using the Server Plugin\nIn this tutorial you learn how to use the server plugin and replicate data from a node-process to the client.\nThe server plugin is usefull\n\nTo simulate the couchdb in developer-mode without setting up a real one\nTo replicate data between the renderer and the node-process in an electron-app\nTo fast spin up a prototype-app without having to define an API\n\nIt should never be used openly accessible to the internet, use a couchdb-instance at production.\nIn NodeJs\nBecause the server plugin only works in node, it is not part of the default rxdb-build. You have to import it before you can use it.\nimport { addRxPlugin } from 'rxdb';\n\n// add the server-plugin\nimport { RxDBServerPlugin } from 'rxdb/plugins/server';\naddRxPlugin(RxDBServerPlugin);\n\n// add the memory-adapter\nimport * as MemoryAdapter from 'pouchdb-adapter-memory';\naddRxPlugin(MemoryAdapter);\n\nYou also have to install the module express-pouchdb which does not come with RxDB.\n npm install express-pouchdb --save\n\nNow we can create a database and a collection.\nimport { createRxDatabase } from 'rxdb';\n// create database\nconst db = await createRxDatabase({\n name: 'mydb',\n adapter: 'memory'\n});\n\n// create collection\nconst mySchema = {\n version: 0,\n type: 'object',\n properties: {\n key: {\n type: 'string',\n primary: true\n },\n value: {\n type: 'string'\n }\n }\n};\nawait db.collection({\n name: 'items',\n schema: mySchema\n});\n\n// insert one document\nawait db.items.insert({\n key: 'foo',\n value: 'bar'\n});\n\nNow we can spawn the server. Besides the RxDB specific options, you can set pouchdbExpressOptions which are defined by the express-pouchdb module.\nconst {app, server} = db.server({\n path: '/db', // (optional)\n port: 3000, // (optional)\n cors: true, // (optional), enable CORS-headers\n startServer: true // (optional), start express server\n // options of the pouchdb express server\n pouchdbExpressOptions: {\n inMemoryConfig: true, // do not write a config.json\n logPath: '/tmp/rxdb-server-log.txt' // save logs in tmp folder\n }\n});\n\nTo ensure that everything is ok,\n\nOpen http://localhost:3000/db to get the database-info\nOpen http://localhost:3000/db/items to get the collection-info\n\nServer as a part of bigger Express app\nYou can create server without starting it. It allows to use server as a part of bigger Express app.\nconst {app, server} = db.server({\n path: '/', // omitted when startServer is false and force set to /\n port: 3000, // omitted when startServer is false\n cors: false, // disable CORS-headers (default) - you probably want to configure CORS in your main app\n startServer: false // do not start express server\n});\n\nThen you can mount rxdb server express app in your express app\nconst {app, server} = db.server({\n startServer: false\n});\nconst mainApp = express();\n\n// configure CORS, other middlewares...\n\nmainApp.use('/db', app);\nmainApp.use('/', (req, res) => res.send('hello'));\nmainApp.listen(3000, () => console.log(`Server listening on port 3000`));\n\nTo ensure that everything is ok,\n\nOpen http://localhost:3000/db to get the database-info\nOpen http://localhost:3000/db/items to get the collection-info\n\nOn the client\nOn the client you can now also create a database and replicate it with our server.\nStart with creating the database and collection.\nimport { addRxPlugin, createRxDatabase } from 'rxdb';\n\n// we need the http-plugin to relicate over http\nimport * as PouchHttpPlugin from 'pouchdb-adapter-http';\naddRxPlugin(PouchHttpPlugin);\n\n\nconst clientDB = await createRxDatabase({\n name: 'clientdb',\n adapter: 'memory'\n});\n\n// create a collection\nawait clientDB.collection({\n name: 'items',\n schema: mySchema\n});\n\nNow you replicate the client collection with the server.\nclientDB.items.sync({\n remote: 'http://localhost:3000/db/items'\n});\n\nAfter the replication worked, the client has the same document.\nconst docs = await clientDB.items.find().exec();\n\n\nIf you are new to RxDB, you should continue here\n"},"questions-answers.html":{"url":"questions-answers.html","title":"Questions & Answers","keywords":"","body":"Questions and answers\nCan't change the schema\nWhen you make changes to the schema of a collection, you sometimes can get an error like\nError: collection(): another instance created this collection with a different schema.\nThis means you have created a collection before and added document-data to it.\nWhen you now just change the schema, it is likely that the new schema does not match the saved documents inside of the collection.\nThis would cause strange bugs and would be hard to debug, so RxDB check's if your schema has changed and throws an error.\nTo change the schema in production-mode, do the following\n\nIncrease the version by 1\nAdd the appropriate migrationStrategies so the saved data will be modified to match the new schema\n\nIn development-mode, the schema-change can be simplified by one of these strategies:\n\nUse the memory-adapter so your db resets on restart and your schema is not safed permanently\nCall removeRxDatabase('mydatabasename', 'adapter'); before creating a new RxDatabase-instance\nAdd a timestamp as suffix to the database-name to create a new one each run like name: 'heroesDB' + new Date().getTime()\n\n"},"contribute.html":{"url":"contribute.html","title":"Contribute","keywords":"","body":"Contribution\nWe are open to, and grateful for, any contributions made by the community.\nDeveloping\nRequirements\nBefore you can start developing, do the following:\n\nMake sure you have installed nodejs with version 7 or higher\nClone the repository git clone https://github.com/pubkey/rxdb.git\nInstall the dependencies cd rxdb && npm install\nMake sure that the tests work for you npm run test\n\nFlow\nWhile developing you should run npm run dev and leave it open in the console. This will run the unit-tests on every file-change. If you have a slow device, you can also manually run npm run test:node every time you want to check if the tests work.\nAdding tests\nBefore you start creating a bugfix or a feature, you should create a test to reproduce it. Tests are in the test/unit-folder.\nIf you want to reproduce a bug, you can modify the test in this file.\nMaking a PR\nIf you make a pull-request, ensure the following:\n\nEvery feature or bugfix must be committed together with a unit-test which ensures everything works as expected.\nDo not commit build-files (anything in the dist-folder)\nBefore you add non-trivial changes, create an issue to discuss if this will be merged and you don't waste your time.\nTo run the unit and integration-tests, do npm run test and ensure everything works as expected\n\nGetting help\nIf you need help with your contribution, ask at gitter.\nDocs\nThe source of the documentation is at the docs-src-folder.\nTo read the docs locally, run npm run docs docs:install && npm run docs:serve and open http://localhost:4000/\nThank you for contributing!\n"}}} \ No newline at end of file +{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["''","'')","(short","+",".$",".find({",".join();",".map(doc","/","//","40%","=","=>",">","['name']","action","addit","alreadi","app","applic","apps,","automat","available.","base","benefits.","between","broadcast","call","capabl","capac","care","chang","changes.","client","clients.","collection.","come","compliant","compress","continu","core","couchdb","current","custom","data","data,","databas","database)","db.hero","defin","develop","developers.","devic","doc","doc.nam","document","document.","each","easi","electron","emit","encrypt","encrypted.","endpoint","endpoints.","even","featur","field","flawless","framework.","frontend","give","graphql","graphql.","great","hacked,","have","here.","hybrid","inform","instead","introduct","it.","javascript","json","key","make","mean","migrat","modul","much","multi","multipl","mydomelement.innerhtml","new","nodejs.","normal","nosql","observ","onc","open","optimizations.","parties.","perform","predict","progress","provid","pull","queri","queries,","queries.","reactiv","read","readabl","realtim","replic","representation.","result","rxdb","rxdb,","rxj","same","save","schema","sensit","server","server,","simpl","singl","sort:","space.","specif","state","state,","states.","stolen","storag","store","strategi","stream","structur","subscrib","support","sure","synchron","tab","take","team","third","time","time,","togeth","tricki","ui","updat","us","version","visual","way","web","websites,","window","work","{","})","});"],"install.html":["\"dependencies\":","\"git+https://git@github.com/pubkey/rxdb.git#commithash\"","\"rxdb\":","'@babel/polyfill';","'rxdb';","(window","*/","...","/*","=","@babel/polyfil","ad","add","angular","any).glob","any).process","assum","babel","base","before.","browser","browsers.","build","bundlers.","code","code.","commit.","commithash","continu","createrxdatabase,","debug:","defined.","depend","develop","env:","error","es5.","es8","exampl","file:","frameworks,","git","global","hash","here","here.","import","instal","javascript","latest","mean","need","new","nodej","npm","older","own,","package.json,","package.json.","peer","polyfil","polyfills,","pouchdb","referenceerror:","releas","replac","run:","runtim","rxdatabas","rxdb","rxdb,","rxj","save","specif","state","support","transpil","uncaught","undefin","us","variabl","webpack","window;","with:","{","}","},","};"],"rx-database.html":["$","'heroesdb',","'idb'","'localstorage');","'mydatabase',","'rxdb';","'websql',","(optional)","(optional=false)","(optional=true)","*/).then(()",".create()",".then(()",".then(json","/*","//","12","=","=>","actual","ad","adapt","adapter,","adapter.","adapter:","addrxplugin","addrxplugin(require('pouchdb","advantag","affect","algorithm","allow","app","app,","app.","assum","asynchron","at.","await","becom","befor","benefit","between","big","browsers,","browsers:","call","case","chang","characters.","check","checkadapter('localstorage');","checkadapter()","checkadapter,","cleanup","code","collect","common","compat","console.dir(changeevent));","console.dir(json));","console.dir(ok);","console.log('done'));","const","contain","continu","continuously.","cordova","couchdb","cpu.","creat","createrxdatabas","createrxdatabase({","creation","current","data","data.","databas","database,","database.","db","db1","db2","decrypt","defin","depend","destroy","destroy()","destroyed.","differ","directli","document.","done","dump","dump()","each","elect","electron","emptydatabase.importdump(json)","enabl","encrypt","environ","environment.","equal","error","event","eventreduc","events.","exampl","explicitli","export","fals","field","folder","follow","free","function","function.","given","gone","handl","have","here","idb'));","identifi","idl","idle.","ignoredupl","ignoreduplicate:","import","importdump()","in.","indexeddb","instanc","instance.","instead","intent","isrxdatabas","isrxdatabase(myobj);","it'","it.","javascript","json","know","leader.","learn","list","localstorage'));","main","memori","mistake,","module.","moment","more","ms","multiinst","multipl","mycollection.customcleanupfunction();","mydatabase.destroy();","mydatabase.dump()","mydatabase.dump(true)","mydatabase.remove();","mydatabase.requestidlepromise().then(()","mydatabase.requestidlepromise(1000","mydb.$.subscribe(changeev","name","name:","nativ","need","ness","new","nodej","not.","noth","notice:","now","object","observ","ok","on","optim","option","other.","out","paramet","parameters:","pass","password","perform","piec","pouchdb","pouchset","prevent","process,","promis","property.","queri","queries.","rare","react","read","realtim","recur","remov","remove()","removerxdatabas","removerxdatabase('mydatabasename',","replications.","requestidlecallback","requestidlepromise()","resolv","result","return","run","runtime,","rxdatabas","rxdatabase.","rxdb","rxdb,","rxj","same","semi","server","server()","serverless.","set","share","similar","singl","someth","spawn","speed","stop","storag","storage.","store","stream","string","switch","synchronis","task","tasks.","tests,","this.","through","throw","time","timeout","track","true","true.","two","uniqu","unit","up","updat","us","use.","veri","waitforleadership()","want","window","wipe","without","work","wrong.","{","}","});"],"rx-schema.html":["\"array\",","\"attachments\":","\"birthyear\":","\"color\":","\"damage\":","\"describ","\"description\":","\"encrypted\":","\"final\":","\"healthpoints\":","\"hero","\"items\":","\"maximum\":","\"maxitems\":","\"minimum\":","\"name\":","\"number\"","\"number\",","\"object\",","\"primary\":","\"properties\":","\"required\":","\"secret\":","\"skills\":","\"string\"","\"string\",","\"title\":","\"type\":","\"uniqueitems\":","\"version\":","'array',","'firstname',","'heroes',","'human","'integer',","'lastname']","'number'","'object',","'string'","//","0","0,","0.","100","1900,","20","2050","5","5,","8.0.0,","9]$","9_]*]?[a","=","[","[\"color\"],","[\"secret\"],","['firstname',","['secret']","^[a","access","accident","ad","add","additionalproperti","advantages:","age:","allow","alway","amount","anyway","array","attach","attribut","attribute.","await","befor","between","birthyear","chang","change.","collect","collection,","collection.","color","compression',","conform","console.dir(mydatabase.heroes.name);","const","contain","continu","creat","creation.","creditcards:","cvc:","damag","data","databas","database,","default","default.","default:","defin","definit","detection,","dev","disabl","disk","document","document,","document.","don't","done","dure","enabl","encrypt","encrypted,","encrypted.","encrypted:","ensur","error","even","everyth","exampl","example,","false.","familyname:","field","fieldnam","fieldnames,","fields.","fill","final","final,","final:","find","first","firstname:","follow","getter","greater","healthpoint","here","hero","hero\",","hero.","huge","improv","index","indexed,","indexes:","insert","insid","instantli","integ","internally,","invalid","it.","items:","json","jsonschema","keycompress","keycompression:","know","lastname:","later.","level","list,","looks.","make","map","match","maximum","mean","migrationstrategi","modifi","mydatabase.collection({","myheroschema","myschema","name","name:","nest","new","notic","notice:","number","number,","object","objects.","observ","over","pass","password","per","perform","popul","primary,","primary.","projects.","properti","properties:","provid","queri","regex","requir","required.","required:","run","rxattachment.","rxdatabase.","rxdb","rxdb,","rxdocument,","rxschema","save","schema","schema\",","schema.","schema.org.","schema:","schemawithdefaultag","schemawithfinalag","schemawithindex","secondari","secret","secret:","see","sens","set","settings:","simpl","singl","skill","space.","spec","standard","start","store","store.","string","string,","support","sure","team","temporari","therefor","things.","throw","title:","top","true","true,","type","type:","unencrypt","unique,","unset","us","valid","valu","value.","values.","version","version:","whenev","within","worry,","written","z0","z][[a","za","{","}","});","},","};"],"rx-collection.html":["$","$or","'alice',","'bar'","'bar1'","'bar2'","'bob'","'bob',","'foo',","'foo1',","'foo2',","'heroes',","'humans',","'kelso'","'kelso';","(optional)","(primari","*/","...",".collection()",".exec().then(doc",".exec();",".find()",".gt(18)",".insert()",".then(()",".then(json",".upsert()",".where('age')","/*","//","//>","18","409","77;","9]*$.","=","===","=>",">","[","[]","[rxdocument,","];","^[a","abov","allow","appli","array.","atom","atomicupsert()","attach","attachments,","attachments:","attribut","automat","automigr","automigrate:","await","basic","befor","behavior","belong","beta","better","between","big","bulk","bulkinsert","bulkinsert()","cach","cachereplacementpolicy:","call","chang","collect","collection'","collection,","collection.","collection2","collection2);","conflict","console.dir(changeevent));","console.dir(doc));","console.dir(docsmap);","console.dir(json));","console.log('done'));","console.log(collect","const","continu","couchdb","creat","custom","custoom","data","data.","databas","database,","database.","database:","db.collection({","db.heroes;","decrypt","defin","deleted,","destroy","destroy()","differ","directli","doc","docdata","docsmap","document","document,","document.","documents,","documents.","does,","done.","dump","dump()","each","easily.","emit","encrypt","error","error.","error:","errors,","especi","event","execut","exist","expect","export","fail","failur","fals","faster","field","fields.","fill","find","find()","findbyids$()","findbyids()","findone()","finish","firstname:","follow","form","free","full","function","function(){},","function.","generated.","given","handled.","help","here","here.","id","ident","identifi","import","importdump()","insert","insert$","insert()","insert.","inserted.","insid","instanc","instance.","isrxcollect","isrxcollection(myobj);","it.","javascript","json","key","known","last","lastname:","later","look","mani","map","map(2)","map.","match","mean","memori","method","method.","methods:","migrat","migration.","migrationstrategi","migrationstrategies:","mirgrat","more","much","multipl","mycollect","mycollection.$.subscribe(changeev","mycollection.atomicupsert(docdata);","mycollection.bulkinsert([{","mycollection.destroy();","mycollection.dump()","mycollection.dump(true)","mycollection.findbyids(ids);","mycollection.findone('foo')","mycollection.findone().where('name').eq('foo')","mycollection.importdump(json)","mycollection.insert$.subscribe(changeev","mycollection.insert({","mycollection.newdocument({","mycollection.remove$.subscribe(changeev","mycollection.remove();","mycollection.update$.subscribe(changeev","mycollection.upsert(docdata);","mycollection.upsert({","mydatabase.collection({","myschema","myschema,","name","name.","name:","name:foobar","need","never","new","newdocument()","newli","not.","notice.","notice:","now","object","observ","older","olderdocu","once,","oper","operations.","option","optional.","options:","orm","orm/drm.","otherwis","overwrit","overwritten","paramet","paramt","parrallel","pass","perform","plugin","polici","pouchdb","pouchset","pouchsettings:","prefil","prevent","previou","primari","primary,","property.","protocol.","queri","re","refind","regex:","remot","remov","remove$","remove()","replac","replic","replications.","result","return","run","running.","rxcollect","rxcollection.","rxcollection.newdocument(initaldata).","rxcollections,","rxdatabas","rxdb,","rxdocument","rxdocument.","rxdocument.atomicupdate.","rxdocument],","rxj","rxquery.find().","rxschema","rxschema.","same","save","schema","schema:","schemas,","schemaversions.","see","selector.","server","set","short","similar","simpl","singl","sometim","spawn","specifi","standard","statics,","statics:","still","stop","store","stream","success","success:","support","sync","sync()","tempdoc","tempdoc.ag","tempdoc.lastnam","tempdoc.save();","temporari","through","throw","time","times.","timespan,","transform","tri","true","true,","two","type","type.","uniqu","until","up","updat","update$","upsert","upsert()","us","valid","valu","value).","veri","version","versions.","wait","want","way","within","without","work","write.","z0","z][a","{","{}","{},","}","});","},","};","}]);"],"rx-document.html":["$","$inc:","$set:","'","'bar'","'carolina',","'foo',","'foobar'","'foobar');","'foobar';","'foobar2'","'foobar2';","'foobar2'});","'foooobarnew'","'foooobarnew';","'gibson',","'h1rg9ugdd30o',","'name","'name'","'steve'","'steve',","'steve'});","(olddata)","(via","*/","+","...",".find()",".insert()",".save()",".subscribe(changeev",".subscribe(newnam","/*","//","1","1;","3.","33","409","=","=>",">","_deleted:tru","access","ag","age:","anyth","assign","atom","atomicpatch","atomicpatch()","atomicset","atomicset()","atomicupd","atomicupdate()","attribut","attribute.","automat","await","base","befor","belong","boolean","bound","call","chang","changed.","changeev","changefunct","changes.","collection'","collection,","collection.","compar","conflicts.","console.dir(changeevent));","console.dir(documents));","console.dir(isname);","console.dir(json);","console.log('nam","console.log(laststate);","console.log(mydocument.deleted);","console.log(mydocument.get('firstname'));","console.log(mydocument.name);","console.log(mydocument.nested.attribute);","const","continu","current","data","data.","databas","decrypt","delet","deleted$","deleted$.","depend","deprecated,","describ","differ","directli","directly.","doc","document","document'","document,","document.","each","emit","encrypted,","event","fals","field","find","firstnam","firstname:","foobar","function","function.","get$()","get()","getter","given","here","ident","increas","insert","inserts,","instanc","instance.","instead","is:","isnam","isname;","isrxdocu","isrxdocument(myobj);","json","jsx.","lastname:","laststat","lead","life","mean","method","modifi","modifyjs.","mongo","mutat","mycollection.find().exec()","mycollection.insert({","mydocument.$","mydocument.atomicpatch({","mydocument.atomicpatch({firstname:","mydocument.atomicpatch({name:","mydocument.atomicset('nested.attribute',","mydocument.atomicupdate(changefunction);","mydocument.deleted$.subscribe(st","mydocument.firstnam","mydocument.firstname$.subscribe(newnam","mydocument.get$('name')","mydocument.get('name');","mydocument.nam","mydocument.name;","mydocument.remove();","mydocument.save();","mydocument.set('firstname',","mydocument.tojson();","mydocument.update({","mydocument.whatever.nestedfield","mydocument.whatever.nestedfield;","mymethod.bind(mydocument)","name","name:","nest","nestedvalu","new","newname));","newname;","not.","note","notic","notice:","now","null;","object","object.","observ","observables:","olddata.ag","olddata.nam","olddata;","option","over","overwrit","parameter.","passportid:","path","plain","pouchdb","properti","proxi","purg","queries.","record","relat","remov","remove()","result","return","returning.","rxdb,","rxdocument","rxdocument,","rxdocument.","rxj","rxquery.","save()","see","set","set()","set).","setter","singl","state);","stefe'","steve'","storag","store","submit","syntax,","table.","take","temporari","thing","time","tojson()","true","undefin","updat","update()","update(),","us","useabl","valu","value,","value.","values.","var","whether","work","write","{","}","});","},"],"rx-query.html":["$","$.subscribe()","$eq:","$exists:","$inc:","$or","'","'%like%'","'.*foo.*'}","'fifoo'","'fifoofa'","'foo'","'foo'}","'foobar',","'foofa'","'got","'i');","*/});","+","...",".exec().then(docu",".find()",".findone()",".gt(18);",".sort('age')",".where('age')",".where()","//","1","18","19","5'","6'","=","=>",">","[","[rxdocument,rxdocument,rxdocument..]","afterwards.","ag","again","age:","allow","alway","array","await","basic","behaviorsubject","call","case","chain","chang","changed.","check","collect","collection.","composit","console.dir(documents));","console.dir(results);","console.log('got","const","continu","creat","current","data","database,","database.","databases,","delet","directli","doc","docs.","document","documentdata","documents.","doesdocumentdatamatch()","eg:","emit","equival","etc...","exampl","example:","exec()","exist","extrem","fals","fast","fe:","field.","find","find()","findon","findone()","foo","found","function","given","heavi","helpful","here","id:","immut","immutable.","increas","insensit","insert","instanc","instead","isrxqueri","isrxquery(myobj);","it,","keep","learn","less","mango","match","means,","methods.","mind","modifi","mqueri","mycollect","mycollection.find().where('age').gt(18).doesdocumentdatamatch(documentdata);","mycollection.find().where('age').gt(18);","mycollection.find().where('age').gt(20).doesdocumentdatamatch(documentdata);","mycollection.find().where('age').lt(18);","mycollection.find().where('name').eq('foo')","mycollection.find();","mycollection.find({","mycollection.insert({/*","name","name:","new","normal","nosql","not.","notice:","now","null","object","object,","observ","older","on","optimis","origin","over","pass","perform","possibl","pouch","previou","promis","queri","query.","query.$.subscribe(result","query.exec();","query.remove();","query.update({","queryobject","queryobject.exec();","queryobject.sort('name');","queryobjectsort","queryobjectsort.exec();","reactiv","read","regexp","regexp('^foo$',","regexp}}","remov","remove()","removeddoc","resolv","result","result.","results.length);","results:","return","run","rxdb","rxdb,","rxdocument","rxqueri","rxquery'","rxquery,","rxquery.","same","search","see","selector:","selectors.","set","set.","show","singl","sort","sql","state","statement","subscript","syntax","syntax.","this,","time.","togeth","true","ui","updat","update()","us","value.","var","without","write","written","youngest","{","{$eq:","{$or:","{$regex:","{name:","}","})","});","},","};","}]}"],"rx-attachment.html":["'cat.jpg'","'humans',","'image/jpeg'","'object',","(async)","(string)","(string|blob|buffer)",");",".","//","0,","=","=>","[];","ad","add","allattachments$","allattachments()","array","assign","attach","attachment'","attachment.","attachment.getdata();","attachment.getstringdata();","attachment.remove();","attachments,","attachments:","attributes/methods.","await","befor","better","binari","blob","blobbuff","buffer.","const","continu","data","data,","data.","db","digest","doc","document.","documents.","done.","each","emit","encrypt","encrypted:","ensur","exist.","files,","follow","get","getattachment()","getdata()","getstringdata()","here","higher","id","id,","id.","imag","length","limit","md5","mycollect","mydatabase.collection({","mydocument.allattachments$.subscribe(","mydocument.allattachments();","mydocument.getattachment('cat.jpg');","mydocument.putattachment({","myschema","name","name:","new","null","number","number.","object","observ","password","perform","pouchdb,","promis","properties:","putattachment()","quota","re","regular","remov","remove()","repres","resolv","return","rev","revis","rxattach","rxcollection.","rxdb","rxdb,","rxdocument","rxdocument.","schema","schema:","set","side","store","stream","string","string,","string.","sum","time","to.","true","true,","type","type:","us","version:","want","whatev","{","}","});","},","};"],"middleware.html":["'anyvalue';","'foobar'","'foobar',","'myfield',","()","(also","//","100));","50","50;","=","=>","action","add","ag","alreadi","another.","anyfield","async","asynchron","asynchronous.","atom","attribut","avoid","await","befor","behavior","bind","block","cach","call","case","certain","chang","clear","code.","collection.","complex","console.log(doc.myfield);","const","constructed.","continu","control","creat","custom","data","databas","database.","default","defin","delet","depend","differ","doc","document","document.","documents.","dure","emit","error('stop');","error.","event","execut","false);","field","field,","first","flexibl","follow","function","functions.","get:","getter/sett","happen","help","here","hook","hook,","hook?","hooks)","hooks:","ideas:","insert","instanc","instance.","interact","lastnam","level","lifecycl","list","logic","make","mean","middlewar","model","modifi","mongoose,","mongoose.","mycollection.findone().exec();","mycollection.postcreate(function(plaindata,","mycollection.postinsert(function(plaindata,","mycollection.postremove(function(plaindata,","mycollection.postsave(function(plaindata,","mycollection.preinsert(function(plaindata){","mycollection.preremove(function(plaindata,","mycollection.presave(function(plaindata,","nest","new","notice:","notif","object","object.defineproperty(rxdocument,","on","oper","parallel","parameter,","parameter.","pass","plain","plaindata.ag","plaindata.anyfield","post","postcreat","postinsert","postremov","postsav","pre","preinsert","preremov","presav","promise(r","promise.","receiv","remov","removed.","return","run","rxcollect","rxcollection.insert","rxdatabas","rxdb","rxdb,","rxdocument","rxdocument){","rxdocument,","rxdocument.remov","rxdocument.sav","save","saved.","schema","second","seri","set","settimeout(res,","specif","specifi","stop","structur","support","sure","synchron","task","therefor","throw","trigger","true);","updat","us","usag","valid","valu","want","way","whenev","whole","written","{","});","},"],"orm.html":["'","'!!';","'aaah!!'","'aaah!!';","'cat.txt',","'heroes'","'heroes',","'i","'meow","'skeletor'","'text/plain'","+","//","=","add","attach","attachments:","await","behavior","call","capabl","collect","collection.","collection:","collections.","console.log(attachment.scream());","console.log(doc.scream());","console.log(doc.whoami());","console.log(heroes.scream());","console.log(heroes.whoami());","const","contain","continu","creat","data","data:","defin","doc","doc.putattachment({","document","function","function(){","functions,","here","hero","heroes.findone().exec();","heroes.insert({","id:","instanc","keyword","keyword:","kitty',","map","method","methods:","mongoose,","mydatabase.collection({","myschema,","name:","names.","new","object","orm","orm/drm","pass","relat","resolv","return","rxattachemnt","rxdb","rxdb,","rxdocument","schema:","scream:","skeletor!!'","specif","static","statics:","this.nam","this.name;","type:","us","whoami:","wide","wide.","{","}","});"],"population.html":["'alice'","'alice',","'array',","'bob',","'carol'","'carol',","'dave'","'human","'human'","'human',","'object',","'string'","'string',","(primari","//","//>","//[insert","0,","=","[","['string','null']","]","_","add","alway","anoth","array","array.","attribut","await","belong","bestfriend","bestfriend:","collect","collections.","come","console.dir(bestfriend);","console.dir(friends);","console.dir(mother);","const","continu","database.","describ","direct","doc","doc.bestfriend_;","doc.populate('bestfriend');","document","exactli","exampl","export","family:","field","fieldname.","foreign","found.","friend","friends:","getter","getter.","here","here]","human","human',","humanscollection.findone('alice').exec();","humanscollection.findone('bob').exec();","humanscollection.insert({","in.","items:","join","keyword","mani","method","method.","mongoose.","mother","mother:","mycollect","mycollection.insert({","mydatabase.collection({","mydocument.family.mother_;","mydocument.friends_;","name:","nest","new","notic","null","on","path","popul","populate()","primary:","promis","properties:","ref","ref:","refer","referenc","refhuman","relat","resolv","return","rxcollect","rxdb","rxdb,","rxdocument","rxdocument)","rxdocument,","rxdocument[alice]","same","schema","schema:","schemawithonetomanyrefer","sometim","specifi","still","string","suffix","take","therefor","title:","to.","true","true,","type:","underscor","underscore_","us","valu","values.","version:","via","want","work","{","}","});","},","};"],"data-migration.html":["'bi","'messages',","'sendercountry'","(or","(string)","(version:",");","*","*/",".migratepromise():",".then(respons","/**","//","0","0,","0.","02","1","12","12t23:03:05+00:00","1486940585","1:","2","2)","2017","2:","50,","=","=>","accomplish","add","alreadi","alway","amount","app","appear","assigned.","assur","asynchron","automat","automigr","automigrate:","await","awesom","bar.","better","call)","chang","client'","code","collect","collection,","collection.","combin","compar","console.dir(state),","console.error(error),","console.log('done')","const","continu","coordin","countri","created.","creation","data","data.","datamigr","date","date(olddoc.time).gettime();","dates.","decid","default,","defin","delet","deleted:","devic","distribut","doc","document","don't","done","done:","easier","emit","error","exist","false,","fetch('http://myserver.com/api/countrybycoordinates/'+coordinates+'/')","field","filter","finish","function","function(olddoc){","get","greater","hand'","handl","handled:","happen","here","hint","if(olddoc.tim","imagin","incom","increas","instead","leaderelect","load","long","look","lot","make","mani","match","means,","messag","messagecol","messagecol.migratepromise(10);","messages.","messageschemav1,","messeng","migrat","migrated.","migrated:","migratepromise;","migrationpromis","migrationstrategi","migrationstrategies:","mydatabase.collection({","name:","new","new,","newer","newest","null,","number","object","old","olddoc.coordinates;","olddoc.sendercountry=response;","olddoc.tim","olddoc;","older","on","open","paramet","percent:","percentag","problem","promis","properti","provid","remains:","remov","requir","resolv","resourc","respons","response.json();","return","run","rxdb","rxdb,","save","schema","schema'","schema:","schema?","schemas.","sender","server","show","start","state","strategi","string","succeed","success:","sure","tabs.","take","this,","this:","time,","timestamp","total:","transform","true","unix","upon","us","used:","user","user'","user,","users'","users.","version","version,","version.","want","wast","while,","{","}","});","},"],"leader-election.html":["'dies'.","'localstorage',","'mypassword',","'temperature',","'weatherdb',","*",".then(()","//","10","10);","1000","5","6*5=30","=","=>","access.","adapter:","algorithm","alway","api","await","becom","befor","between","broadcast","browser","build,","case","channel","charts,","check","client","closed,","closed.","code","collection.","come","conflict","connections.","console.log('long","const","continu","corner.","count","createrxdatabase({","crown","current","data","data,","date().gettime()","db","db.collection({","db.temperature.insert({","db.waitforleadership()","degrees:","device,","differ","display","easy,","elect","exact","exactli","exampl","fetch('https://example.com/api/temp/');","hand","heatmaps.","here","imagin","implement","inspect","instanc","instances.","javascript","king!');","lead","leader","leader,","leader.","leaderelect","live","locat","machine.","make","manag","mani","mark","matter","messag","minute.","module.","moment","more","multiinstance:","multipl","mupltipl","myschema","name:","new","nodej","notic","now","number","old","on","once.","open","out","over","password:","per","pleas","polling.","power","process","produce,","pull","read","reassign","redund","remot","replic","resourc","right","run","runtime.","rxdb","rxdb,","same","save","schema:","second","seconds.","see","send","sent","server","site","solut","solv","start","stay","sure","system","tab","tab.","tabs,","temp","temp,","temperatur","ten","them,","these","thing","this,","time","time:","top","traffic","tri","true","until","us","usag","vanillaj","variou","via","visitor","wait..","wast","way","websit","websocket","wire","you.","{","});","},","♛"],"replication.html":["\"type\"","'http://localhost:10102/db/',","(default)","(e.g.","(ex:","(optional)","(or","(recommended)","(remot","(some","//","1)","2)","3)","6","=","=>","[default=true]","activ","active$","adapt","add","addrxplugin(require('pouchdb","aliv","alive$","allow","anoth","async","await","basic","befor","between","browser","browser,","call","cancel","cancel()","chang","change$","collect","complete$","complete.","completed.","completes.","configur","connect","console.dir(active));","console.dir(alive));","console.dir(change));","console.dir(completed));","console.dir(docdata));","console.dir(error));","const","continu","couchdb","couchdb,","couldn't","creat","data","data.","databas","database)","database,","database.","databases.","db.","default=tru","denied$","depend","di","died.","dies.","differ","direct","direction:","docs$","document","doesn't","domain","due","dure","each","emit","enabl","entiti","error","error$","especi","event","example.","fail","fals","featur","field","further","handler","haproxy)","here","here).","here.","http","http'));","http1.1","http2.0","http2.0,","https://pouchdb.com/api.html#repl","immedi","impli","instanc","instance,","intern","leader","less)","level","limit","limit,","live:","long","make","match","max","method","multipl","mycollection.find().where('age').gt(18)","mycollection.sync({","need","never","new","observ","occur","older","on","ones,","option","options:","over","pend","per","performance,","permissions).","plugin","poll","pouch/couch","pouchdb","power","prevent","properli","proxi","pull:","push:","queri","query:","recogn","remot","remote:","replic","replicated.","replication,","replication.","replicationst","replicationstate.active$.subscribe(act","replicationstate.alive$.subscribe(al","replicationstate.cancel();","replicationstate.change$.subscribe(chang","replicationstate.complete$.subscribe(complet","replicationstate.denied$.subscribe(docdata","replicationstate.docs$.subscribe(docdata","replicationstate.error$.subscribe(error","request","request.","retry:","return","rx.collection.sync()","rxcollect","rxcollection,","rxcollection.sync()","rxcollection.sync().","rxdb","rxdb,","rxj","rxreplicationst","same","save","see","send","serverurl,","set","sever","singl","solutions:","specifi","start","stream.","subdomain","sure","sync","sync.","synchron","synchronis","tab","through","time","transmit","true","true,","us","valu","via","waitforleadership:","won't","you'r","{","});","},"],"replication-graphql.html":["!==","\"${doc.name}\",","\"alice\",","\"deleted\":","\"foobar\",","\"id\":","\"lastname\":","\"name\":","\"updatedat\":","\"wilson\",","$human)","${doc.updatedat},","'',","'deleted',","'http://example.com/graphql',","'new'","'rxdb/plugins/repl","'subscript","'ws://example.com/subscriptions',","(!doc)","(a.id","(a.updatedat","(beta)","(doc.id","(doc.updatedat","(graphql","(optional)","(or",");","*","*/",".active$",".awaitinitialreplication()",".cancel()",".canceled$",".error$",".isstopped()",".recieved$",".run()",".send$",".setheaders()","/","/**","//","0","10","1000","1000);","1564783474,","1;","5)","5,","60","=","===","=>",">","[human!]!","`","`...`","`;","`subscript","`{","abov","addrxplugin(rxdbreplicationgraphqlplugin);","again","allow","alway","amount","arg","args.human;","args.lastid)","args.limit);","args.minupdatedat)","around,","assum","authorization:","autmat","automat","automatically,","await","b)","b.id)","b.updatedat)","back","batch","batchsize:","befor","boolean!","build","builder","call","called.","cancel","canceled,","canceled.","case,","caus","chang","changeobserv","changeobservable.subscribe({","changes,","check","client","client.","compar","comparison","compliant","conflict","conflict,","conflicts,","cons:","console.dir(error);","console.log('initi","console.log('someth","const","construct","continu","couchdb","cours","creat","createhuman($human:","cycl","d","d.id","data","data');","data.","databas","date","date().gettime()","debug","debugging.","default","delet","deleted,","deleted:","deletedflag:","design","destroyed.","developer.","do","doc","doc.id);","doc.updatedat","doc;","document","document.","documents,","documents.","documents.filter(d","documents.push(doc);","documents.sort((a,","done","done,","done.","down","download","dure","each","emit","endpoint","endpoint,","endpoint.","ensur","equal","equal,","error","even","event","events,","exampl","example)[https://github.com/pubkey/rxdb/tree/master/examples/graphql]","exist","fals","false,","false;","faster","feedforrxdbrepl","feedforrxdbreplication(lastid:","feedforrxdbreplication:","fetch","filterforminupdatedatandid.slice(0,","finish","first","flag","flags.","full","function","functions.","gener","get","given","graphql","graphql';","graphqlschemafromrxschema(),","handel","handl","handler","happen","happens,","header","height","helper","here","here,","human","human:","humanchang","humaninput","humaninput)","humaninput):","id","id!,","id,","id:","import","improv","indic","initi","input","input.","inspect","int!):","int!,","internally.","interv","it'","it.","known","last","lastname,","lastname:","later","latest","learn","less","let","like:","limit","limit:","limited;","list","live","live:","liveinterv","liveinterval:","logic","look","mani","math.round(new","mean","minupdatedat:","modifi","modifier:","multipl","mutat","mycollection.syncgraphql()","mycollection.syncgraphql().","mycollection.syncgraphql({","name,","name:","need","network","never","new","newer","next(data)","non","not.","notice:","notifiers,","null","object","object).","observ","offlin","offline,","on","one,","ongo","onhumanchang","onlin","out","part","play","pleas","plugin","problem","promis","pros:","provid","pull","pull:","pullquerybuild","pullquerybuilder,","pullquerybuilder.","pullquerybuilderfromrxschema()","push","push:","pushquerybuild","pushquerybuilder,","pushquerybuilderfromrxschema()","queri","query,","querybuild","querybuilder,","querybuilder.","querybuilder:","queu","realtime.","reciev","recommend","reconnect:","relat","reli","replic","replication,","replication.","replicationst","replicationstate.","replicationstate.awaitinitialreplication();","replicationstate.cancel();","replicationstate.error$.subscribe(error","replicationstate.isstopped();","replicationstate.run();","replicationstate.setheaders({","resolut","resolv","resourc","result","return","revis","rootvalu","row","run","run()","rxcollect","rxdatabas","rxdb","rxdb,","rxdb.","rxdbreplicationgraphqlplugin","rxgraphqlreplicationst","rxjsonschema.","same","schema","second","send","server","server,","server.","set","set.","sethuman(human:","sethuman:","setup","side","side,","side.","singl","skip","solv","someth","something,","soon","sort","sortabl","sorteddocu","sourc","start","state","still","stopped.","string!,","subscrib","subscript","subscriptioncli","subscriptionclient(","sync","systems.","take","them,","thing","this,","time","transport","trigger","true","true,","true/fals","true;","truth","two","type","until","up.","updat","updatedat","updatedat.","updatedat:","url","url:","us","usag","user","value.","variabl","variables:","veri","watch","way","will,","work","worst","wrong');","ws';","wsclient","wsclient.request({","{","{}","}","});","},","};","}`;"],"in-memory.html":["'bar'});","'npm","'pouchdb","(all","//","=","adapt","add","addrxplugin(pouchadaptermemory);","amount","anoth","apply.","attach","automat","await","awaitpersistence()","befor","behav","both.","call","case","chang","collect","collection,","collection.","collections.","comput","cons:","const","continu","creation","data","decrypt","disc","doc","document","drive.","encrypt","enough","equal","event","everyth","faster","field","fields.","fire","fit","hard","heavi","here","hook","import","important:","inherit","initi","inmemori","inmemorycollection,","insid","instal","instead","it'","know","load","longer","mean","memcol","memcol.awaitpersistence();","memcol.find().exec();","memcol.insert({foo:","memori","memory';","memory)","mycollect","mycollection.inmemory();","new","now","on","oper","optim","origin","over","parent","pouchadaptermemori","pouchdb","promis","pros:","queri","regist","replic","replicated,","resolv","result","return","run","rxcollect","rxcollection().awaitpersistence()","rxcollection().inmemory();","rxcollection,","rxdb,","same","save'","separ","share","small","static","store","stream.","support","sure","take","them,","time","two","u","until","updat","us","version","want","way","work","write","you'd"],"query-cache.html":["'humans',","*/","...","/*","100","30","=","accord","add","again","algorithm","alway","appli","applic","attribut","await","backward","between","cach","cache.","cachereplacementpolicy.","cachereplacementpolicy:","case","chang","clean","clear","code","collect","const","contain.","continu","count","creat","custom","data","databas","default","default.","defin","depend","desir","differ","document","enough","especi","even","event","execut","execution.","fill","first","function","function(){","get","good","happen","have","here","however,","idle.","implement","instanc","instead","itter","javascript","javascript,","last","less","longer","look","make","mani","memory,","move","much","mydatabase.collection({","myschema,","name:","never","new","normal","now","occur","older","on","one.","optim","optimization,","over","page","paramet","peopl","polici","policy,","possibl","prefer","problem,","queri","queries.","querycach","reduc","refer","referenc","regularly,","replac","result","results.","reus","rout","run","runtime.","rxcachereplacementpolicy.","rxcollect","rxcollection,","rxdb","rxdb,","rxqueri","same","schema:","second","second.","sens","sense.","start","still","subscrib","subscript","therefor","time","times.","tri","two","type","ui","uncach","uncacherxquery(rxquery).","up","us","user","valuabl","variables.","without","work.","}","});"],"rx-local-document.html":["'bar'","'bar');","'bar';","'bar2');","'foobar',",");","*/","..","/*","//","=","=>","access","addit","alreadi","attach","await","behav","chang","class","collect","collection.","come","const","continu","creat","data","databas","document","documents.","exist","exists.","field","find","foo","foo:","found","getlocal()","handi","handl","here","id","id.","insertlocal()","it'","local","localdoc","localdoc.foo","localdoc.foo;","localdoc.get$('foo').subscribe(valu","localdoc.get('foo');","localdoc.remove();","localdoc.save();","localdoc.set('foo',","localdocu","match","metadata.","migrat","mycollection.getlocal('foobar');","mycollection.insertlocal(","mycollection.upsertlocal(","mydatabase.insertlocal(","new","next","normal","notice:","null","observ","overwrit","promis","proxi","pseudo","queri","remov","replic","resolv","return","rxcollect","rxdatabas","rxdb,","rxdocument.","rxlocaldocu","rxlocaldocument.","same","schema","schema,","set","special","store","throw","undefin","upsertlocal()","us","via","want","work","work!","work.","works!","{","}","});"],"custom-build.html":["'npm","'rxdb/plugins/adapt","'rxdb/plugins/ajv","'rxdb/plugins/attachments';","'rxdb/plugins/core';","'rxdb/plugins/dev","'rxdb/plugins/encryption';","'rxdb/plugins/in","'rxdb/plugins/json","'rxdb/plugins/key","'rxdb/plugins/lead","'rxdb/plugins/loc","'rxdb/plugins/migration';","'rxdb/plugins/no","'rxdb/plugins/queri","'rxdb/plugins/repl","'rxdb/plugins/replication';","'rxdb/plugins/server';","'rxdb/plugins/update';","'rxdb/plugins/valid","'rxdb/plugins/validate';","'rxdb/plugins/watch","'unsaf","*/","*/});","...","/*","//","activ","adapt","add","addit","addrxplugin","addrxplugin(rxdbadaptercheckplugin);","addrxplugin(rxdbajvvalidateplugin);","addrxplugin(rxdbattachmentsplugin);","addrxplugin(rxdbdevmodeplugin);","addrxplugin(rxdbencryptionplugin);","addrxplugin(rxdbinmemoryplugin);","addrxplugin(rxdbjsondumpplugin);","addrxplugin(rxdbkeycompressionplugin);","addrxplugin(rxdbleaderelectionplugin);","addrxplugin(rxdblocaldocumentsplugin);","addrxplugin(rxdbmigrationplugin);","addrxplugin(rxdbnovalidateplugin);","addrxplugin(rxdbquerybuilderplugin);","addrxplugin(rxdbreplicationgraphqlplugin);","addrxplugin(rxdbreplicationplugin);","addrxplugin(rxdbserverplugin);","addrxplugin(rxdbupdateplugin);","addrxplugin(rxdbvalidateplugin);","addrxplugin(rxdbvalidatezschemaplugin);","addrxplugin(rxdbwatchforchangesplugin);","advantag","ajv","allow","altern","alway","anoth","applications.","attach","bandwidth","basic","batteri","befor","better","bigger","bit","both","browser","build","build,","build.","builder","builder';","builds.","call","chang","changeev","changes';","changes.","changestream.","check","check';","checkadapt","cherri","choos","collect","collection,","collections.","compat","compliant","compress","compression';","content","continu","core","core,","couchdb","creat","createrxdatabase,","crypto","custom","data","databas","database.","databases.","decreas","default","default,","dev","develop","disablekeycompress","disadvantag","document","documents';","doesn't","don't","done","dump","dump';","elect","election';","electron","emit","enabled.","encrypt","endpoint.","environment.","error","eval'","eval()","eval.","expos","express","extend","fast","faster.","featur","full","function","functionality.","graphql","graphql';","handl","here","hook","import","import/export","imported.","includ","increas","input","insert","instal","instanc","instead.","integr","intern","internet,","it.","javascript,","js","json","jsonschema","key","keycompress","keycompressor","leader","leaderelect","leaderelection.","let","local","lot","make","mani","manual","mean","meant","memori","memory';","messages.","migrat","mode","mode';","mode.","models,","modul","module,","module.","more.","mycollection.find().where('x').eq(5)","myrxcollection.pouch.put({/*","myrxcollection.watchforchanges();","need","need.","never","new","node","normal","not.","noth","now","on","onc","option","origin","overwrit","part","parti","password.","perform","performance.","pick","plugin","plugin.","policies.","pouchdb","pouchdb'","product","production.","provid","queri","react","realli","reduc","reli","replic","requir","required.","run","rxdatabase.","rxdb","rxdb'","rxdb,","rxdb.","rxdbadaptercheckplugin","rxdbajvvalidateplugin","rxdbattachmentsplugin","rxdbdevmodeplugin","rxdbencryptionplugin","rxdbinmemoryplugin","rxdbjsondumpplugin","rxdbkeycompressionplugin","rxdbleaderelectionplugin","rxdblocaldocumentsplugin","rxdbmigrationplugin","rxdbnovalidateplugin","rxdbquerybuilderplugin","rxdbreplicationgraphqlplugin","rxdbreplicationplugin","rxdbserverplugin","rxdbupdateplugin","rxdbvalidateplugin","rxdbvalidatezschemaplugin","rxdbwatchforchangesplugin","rxdocument.","rxdocument.upd","rxquery.update.","save","schema","schema';","secur","see:","server","set","setup","size","size,","size.","spawn","standart","start","sth","support","sure","tell","therefor","thing","third","this,","this:","timestamps,","true","tutorial:","updat","us","util","valid","valid.","validate';","validation.","values,","view","want","watch","whose","window.","write","z","{","}"],"plugins.html":["!==","&&","'bar'","'foo'.","'mycollection.hello()'","'string'","'world';","()=>'bar'","(password","(proto)","*","*/","/**","//","=","=>","@link","@param","ad","add","addit","afterward","alway","anyth","avail","basic","call","call.","class","classes,","code","collect","collection.options.foo();","const","contain","continu","correspond","creat","data","don't","each","exist","extend","fill","find","foo:","function","function(){","function(password)","get","here","here.","hook","hooks.","https://github.com/pubkey/rxdb/blob/master/src/plugin.ts#l22","insid","intern","it.","javascript","jump","keynam","know","list","list:","manipul","manipulate.","method","method,","modifi","mydatabase.collection({","myplugin","myschema,","name:","new","object","object.","option","options:","overwrit","overwritable:","overwritten","paramet","parameter,","pass","password","password.length","plugin","plugin.","plugins:","pouchdb","properti","proto.hello","prototyp","prototypes:","requir","return","rxcollect","rxcollection:","rxdatabas","rxdb","rxdb'","rxdb,","rxdb:","schema:","see","set","signal","simple.","sometim","static","static.","these","time","true","true,","true.","typeof","us","validatepassword:","valu","veri","want","{","{object}","||","}","})","},","};"],"adapters.html":["'/root/user/project/mydatabase',","'base","'cordova","'idb'","'indexeddb'","'memory'","'mydatabase',","'node","'pouchdb","'react","'rxdb';","'websql'","(!global.atob)","(!global.btoa)","(new)","/","//","2","2'","2.","64","64'","=","abstract","access","adapt","adapter.","adapter:","adapters.","add","addrxplugin(require('pouchdb","addrxplugin(sqliteadapter);","addrxplugin,","advantag","alway","asyncstorag","asyncstorage'","asyncstorage'));","asyncstorage.","asyncstoragedown","avoid","await","base","behav","behavior.","best","better","between","bind","browser","build","c++","cases.","choos","claim","code.","compar","const","contain","continu","cordova","cordova'","cordova.sqliteplugin.","core","createrxdatabas","createrxdatabase({","data","databas","database.","decode,","decode;","default.","defin","depend","deprecated.","differ","down","down');","edg","encod","encode;","ensur","environ","environment,","event","exampl","faster","files.","filesystem","filesystem.","first","folder","full","global","global.atob","global.btoa","good","here","http'));","idb","idb'));","implement","import","in,","includ","indexeddb","indexeddb'));","indexes.","insid","instal","it'","it,","it.","itself","javascript","known","leveldb","leveldb'));","leveldown","library.","link","lost","mean","memdown","memori","memory'));","memory.","modul","much","multipl","name","name:","nativ","native'","native.","need","new","node","nodej","notice:","npm","otherwis","over","overview","package.json.","page","perform","persist","phonegap","pleas","plugin","polyfil","pouchdb","problem","process","process.brows","react","reactn","realli","reason.","recommend","reimplement","require('asyncstorag","require('leveldown');","require('memdown');","runtim","rxdb","rxdb,","same","save","secondari","self","shim","specif","sqlite","sqlite'","sqlite'));","sqliteadapt","sqliteadapterfactori","sqliteadapterfactory(sqlite)","state,","step","storage.","store","stored.","strang","suit","terminates.","test","true;","tutorial.","unless","us","version","want","websql","websql'));","websql.","when:","where.","work","{","}","});"],"tutorials/typescript.html":["'","'describ","'heroes',","'human","'integer'","'lastname']","'memory'","'mydb',","'myid',","'object',","'piotr',","'potter',","'rxdb';","'string'","'string',","()","(v9+)","(v:",")",");","*","*/","+","/**","//","0,","5","=","=>","['firstname',","access","adapter:","add","age:","age?:","alldoc","alldocs.length;","amount:","anyth","async","await","base","basic","befor","being',","bound","clean","collect","collection.","collection:","collections,","come","console.log('insert","console.log(amount);","console.log(hero.firstname);","const","contain","continu","countalldocuments:","creat","createrxdatabase({","createrxdatabase,","data","databas","database,","database.","declar","defin","description:","directli","doc.firstname);","doc:","docdata:","document","document.","documents.","else,","fals","first","firstname:","fulli","function","function(this:","gener","go","helper","here","hero.scream('aah!');","hero:","herocollect","herocollection)","herocollection,","herocollectionmethod","herocollectionmethods:","herodocmethod","herodocmethods,","herodocmethods:","herodoctyp","herodoctype,","herodocu","herodocument,","herodocument.","heroes:","heroschema,","heroschema:","higher.","hook","human","import","insert","instal","it'","it.","json","jsonschema","keycompression:","lastname:","latest","learn","look","make","mani","merg","method","methods,","methods:","mydatabas","mydatabase.collection({","mydatabase.destroy();","mydatabase.heroes.countalldocuments();","mydatabase.heroes.insert({","mydatabase.heroes.postinsert(","mydatabase:","mydatabasecollect","mypostinserthook(","name:","new","now","number","number;","on","option","orm","passportid:","postinsert","primary:","promise;","properti","properties:","represent","requir","required:","return","rxcollection,","rxcollection;","rxdatabase,","rxdatabase;","rxdb","rxdb,","rxdb.","rxdocument","rxdocument,","rxdocument;","rxjsonschema","rxjsonschema,","schema","schema',","schema:","scope","scream:","screams:","sever","static","statics:","string)","string;","them.","this.find().exec();","this.firstnam","this.nam","this:","title:","true","true,","tutori","type","type:","typed!","types,","typescript","typescript.","up","us","v3.8","version","version:","way","what.touppercase();","what:","{","}","});","},","};"],"tutorials/server.html":["'/',","'/db',","'/tmp/rxdb","'bar'","'clientdb',","'foo',","'http://localhost:3000/db/items'","'items',","'memory'","'mydb',","'object',","'pouchdb","'rxdb';","'rxdb/plugins/server';","'string'","'string',","()","(default)","(optional)","(optional),","(req,","*","/","//","0,","3000,","3000`));","=","=>","access","adapt","adapter:","add","addrxplugin","addrxplugin(memoryadapter);","addrxplugin(pouchhttpplugin);","addrxplugin(rxdbserverplugin);","addrxplugin,","allow","api","app","app);","app.","await","befor","besid","between","bigger","build.","client","client.","clientdb","clientdb.collection({","clientdb.items.find().exec();","clientdb.items.sync({","collect","collection.","come","config.json","configur","console.log(`serv","const","continu","cor","cors,","cors:","couchdb","creat","createrxdatabas","createrxdatabase({","data","databas","db","db.collection({","db.items.insert({","db.server({","default","defin","develop","disabl","doc","document","document.","electron","enabl","ensur","everyth","express","express();","fals","false,","fast","folder","forc","have","header","here","http","http';","http://localhost:3000/db","http://localhost:3000/db/item","import","info","inmemoryconfig:","insert","instal","instanc","internet,","it.","key:","learn","listen","log","log.txt'","logpath:","main","mainapp","mainapp.listen(3000,","mainapp.use('/',","mainapp.use('/db',","memori","memory';","memoryadapt","middlewares...","mode","modul","module.","mount","myschema","name:","need","never","new","node","node,","nodej","now","npm","ok,","omit","on","open","openli","option","options,","over","part","path:","plugin","port","port:","pouchdb","pouchdbexpressopt","pouchdbexpressoptions:","pouchhttpplugin","primary:","probabl","process","production.","properties:","prototyp","real","relic","remote:","render","replic","res)","res.send('hello'));","rxdb","rxdb,","rxdb.","rxdbserverplugin","same","save","schema:","server","server.","server}","set","simul","spawn","specif","spin","start","startserv","startserver:","tmp","true","true,","tutori","type:","up","us","useful","value:","version:","want","without","work","worked,","write","{","{app,","}","});","},","};"],"questions-answers.html":["&","'adapter');","'heroesdb'","+","1","ad","adapt","add","anoth","answer","appropri","befor","bug","call","can't","caus","chang","check'","collect","collection():","collection,","collection.","creat","data","databas","date().gettime()","db","debug,","develop","differ","document","each","error","error.","error:","follow","hard","increas","insid","instanc","it.","make","match","mean","memori","migrationstrategi","mode,","modifi","name","name:","new","now","on","perman","product","question","removerxdatabase('mydatabasename',","reset","restart","run","rxdatabas","rxdb","safe","save","schema","schema,","schema.","simplifi","sometim","strang","strategies:","suffix","throw","timestamp","us","version"],"contribute.html":["&&","(anyth","7","ad","add","ask","befor","bug,","bugfix","build","cd","change.","changes,","check","clone","commit","community.","console.","contribut","contributing!","contribution,","creat","depend","dev","develop","developing,","device,","discuss","dist","doc","docs:instal","docs:serv","document","don't","ensur","everyth","expect","expected.","featur","feature,","file","file.","flow","folder)","folder.","following:","for,","get","git","gitter.","grate","help","higher","http://localhost:4000/","https://github.com/pubkey/rxdb.git","instal","integr","issu","it.","leav","locally,","made","make","manual","merg","modifi","need","nodej","non","npm","open","pr","pull","read","repositori","reproduc","request,","requir","run","rxdb","slow","sourc","src","start","sure","test","test/unit","test:nod","tests,","thank","time","time.","to,","togeth","trivial","unit","version","want","wast","work","work."]},"length":25},"tokenStore":{"root":{"0":{"2":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.014010507880910683},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0121580547112462},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"1":{"0":{"0":{"0":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},")":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387}}}}}},"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}},")":{"docs":{},";":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"2":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"t":{"2":{"3":{"docs":{},":":{"0":{"3":{"docs":{},":":{"0":{"5":{"docs":{},"+":{"0":{"0":{"docs":{},":":{"0":{"0":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}},"4":{"8":{"6":{"9":{"4":{"0":{"5":{"8":{"5":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"5":{"6":{"4":{"7":{"8":{"3":{"4":{"7":{"4":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"8":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}},"9":{"0":{"0":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},"docs":{}},"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}},"2":{"0":{"1":{"7":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},"docs":{}},"5":{"0":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},"docs":{}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}},"3":{"0":{"0":{"0":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}},"`":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}},"docs":{}},"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}},"3":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}},"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}},"4":{"0":{"9":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}},"docs":{},"%":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}},"docs":{}},"5":{"0":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"6":{"0":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"4":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}},"docs":{"replication.html":{"ref":"replication.html","tf":0.005952380952380952}},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},"*":{"5":{"docs":{},"=":{"3":{"0":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"docs":{}},"docs":{}}},"docs":{}}},"7":{"7":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"8":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},"docs":{}}},"docs":{}}},"9":{"docs":{},"]":{"docs":{},"$":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},"*":{"docs":{},"$":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}},"_":{"docs":{},"]":{"docs":{},"*":{"docs":{},"]":{"docs":{},"?":{"docs":{},"[":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}},"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013054830287206266}},"'":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}},")":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"@":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"'":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},";":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.007952286282306162},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}}}},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"j":{"docs":{},"v":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"o":{"docs":{},"c":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}}}},"h":{"1":{"docs":{},"r":{"docs":{},"g":{"9":{"docs":{},"u":{"docs":{},"g":{"docs":{},"d":{"docs":{},"d":{"3":{"0":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}},"docs":{}},"docs":{}}}}}},"docs":{}}}},"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622}}}}}},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"population.html":{"ref":"population.html","tf":0.00303951367781155},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}},",":{"docs":{"population.html":{"ref":"population.html","tf":0.015197568389057751}}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"1":{"0":{"1":{"0":{"2":{"docs":{},"/":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"'":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"3":{"0":{"0":{"0":{"docs":{},"/":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"'":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009174311926605505}},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"d":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"/":{"docs":{},"j":{"docs":{},"p":{"docs":{},"e":{"docs":{},"g":{"docs":{},"'":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},"]":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.01634472511144131}}}}}}}}}}},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"(":{"docs":{},")":{"docs":{},"'":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}},"e":{"docs":{},"o":{"docs":{},"w":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}}}}}}}},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"'":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{},"'":{"docs":{},";":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"population.html":{"ref":"population.html","tf":0.0060790273556231}}}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"population.html":{"ref":"population.html","tf":0.00911854103343465}}}}}}}},"n":{"docs":{},"y":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}},"a":{"docs":{},"a":{"docs":{},"h":{"docs":{},"!":{"docs":{},"!":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013761467889908258}},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013761467889908258}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},"f":{"docs":{},"a":{"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}},"o":{"docs":{},"o":{"1":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"2":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.011135857461024499}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},"}":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}},"b":{"docs":{},"a":{"docs":{},"r":{"2":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}},"}":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}},"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}}}}}}},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274}},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}},"e":{"docs":{},"w":{"docs":{},"'":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"p":{"docs":{},"m":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.010507880910683012},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0121580547112462},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"'":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.017513134851138354},"population.html":{"ref":"population.html","tf":0.0182370820668693},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},",":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}},"}":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"r":{"1":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"2":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681}},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}},"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"}":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"s":{"docs":{},"e":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"o":{"docs":{},"b":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"population.html":{"ref":"population.html","tf":0.00911854103343465}}}}}},"i":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"k":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231}},",":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{},"'":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}},"t":{"docs":{},"x":{"docs":{},"t":{"docs":{},"'":{"docs":{},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"b":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}},"o":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}}}},"%":{"docs":{},"l":{"docs":{},"i":{"docs":{},"k":{"docs":{},"e":{"docs":{},"%":{"docs":{},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}},".":{"docs":{},"*":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},".":{"docs":{},"*":{"docs":{},"'":{"docs":{},"}":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}},"!":{"docs":{},"!":{"docs":{},"'":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"'":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"'":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"'":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"t":{"docs":{},"r":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"/":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"/":{"docs":{},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"t":{"docs":{},"m":{"docs":{},"p":{"docs":{},"/":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}},"(":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"|":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"|":{"docs":{},"b":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}},"w":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{"install.html":{"ref":"install.html","tf":0.015267175572519083}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.011594202898550725},"replication.html":{"ref":"replication.html","tf":0.011904761904761904},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}}}}}}}}}}}}}}},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}},"v":{"9":{"docs":{},"+":{"docs":{},")":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}},"docs":{},"i":{"docs":{},"a":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"l":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}}}}}},"n":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},")":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"=":{"docs":{},">":{"docs":{},"'":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"'":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}}}}}}}}},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}},"x":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}},"q":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"!":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"g":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"b":{"docs":{},")":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}},"b":{"docs":{},"t":{"docs":{},"o":{"docs":{},"a":{"docs":{},")":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},")":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}},"+":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013054830287206266},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723}},"$":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"{":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}}},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681}},"u":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.011135857461024499}}}}}}}}}}}},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"g":{"docs":{},"t":{"docs":{},"(":{"1":{"8":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"docs":{}},"docs":{}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}},"/":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"/":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.027833001988071572},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0070052539404553416},"rx-collection.html":{"ref":"rx-collection.html","tf":0.042028985507246375},"rx-document.html":{"ref":"rx-document.html","tf":0.04700854700854701},"rx-query.html":{"ref":"rx-query.html","tf":0.053452115812917596},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.029411764705882353},"middleware.html":{"ref":"middleware.html","tf":0.04838709677419355},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.00911854103343465},"data-migration.html":{"ref":"data-migration.html","tf":0.03865979381443299},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.02976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.021212121212121213},"in-memory.html":{"ref":"in-memory.html","tf":0.025906735751295335},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.06912442396313365},"custom-build.html":{"ref":"custom-build.html","tf":0.006993006993006993},"plugins.html":{"ref":"plugins.html","tf":0.01834862385321101},"adapters.html":{"ref":"adapters.html","tf":0.04606240713224369},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.031331592689295036},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.04513064133016627}},">":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"population.html":{"ref":"population.html","tf":0.0121580547112462}}},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}},"*":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"*":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759}}}}},"=":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.015267175572519083},"rx-database.html":{"ref":"rx-database.html","tf":0.011928429423459244},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177},"rx-collection.html":{"ref":"rx-collection.html","tf":0.020289855072463767},"rx-document.html":{"ref":"rx-document.html","tf":0.029914529914529916},"rx-query.html":{"ref":"rx-query.html","tf":0.0334075723830735},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.05042016806722689},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"orm.html":{"ref":"orm.html","tf":0.04128440366972477},"population.html":{"ref":"population.html","tf":0.03343465045592705},"data-migration.html":{"ref":"data-migration.html","tf":0.01804123711340206},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.01818181818181818},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.041474654377880185},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258},"adapters.html":{"ref":"adapters.html","tf":0.029717682020802376},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.03655352480417755},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.019002375296912115}},">":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.011928429423459244},"rx-collection.html":{"ref":"rx-collection.html","tf":0.013043478260869565},"rx-document.html":{"ref":"rx-document.html","tf":0.010683760683760684},"rx-query.html":{"ref":"rx-query.html","tf":0.013363028953229399},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.014112903225806451},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.020833333333333332},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00909090909090909},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}},"=":{"docs":{},"=":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},">":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-query.html":{"ref":"rx-query.html","tf":0.011135857461024499},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},"[":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"population.html":{"ref":"population.html","tf":0.00303951367781155}},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},"]":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"'":{"docs":{},"]":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"'":{"docs":{},",":{"docs":{},"'":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"'":{"docs":{},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},"]":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"\"":{"docs":{},"]":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}},"]":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},".":{"docs":{},"]":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"]":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}}}}}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"!":{"docs":{},"]":{"docs":{},"!":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"v":{"docs":{"replication.html":{"ref":"replication.html","tf":0.005952380952380952},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"e":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"r":{"docs":{},"d":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.022900763358778626},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"orm.html":{"ref":"orm.html","tf":0.01834862385321101},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.02097902097902098},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"i":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"adapters.html":{"ref":"adapters.html","tf":0.01634472511144131}}}}}}}}}}}}}}}}},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"v":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}},"z":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}}}}},",":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.02385685884691849},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":10.075780089153046},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356}}},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"adapters.html":{"ref":"adapters.html","tf":0.019316493313521546},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}},"s":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"m":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.008741258741258742},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"$":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.006993006993006993},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"i":{"docs":{},"v":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}},"e":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"p":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.014251781472684086}},"l":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"c":{"docs":{"./":{"ref":"./","tf":0.019762845849802372},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}},"y":{"docs":{},".":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"s":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.007905138339920948}}}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}},"i":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}}}}},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}},"y":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}},"t":{"docs":{},"h":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231},"replication.html":{"ref":"replication.html","tf":0.008928571428571428},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}},"s":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":3.3429487179487176}}}}}}},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.014112903225806451},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.007429420505200594}},"e":{"docs":{},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}}}}}}}}}}}}},"k":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},"s":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}},"t":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0070052539404553416},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.10504201680672269},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}},"'":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.01680672268907563}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.00303951367781155},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}},"s":{"docs":{},"/":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.013916500994035786},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.015942028985507246},"rx-document.html":{"ref":"rx-document.html","tf":0.019230769230769232},"rx-query.html":{"ref":"rx-query.html","tf":0.013363028953229399},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.025210084033613446},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.045871559633027525},"population.html":{"ref":"population.html","tf":0.0425531914893617},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"in-memory.html":{"ref":"in-memory.html","tf":0.025906735751295335},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.03225806451612903},"adapters.html":{"ref":"adapters.html","tf":0.019316493313521546},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013054830287206266},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.014251781472684086}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}}},"?":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.00303951367781155}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"population.html":{"ref":"population.html","tf":0.0060790273556231}}}}}},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}},"s":{"docs":{},".":{"docs":{},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}},"j":{"docs":{},"v":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245}}}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.011857707509881422},"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759}}},"i":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}},"r":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"c":{"docs":{},"k":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"n":{"docs":{},"d":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}}}},"t":{"docs":{},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.015810276679841896},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"replication.html":{"ref":"replication.html","tf":0.005952380952380952},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"a":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},"e":{"docs":{},".":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}}}}}}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}},"s":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.015197568389057751}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}},"r":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"replication.html":{"ref":"replication.html","tf":0.011904761904761904},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356}},"s":{"docs":{},".":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":5.010489510489511},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"e":{"docs":{},"r":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},"s":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}}},"l":{"docs":{},"k":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"g":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}},"i":{"docs":{},"g":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"y":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}},"!":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}},"t":{"docs":{},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},".":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"b":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"c":{"docs":{},"k":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362},"rx-document.html":{"ref":"rx-document.html","tf":0.01282051282051282},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}},"p":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}},"c":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}},"r":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}},"s":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"s":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"c":{"docs":{},"h":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"query-cache.html":{"ref":"query-cache.html","tf":0.03271028037383177}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.005952380952380952},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"(":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.005952380952380952}}}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"'":{"docs":{},"t":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"u":{"docs":{},"s":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.015810276679841896},"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-document.html":{"ref":"rx-document.html","tf":0.008547008547008548},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication.html":{"ref":"replication.html","tf":0.008928571428571428},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.011111111111111112},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245},"questions-answers.html":{"ref":"questions-answers.html","tf":0.057692307692307696}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"d":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}},"e":{"docs":{},"v":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}},"o":{"docs":{},"b":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"i":{"docs":{},"n":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995}}}}},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}}}}}}}}},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}},"'":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.019762845849802372},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.010101010101010102},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.009501187648456057}},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},"d":{"docs":{},"b":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"u":{"docs":{},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"n":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}},"i":{"docs":{},"m":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177},"rx-collection.html":{"ref":"rx-collection.html","tf":0.02608695652173913},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.0060790273556231},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"in-memory.html":{"ref":"in-memory.html","tf":0.03626943005181347},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.020887728459530026},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.011876484560570071},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},"i":{"docs":{},"o":{"docs":{},"n":{"2":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.01834862385321101},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"in-memory.html":{"ref":"in-memory.html","tf":0.02072538860103627},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}}}}}}}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},"'":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274}}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"s":{"docs":{},".":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.00303951367781155},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"(":{"docs":{},")":{"docs":{},":":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}},"m":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"population.html":{"ref":"population.html","tf":0.00303951367781155},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}}}}}},"e":{"docs":{},"x":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"t":{"docs":{},"e":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}},"d":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}},"s":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.011857707509881422},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"i":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}},"u":{"docs":{},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":10.012422360248447}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"!":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}},"o":{"docs":{},"k":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681}}}}},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.011135857461024499}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.005952380952380952}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231}}}}}}}}}}}}}},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"(":{"docs":{},"'":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}},"g":{"docs":{},"o":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274}}}}}}}}}}}}},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"m":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"o":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"o":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"(":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}}}}},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}}}}}},"`":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},")":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.011928429423459244},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177},"rx-collection.html":{"ref":"rx-collection.html","tf":0.017391304347826087},"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641},"rx-query.html":{"ref":"rx-query.html","tf":0.031180400890868598},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.046218487394957986},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.04128440366972477},"population.html":{"ref":"population.html","tf":0.03343465045592705},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.015151515151515152},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.03686635944700461},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505},"adapters.html":{"ref":"adapters.html","tf":0.02526002971768202},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.018276762402088774},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.019002375296912115}},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}},"s":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.011904761904761904}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}},"r":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}},"e":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"d":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475}},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},".":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505}}}}}}}}},"s":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication.html":{"ref":"replication.html","tf":5.008928571428571},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}},"n":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"r":{"docs":{},"i":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}}}}}}}}}}}}}}}}},"l":{"docs":{},"d":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}},"r":{"docs":{},"s":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"d":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"query-cache.html":{"ref":"query-cache.html","tf":0.018691588785046728},"custom-build.html":{"ref":"custom-build.html","tf":5.005244755244755}}},"o":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.013916500994035786},"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"rx-collection.html":{"ref":"rx-collection.html","tf":0.010144927536231883},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.014018691588785047},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":5.009174311926605},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0166270783847981},"questions-answers.html":{"ref":"questions-answers.html","tf":0.038461538461538464},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},"e":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},"e":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"(":{"docs":{},"{":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007952286282306162},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"adapters.html":{"ref":"adapters.html","tf":0.019316493313521546},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}}}}}}}}}},"d":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"$":{"docs":{},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}}},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"o":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"p":{"docs":{},"u":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}},"v":{"docs":{},"c":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}},"+":{"docs":{},"+":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}},"d":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"./":{"ref":"./","tf":0.019762845849802372},"rx-database.html":{"ref":"rx-database.html","tf":0.013916500994035786},"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008695652173913044},"rx-document.html":{"ref":"rx-document.html","tf":0.008547008547008548},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.03361344537815126},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"data-migration.html":{"ref":"data-migration.html","tf":0.020618556701030927},"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00808080808080808},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.041474654377880185},"custom-build.html":{"ref":"custom-build.html","tf":0.006993006993006993},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.01634472511144131},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},",":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.011857707509881422},"rx-database.html":{"ref":"rx-database.html","tf":0.033797216699801194},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.007246376811594203},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"adapters.html":{"ref":"adapters.html","tf":0.020802377414561663},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.010443864229765013},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.014251781472684086},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},")":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.009940357852882704},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.00303951367781155},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"s":{"docs":{},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.005952380952380952},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":10.00257731958763}}}}}},"'":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"e":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"(":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}},"b":{"1":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"2":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}},"e":{"docs":{},"s":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}}}}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013054830287206266},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}},"i":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.014018691588785047},"custom-build.html":{"ref":"custom-build.html","tf":0.008741258741258742},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"=":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"replication.html":{"ref":"replication.html","tf":0.005952380952380952}}}}}}}}}}},"v":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"install.html":{"ref":"install.html","tf":0.007633587786259542},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}},"i":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"e":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"b":{"docs":{},"u":{"docs":{},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},":":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},",":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.030534351145038167},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication.html":{"ref":"replication.html","tf":0.008928571428571428},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"i":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},",":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.010443864229765013}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"population.html":{"ref":"population.html","tf":0.00303951367781155}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"r":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.007070707070707071}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}},"f":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"n":{"docs":{},"i":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}},"o":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"c":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"population.html":{"ref":"population.html","tf":0.00911854103343465},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.007070707070707071},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"contribute.html":{"ref":"contribute.html","tf":0.024844720496894408}},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.015810276679841896},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0070052539404553416},"rx-collection.html":{"ref":"rx-collection.html","tf":0.028985507246376812},"rx-document.html":{"ref":"rx-document.html","tf":0.03205128205128205},"rx-query.html":{"ref":"rx-query.html","tf":0.017817371937639197},"middleware.html":{"ref":"middleware.html","tf":0.016129032258064516},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.00911854103343465},"data-migration.html":{"ref":"data-migration.html","tf":0.01804123711340206},"replication.html":{"ref":"replication.html","tf":0.01488095238095238},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.022222222222222223},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.06912442396313365},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"(":{"docs":{},"a":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}},":":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"n":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"'":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}},"w":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"'":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}},"i":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155},"replication.html":{"ref":"replication.html","tf":0.005952380952380952}},"l":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"y":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"e":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}},"k":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}}}},"c":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"u":{"docs":{},"s":{"docs":{},"s":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}},"s":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"r":{"docs":{},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"e":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},".":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication.html":{"ref":"replication.html","tf":0.008928571428571428},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}},"s":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"y":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"leader-election.html":{"ref":"leader-election.html","tf":0.02413793103448276},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.026785714285714284},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.014010507880910683},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"in-memory.html":{"ref":"in-memory.html","tf":0.02072538860103627},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}},"o":{"docs":{},"d":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"e":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}},"d":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051}},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}}}}}}}}},"v":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},"i":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},",":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"replication.html":{"ref":"replication.html","tf":0.01488095238095238},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}}}}}}},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}},"a":{"docs":{},"l":{"docs":{},"'":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"(":{"docs":{},")":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"(":{"docs":{},"'":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}}}}},"$":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}},"s":{"5":{"docs":{},".":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}},"8":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"rx-query.html":{"ref":"rx-query.html","tf":0.011135857461024499},"population.html":{"ref":"population.html","tf":0.0060790273556231},"leader-election.html":{"ref":"leader-election.html","tf":0.020689655172413793},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}},"e":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}},")":{"docs":{},"[":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"/":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},"]":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"l":{"docs":{},"i":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"population.html":{"ref":"population.html","tf":0.0060790273556231}}}},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.023752969121140142}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}},"(":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"s":{"docs":{},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304}}}}}}},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"i":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}},"g":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}},"t":{"docs":{},"c":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}},"d":{"docs":{},"g":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"f":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}},"(":{"docs":{},"'":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"m":{"docs":{},"y":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"b":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"'":{"docs":{},"+":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"+":{"docs":{},"'":{"docs":{},"/":{"docs":{},"'":{"docs":{},")":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"/":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"/":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.02626970227670753},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0060790273556231},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}},"l":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},":":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},"s":{"docs":{},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356}}}}}}}}},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},".":{"docs":{},"s":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"0":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.007246376811594203},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-query.html":{"ref":"rx-query.html","tf":0.013363028953229399},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"$":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681}}}}}}}}},"o":{"docs":{},"n":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0070052539404553416},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759}}}}}}}}},"e":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"l":{"docs":{},"a":{"docs":{},"w":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051}},"s":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}},"o":{"docs":{},"w":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}},"s":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}}},"e":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}},"s":{"docs":{},":":{"docs":{"population.html":{"ref":"population.html","tf":0.00911854103343465}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"replication.html":{"ref":"replication.html","tf":0.017857142857142856},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.009501187648456057}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.03024193548387097}}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}},"i":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication.html":{"ref":"replication.html","tf":0.002976190476190476}},"u":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}},"s":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},")":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}}}}},"r":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231}}}}}},"c":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"o":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}},":":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-collection.html":{"ref":"rx-collection.html","tf":0.011594202898550725},"rx-document.html":{"ref":"rx-document.html","tf":0.010683760683760684},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"query-cache.html":{"ref":"query-cache.html","tf":0.014018691588785047},"custom-build.html":{"ref":"custom-build.html","tf":0.012237762237762238},"plugins.html":{"ref":"plugins.html","tf":0.01834862385321101},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.010683760683760684}}},"(":{"docs":{},")":{"docs":{},"{":{"docs":{"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},"}":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},")":{"docs":{},"{":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},")":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}}}}}}}},"s":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009174311926605505}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475}},"i":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"replication-graphql.html":{"ref":"replication-graphql.html","tf":5.019191919191919},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245}},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}},"'":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"x":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007905138339920948}},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.022900763358778626},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"b":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"b":{"docs":{},"t":{"docs":{},"o":{"docs":{},"a":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}},"o":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"n":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},"o":{"docs":{},"d":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}},"e":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"population.html":{"ref":"population.html","tf":0.00303951367781155}},"/":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}},".":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231}}}}}},"$":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}},":":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}},"v":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"s":{"docs":{},"h":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}},"n":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"e":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"i":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"s":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"r":{"docs":{},"o":{"docs":{},"x":{"docs":{},"y":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}},"r":{"docs":{},"d":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505}}},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}},")":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"o":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"orm.html":{"ref":"orm.html","tf":0.022935779816513763}},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"a":{"docs":{},"h":{"docs":{},"!":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013761467889908258}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759}},"s":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}},"s":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"e":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}},"u":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},".":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}},"v":{"docs":{},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"t":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}},"l":{"docs":{},"p":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"e":{"docs":{},"r":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"y":{"docs":{},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}},"u":{"docs":{},"g":{"docs":{},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"'":{"docs":{},",":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"population.html":{"ref":"population.html","tf":0.0121580547112462}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},".":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}},"n":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"middleware.html":{"ref":"middleware.html","tf":5.05241935483871},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.01834862385321101},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129}}},"?":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"s":{"docs":{},")":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},":":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}},"w":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"1":{"docs":{},".":{"1":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}},"docs":{}}},"2":{"docs":{},".":{"0":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}},"docs":{}}},"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"d":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"#":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"/":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"/":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"s":{"docs":{},"r":{"docs":{},"c":{"docs":{},"/":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"t":{"docs":{},"s":{"docs":{},"#":{"docs":{},"l":{"2":{"2":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},":":{"3":{"0":{"0":{"0":{"docs":{},"/":{"docs":{},"d":{"docs":{},"b":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},"/":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"4":{"0":{"0":{"0":{"docs":{},"/":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.009501187648456057}},"r":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"a":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":10.038167938931299},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.022288261515601784},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}},"n":{"docs":{},"c":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.013916500994035786},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.008928571428571428},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"$":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"s":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"r":{"docs":{},"n":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"e":{"docs":{},"t":{"docs":{},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}},"v":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"!":{"docs":{},")":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"population.html":{"ref":"population.html","tf":0.00303951367781155}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177}},"e":{"docs":{},"d":{"docs":{},"d":{"docs":{},"b":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.010401188707280832}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}},"i":{"docs":{},"c":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}},"o":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":10.010362694300518}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}},",":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}},"t":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"'":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"population.html":{"ref":"population.html","tf":0.0060790273556231}}}}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.03816793893129771},"rx-database.html":{"ref":"rx-database.html","tf":0.015904572564612324},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.04020979020979021},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0166270783847981}},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"/":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}},"i":{"docs":{"replication.html":{"ref":"replication.html","tf":0.005952380952380952}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}},"a":{"docs":{},"g":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"i":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}},"d":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304}},"b":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}},"a":{"docs":{},"s":{"docs":{},":":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"!":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}}}}}}}}}}}}}}}}},"s":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}},"e":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},"y":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}}}}}}},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274}},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}},"s":{"docs":{},"u":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"f":{"docs":{},"(":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},",":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}},"s":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"custom-build.html":{"ref":"custom-build.html","tf":0.006993006993006993},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}},"x":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.010507880910683012},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}},"o":{"docs":{},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.00303951367781155}},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}},"e":{"docs":{},"p":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"'":{"docs":{},",":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}},"n":{"docs":{},"g":{"docs":{},"!":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.024844720496894408}}}},"i":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},".":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"3":{"0":{"0":{"0":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"/":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"d":{"docs":{},"b":{"docs":{},"'":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}}}}},"p":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"orm.html":{"ref":"orm.html","tf":0.009174311926605505}},"(":{"2":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"docs":{}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}}},"h":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}},"x":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}},"n":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}},"g":{"docs":{},"o":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}}},"a":{"docs":{},"g":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"r":{"docs":{},"k":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}},"d":{"docs":{},"e":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"s":{"docs":{},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"in-memory.html":{"ref":"in-memory.html","tf":0.05181347150259067},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245},"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},"y":{"docs":{},"'":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},")":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}},",":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202}},".":{"docs":{},"a":{"docs":{},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},":":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.007429420505200594}}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362},"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.00303951367781155},"replication.html":{"ref":"replication.html","tf":0.005952380952380952},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.010443864229765013}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"population.html":{"ref":"population.html","tf":0.00303951367781155}}},"s":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},",":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"docs":{},")":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"v":{"1":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}},"docs":{}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"r":{"docs":{},"g":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}}}}}}}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}},"r":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}},"n":{"docs":{},"d":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}}}}}}},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":5.008064516129032}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.015810276679841896},"custom-build.html":{"ref":"custom-build.html","tf":0.022727272727272728},"adapters.html":{"ref":"adapters.html","tf":0.007429420505200594},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}},"y":{"docs":{},"j":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}},"e":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"s":{"docs":{},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},",":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"r":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}},"v":{"docs":{},"e":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}},"p":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}},"p":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}},"y":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"$":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"_":{"docs":{},";":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"$":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.01680672268907563}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}},"e":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}},"e":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"0":{"0":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.0060790273556231},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}}}},"b":{"docs":{},".":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0060790273556231},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"u":{"docs":{},"p":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}}}}}}}}}}}}}}}}}}}}}}}}}},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"l":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"[":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}},")":{"docs":{},".":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"g":{"docs":{},"t":{"docs":{},"(":{"1":{"8":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}},".":{"docs":{},"d":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}}}},"docs":{}},"2":{"0":{"docs":{},")":{"docs":{},".":{"docs":{},"d":{"docs":{},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}},"l":{"docs":{},"t":{"docs":{},"(":{"1":{"8":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"docs":{}},"docs":{}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}},"x":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"q":{"docs":{},"(":{"5":{"docs":{},")":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"docs":{}}}}}}}}}}}}}}}},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}}},"{":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.008908685968819599}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"(":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}}}},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"population.html":{"ref":"population.html","tf":0.00303951367781155}},"/":{"docs":{},"*":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681}}}}}}}}}}},"{":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},"{":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"{":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},".":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"p":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{},"/":{"docs":{},"*":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{},"(":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}}}}}},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}},"d":{"5":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"docs":{}}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362},"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641},"rx-query.html":{"ref":"rx-query.html","tf":0.011135857461024499},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.024193548387096774},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.020618556701030927},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"questions-answers.html":{"ref":"questions-answers.html","tf":0.04807692307692308}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}},"s":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},"e":{"docs":{},"d":{"docs":{"install.html":{"ref":"install.html","tf":0.022900763358778626},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"custom-build.html":{"ref":"custom-build.html","tf":0.013986013986013986},"adapters.html":{"ref":"adapters.html","tf":0.007429420505200594},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}}}}},"s":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0060790273556231}},"e":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.014018691588785047},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"x":{"docs":{},"t":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"(":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.007429420505200594},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},"j":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"t":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"i":{"docs":{},"c":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"population.html":{"ref":"population.html","tf":0.00303951367781155},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"e":{"docs":{},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"f":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.009501187648456057},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"p":{"docs":{},"m":{"docs":{"install.html":{"ref":"install.html","tf":0.030534351145038167},"adapters.html":{"ref":"adapters.html","tf":0.020802377414561663},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"contribute.html":{"ref":"contribute.html","tf":0.043478260869565216}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.009940357852882704},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.007246376811594203},"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"adapters.html":{"ref":"adapters.html","tf":0.01337295690936107},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.007952286282306162},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.010144927536231883},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-query.html":{"ref":"rx-query.html","tf":0.008908685968819599},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.027522935779816515},"population.html":{"ref":"population.html","tf":0.03343465045592705},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.019316493313521546},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.009501187648456057},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"s":{"docs":{},".":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.017830609212481426}},"e":{"docs":{},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}},"l":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.00303951367781155},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"o":{"docs":{},"b":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.009940357852882704},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.007246376811594203},"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication.html":{"ref":"replication.html","tf":0.005952380952380952},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.010144927536231883},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-query.html":{"ref":"rx-query.html","tf":0.008908685968819599},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"plugins.html":{"ref":"plugins.html","tf":0.01834862385321101}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"(":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},")":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0060790273556231},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"replication.html":{"ref":"replication.html","tf":0.005952380952380952},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364},"custom-build.html":{"ref":"custom-build.html","tf":0.006993006993006993},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},"c":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"e":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}},"g":{"docs":{},"o":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.034482758620689655},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.009501187648456057},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},"l":{"docs":{},"i":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"i":{"docs":{},"z":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}},",":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}}},"s":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"o":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.01834862385321101},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"a":{"docs":{},"l":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"s":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}},"l":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"e":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"=":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}}}}}},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}}}}}},"w":{"docs":{},"n":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}},"u":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.03211009174311927}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}},"r":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.008695652173913044},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013054830287206266}},"/":{"docs":{},"d":{"docs":{},"r":{"docs":{},"m":{"docs":{"orm.html":{"ref":"orm.html","tf":10}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"in-memory.html":{"ref":"in-memory.html","tf":0.031088082901554404},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"f":{"docs":{},"f":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"e":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129}}},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.02620967741935484}}}}}}},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135}}}}}},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},".":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641},"population.html":{"ref":"population.html","tf":0.00303951367781155}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}},"g":{"docs":{},"e":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"e":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.005952380952380952}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"a":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},")":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}}}},"e":{"docs":{},"r":{"docs":{"install.html":{"ref":"install.html","tf":0.015267175572519083}}}},"n":{"docs":{},"d":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}},"o":{"docs":{},"p":{"docs":{},"l":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"r":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"e":{"docs":{},"r":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}},"o":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.019762845849802372},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},".":{"docs":{},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.01680672268907563},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}},"e":{"docs":{},"(":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387}}}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.010507880910683012},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.015197568389057751},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}},"l":{"docs":{},"i":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.045871559633027525},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}},"x":{"docs":{},"i":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}},",":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}},"s":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522}}}}}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.013131313131313131},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"x":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.006060606060606061}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"x":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.030534351145038167},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"l":{"docs":{},"s":{"docs":{},",":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"query-cache.html":{"ref":"query-cache.html","tf":0.037383177570093455}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"y":{"docs":{},",":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},"d":{"docs":{},"b":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"replication.html":{"ref":"replication.html","tf":0.011904761904761904},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.006993006993006993},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505},"adapters.html":{"ref":"adapters.html","tf":0.020802377414561663},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.009501187648456057}},",":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"'":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"population.html":{"ref":"population.html","tf":10.015197568389057}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}}}},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}},"r":{"docs":{},"t":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}}}},"i":{"docs":{},"e":{"docs":{},"c":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},"c":{"docs":{},"k":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"custom-build.html":{"ref":"custom-build.html","tf":0.015734265734265736},"plugins.html":{"ref":"plugins.html","tf":5.032110091743119},"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356},"tutorials/server.html":{"ref":"tutorials/server.html","tf":3.347585114806017}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258}}},"s":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}},"n":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}}}}}}}}}}},"y":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"s":{"docs":{},"e":{"docs":{},"u":{"docs":{},"d":{"docs":{},"o":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"p":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.015810276679841896},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.035634743875278395},"replication.html":{"ref":"replication.html","tf":0.005952380952380952},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.010101010101010102},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"query-cache.html":{"ref":"query-cache.html","tf":0.06074766355140187},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"y":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"{":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":10.014018691588785}}}}}}}},"u":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":3.3429487179487176}}}}}}}},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}}}}},"r":{"docs":{},"e":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.01634472511144131}},"i":{"docs":{},"v":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}},"n":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"d":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}},"l":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.019762845849802372},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}},"e":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"l":{"docs":{},"i":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.015810276679841896},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":5.032738095238095},"replication-graphql.html":{"ref":"replication-graphql.html","tf":5.026262626262627},"in-memory.html":{"ref":"in-memory.html","tf":0.03626943005181347},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.015734265734265736},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.011876484560570071}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"a":{"docs":{},"l":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"i":{"docs":{},"e":{"docs":{},"d":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"s":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"$":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"docs":{},"{":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.005952380952380952},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}},",":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}},"a":{"docs":{},"c":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"query-cache.html":{"ref":"query-cache.html","tf":0.014018691588785047}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}}}}},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.011857707509881422},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.024498886414253896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}},"s":{"docs":{},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995}}}}}}},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729}}},"u":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}}}}}}}}},")":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"'":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}},"f":{"docs":{"population.html":{"ref":"population.html","tf":0.00911854103343465}},"e":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.015197568389057751},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},":":{"docs":{"population.html":{"ref":"population.html","tf":0.0121580547112462}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}},"a":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0060790273556231},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"i":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"c":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}},"g":{"docs":{},"n":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}},"m":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}}}},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"m":{"docs":{},"y":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"$":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.008928571428571428}},"e":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}},"i":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}}}}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"i":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.011928429423459244},"rx-collection.html":{"ref":"rx-collection.html","tf":0.014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.019230769230769232},"rx-query.html":{"ref":"rx-query.html","tf":0.013363028953229399},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.029411764705882353},"middleware.html":{"ref":"middleware.html","tf":0.014112903225806451},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.020618556701030927},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.020202020202020204},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}},"r":{"docs":{},"y":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}},"g":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"p":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},"(":{"docs":{},"'":{"docs":{},"^":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"$":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}},"}":{"docs":{},"}":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"v":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"i":{"docs":{},"s":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"d":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}}},"c":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"u":{"docs":{},"s":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.03557312252964427},"install.html":{"ref":"install.html","tf":0.030534351145038167},"rx-database.html":{"ref":"rx-database.html","tf":0.013916500994035786},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.015151515151515152},"query-cache.html":{"ref":"query-cache.html","tf":0.014018691588785047},"custom-build.html":{"ref":"custom-build.html","tf":0.027972027972027972},"plugins.html":{"ref":"plugins.html","tf":0.027522935779816515},"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":3.343777197563098},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},",":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.022900763358778626},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"custom-build.html":{"ref":"custom-build.html","tf":0.006993006993006993},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}},"'":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"v":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"u":{"docs":{},"m":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}},"z":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}}}}}}}}}}}}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-database.html":{"ref":"rx-database.html","tf":10.009940357852882},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":10.012820512820513},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"population.html":{"ref":"population.html","tf":0.0121580547112462},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.00303951367781155},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"]":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},")":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}},"{":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.036290322580645164}}}},"[":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231}}}}}}}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}},"j":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.015267175572519083},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"replication.html":{"ref":"replication.html","tf":0.002976190476190476}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":10.012605042016807}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}},"e":{"docs":{},"m":{"docs":{},"n":{"docs":{},"t":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":10.001751313485114},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":10.001449275362319},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"population.html":{"ref":"population.html","tf":0.00303951367781155},"replication.html":{"ref":"replication.html","tf":0.005952380952380952},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},")":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}}},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"a":{"docs":{},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}}}}}}}}}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}},"'":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}},"i":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":10.011135857461024},"query-cache.html":{"ref":"query-cache.html","tf":0.014018691588785047}}}}}}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.005952380952380952}}}}}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"q":{"docs":{},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.005964214711729622},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.06832298136645963}},":":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"e":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}},"(":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"w":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"u":{"docs":{},"t":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.011928429423459244},"rx-collection.html":{"ref":"rx-collection.html","tf":0.008695652173913044},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"population.html":{"ref":"population.html","tf":0.0060790273556231},"leader-election.html":{"ref":"leader-election.html","tf":0.020689655172413793},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"v":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"install.html":{"ref":"install.html","tf":0.030534351145038167},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"adapters.html":{"ref":"adapters.html","tf":0.017830609212481426},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029},"questions-answers.html":{"ref":"questions-answers.html","tf":0.019230769230769232}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}},"d":{"docs":{},".":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"'":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"f":{"docs":{},"e":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"./":{"ref":"./","tf":0.011857707509881422},"rx-schema.html":{"ref":"rx-schema.html","tf":0.021015761821366025},"rx-collection.html":{"ref":"rx-collection.html","tf":0.007246376811594203},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.008741258741258742},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"questions-answers.html":{"ref":"questions-answers.html","tf":0.07692307692307693}},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.0060790273556231},"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"?":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}}},"s":{"docs":{},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"i":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}},"e":{"docs":{},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}},"d":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00808080808080808}},"e":{"docs":{},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.013131313131313131},"custom-build.html":{"ref":"custom-build.html","tf":0.006993006993006993},"tutorials/server.html":{"ref":"tutorials/server.html","tf":3.364212193190815}},",":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}}},"}":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}}}}}},"i":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.02620967741935484}}}},"m":{"docs":{},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.011928429423459244},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.017094017094017096},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641}}}},")":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}}}}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"u":{"docs":{},"p":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"s":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}},"u":{"docs":{},"r":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505}},":":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}}}},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.008908685968819599}}},"s":{"docs":{},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}},"f":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"e":{"docs":{},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}},"u":{"docs":{},"l":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.007952286282306162},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-document.html":{"ref":"rx-document.html","tf":0.008547008547008548},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}},"d":{"docs":{},"e":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}},"t":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"z":{"docs":{},"e":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}}}}},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}},":":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}},"e":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"i":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"population.html":{"ref":"population.html","tf":0.00303951367781155},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}},"v":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"o":{"docs":{},"n":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}},"w":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"e":{"docs":{},"c":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}},"i":{"docs":{},"f":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.007633587786259542},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"population.html":{"ref":"population.html","tf":0.00303951367781155},"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}},"a":{"docs":{},"l":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}},"e":{"docs":{},"d":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}},"i":{"docs":{},"n":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},",":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}},")":{"docs":{},";":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}},"i":{"docs":{},"c":{"docs":{"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}},"s":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"orm.html":{"ref":"orm.html","tf":0.009174311926605505},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},".":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"t":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"r":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.009501187648456057},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},"e":{"docs":{},"r":{"docs":{},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}}}}}}}}}}},"y":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}}},"e":{"docs":{"./":{"ref":"./","tf":0.011857707509881422},"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"adapters.html":{"ref":"adapters.html","tf":0.014858841010401188}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},"d":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}}}}},"n":{"docs":{},"g":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"population.html":{"ref":"population.html","tf":0.0060790273556231},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}},"!":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051}}}},")":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.005221932114882507}}},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.010443864229765013}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"population.html":{"ref":"population.html","tf":0.00303951367781155},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"query-cache.html":{"ref":"query-cache.html","tf":0.009345794392523364}}}}},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}},"v":{"docs":{},"e":{"docs":{},"'":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}},"p":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}},"h":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}},"p":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274}}}}},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"r":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},":":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"e":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"m":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}}},"i":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication.html":{"ref":"replication.html","tf":0.023809523809523808},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.007070707070707071}},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication.html":{"ref":"replication.html","tf":0.008928571428571428}},"i":{"docs":{},"s":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},".":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"s":{"docs":{},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"w":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}}},"i":{"docs":{},"m":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}},"k":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}}},"p":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"!":{"docs":{},"!":{"docs":{},"'":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}}}}}}},"q":{"docs":{},"l":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.01634472511144131}},"'":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356}},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}},"y":{"docs":{},"(":{"docs":{},"s":{"docs":{},"q":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},")":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"r":{"docs":{},"c":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.011857707509881422},"leader-election.html":{"ref":"leader-election.html","tf":0.03103448275862069},"replication.html":{"ref":"replication.html","tf":0.002976190476190476}},"l":{"docs":{},"e":{"docs":{},".":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}},"s":{"docs":{},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"k":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135}}}},"s":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},"s":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"contribute.html":{"ref":"contribute.html","tf":0.062111801242236024}},"s":{"docs":{},",":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"/":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},":":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}}},"m":{"docs":{},"p":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}}}}}}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896}}}}}}}}}},"n":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"l":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"r":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"s":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},"e":{"docs":{},";":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"e":{"docs":{},"c":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}},",":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"n":{"docs":{},"g":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}},"w":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}}}}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.00303951367781155},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"m":{"docs":{},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}},".":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"s":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.005952380952380952},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},",":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081}}}}},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"s":{"docs":{},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}},".":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},":":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"population.html":{"ref":"population.html","tf":0.00303951367781155},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}},"o":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"p":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}},".":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.00303951367781155}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"r":{"docs":{},"i":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"c":{"docs":{},"k":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.007905138339920948}}}}},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}}},"v":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}}},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.005952380952380952}}}}}}},"c":{"docs":{},"k":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"c":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}},"u":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.009940357852882704},"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-document.html":{"ref":"rx-document.html","tf":0.00641025641025641},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.017857142857142856},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.006060606060606061},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.00303951367781155},"replication.html":{"ref":"replication.html","tf":0.008928571428571428},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00404040404040404},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}},")":{"docs":{},";":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387}}}},"/":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}},"t":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"w":{"docs":{},"o":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.02100840336134454},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.044386422976501305}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.03502626970227671},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.0045871559633027525},"population.html":{"ref":"population.html","tf":0.0425531914893617},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013054830287206266},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"o":{"docs":{},"f":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}},"d":{"docs":{},"!":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"s":{"docs":{},",":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":3.343777197563098}},".":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}}}},"m":{"docs":{},"p":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}},"u":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}},"i":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}},"p":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"query-cache.html":{"ref":"query-cache.html","tf":0.014018691588785047},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"rx-document.html":{"ref":"rx-document.html","tf":0.010683760683760684},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245}},"e":{"docs":{},"$":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"(":{"docs":{},")":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.006060606060606061}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.005797101449275362}},"(":{"docs":{},")":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},".":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"s":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.015267175572519083},"rx-database.html":{"ref":"rx-database.html","tf":0.02186878727634195},"rx-schema.html":{"ref":"rx-schema.html","tf":0.01576182136602452},"rx-collection.html":{"ref":"rx-collection.html","tf":0.017391304347826087},"rx-document.html":{"ref":"rx-document.html","tf":0.010683760683760684},"rx-query.html":{"ref":"rx-query.html","tf":0.015590200445434299},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.010080645161290322},"orm.html":{"ref":"orm.html","tf":0.013761467889908258},"population.html":{"ref":"population.html","tf":0.0060790273556231},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication.html":{"ref":"replication.html","tf":0.017857142857142856},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.013131313131313131},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"query-cache.html":{"ref":"query-cache.html","tf":0.03271028037383177},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152},"custom-build.html":{"ref":"custom-build.html","tf":0.033216783216783216},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"adapters.html":{"ref":"adapters.html","tf":0.03268945022288262},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":3.354221061792863},"tutorials/server.html":{"ref":"tutorials/server.html","tf":3.347585114806017},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616}},"e":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}},"d":{"docs":{},":":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}},"r":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},"s":{"docs":{},"'":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"a":{"docs":{},"g":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"n":{"docs":{},"c":{"docs":{},"a":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}},"c":{"docs":{},"h":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.028037383177570093}},"e":{"docs":{},"r":{"docs":{},"x":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},"r":{"docs":{},"x":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}},"r":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}},"e":{"docs":{},"_":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}}}}}}}}}}},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"e":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}}},"x":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}},"r":{"docs":{},"l":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}},"v":{"3":{"docs":{},".":{"8":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"docs":{}}},"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.023195876288659795},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"questions-answers.html":{"ref":"questions-answers.html","tf":0.009615384615384616},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.008756567425569177},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0121580547112462},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},"s":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}},".":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"i":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}},"i":{"docs":{},"s":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}},"a":{"docs":{"population.html":{"ref":"population.html","tf":0.0060790273556231},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"e":{"docs":{},"w":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"a":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.008547008547008548},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}}},"o":{"docs":{},"u":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"rx-collection.html":{"ref":"rx-collection.html","tf":0.002898550724637681},"middleware.html":{"ref":"middleware.html","tf":0.012096774193548387},"custom-build.html":{"ref":"custom-build.html","tf":0.033216783216783216}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"'":{"docs":{},";":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}}}},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}},"u":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-document.html":{"ref":"rx-document.html","tf":0.014957264957264958},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.0060790273556231},"replication.html":{"ref":"replication.html","tf":0.005952380952380952},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505}},"e":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"population.html":{"ref":"population.html","tf":0.00303951367781155}}},",":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},")":{"docs":{},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},",":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}}},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"j":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}},"i":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"n":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.003976143141153081},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"population.html":{"ref":"population.html","tf":0.00303951367781155},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"in-memory.html":{"ref":"in-memory.html","tf":0.010362694300518135},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}},"s":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245}}}}}},"e":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.003952569169960474}}}}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896}}}}}}},"q":{"docs":{},"l":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.010401188707280832}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}}},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{"./":{"ref":"./","tf":0.007905138339920948},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}},";":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"t":{"docs":{},"h":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}}}}},"i":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}},"p":{"docs":{},"e":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}},"d":{"docs":{},"e":{"docs":{"orm.html":{"ref":"orm.html","tf":0.0045871559633027525}},".":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009174311926605505}}}}},"r":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}},"l":{"docs":{},"l":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"population.html":{"ref":"population.html","tf":0.0060790273556231},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144},"contribute.html":{"ref":"contribute.html","tf":0.018633540372670808}},".":{"docs":{"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}},"!":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}},"s":{"docs":{},"!":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"r":{"docs":{},"y":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}},"s":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}}},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}},"'":{"docs":{},")":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"middleware.html":{"ref":"middleware.html","tf":0.008064516129032258}}}}},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"in-memory.html":{"ref":"in-memory.html","tf":0.015544041450777202},"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},".":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}}}},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},":":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}},"r":{"docs":{},"e":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907}}}},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}}}}}}}}}}}}}},":":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}}},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}}}},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},":":{"docs":{"orm.html":{"ref":"orm.html","tf":0.009174311926605505}}}}}},"s":{"docs":{},"e":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866}}}}}}},"s":{"docs":{},"'":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"(":{"docs":{},"{":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}}},"{":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"install.html":{"ref":"install.html","tf":0.030534351145038167},"rx-database.html":{"ref":"rx-database.html","tf":0.011928429423459244},"rx-schema.html":{"ref":"rx-schema.html","tf":0.06830122591943957},"rx-collection.html":{"ref":"rx-collection.html","tf":0.004347826086956522},"rx-document.html":{"ref":"rx-document.html","tf":0.010683760683760684},"rx-query.html":{"ref":"rx-query.html","tf":0.0200445434298441},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.012605042016806723},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"orm.html":{"ref":"orm.html","tf":0.022935779816513763},"population.html":{"ref":"population.html","tf":0.060790273556231005},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931},"replication.html":{"ref":"replication.html","tf":0.005952380952380952},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.031313131313131314},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.018433179723502304},"custom-build.html":{"ref":"custom-build.html","tf":0.03671328671328671},"plugins.html":{"ref":"plugins.html","tf":0.027522935779816515},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.04177545691906005},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.021377672209026127}},"}":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},",":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.007246376811594203}}}},"$":{"docs":{},"e":{"docs":{},"q":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"o":{"docs":{},"r":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}},"r":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"x":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"}":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},",":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.007125890736342043}}}}}}},"}":{"docs":{"install.html":{"ref":"install.html","tf":0.015267175572519083},"rx-database.html":{"ref":"rx-database.html","tf":0.007952286282306162},"rx-schema.html":{"ref":"rx-schema.html","tf":0.021015761821366025},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"rx-query.html":{"ref":"rx-query.html","tf":0.011135857461024499},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"orm.html":{"ref":"orm.html","tf":0.045871559633027525},"population.html":{"ref":"population.html","tf":0.0425531914893617},"data-migration.html":{"ref":"data-migration.html","tf":0.01288659793814433},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.01616161616161616},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"custom-build.html":{"ref":"custom-build.html","tf":0.03671328671328671},"plugins.html":{"ref":"plugins.html","tf":0.009174311926605505},"adapters.html":{"ref":"adapters.html","tf":0.005943536404160475},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.015665796344647518},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0166270783847981}},")":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-query.html":{"ref":"rx-query.html","tf":0.008908685968819599},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}},";":{"docs":{"./":{"ref":"./","tf":0.003952569169960474},"rx-database.html":{"ref":"rx-database.html","tf":0.009940357852882704},"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.007246376811594203},"rx-document.html":{"ref":"rx-document.html","tf":0.008547008547008548},"rx-query.html":{"ref":"rx-query.html","tf":0.004454342984409799},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"orm.html":{"ref":"orm.html","tf":0.03211009174311927},"population.html":{"ref":"population.html","tf":0.02127659574468085},"data-migration.html":{"ref":"data-migration.html","tf":0.007731958762886598},"leader-election.html":{"ref":"leader-election.html","tf":0.013793103448275862},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00808080808080808},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"adapters.html":{"ref":"adapters.html","tf":0.019316493313521546},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.021377672209026127}}}},",":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-schema.html":{"ref":"rx-schema.html","tf":0.03502626970227671},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"middleware.html":{"ref":"middleware.html","tf":0.04233870967741935},"population.html":{"ref":"population.html","tf":0.0121580547112462},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication.html":{"ref":"replication.html","tf":0.005952380952380952},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013054830287206266},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},";":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"population.html":{"ref":"population.html","tf":0.0060790273556231},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.006060606060606061},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.013054830287206266},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}},"]":{"docs":{},")":{"docs":{},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"}":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}},"`":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}}}},"\"":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"+":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"@":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"p":{"docs":{},"u":{"docs":{},"b":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"/":{"docs":{},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"#":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"\"":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"x":{"docs":{},"d":{"docs":{},"b":{"docs":{},"\"":{"docs":{},":":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}},"b":{"docs":{},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"y":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"y":{"docs":{},"p":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}},"o":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"\"":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"\"":{"docs":{},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}},"k":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"\"":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.017513134851138354}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}}}}},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}}}}}}},"$":{"docs":{},"{":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"}":{"docs":{},"\"":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}},"*":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.010309278350515464},"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.005050505050505051},"plugins.html":{"ref":"plugins.html","tf":0.03211009174311927},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.004750593824228029}},"/":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759}},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}},"}":{"docs":{},")":{"docs":{},";":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}},"@":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"install.html":{"ref":"install.html","tf":0.007633587786259542}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"install.html":{"ref":"install.html","tf":0.030534351145038167},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}},"s":{"docs":{},"t":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645}},"e":{"docs":{},":":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0070052539404553416},"rx-collection.html":{"ref":"rx-collection.html","tf":0.007246376811594203},"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759}}},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.004273504273504274}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}},"e":{"docs":{},"r":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.03103448275862069},"replication.html":{"ref":"replication.html","tf":0.002976190476190476},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},".":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"leader-election.html":{"ref":"leader-election.html","tf":0.006896551724137931}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"leader-election.html":{"ref":"leader-election.html","tf":10},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}}}}}}}}},",":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}}},"r":{"docs":{},"n":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-query.html":{"ref":"rx-query.html","tf":0.0066815144766146995},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533},"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}},"v":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506},"middleware.html":{"ref":"middleware.html","tf":0.004032258064516129},"replication.html":{"ref":"replication.html","tf":0.005952380952380952}},"d":{"docs":{},"b":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.010401188707280832}},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.004457652303120356}}}}}}},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.020802377414561663}}}}}}}}},"s":{"docs":{},"s":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}},")":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}}}},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.008403361344537815}}}}}},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"plugins.html":{"ref":"plugins.html","tf":0.013761467889908258}},",":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}},":":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}},"e":{"docs":{},"n":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}},"f":{"docs":{},"e":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.006048387096774193}}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"replication.html":{"ref":"replication.html","tf":0.01488095238095238},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},",":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202}}},"e":{"docs":{},"d":{"docs":{},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"v":{"docs":{},"e":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.010344827586206896},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},":":{"docs":{"replication.html":{"ref":"replication.html","tf":0.005952380952380952},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.0030303030303030303}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},"a":{"docs":{},"l":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},":":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}}}},"n":{"docs":{},"k":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0029717682020802376}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.06451612903225806},"custom-build.html":{"ref":"custom-build.html","tf":0.0034965034965034965}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.02304147465437788}},".":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"$":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.004608294930875576}}}}}}}},"e":{"docs":{},"t":{"docs":{},"(":{"docs":{},"'":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"'":{"docs":{},",":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.009216589861751152}}}}}}}}}}}}},"u":{"docs":{"rx-local-document.html":{"ref":"rx-local-document.html","tf":10}}}}}},"l":{"docs":{},"y":{"docs":{},",":{"docs":{"contribute.html":{"ref":"contribute.html","tf":0.006211180124223602}}}}}},"t":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}}}},"o":{"docs":{},"k":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00202020202020202},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.007832898172323759}},"s":{"docs":{},".":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}}}},"g":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}},"i":{"docs":{},"c":{"docs":{"middleware.html":{"ref":"middleware.html","tf":0.0020161290322580645},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},".":{"docs":{},"t":{"docs":{},"x":{"docs":{},"t":{"docs":{},"'":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},":":{"docs":{"tutorials/server.html":{"ref":"tutorials/server.html","tf":0.0023752969121140144}}}}}}}},"a":{"docs":{},"d":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}},"n":{"docs":{},"g":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.005154639175257732},"replication.html":{"ref":"replication.html","tf":0.002976190476190476}},"e":{"docs":{},"r":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676},"query-cache.html":{"ref":"query-cache.html","tf":0.004672897196261682}}}}}},"t":{"docs":{"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"custom-build.html":{"ref":"custom-build.html","tf":0.0017482517482517483}}},"s":{"docs":{},"t":{"docs":{"adapters.html":{"ref":"adapters.html","tf":0.0014858841010401188}}}}}},"$":{"docs":{"rx-database.html":{"ref":"rx-database.html","tf":0.0019880715705765406},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}},"o":{"docs":{},"r":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137},"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},":":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"(":{"docs":{},")":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}}}}}}},"e":{"docs":{},"q":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"s":{"docs":{},":":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}}}},"h":{"docs":{},"u":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},")":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}},"{":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"}":{"docs":{},",":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}}}}}}}}}},"^":{"docs":{},"[":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"z":{"0":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0035026269702276708},"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}},"docs":{"custom-build.html":{"ref":"custom-build.html","tf":0.005244755244755245}},"]":{"docs":{},"[":{"docs":{},"[":{"docs":{},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.0017513134851138354}}}},"a":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}}},"a":{"docs":{"rx-schema.html":{"ref":"rx-schema.html","tf":0.005253940455341506}}}},"]":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}},";":{"docs":{"rx-collection.html":{"ref":"rx-collection.html","tf":0.0014492753623188406}}}},"_":{"docs":{"population.html":{"ref":"population.html","tf":0.00303951367781155}},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},":":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"rx-document.html":{"ref":"rx-document.html","tf":0.002136752136752137}}}}}}}}}}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"rx-query.html":{"ref":"rx-query.html","tf":0.0022271714922048997}}}}}}},".":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"'":{"docs":{},"r":{"docs":{"replication.html":{"ref":"replication.html","tf":0.002976190476190476}}},"d":{"docs":{"in-memory.html":{"ref":"in-memory.html","tf":0.0051813471502590676}}}}}}},")":{"docs":{"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}},";":{"docs":{"rx-attachment.html":{"ref":"rx-attachment.html","tf":0.004201680672268907},"data-migration.html":{"ref":"data-migration.html","tf":0.002577319587628866},"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"rx-local-document.html":{"ref":"rx-local-document.html","tf":0.013824884792626729},"tutorials/typescript.html":{"ref":"tutorials/typescript.html","tf":0.0026109660574412533}}}},"♛":{"docs":{"leader-election.html":{"ref":"leader-election.html","tf":0.0034482758620689655}}},"!":{"docs":{},"=":{"docs":{},"=":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101},"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}},"`":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}},".":{"docs":{},".":{"docs":{},".":{"docs":{},"`":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}},";":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}}}}}}}}},"{":{"docs":{"replication-graphql.html":{"ref":"replication-graphql.html","tf":0.00101010101010101}}}},"&":{"docs":{"questions-answers.html":{"ref":"questions-answers.html","tf":3.333333333333333}},"&":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525},"contribute.html":{"ref":"contribute.html","tf":0.012422360248447204}}}},"|":{"docs":{},"|":{"docs":{"plugins.html":{"ref":"plugins.html","tf":0.0045871559633027525}}}}},"length":4808},"corpusTokens":["!==","\"${doc.name}\",","\"alice\",","\"array\",","\"attachments\":","\"birthyear\":","\"color\":","\"damage\":","\"deleted\":","\"dependencies\":","\"describ","\"description\":","\"encrypted\":","\"final\":","\"foobar\",","\"git+https://git@github.com/pubkey/rxdb.git#commithash\"","\"healthpoints\":","\"hero","\"id\":","\"items\":","\"lastname\":","\"maximum\":","\"maxitems\":","\"minimum\":","\"name\":","\"number\"","\"number\",","\"object\",","\"primary\":","\"properties\":","\"required\":","\"rxdb\":","\"secret\":","\"skills\":","\"string\"","\"string\",","\"title\":","\"type\"","\"type\":","\"uniqueitems\":","\"updatedat\":","\"version\":","\"wilson\",","$","$.subscribe()","$eq:","$exists:","$human)","$inc:","$or","$set:","${doc.updatedat},","&","&&","'","'!!';","'%like%'","''","'')","'',","'.*foo.*'}","'/',","'/db',","'/root/user/project/mydatabase',","'/tmp/rxdb","'@babel/polyfill';","'aaah!!'","'aaah!!';","'adapter');","'alice'","'alice',","'anyvalue';","'array',","'bar'","'bar');","'bar';","'bar'});","'bar1'","'bar2'","'bar2');","'base","'bi","'bob'","'bob',","'carol'","'carol',","'carolina',","'cat.jpg'","'cat.txt',","'clientdb',","'cordova","'dave'","'deleted',","'describ","'dies'.","'fifoo'","'fifoofa'","'firstname',","'foo'","'foo',","'foo'.","'foo'}","'foo1',","'foo2',","'foobar'","'foobar');","'foobar',","'foobar';","'foobar2'","'foobar2';","'foobar2'});","'foofa'","'foooobarnew'","'foooobarnew';","'gibson',","'got","'h1rg9ugdd30o',","'heroes'","'heroes',","'heroesdb'","'heroesdb',","'http://example.com/graphql',","'http://localhost:10102/db/',","'http://localhost:3000/db/items'","'human","'human'","'human',","'humans',","'i","'i');","'idb'","'image/jpeg'","'indexeddb'","'integer'","'integer',","'items',","'kelso'","'kelso';","'lastname']","'localstorage');","'localstorage',","'memory'","'meow","'messages',","'mycollection.hello()'","'mydatabase',","'mydb',","'myfield',","'myid',","'mypassword',","'name","'name'","'new'","'node","'npm","'number'","'object',","'piotr',","'potter',","'pouchdb","'react","'rxdb';","'rxdb/plugins/adapt","'rxdb/plugins/ajv","'rxdb/plugins/attachments';","'rxdb/plugins/core';","'rxdb/plugins/dev","'rxdb/plugins/encryption';","'rxdb/plugins/in","'rxdb/plugins/json","'rxdb/plugins/key","'rxdb/plugins/lead","'rxdb/plugins/loc","'rxdb/plugins/migration';","'rxdb/plugins/no","'rxdb/plugins/queri","'rxdb/plugins/repl","'rxdb/plugins/replication';","'rxdb/plugins/server';","'rxdb/plugins/update';","'rxdb/plugins/valid","'rxdb/plugins/validate';","'rxdb/plugins/watch","'sendercountry'","'skeletor'","'steve'","'steve',","'steve'});","'string'","'string',","'subscript","'temperature',","'text/plain'","'unsaf","'weatherdb',","'websql'","'websql',","'world';","'ws://example.com/subscriptions',","(!doc)","(!global.atob)","(!global.btoa)","()","()=>'bar'","(a.id","(a.updatedat","(all","(also","(anyth","(async)","(beta)","(default)","(doc.id","(doc.updatedat","(e.g.","(ex:","(graphql","(new)","(olddata)","(optional)","(optional),","(optional=false)","(optional=true)","(or","(password","(primari","(proto)","(recommended)","(remot","(req,","(short","(some","(string)","(string|blob|buffer)","(v9+)","(v:","(version:","(via","(window",")",");","*","*/","*/).then(()","*/});","+",".",".$","..","...",".active$",".awaitinitialreplication()",".cancel()",".canceled$",".collection()",".create()",".error$",".exec().then(doc",".exec().then(docu",".exec();",".find()",".find({",".findone()",".gt(18)",".gt(18);",".insert()",".isstopped()",".join();",".map(doc",".migratepromise():",".recieved$",".run()",".save()",".send$",".setheaders()",".sort('age')",".subscribe(changeev",".subscribe(newnam",".then(()",".then(json",".then(respons",".upsert()",".where('age')",".where()","/","/*","/**","//","//>","//[insert","0","0,","0.","02","1","1)","10","10);","100","100));","1000","1000);","12","12t23:03:05+00:00","1486940585","1564783474,","18","19","1900,","1:","1;","2","2'","2)","2.","20","2017","2050","2:","3)","3.","30","3000,","3000`));","33","40%","409","5","5'","5)","5,","50","50,","50;","6","6'","6*5=30","60","64","64'","7","77;","8.0.0,","9]$","9]*$.","9_]*]?[a","=","===","=>",">","@babel/polyfil","@link","@param","[","[\"color\"],","[\"secret\"],","['firstname',","['name']","['secret']","['string','null']","[]","[];","[default=true]","[human!]!","[rxdocument,","[rxdocument,rxdocument,rxdocument..]","]","];","^[a","_","_deleted:tru","`","`...`","`;","`subscript","`{","abov","abstract","access","access.","accident","accomplish","accord","action","activ","active$","actual","ad","adapt","adapter,","adapter.","adapter:","adapters.","add","addit","additionalproperti","addrxplugin","addrxplugin(memoryadapter);","addrxplugin(pouchadaptermemory);","addrxplugin(pouchhttpplugin);","addrxplugin(require('pouchdb","addrxplugin(rxdbadaptercheckplugin);","addrxplugin(rxdbajvvalidateplugin);","addrxplugin(rxdbattachmentsplugin);","addrxplugin(rxdbdevmodeplugin);","addrxplugin(rxdbencryptionplugin);","addrxplugin(rxdbinmemoryplugin);","addrxplugin(rxdbjsondumpplugin);","addrxplugin(rxdbkeycompressionplugin);","addrxplugin(rxdbleaderelectionplugin);","addrxplugin(rxdblocaldocumentsplugin);","addrxplugin(rxdbmigrationplugin);","addrxplugin(rxdbnovalidateplugin);","addrxplugin(rxdbquerybuilderplugin);","addrxplugin(rxdbreplicationgraphqlplugin);","addrxplugin(rxdbreplicationplugin);","addrxplugin(rxdbserverplugin);","addrxplugin(rxdbupdateplugin);","addrxplugin(rxdbvalidateplugin);","addrxplugin(rxdbvalidatezschemaplugin);","addrxplugin(rxdbwatchforchangesplugin);","addrxplugin(sqliteadapter);","addrxplugin,","advantag","advantages:","affect","afterward","afterwards.","ag","again","age:","age?:","ajv","algorithm","aliv","alive$","allattachments$","allattachments()","alldoc","alldocs.length;","allow","alreadi","altern","alway","amount","amount:","angular","anoth","another.","answer","any).glob","any).process","anyfield","anyth","anyway","api","app","app);","app,","app.","appear","appli","applic","applications.","apply.","appropri","apps,","arg","args.human;","args.lastid)","args.limit);","args.minupdatedat)","around,","array","array.","ask","assign","assigned.","assum","assur","async","asynchron","asynchronous.","asyncstorag","asyncstorage'","asyncstorage'));","asyncstorage.","asyncstoragedown","at.","atom","atomicpatch","atomicpatch()","atomicset","atomicset()","atomicupd","atomicupdate()","atomicupsert()","attach","attachment'","attachment.","attachment.getdata();","attachment.getstringdata();","attachment.remove();","attachments,","attachments:","attribut","attribute.","attributes/methods.","authorization:","autmat","automat","automatically,","automigr","automigrate:","avail","available.","avoid","await","awaitpersistence()","awesom","b)","b.id)","b.updatedat)","babel","back","backward","bandwidth","bar.","base","basic","batch","batchsize:","batteri","becom","befor","before.","behav","behavior","behavior.","behaviorsubject","being',","belong","benefit","benefits.","besid","best","bestfriend","bestfriend:","beta","better","between","big","bigger","binari","bind","birthyear","bit","blob","blobbuff","block","boolean","boolean!","both","both.","bound","broadcast","browser","browser,","browsers,","browsers.","browsers:","buffer.","bug","bug,","bugfix","build","build,","build.","builder","builder';","builds.","bulk","bulkinsert","bulkinsert()","bundlers.","c++","cach","cache.","cachereplacementpolicy.","cachereplacementpolicy:","call","call)","call.","called.","can't","cancel","cancel()","canceled,","canceled.","capabl","capac","care","case","case,","cases.","caus","cd","certain","chain","chang","change$","change.","changed.","changeev","changefunct","changeobserv","changeobservable.subscribe({","changes';","changes,","changes.","changestream.","channel","characters.","charts,","check","check'","check';","checkadapt","checkadapter('localstorage');","checkadapter()","checkadapter,","cherri","choos","claim","class","classes,","clean","cleanup","clear","client","client'","client.","clientdb","clientdb.collection({","clientdb.items.find().exec();","clientdb.items.sync({","clients.","clone","closed,","closed.","code","code.","collect","collection'","collection():","collection,","collection.","collection.options.foo();","collection2","collection2);","collection:","collections,","collections.","color","combin","come","commit","commit.","commithash","common","community.","compar","comparison","compat","complete$","complete.","completed.","completes.","complex","compliant","composit","compress","compression',","compression';","comput","config.json","configur","conflict","conflict,","conflicts,","conflicts.","conform","connect","connections.","cons:","console.","console.dir(active));","console.dir(alive));","console.dir(bestfriend);","console.dir(change));","console.dir(changeevent));","console.dir(completed));","console.dir(doc));","console.dir(docdata));","console.dir(docsmap);","console.dir(documents));","console.dir(error));","console.dir(error);","console.dir(friends);","console.dir(isname);","console.dir(json));","console.dir(json);","console.dir(mother);","console.dir(mydatabase.heroes.name);","console.dir(ok);","console.dir(results);","console.dir(state),","console.error(error),","console.log('done')","console.log('done'));","console.log('got","console.log('initi","console.log('insert","console.log('long","console.log('nam","console.log('someth","console.log(`serv","console.log(amount);","console.log(attachment.scream());","console.log(collect","console.log(doc.myfield);","console.log(doc.scream());","console.log(doc.whoami());","console.log(hero.firstname);","console.log(heroes.scream());","console.log(heroes.whoami());","console.log(laststate);","console.log(mydocument.deleted);","console.log(mydocument.get('firstname'));","console.log(mydocument.name);","console.log(mydocument.nested.attribute);","const","construct","constructed.","contain","contain.","content","continu","continuously.","contribut","contributing!","contribution,","control","coordin","cor","cordova","cordova'","cordova.sqliteplugin.","core","core,","corner.","correspond","cors,","cors:","couchdb","couchdb,","couldn't","count","countalldocuments:","countri","cours","cpu.","creat","created.","createhuman($human:","createrxdatabas","createrxdatabase({","createrxdatabase,","creation","creation.","creditcards:","crown","crypto","current","custom","custoom","cvc:","cycl","d","d.id","damag","data","data');","data,","data.","data:","databas","database)","database,","database.","database:","databases,","databases.","datamigr","date","date().gettime()","date(olddoc.time).gettime();","dates.","db","db.","db.collection({","db.hero","db.heroes;","db.items.insert({","db.server({","db.temperature.insert({","db.waitforleadership()","db1","db2","debug","debug,","debug:","debugging.","decid","declar","decode,","decode;","decreas","decrypt","default","default,","default.","default:","default=tru","defin","defined.","definit","degrees:","delet","deleted$","deleted$.","deleted,","deleted:","deletedflag:","denied$","depend","deprecated,","deprecated.","describ","description:","design","desir","destroy","destroy()","destroyed.","detection,","dev","develop","developer.","developers.","developing,","devic","device,","di","died.","dies.","differ","digest","direct","direction:","directli","directly.","disabl","disablekeycompress","disadvantag","disc","discuss","disk","display","dist","distribut","do","doc","doc.bestfriend_;","doc.firstname);","doc.id);","doc.nam","doc.populate('bestfriend');","doc.putattachment({","doc.updatedat","doc:","doc;","docdata","docdata:","docs$","docs.","docs:instal","docs:serv","docsmap","document","document'","document,","document.","documentdata","documents';","documents,","documents.","documents.filter(d","documents.push(doc);","documents.sort((a,","does,","doesdocumentdatamatch()","doesn't","domain","don't","done","done,","done.","done:","down","down');","download","drive.","due","dump","dump';","dump()","dure","each","easi","easier","easily.","easy,","edg","eg:","elect","election';","electron","else,","emit","emptydatabase.importdump(json)","enabl","enabled.","encod","encode;","encrypt","encrypted,","encrypted.","encrypted:","endpoint","endpoint,","endpoint.","endpoints.","enough","ensur","entiti","env:","environ","environment,","environment.","equal","equal,","equival","error","error$","error('stop');","error.","error:","errors,","es5.","es8","especi","etc...","eval'","eval()","eval.","even","event","eventreduc","events,","events.","everyth","exact","exactli","exampl","example)[https://github.com/pubkey/rxdb/tree/master/examples/graphql]","example,","example.","example:","exec()","execut","execution.","exist","exist.","exists.","expect","expected.","explicitli","export","expos","express","express();","extend","extrem","fail","failur","fals","false);","false,","false.","false;","family:","familyname:","fast","faster","faster.","fe:","featur","feature,","feedforrxdbrepl","feedforrxdbreplication(lastid:","feedforrxdbreplication:","fetch","fetch('http://myserver.com/api/countrybycoordinates/'+coordinates+'/')","fetch('https://example.com/api/temp/');","field","field,","field.","fieldnam","fieldname.","fieldnames,","fields.","file","file.","file:","files,","files.","filesystem","filesystem.","fill","filter","filterforminupdatedatandid.slice(0,","final","final,","final:","find","find()","findbyids$()","findbyids()","findon","findone()","finish","fire","first","firstnam","firstname:","fit","flag","flags.","flawless","flexibl","flow","folder","folder)","folder.","follow","following:","foo","foo:","foobar","for,","forc","foreign","form","found","found.","framework.","frameworks,","free","friend","friends:","frontend","full","fulli","function","function(){","function(){},","function(olddoc){","function(password)","function(this:","function.","functionality.","functions,","functions.","further","gener","generated.","get","get$()","get()","get:","getattachment()","getdata()","getlocal()","getstringdata()","getter","getter.","getter/sett","git","gitter.","give","given","global","global.atob","global.btoa","go","gone","good","graphql","graphql';","graphql.","graphqlschemafromrxschema(),","grate","great","greater","hacked,","hand","hand'","handel","handi","handl","handled.","handled:","handler","happen","happens,","haproxy)","hard","hash","have","header","healthpoint","heatmaps.","heavi","height","help","helper","helpful","here","here).","here,","here.","here]","hero","hero\",","hero.","hero.scream('aah!');","hero:","herocollect","herocollection)","herocollection,","herocollectionmethod","herocollectionmethods:","herodocmethod","herodocmethods,","herodocmethods:","herodoctyp","herodoctype,","herodocu","herodocument,","herodocument.","heroes.findone().exec();","heroes.insert({","heroes:","heroschema,","heroschema:","higher","higher.","hint","hook","hook,","hook?","hooks)","hooks.","hooks:","however,","http","http'));","http';","http1.1","http2.0","http2.0,","http://localhost:3000/db","http://localhost:3000/db/item","http://localhost:4000/","https://github.com/pubkey/rxdb.git","https://github.com/pubkey/rxdb/blob/master/src/plugin.ts#l22","https://pouchdb.com/api.html#repl","huge","human","human',","human:","humanchang","humaninput","humaninput)","humaninput):","humanscollection.findone('alice').exec();","humanscollection.findone('bob').exec();","humanscollection.insert({","hybrid","id","id!,","id,","id.","id:","idb","idb'));","ideas:","ident","identifi","idl","idle.","if(olddoc.tim","ignoredupl","ignoreduplicate:","imag","imagin","immedi","immut","immutable.","implement","impli","import","import/export","important:","importdump()","imported.","improv","in,","in.","includ","incom","increas","index","indexed,","indexeddb","indexeddb'));","indexes.","indexes:","indic","info","inform","inherit","initi","inmemori","inmemorycollection,","inmemoryconfig:","input","input.","insensit","insert","insert$","insert()","insert.","inserted.","insertlocal()","inserts,","insid","inspect","instal","instanc","instance,","instance.","instances.","instantli","instead","instead.","int!):","int!,","integ","integr","intent","interact","intern","internally,","internally.","internet,","interv","introduct","invalid","is:","isnam","isname;","isrxcollect","isrxcollection(myobj);","isrxdatabas","isrxdatabase(myobj);","isrxdocu","isrxdocument(myobj);","isrxqueri","isrxquery(myobj);","issu","it'","it,","it.","items:","itself","itter","javascript","javascript,","join","js","json","jsonschema","jsx.","jump","keep","key","key:","keycompress","keycompression:","keycompressor","keynam","keyword","keyword:","king!');","kitty',","know","known","last","lastnam","lastname,","lastname:","laststat","later","later.","latest","lead","leader","leader,","leader.","leaderelect","leaderelection.","learn","leav","length","less","less)","let","level","leveldb","leveldb'));","leveldown","library.","life","lifecycl","like:","limit","limit,","limit:","limited;","link","list","list,","list:","listen","live","live:","liveinterv","liveinterval:","load","local","localdoc","localdoc.foo","localdoc.foo;","localdoc.get$('foo').subscribe(valu","localdoc.get('foo');","localdoc.remove();","localdoc.save();","localdoc.set('foo',","localdocu","locally,","localstorage'));","locat","log","log.txt'","logic","logpath:","long","longer","look","looks.","lost","lot","machine.","made","main","mainapp","mainapp.listen(3000,","mainapp.use('/',","mainapp.use('/db',","make","manag","mango","mani","manipul","manipulate.","manual","map","map(2)","map.","mark","match","math.round(new","matter","max","maximum","md5","mean","means,","meant","memcol","memcol.awaitpersistence();","memcol.find().exec();","memcol.insert({foo:","memdown","memori","memory'));","memory';","memory)","memory,","memory.","memoryadapt","merg","messag","messagecol","messagecol.migratepromise(10);","messages.","messageschemav1,","messeng","metadata.","method","method,","method.","methods,","methods.","methods:","middlewar","middlewares...","migrat","migrated.","migrated:","migratepromise;","migration.","migrationpromis","migrationstrategi","migrationstrategies:","mind","minupdatedat:","minute.","mirgrat","mistake,","mode","mode';","mode,","mode.","model","models,","modifi","modifier:","modifyjs.","modul","module,","module.","moment","mongo","mongoose,","mongoose.","more","more.","mother","mother:","mount","move","mqueri","ms","much","multi","multiinst","multiinstance:","multipl","mupltipl","mutat","mycollect","mycollection.$.subscribe(changeev","mycollection.atomicupsert(docdata);","mycollection.bulkinsert([{","mycollection.customcleanupfunction();","mycollection.destroy();","mycollection.dump()","mycollection.dump(true)","mycollection.find().exec()","mycollection.find().where('age').gt(18)","mycollection.find().where('age').gt(18).doesdocumentdatamatch(documentdata);","mycollection.find().where('age').gt(18);","mycollection.find().where('age').gt(20).doesdocumentdatamatch(documentdata);","mycollection.find().where('age').lt(18);","mycollection.find().where('name').eq('foo')","mycollection.find().where('x').eq(5)","mycollection.find();","mycollection.find({","mycollection.findbyids(ids);","mycollection.findone('foo')","mycollection.findone().exec();","mycollection.findone().where('name').eq('foo')","mycollection.getlocal('foobar');","mycollection.importdump(json)","mycollection.inmemory();","mycollection.insert$.subscribe(changeev","mycollection.insert({","mycollection.insert({/*","mycollection.insertlocal(","mycollection.newdocument({","mycollection.postcreate(function(plaindata,","mycollection.postinsert(function(plaindata,","mycollection.postremove(function(plaindata,","mycollection.postsave(function(plaindata,","mycollection.preinsert(function(plaindata){","mycollection.preremove(function(plaindata,","mycollection.presave(function(plaindata,","mycollection.remove$.subscribe(changeev","mycollection.remove();","mycollection.sync({","mycollection.syncgraphql()","mycollection.syncgraphql().","mycollection.syncgraphql({","mycollection.update$.subscribe(changeev","mycollection.upsert(docdata);","mycollection.upsert({","mycollection.upsertlocal(","mydatabas","mydatabase.collection({","mydatabase.destroy();","mydatabase.dump()","mydatabase.dump(true)","mydatabase.heroes.countalldocuments();","mydatabase.heroes.insert({","mydatabase.heroes.postinsert(","mydatabase.insertlocal(","mydatabase.remove();","mydatabase.requestidlepromise().then(()","mydatabase.requestidlepromise(1000","mydatabase:","mydatabasecollect","mydb.$.subscribe(changeev","mydocument.$","mydocument.allattachments$.subscribe(","mydocument.allattachments();","mydocument.atomicpatch({","mydocument.atomicpatch({firstname:","mydocument.atomicpatch({name:","mydocument.atomicset('nested.attribute',","mydocument.atomicupdate(changefunction);","mydocument.deleted$.subscribe(st","mydocument.family.mother_;","mydocument.firstnam","mydocument.firstname$.subscribe(newnam","mydocument.friends_;","mydocument.get$('name')","mydocument.get('name');","mydocument.getattachment('cat.jpg');","mydocument.nam","mydocument.name;","mydocument.putattachment({","mydocument.remove();","mydocument.save();","mydocument.set('firstname',","mydocument.tojson();","mydocument.update({","mydocument.whatever.nestedfield","mydocument.whatever.nestedfield;","mydomelement.innerhtml","myheroschema","mymethod.bind(mydocument)","myplugin","mypostinserthook(","myrxcollection.pouch.put({/*","myrxcollection.watchforchanges();","myschema","myschema,","name","name,","name.","name:","name:foobar","names.","nativ","native'","native.","need","need.","ness","nest","nestedvalu","network","never","new","new,","newdocument()","newer","newest","newli","newname));","newname;","next","next(data)","node","node,","nodej","nodejs.","non","normal","nosql","not.","note","noth","notic","notice.","notice:","notif","notifiers,","now","npm","null","null,","null;","number","number,","number.","number;","object","object).","object,","object.","object.defineproperty(rxdocument,","objects.","observ","observables:","occur","offlin","offline,","ok","ok,","old","olddata.ag","olddata.nam","olddata;","olddoc.coordinates;","olddoc.sendercountry=response;","olddoc.tim","olddoc;","older","olderdocu","omit","on","onc","once,","once.","one,","one.","ones,","ongo","onhumanchang","onlin","open","openli","oper","operations.","optim","optimis","optimization,","optimizations.","option","optional.","options,","options:","origin","orm","orm/drm","orm/drm.","other.","otherwis","out","over","overview","overwrit","overwritable:","overwritten","own,","package.json,","package.json.","page","parallel","paramet","parameter,","parameter.","parameters:","paramt","parent","parrallel","part","parti","parties.","pass","passportid:","password","password.","password.length","password:","path","path:","peer","pend","peopl","per","percent:","percentag","perform","performance,","performance.","perman","permissions).","persist","phonegap","pick","piec","plain","plaindata.ag","plaindata.anyfield","play","pleas","plugin","plugin.","plugins:","polici","policies.","policy,","poll","polling.","polyfil","polyfills,","popul","populate()","port","port:","possibl","post","postcreat","postinsert","postremov","postsav","pouch","pouch/couch","pouchadaptermemori","pouchdb","pouchdb'","pouchdb,","pouchdbexpressopt","pouchdbexpressoptions:","pouchhttpplugin","pouchset","pouchsettings:","power","pr","pre","predict","prefer","prefil","preinsert","preremov","presav","prevent","previou","primari","primary,","primary.","primary:","probabl","problem","problem,","process","process,","process.brows","produce,","product","production.","progress","projects.","promis","promise(r","promise.","promise;","properli","properti","properties:","property.","pros:","proto.hello","protocol.","prototyp","prototypes:","provid","proxi","pseudo","pull","pull:","pullquerybuild","pullquerybuilder,","pullquerybuilder.","pullquerybuilderfromrxschema()","purg","push","push:","pushquerybuild","pushquerybuilder,","pushquerybuilderfromrxschema()","putattachment()","queri","queries,","queries.","query,","query.","query.$.subscribe(result","query.exec();","query.remove();","query.update({","query:","querybuild","querybuilder,","querybuilder.","querybuilder:","querycach","queryobject","queryobject.exec();","queryobject.sort('name');","queryobjectsort","queryobjectsort.exec();","question","queu","quota","rare","re","react","reactiv","reactn","read","readabl","real","realli","realtim","realtime.","reason.","reassign","receiv","reciev","recogn","recommend","reconnect:","record","recur","reduc","redund","ref","ref:","refer","referenc","referenceerror:","refhuman","refind","regex","regex:","regexp","regexp('^foo$',","regexp}}","regist","regular","regularly,","reimplement","relat","releas","reli","relic","remains:","remot","remote:","remov","remove$","remove()","removed.","removeddoc","removerxdatabas","removerxdatabase('mydatabasename',","render","replac","replic","replicated,","replicated.","replication,","replication.","replications.","replicationst","replicationstate.","replicationstate.active$.subscribe(act","replicationstate.alive$.subscribe(al","replicationstate.awaitinitialreplication();","replicationstate.cancel();","replicationstate.change$.subscribe(chang","replicationstate.complete$.subscribe(complet","replicationstate.denied$.subscribe(docdata","replicationstate.docs$.subscribe(docdata","replicationstate.error$.subscribe(error","replicationstate.isstopped();","replicationstate.run();","replicationstate.setheaders({","repositori","repres","represent","representation.","reproduc","request","request,","request.","requestidlecallback","requestidlepromise()","requir","require('asyncstorag","require('leveldown');","require('memdown');","required.","required:","res)","res.send('hello'));","reset","resolut","resolv","resourc","respons","response.json();","restart","result","result.","results.","results.length);","results:","retry:","return","returning.","reus","rev","revis","right","rootvalu","rout","row","run","run()","run:","running.","runtim","runtime,","runtime.","rx.collection.sync()","rxattach","rxattachemnt","rxattachment.","rxcachereplacementpolicy.","rxcollect","rxcollection().awaitpersistence()","rxcollection().inmemory();","rxcollection,","rxcollection.","rxcollection.insert","rxcollection.newdocument(initaldata).","rxcollection.sync()","rxcollection.sync().","rxcollection:","rxcollection;","rxcollections,","rxdatabas","rxdatabase,","rxdatabase.","rxdatabase;","rxdb","rxdb'","rxdb,","rxdb.","rxdb:","rxdbadaptercheckplugin","rxdbajvvalidateplugin","rxdbattachmentsplugin","rxdbdevmodeplugin","rxdbencryptionplugin","rxdbinmemoryplugin","rxdbjsondumpplugin","rxdbkeycompressionplugin","rxdbleaderelectionplugin","rxdblocaldocumentsplugin","rxdbmigrationplugin","rxdbnovalidateplugin","rxdbquerybuilderplugin","rxdbreplicationgraphqlplugin","rxdbreplicationplugin","rxdbserverplugin","rxdbupdateplugin","rxdbvalidateplugin","rxdbvalidatezschemaplugin","rxdbwatchforchangesplugin","rxdocument","rxdocument)","rxdocument){","rxdocument,","rxdocument.","rxdocument.atomicupdate.","rxdocument.remov","rxdocument.sav","rxdocument.upd","rxdocument;","rxdocument[alice]","rxdocument],","rxgraphqlreplicationst","rxj","rxjsonschema","rxjsonschema,","rxjsonschema.","rxlocaldocu","rxlocaldocument.","rxqueri","rxquery'","rxquery,","rxquery.","rxquery.find().","rxquery.update.","rxreplicationst","rxschema","rxschema.","safe","same","save","save'","save()","saved.","schema","schema\",","schema'","schema',","schema';","schema,","schema.","schema.org.","schema:","schema?","schemas,","schemas.","schemaversions.","schemawithdefaultag","schemawithfinalag","schemawithindex","schemawithonetomanyrefer","scope","scream:","screams:","search","second","second.","secondari","seconds.","secret","secret:","secur","see","see:","selector.","selector:","selectors.","self","semi","send","sender","sens","sense.","sensit","sent","separ","seri","server","server()","server,","server.","serverless.","serverurl,","server}","set","set()","set).","set.","sethuman(human:","sethuman:","setter","settimeout(res,","settings:","setup","sever","share","shim","short","show","side","side,","side.","signal","similar","simpl","simple.","simplifi","simul","singl","site","size","size,","size.","skeletor!!'","skill","skip","slow","small","solut","solutions:","solv","someth","something,","sometim","soon","sort","sort:","sortabl","sorteddocu","sourc","space.","spawn","spec","special","specif","specifi","speed","spin","sql","sqlite","sqlite'","sqlite'));","sqliteadapt","sqliteadapterfactori","sqliteadapterfactory(sqlite)","src","standard","standart","start","startserv","startserver:","state","state);","state,","statement","states.","static","static.","statics,","statics:","stay","stefe'","step","steve'","sth","still","stolen","stop","stopped.","storag","storage.","store","store.","stored.","strang","strategi","strategies:","stream","stream.","string","string!,","string)","string,","string.","string;","structur","subdomain","submit","subscrib","subscript","subscriptioncli","subscriptionclient(","succeed","success","success:","suffix","suit","sum","support","sure","switch","sync","sync()","sync.","synchron","synchronis","syntax","syntax,","syntax.","system","systems.","tab","tab.","table.","tabs,","tabs.","take","task","tasks.","team","tell","temp","temp,","tempdoc","tempdoc.ag","tempdoc.lastnam","tempdoc.save();","temperatur","temporari","ten","terminates.","test","test/unit","test:nod","tests,","thank","them,","them.","therefor","these","thing","things.","third","this,","this.","this.find().exec();","this.firstnam","this.nam","this.name;","this:","through","throw","time","time,","time.","time:","timeout","times.","timespan,","timestamp","timestamps,","title:","tmp","to,","to.","togeth","tojson()","top","total:","track","traffic","transform","transmit","transpil","transport","tri","tricki","trigger","trivial","true","true);","true,","true.","true/fals","true;","truth","tutori","tutorial.","tutorial:","two","type","type.","type:","typed!","typeof","types,","typescript","typescript.","u","ui","uncach","uncacherxquery(rxquery).","uncaught","undefin","underscor","underscore_","unencrypt","uniqu","unique,","unit","unix","unless","unset","until","up","up.","updat","update$","update()","update(),","updatedat","updatedat.","updatedat:","upon","upsert","upsert()","upsertlocal()","url","url:","us","usag","use.","useabl","used:","useful","user","user'","user,","users'","users.","util","v3.8","valid","valid.","validate';","validatepassword:","validation.","valu","valuabl","value).","value,","value.","value:","values,","values.","vanillaj","var","variabl","variables.","variables:","variou","veri","version","version,","version.","version:","versions.","via","view","visitor","visual","wait","wait..","waitforleadership()","waitforleadership:","want","wast","watch","way","web","webpack","websit","websites,","websocket","websql","websql'));","websql.","what.touppercase();","what:","whatev","when:","whenev","where.","whether","while,","whoami:","whole","whose","wide","wide.","will,","window","window.","window;","wipe","wire","with:","within","without","won't","work","work!","work.","worked,","works!","worry,","worst","write","write.","written","wrong');","wrong.","ws';","wsclient","wsclient.request({","you'd","you'r","you.","youngest","z","z0","z][[a","z][a","za","{","{$eq:","{$or:","{$regex:","{app,","{name:","{object}","{}","{},","||","}","})","});","},","};","}]);","}]}","}`;","♛"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"\n \n \n \n\n\n\n A realtime Database for JavaScript Applications\n\n\n RxDB (short for Reactive Database) is a NoSQL-database for JavaScript Applications like Websites, hybrid Apps, Electron-Apps, Progressive Web Apps and NodeJs.\n Reactive means that you can not only query the current state, but subscribe to all state changes like the result of a query or even a single field of a document.\n This is great for UI-based realtime applications in way that makes it easy to develop and also has great performance benefits. To replicate data between your clients and server, RxDB provides modules for realtime replication with any CouchDB compliant endpoint and also with custom GraphQL endpoints.\n\n\n\n \n \n \n \n \n \n\n \n -->\n\n\n\n\n Core features\n\n\n\n\n Realtime Queries\n\n\n\nIn addition to normal pull-based queries, RxDB is capable of having so called realtime queries. These do not only give you the results once but instead emit the new query results each time the state of your database changes.\nThe stream comes as simple RxJS Observable and works flawless together with your frontend framework.\n\n\ndb.heroes\n .find({\n sort: ['name']\n })\n .$ // {\n myDomElement.innerHTML = docs\n .map(doc => '' + doc.name + '')\n .join();\n });\n\n\n\n Replication\n\n\n\n To synchronize data between your clients and your server, RxDB provides replication modules for CouchDB and GraphQL. So when your server changes data, your application will automatically stream that change to the client and updates its visual representation.\n\n\n\n\n Multi-Window / Tab Support\n\n\n\n When your application is opened in multiple windows or tabs at the same time, it can be tricky to synchronize actions between the open states. RxDB automatically broadcasts all changes between these tabs so you do not have to take any care of it.\n\n\n\n \n\n\n\n\n Other features\n\n\n\n Schema\n\n\n\n RxDB is based on json-schema where the structure of documents is defined for each collection. This is useful when you develope in a team with multiple developers. It also provides information for RxDB to do performance optimizations. Also the schema is versionized and you can provide migration strategies to migrate the data which is already stored on the clients.\n\n\n\n Encryption\n\n\n\n RxDB comes with an encryption module where specific fields of a document can be stored encrypted. So when your clients device is stolen or hacked, you can be sure that sensitive data is not readable by third parties.\n\n\n\n Key Compression\n\n\n Saving data on a client can be tricky because you cannot predict how much storage capacity will be available. RxDB provides a key-compression module that compresses the stored json documents which saves about 40% of storage space.\n\n\n\n\n\n If you are new to RxDB, you should continue reading the documentation here.\n\n"},"install.html":{"url":"install.html","title":"Install","keywords":"","body":"Install\nnpm\nTo install the latest release of rxdb and its dependencies and save it to your package.json, run:\nnpm i rxdb --save\npeer-dependency\nYou also need to install the peer-dependency rxjs if you have not installed it before.\nnpm i rxjs --save\npolyfills\nRxDB is coded with es8 and transpiled to es5. This means you have to install polyfills to support older browsers. For example you can use the babel-polyfills with:\nnpm i @babel/polyfill --save\nIf you need polyfills, you have to import them in your code.\nimport '@babel/polyfill';\n\npolyfill global\nWhen you use RxDB with angular or other webpack based frameworks, you might get the error Uncaught ReferenceError: global is not defined. This is because pouchdb assumes a nodejs-specific global variable that is not added to browser runtimes by some bundlers.\nYou have to add them by your own, like we do here.\n(window as any).global = window;\n(window as any).process = {\n env: { DEBUG: undefined },\n};\n\nLatest\nIf you need the latest development state of RxDB, add it as git-dependency into your package.json.\n \"dependencies\": {\n \"rxdb\": \"git+https://git@github.com/pubkey/rxdb.git#commitHash\"\n }\n\nReplace commitHash with the hash of the latest build-commit.\nImport\nTo import rxdb, add this to your javascript file:\nimport {\n createRxDatabase,\n RxDatabase\n /* ... */\n} from 'rxdb';\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-database.html":{"url":"rx-database.html","title":"RxDatabase","keywords":"","body":"RxDatabase\nA RxDatabase-Object contains your collections and handles the synchronisation of change-events.\nCreation\nThe database is created by the asynchronous .create()-function of the main RxDB-module. It has the following parameters:\nimport { createRxDatabase } from 'rxdb';\nconst db = await createRxDatabase({\n name: 'heroesdb', // \nname\nThe database-name is a string which uniquely identifies the database. When two RxDatabases have the same name and use the same storage-adapter, their data can be assumed as equal and they will share change-events between each other.\nDepending on the adapter this can also be used to define the storage-folder of your data.\nadapter\nRxDB uses adapters to define where the data is actually stored at. You can use different adapters depending on which environment your database runs in. This has the advantage that you can use the same RxDB code in different environments and just switch out the adapter.\nExample for browsers:\n\n// this adapter stores the data in indexeddb\naddRxPlugin(require('pouchdb-adapter-idb'));\n\nconst db = await createRxDatabase({\n name: 'mydatabase',\n adapter: 'idb' // name of the adapter\n});\n\n Check out the List of adapters for RxDB to learn which adapter you should use. \npassword\n(optional)\nIf you want to use encrypted fields in the collections of a database, you have to set a password for it. The password must be a string with at least 12 characters.\nmultiInstance\n(optional=true)\nWhen you create more than one instance of the same database in a single javascript-runtime, you should set multiInstance to true. This will enable the event-sharing between the two instances serverless. This should be set to false when you have single-instances like a single nodejs-process, a react-native-app, a cordova-app or a single-window electron-app.\neventReduce\n(optional=true)\nOne big benefit of having a realtime database is that big performance optimizations can be done when the database knows a query is observed and the updated results are needed continuously. RxDB uses the EventReduce Algorithm to optimize observer or recurring queries.\nignoreDuplicate\n(optional=false)\nIf you create multiple RxDatabase-instances with the same name and same adapter, it's very likely that you have done something wrong.\nTo prevent this common mistake, RxDB will throw an error when you do this.\nIn some rare cases like unit-tests, you want to do this intentional by setting ignoreDuplicate to true.\nconst db1 = await createRxDatabase({\n name: 'heroesdb',\n adapter: 'websql',\n ignoreDuplicate: true\n});\nconst db2 = await createRxDatabase({\n name: 'heroesdb',\n adapter: 'websql',\n ignoreDuplicate: true // this create-call will not throw because you explicitly allow it\n});\n\npouchSettings\nYou can pass settings directly to the pouchdb database create options through this property. This settings will be added to all pouchdb-instances that are created for this database.\nFunctions\nObserve with $\nCalling this will return an rxjs-Observable which streams every change to data of this database.\nmyDb.$.subscribe(changeEvent => console.dir(changeEvent));\n\ndump()\nUse this function to create a json-export from every piece of data in every collection of this database. You can pass true as a parameter to decrypt the encrypted data-fields of your document.\nmyDatabase.dump()\n .then(json => console.dir(json));\n\n// decrypted dump\nmyDatabase.dump(true)\n .then(json => console.dir(json));\n\nimportDump()\nTo import the json-dumps into your database, use this function.\n// import the dump to the database\nemptyDatabase.importDump(json)\n .then(() => console.log('done'));\n\nserver()\nSpawns a couchdb-compatible server from the database. Read more\nwaitForLeadership()\nReturns a Promise which resolves when the RxDatabase becomes elected leader.\nrequestIdlePromise()\nReturns a promise which resolves when the database is in idle. This works similar to requestIdleCallback but tracks the idle-ness of the database instead of the CPU.\nUse this for semi-important tasks like cleanups which should not affect the speed of important tasks.\n\nmyDatabase.requestIdlePromise().then(() => {\n // this will run at the moment the database has nothing else to do\n myCollection.customCleanupFunction();\n});\n\n// with timeout\nmyDatabase.requestIdlePromise(1000 /* time in ms */).then(() => {\n // this will run at the moment the database has nothing else to do\n // or the timeout has passed\n myCollection.customCleanupFunction();\n});\n\ndestroy()\nDestroys the databases object-instance. This is to free up memory and stop all observings and replications.\nReturns a Promise that resolves when the database is destroyed.\nawait myDatabase.destroy();\n\nremove()\nRemoves the database and wipes all data of it from the storage.\nawait myDatabase.remove();\n// database is now gone\n\n// NOTICE: You can also remove a database without its instance\nimport { removeRxDatabase } from 'rxdb';\nremoveRxDatabase('mydatabasename', 'localstorage');\n\ncheckAdapter()\nChecks if the given adapter can be used with RxDB in the current environment.\nimport { checkAdapter, addRxPlugin } from 'rxdb';\naddRxPlugin(require('pouchdb-adapter-localstorage')); // adapter must be added before\n\nconst ok = await checkAdapter('localstorage');\nconsole.dir(ok); // true on most browsers, false on nodejs\n\nisRxDatabase\nReturns true if the given object is an instance of RxDatabase. Returns false if not.\nimport { isRxDatabase } from 'rxdb';\nconst is = isRxDatabase(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-schema.html":{"url":"rx-schema.html","title":"RxSchema","keywords":"","body":"RxSchema\nSchemas define how your data looks. Which field should be used as primary, which fields should be used as indexes and what should be encrypted. The schema also validates that every inserted document of your collections conforms to the schema. Every collection has its own schema. With RxDB, schemas are defined with the jsonschema-standard which you might know from other projects.\nExample\nIn this example-schema we define a hero-collection with the following settings:\n\nthe version-number of the schema is 0\nthe name-property is the primary. This means its an unique, indexed, required string which can be used to definitely find a single document.\nthe color-field is required for every document\nthe healthpoints-field must be a number between 0 and 100\nthe secret-field stores an encrypted value\nthe birthyear-field is final which means it is required and cannot be changed\nthe skills-attribute must be an array with objects which contain the name and the damage-attribute. There is a maximum of 5 skills per hero.\nAllows adding attachments and store them encrypted\n{\n \"title\": \"hero schema\",\n \"version\": 0,\n \"description\": \"describes a simple hero\",\n \"type\": \"object\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\",\n \"primary\": true\n },\n \"color\": {\n \"type\": \"string\"\n },\n \"healthpoints\": {\n \"type\": \"number\",\n \"minimum\": 0,\n \"maximum\": 100\n },\n \"secret\": {\n \"type\": \"string\"\n },\n \"birthyear\": {\n \"type\": \"number\",\n \"final\": true,\n \"minimum\": 1900,\n \"maximum\": 2050\n },\n \"skills\": {\n \"type\": \"array\",\n \"maxItems\": 5,\n \"uniqueItems\": true,\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"name\": {\n \"type\": \"string\"\n },\n \"damage\": {\n \"type\": \"number\"\n }\n }\n }\n }\n },\n \"required\": [\"color\"],\n \"encrypted\": [\"secret\"],\n \"attachments\": {\n \"encrypted\": true\n }\n}\n\n\n\nCreate a collection with the schema\nawait myDatabase.collection({\n name: 'heroes',\n schema: myHeroSchema\n});\nconsole.dir(myDatabase.heroes.name);\n// heroes\n\nversion\nThe version field is a number, starting with 0.\nWhen the version is greater than 0, you have to provide the migrationStrategies to create a collection with this schema.\nkeyCompression\nSince version 8.0.0, the keyCompression is disabled by default. If you have a huge amount of documents it makes sense to enable the keyCompression and save disk-space.\nNotice that keyCompression can only be used on the top-level of a schema.\nconst mySchema = {\n keyCompression: true, // set this to true, to enable the keyCompression\n version: 0,\n title: 'human schema no compression',\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n }\n },\n required: ['firstName', 'lastName']\n};\n\nIndexes\nRxDB supports secondary indexes which are defined at the schema-level of the collection.\nIndex is only allowed on field types string, integer and number\nIndex-example\nconst schemaWithIndexes = {\n version: 0,\n title: 'human schema no compression',\n keyCompression: true,\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n },\n familyName: {\n type: 'string'\n },\n creditCards: {\n type: 'array',\n items: {\n type: 'object',\n properties: {\n cvc: {\n type: 'number'\n }\n }\n } \n }\n },\n indexes: [\n 'firstName', // \nattachments\nTo use attachments in the collection, you have to add the attachments-attribute to the schema. See RxAttachment.\ndefault\nDefault values can only be defined for first-level fields.\nWhenever you insert a document or create a temporary-document, unset fields will be filled with default-values.\nconst schemaWithDefaultAge = {\n version: 0,\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n },\n age: {\n type: 'integer',\n default: 20 // \nfinal\nBy setting a field to final, you make sure it cannot be modified later. Final fields are always required.\nFinal fields cannot be observed because they anyway will not change.\nAdvantages:\n\nWith final fields you can ensure that no other in your dev-team accidentally modifies the data\nWhen you enable the query-change-detection, some performance-improvements are done\n\nconst schemaWithFinalAge = {\n version: 0,\n type: 'object',\n properties: {\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n },\n age: {\n type: 'integer',\n final: true\n }\n },\n};\n\nencryption\nBy adding a field to the encrypted list, it will be stored encrypted inside of the data-store. The encryption will run internally, so when you get the RxDocument, you can access the unencrypted value.\nYou can set all fields to be encrypted, even nested objects. You can not run queries over encrypted fields.\nThe password used for encryption is set during database creation. See RxDatabase.\nconst schemaWithDefaultAge = {\n version: 0,\n type: 'object',\n properties: {\n secret: {\n type: 'string'\n },\n },\n encrypted: ['secret']\n};\n\nNOTICE: Not everything within the jsonschema-spec is allowed\nThe schema is not only used to validate objects before they are written into the database, but also used to map getters to observe and populate single fieldnames, keycompression and other things. Therefore you can not use every schema which would be valid for the spec of json-schema.org.\nFor example, fieldnames must match the regex ^[a-zA-Z][[a-zA-Z0-9_]*]?[a-zA-Z0-9]$ and additionalProperties is always set to false. But don't worry, RxDB will instantly throw an error when you pass a invalid schema into it.\n\nIf you are new to RxDB, you should continue here\n"},"rx-collection.html":{"url":"rx-collection.html","title":"RxCollection","keywords":"","body":"RxCollection\nA collection stores documents of the same type.\nCreating a Collection\nTo create a collection you need a RxDatabase object which has the .collection()-method. Every collection needs a collection name and a valid RxSchema. Other attributes are optional.\nconst myCollection = await myDatabase.collection({\n name: 'humans',\n schema: mySchema,\n pouchSettings: {} // (optional)\n statics: {}, // (optional) // ORM-functions for this collection\n methods: {}, // (optional) ORM-functions for documents\n attachments: {}, // (optional) ORM-functions for attachments\n options: {}, // (optional) Custom paramters that might be used in plugins\n migrationStrategies: {}, // (optional)\n autoMigrate: true, // (optional)\n cacheReplacementPolicy: function(){}, // (optional) custoom cache replacement policy\n});\n\nname\nThe name uniquely identifies the collection and should be used to refind the collection in the database. Two different collections in the same database can never have the same name. Collection names must match the following regex: ^[a-z][a-z0-9]*$.\nschema\nThe schema defines how your data looks and how it should be handled. You can pass a RxSchema object or a simple javascript-object from which the schema will be generated.\npouchSettings\nYou can pass settings directly to the pouchdb database create options through this property.\nORM-functions\nWith the parameters statics, methods and attachments, you can defined ORM-functions that are applied to each of these objects that belong to this collection. See ORM/DRM.\nMigration\nWith the parameters migrationStrategies and autoMigrate you can specify how mirgration between different schema-versions should be done. See Migration.\nGet a collection from the database\nTo get an existing collection from the database, call the collection name directly on the database:\n// newly created collection\nconst collection = await db.collection({\n name: 'heroes',\n schema: mySchema\n});\nconst collection2 = db.heroes;\nconsole.log(collection === collection2); //> true\n\nFunctions\nObserve $\nCalling this will return an rxjs-Observable which streams every change to data of this collection.\nmyCollection.$.subscribe(changeEvent => console.dir(changeEvent));\n\n// you can also observe single event-types with insert$ update$ remove$\nmyCollection.insert$.subscribe(changeEvent => console.dir(changeEvent));\nmyCollection.update$.subscribe(changeEvent => console.dir(changeEvent));\nmyCollection.remove$.subscribe(changeEvent => console.dir(changeEvent));\n\ninsert()\nUse this to insert new documents into the database. The collection will validate the schema and automatically encrypt any encrypted fields. Returns the new RxDocument.\nconst doc = await myCollection.insert({\n name: 'foo',\n lastname: 'bar'\n});\n\nbulkInsert()\nWhen you have to insert many documents at once, use bulk insert. This is much faster then calling .insert() multiple times.\nReturns an object with a success- and error-array.\nconst result = await myCollection.bulkInsert([{\n name: 'foo1',\n lastname: 'bar1'\n},\n{\n name: 'foo2',\n lastname: 'bar2'\n}]);\n\n// > {\n// success: [RxDocument, RxDocument],\n// error: []\n// }\n\nNOTICE: bulkInsert will not fail on update conflicts and you cannot expect that on failure the other documents are not inserted.\nnewDocument()\nSometimes it can be helpful to spawn and use documents before saving them into the database.\nThis is useful especially when you want to use the ORM methods or prefill values from form data.\nYou can create temporary documents by calling RxCollection.newDocument(initalData).\nconst tempDoc = myCollection.newDocument({\n firstName: 'Bob'\n});\n\n// fill in data later\ntempDoc.lastName = 'Kelso';\ntempDoc.age = 77;\n\n// saving a temporary document will transform it to a standard RxDocument\nawait tempDoc.save();\n\nupsert()\nInserts the document if it does not exist within the collection, otherwise it will overwrite it. Returns the new or overwritten RxDocument.\nconst doc = await myCollection.upsert({\n name: 'foo',\n lastname: 'bar2'\n});\n\natomicUpsert()\nWhen you run many upsert operations on the same RxDocument in a very short timespan, you might get a 409 Conflict error.\nThis means that you tried to run a .upsert() on the document, while the previous upsert operation was still running.\nTo prevent these types of errors, you can run atomic upsert operations.\nThe behavior is similar to RxDocument.atomicUpdate.\nconst docData = {\n name: 'Bob', // primary\n lastName: 'Kelso'\n};\n\nmyCollection.upsert(docData);\nmyCollection.upsert(docData);\n// -> throws because of parrallel update to the same document\n\nmyCollection.atomicUpsert(docData);\nmyCollection.atomicUpsert(docData);\nmyCollection.atomicUpsert(docData);\n\n// wait until last upsert finished\nawait myCollection.atomicUpsert(docData);\n// -> works\n\nfind()\nTo find documents in your collection, use this method. See RxQuery.find().\n// find all that are older then 18\nconst olderDocuments = await myCollection\n .find()\n .where('age')\n .gt(18)\n .exec(); // execute\n\nfindOne()\nThis does basically what find() does, but it returns only a single document. You can pass a primary value to find a single document more easily.\nTo find documents in your collection, use this method. See RxQuery.find().\n// get document with name:foobar\nmyCollection.findOne().where('name').eq('foo')\n .exec().then(doc => console.dir(doc));\n\n// get document by primary, functionally identical to above query\nmyCollection.findOne('foo')\n .exec().then(doc => console.dir(doc));\n\nfindByIds()\nNotice: This method is in beta and might be changed without notice.\nFind many documents by their id (primary value). This has a way better performance than running multiple findOne() or a find() with a big $or selector.\nReturns a Map where the primary key of the document is mapped to the document. Documents that do not exist or are deleted, will not be inside of the returned Map.\nconst ids = [\n 'alice',\n 'bob',\n /* ... */\n];\nconst docsMap = await myCollection.findByIds(ids);\n\nconsole.dir(docsMap); // Map(2)\n\nfindByIds$()\nSame as findByIds() but returns and Observable that emits the Map each time a value of it has changed because of a database write.\ndump()\nUse this function to create a json export from every document in the collection. You can pass true as parameter to decrypt the encrypted data fields of your documents.\nmyCollection.dump()\n .then(json => console.dir(json));\n\n// decrypted dump\nmyCollection.dump(true)\n .then(json => console.dir(json));\n\nimportDump()\nTo import the json dump into your collection, use this function.\n// import the dump to the database\nmyCollection.importDump(json)\n .then(() => console.log('done'));\n\nsync()\nThis method allows you to replicate data between other RxCollections, pouchdb instances or remote servers which support the couchdb-sync-protocol.\nFull documentation on how to use replication is here.\nremove()\nRemoves all known data of the collection and its previous versions.\nThis removes the documents, the schemas, and older schemaVersions.\nawait myCollection.remove();\n// collection is now removed and can be re-created\n\ndestroy()\nDestroys the collection's object instance. This is to free up memory and stop all observings and replications.\nawait myCollection.destroy();\n\nisRxCollection\nReturns true if the given object is an instance of RxCollection. Returns false if not.\nconst is = isRxCollection(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-document.html":{"url":"rx-document.html","title":"RxDocument","keywords":"","body":"RxDocument\nA document is a single object which is stored in a collection. It can be compared to a single record in a relational database table. You get an RxDocument either as return on inserts, or as result-set of queries.\ninsert\nTo insert a document into a collection, you have to call the collection's .insert()-function.\nmyCollection.insert({\n name: 'foo',\n lastname: 'bar'\n});\n\nfind\nTo find documents in a collection, you have to call the collection's .find()-function. See RxQuery.\nmyCollection.find().exec() // console.dir(documents));\n\nFunctions\nget()\nThis will get a single field of the document. If the field is encrypted, it will be automatically decrypted before returning.\nvar name = myDocument.get('name'); // returns the name\n\nget$()\nThis function returns an observable of the given paths-value.\nThe current value of this path will be emitted each time the document changes.\n// get the life-updating value of 'name'\nvar isName;\nmyDocument.get$('name')\n .subscribe(newName => {\n isName = newName;\n });\n\nawait myDocument.atomicPatch({name: 'foobar2'});\nconsole.dir(isName); // isName is now 'foobar2'\n\nproxy-get\nAll properties of a RxDocument are assigned as getters so you can also directly access values instead of using the get()-function.\n // Identical to myDocument.get('name');\n var name = myDocument.name;\n // Can also get nested values.\n var nestedValue = myDocument.whatever.nestedfield;\n\n // Also useable with observables:\n myDocument.firstName$.subscribe(newName => console.log('name is: ' + newName));\n // > 'name is: Stefe'\n await myDocument.atomicPatch({firstName: 'Steve'});\n // > 'name is: Steve'\n\nupdate()\nUpdates the document based on the mongo-update-syntax, based on modifyjs.\nawait myDocument.update({\n $inc: {\n age: 1 // increases age by 1\n },\n $set: {\n firstName: 'foobar' // sets firstName to foobar\n }\n});\n\natomicUpdate()\nUpdates a documents data based on a function that mutates the current data and returns the new value.\nIn difference to update(), the atomic function cannot lead to 409 write conflicts.\n\nconst changeFunction = (oldData) => {\n oldData.age = oldData.age + 1;\n oldData.name = 'foooobarNew';\n return oldData;\n}\nawait myDocument.atomicUpdate(changeFunction);\nconsole.log(myDocument.name); // 'foooobarNew'\n\natomicPatch()\nWorks like atomicUpdate but overwrites the given attributes over the documents data.\nawait myDocument.atomicPatch({\n name: 'Steve',\n age: undefined // setting an attribute to undefined will remove it\n});\nconsole.log(myDocument.name); // 'Steve'\n\natomicSet()\nWorks like atomicUpdate but only sets the value for a single attribute.\nNOTICE: atomicSet is deprecated, use atomicPatch instead\nawait myDocument.atomicSet('nested.attribute', 'foobar');\nconsole.log(myDocument.nested.attribute); // 'foobar'\n\nObserve $\nCalling this will return an rxjs-Observable which emits all change-Events belonging to this document.\n// get all changeEvents\nmyDocument.$\n .subscribe(changeEvent => console.dir(changeEvent));\n\nremove()\nThis removes the document from the collection. Notice that this will not purge the document from the store but set _deleted:true like described in the pouchdb-docs in option 3.\nmyDocument.remove();\n\ndeleted$\nEmits a boolean value, depending on whether the RxDocument is deleted or not.\nlet lastState = null;\nmyDocument.deleted$.subscribe(state => lastState = state);\n\nconsole.log(lastState);\n// false\n\nawait myDocument.remove();\n\nconsole.log(lastState);\n// true\n\nget deleted\nA getter to get the current value of deleted$.\nconsole.log(myDocument.deleted);\n// false\n\nawait myDocument.remove();\n\nconsole.log(myDocument.deleted);\n// true\n\ntoJSON()\nReturns the document's data as plain json object.\nconst json = myDocument.toJSON();\nconsole.dir(json);\n/* { passportId: 'h1rg9ugdd30o',\n firstName: 'Carolina',\n lastName: 'Gibson',\n age: 33 ...\n*/\n\nset()\nOnly temporary documents\nTo change data in your document, use this function. It takes the field-path and the new value as parameter. Note that calling the set-function will not change anything in your storage directly. You have to call .save() after to submit changes.\nmyDocument.set('firstName', 'foobar');\nconsole.log(myDocument.get('firstName')); // \nproxy-set\nOnly temporary documents\nAll properties of an RxDocument are assigned as setters to it so you can also directly set values instead of using the set()-function.\nmyDocument.firstName = 'foobar';\nmyDocument.whatever.nestedfield = 'foobar2';\n\nsave()\nOnly temporary documents\nThis will update the document in the storage if it has been changed. Call this after modifying the document (via set() or proxy-set).\nmyDocument.name = 'foobar';\nawait myDocument.save(); // submit the changes to the storage\n\nNOTICE: All methods of RxDocument are bound to the instance\nWhen you get a method from a RxDocument, the method is automatically bound to the documents instance. This means you do not have to use things like myMethod.bind(myDocument) like you would do in jsx.\nisRxDocument\nReturns true if the given object is an instance of RxDocument. Returns false if not.\nconst is = isRxDocument(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-query.html":{"url":"rx-query.html","title":"RxQuery","keywords":"","body":"RxQuery\nA query allows to find documents in your collection.\nLike most other noSQL-Databases, RxDB uses the mango-query-syntax. It is also possible to use chained methods.\nfind()\nTo create a basic RxQuery, call .find() on a collection and insert selectors. The result-set of normal queries is an array with documents.\n// find all that are older then 18\nconst query = myCollection\n .find()\n .where('age')\n .gt(18);\n\nfindOne()\nA findOne-query has only a single RxDocument or null as result-set.\n// find the youngest one\nconst query = myCollection\n .findOne()\n .sort('age')\n\nexec()\nReturns a Promise that resolves with the result-set of the query.\nconst query = myCollection.find();\nconst results = await query.exec();\nconsole.dir(results); // > [RxDocument,RxDocument,RxDocument..]\n\nObserve $\nAn BehaviorSubject see that always has the current result-set as value.\nThis is extremely helpfull when used together with UIs that should always show the same state as what is written in the database.\nconst query = myCollection.find();\nquery.$.subscribe(results => {\n console.log('got results: ' + results.length);\n});\n// > 'got results: 5' // BehaviorSubjects emit on subscription\n\nawait myCollection.insert({/* ... */}); // insert one\n// > 'got results: 6' // $.subscribe() was called again with the new results\n\nupdate()\nRuns and update on every RxDocument of the query-result.\nconst query = myCollection.find().where('age').gt(18);\nawait query.update({\n $inc: {\n age: 1 // increases age of every found document by 1\n }\n});\n\nremove()\nDeletes all found documents. Returns a promise which resolves to the deleted documents.\n// All documents where the age is less than 18\nconst query = myCollection.find().where('age').lt(18);\n// Remove the documents from the collection\nconst removedDocs = await query.remove();\n\ndoesDocumentDataMatch()\nReturns true if the given document data matches the query.\nconst documentData = {\n id: 'foobar',\n age: 19\n};\n\nmyCollection.find().where('age').gt(18).doesDocumentDataMatch(documentData); // > true\n\nmyCollection.find().where('age').gt(20).doesDocumentDataMatch(documentData); // > false\n\nExamples\nHere some examples to fast learn how to write queries without reading the docs.\n\nPouch-find-docs - learn how to use mango-queries\nmquery-docs - learn how to use chained-queries\n\n// directly pass search-object\nmyCollection.find({\n selector: {\n name: {$eq: 'foo'}\n }\n})\n.exec().then(documents => console.dir(documents));\n\n// find by using sql equivalent '%like%' syntax\n// This example will fe: match 'foo' but also 'fifoo' or 'foofa' or 'fifoofa'\nmyCollection.find({\n selector: {\n name: {$regex: '.*foo.*'}\n }\n})\n.exec().then(documents => console.dir(documents));\n\n// find using a composite statement eg: $or\n// This example checks where name is either foo or if name is not existant on the document\nmyCollection.find({\n selector: {$or: [ { name: { $eq: 'foo' } }, { name: { $exists: false } }]}\n})\n.exec().then(documents => console.dir(documents));\n\n// do a case insensitive search\n// This example will match 'foo' or 'FOO' or 'FoO' etc...\nvar regexp = new RegExp('^foo$', 'i');\nmyCollection.find({\n selector: {name: {$regex: regexp}}\n})\n.exec().then(documents => console.dir(documents));\n\n// chained queries\nmyCollection.find().where('name').eq('foo')\n.exec().then(documents => console.dir(documents));\n\nNOTICE: RxQuery's are immutable\nBecause RxDB is a reactive database, we can do heavy performance-optimisation on query-results which change over time. To be able to do this, RxQuery's have to be immutable.\nThis means, when you have a RxQuery and run a .where() on it, the original RxQuery-Object is not changed. Instead the where-function returns a new RxQuery-Object with the changed where-field. Keep this in mind if you create RxQuery's and change them afterwards.\nExample:\nconst queryObject = myCollection.find().where('age').gt(18);\n// Creates a new RxQuery object, does not modify previous one\nqueryObject.sort('name');\nconst results = await queryObject.exec();\nconsole.dir(results); // result-documents are not sorted by name\n\nconst queryObjectSort = queryObject.sort('name');\nconst results = await queryObjectSort.exec();\nconsole.dir(results); // result-documents are now sorted\n\nisRxQuery\nReturns true if the given object is an instance of RxQuery. Returns false if not.\nconst is = isRxQuery(myObj);\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-attachment.html":{"url":"rx-attachment.html","title":"RxAttachment","keywords":"","body":"Attachments\nLike pouchdb, RxDB can store attachments which has a better performance and a higher quota-limit then regular data.\nYou can store string, binary files, images and whatever you want side by side with your documents.\nBefore you can use attachments, you have to ensure that the attachments-object is set in the schema of your RxCollection.\n\nconst mySchema = {\n version: 0,\n type: 'object',\n properties: {\n // .\n // .\n // .\n },\n attachments: {\n encrypted: true // if true, the attachment-data will be encrypted with the db-password\n }\n};\n\nconst myCollection = await myDatabase.collection({\n name: 'humans',\n schema: mySchema\n});\n\nputAttachment()\nAdds an attachment to a RxDocument. Returns a Promise with the new attachment.\nconst attachment = await myDocument.putAttachment({\n id, // string, name of the attachment like 'cat.jpg'\n data, // (string|Blob|Buffer) data of the attachment\n type // (string) type of the attachment-data like 'image/jpeg'\n});\n\ngetAttachment()\nReturns an RxAttachment by its id. Returns null when the attachment does not exist.\nconst attachment = myDocument.getAttachment('cat.jpg');\n\nallAttachments()\nReturns an array of all attachments of the RxDocument.\nconst attachments = myDocument.allAttachments();\n\nallAttachments$\nGets an Observable which emits a stream of all attachments from the document. Re-emits each time an attachment gets added or removed from the RxDocument.\nconst all = [];\nmyDocument.allAttachments$.subscribe(\n attachments => all = attachments\n);\n\nRxAttachment\nThe attachments of RxDB are represented by the type RxAttachment which has the following attributes/methods.\ndoc\nThe RxDocument which the attachment is assigned to.\nid\nThe id as string of the attachment.\ntype\nThe type as string of the attachment.\nlength\nThe length of the data of the attachment as number.\ndigest\nThe md5-sum of the attachments data as string.\nrev\nThe revision-number of the attachment as number.\nremove()\nRemoves the attachment. Returns a Promise that resolves when done.\nconst attachment = myDocument.getAttachment('cat.jpg');\nawait attachment.remove();\n\ngetData()\nReturns a Promise which resolves the attachment's data as Blob or Buffer. (async)\nconst attachment = myDocument.getAttachment('cat.jpg');\nconst blobBuffer = await attachment.getData();\n\ngetStringData()\nReturns a Promise which resolves the attachment's data as string.\nconst attachment = await myDocument.getAttachment('cat.jpg');\nconst data = await attachment.getStringData();\n\n\nIf you are new to RxDB, you should continue here\n"},"middleware.html":{"url":"middleware.html","title":"Middleware-hooks","keywords":"","body":"Middleware\nRxDB supports middleware-hooks like mongoose.\nMiddleware (also called pre and post hooks) are functions which are passed control during execution of asynchronous functions.\nThe hooks are specified on RxCollection-level and help to create a clear what-happens-when-structure of your code.\nHooks can be defined to run parallel or as series one after another.\nHooks can be synchronous or asynchronous when they return a Promise.\nTo stop the operation at a specific hook, throw an error.\nList\nRxDB supports the following hooks:\n\npreInsert\npostInsert\npreSave\npostSave\npreRemove\npostRemove\npostCreate\n\nWhy is there no validate-hook?\nDifferent to mongoose, the validation on document-data is running on the field-level for every change to a document.\nThis means if you set the value lastName of a RxDocument, then the validation will only run on the changed field, not the whole document.\nTherefore it is not useful to have validate-hooks when a document is written to the database.\nUse Cases\nMiddleware are useful for atomizing model logic and avoiding nested blocks of async code.\nHere are some other ideas:\n\ncomplex validation\nremoving dependent documents\nasynchronous defaults\nasynchronous tasks that a certain action triggers\ntriggering custom events\nnotifications\n\nUsage\nAll hooks have the plain data as first parameter, and all but preInsert also have the RxDocument-instance as second parameter. If you want to modify the data in the hook, change attributes of the first parameter.\nAll hook functions are also this-bind to the RxCollection-instance.\nInsert\nAn insert-hook receives the data-object of the new document.\nlifecycle\n\nRxCollection.insert is called\npreInsert series-hooks\npreInsert parallel-hooks\nschema validation runs\nnew document is written to database\npostInsert series-hooks\npostInsert parallel-hooks\nevent is emitted to RxDatabase and RxCollection\n\npreInsert\n// series\nmyCollection.preInsert(function(plainData){\n // set age to 50 before saving\n plainData.age = 50;\n}, false);\n\n// parallel\nmyCollection.preInsert(function(plainData){\n\n}, true);\n\n// async\nmyCollection.preInsert(function(plainData){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\n// stop the insert-operation\nmyCollection.preInsert(function(plainData){\n throw new Error('stop');\n}, false);\n\npostInsert\n// series\nmyCollection.postInsert(function(plainData, rxDocument){\n\n}, false);\n\n// parallel\nmyCollection.postInsert(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.postInsert(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\nSave\nA save-hook receives the document which is saved.\nlifecycle\n\nRxDocument.save is called\npreSave series-hooks\npreSave parallel-hooks\nupdated document is written to database\npostSave series-hooks\npostSave parallel-hooks\nevent is emitted to RxDatabase and RxCollection\n\npreSave\n// series\nmyCollection.preSave(function(plainData, rxDocument){\n // modify anyField before saving\n plainData.anyField = 'anyValue';\n}, false);\n\n// parallel\nmyCollection.preSave(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.preSave(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\n// stop the save-operation\nmyCollection.preSave(function(plainData, rxDocument){\n throw new Error('stop');\n}, false);\n\npostSave\n// series\nmyCollection.postSave(function(plainData, rxDocument){\n\n}, false);\n\n// parallel\nmyCollection.postSave(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.postSave(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\nRemove\nAn remove-hook receives the document which is removed.\nlifecycle\n\nRxDocument.remove is called\npreRemove series-hooks\npreRemove parallel-hooks\ndeleted document is written to database\npostRemove series-hooks\npostRemove parallel-hooks\nevent is emitted to RxDatabase and RxCollection\n\npreRemove\n// series\nmyCollection.preRemove(function(plainData, rxDocument){\n\n}, false);\n\n// parallel\nmyCollection.preRemove(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.preRemove(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\n// stop the remove-operation\nmyCollection.preRemove(function(plainData, rxDocument){\n throw new Error('stop');\n}, false);\n\npostRemove\n// series\nmyCollection.postRemove(function(plainData, rxDocument){\n\n}, false);\n\n// parallel\nmyCollection.postRemove(function(plainData, rxDocument){\n\n}, true);\n\n// async\nmyCollection.postRemove(function(plainData, rxDocument){\n return new Promise(res => setTimeout(res, 100));\n}, false);\n\npostCreate\nThis hook is called whenever a RxDocument is constructed.\nYou can use postCreate to modify every RxDocument-instance of the collection.\nThis adds a flexible way to add specify behavior to every document. You can also use it to add custom getter/setter to documents. PostCreate-hooks cannot be asynchronous.\nmyCollection.postCreate(function(plainData, rxDocument){\n Object.defineProperty(rxDocument, 'myField', {\n get: () => 'foobar',\n });\n});\n\nconst doc = await myCollection.findOne().exec();\n\nconsole.log(doc.myField);\n// 'foobar'\n\nNotice: This hook does not run on already created or cached documents. Make sure to add postCreate-hooks before interacting with the collection.\n\nIf you are new to RxDB, you should continue here\n"},"orm.html":{"url":"orm.html","title":"ORM/DRM","keywords":"","body":"Object-Data-Relational-Mapping\nLike mongoose, RxDB has ORM-capabilities which can be used to add specific behavior to documents and collections.\nstatics\nStatics are defined collection-wide and can be called on the collection.\nAdd statics to a collection\nTo add static functions, pass a statics-object when you create your collection. The object contains functions, mapped to their function-names.\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n statics: {\n scream: function(){\n return 'AAAH!!';\n }\n }\n});\n\nconsole.log(heroes.scream());\n// 'AAAH!!'\n\nYou can also use the this-keyword which resolves to the collection:\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n statics: {\n whoAmI: function(){\n return this.name;\n }\n }\n});\nconsole.log(heroes.whoAmI());\n// 'heroes'\n\ninstance-methods\nInstance-methods are defined collection-wide. They can be called on the RxDocuments of the collection.\nAdd instance-methods to a collection\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n methods: {\n scream: function(){\n return 'AAAH!!';\n }\n }\n});\nconst doc = await heroes.findOne().exec();\nconsole.log(doc.scream());\n// 'AAAH!!'\n\nHere you can also use the this-keyword:\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n methods: {\n whoAmI: function(){\n return 'I am ' + this.name + '!!';\n }\n }\n});\nawait heroes.insert({\n name: 'Skeletor'\n});\nconst doc = await heroes.findOne().exec();\nconsole.log(doc.whoAmI());\n// 'I am Skeletor!!'\n\nattachment-methods\nAttachment-methods are defined collection-wide. They can be called on the RxAttachemnts of the RxDocuments of the collection.\nconst heroes = await myDatabase.collection({\n name: 'heroes',\n schema: mySchema,\n attachments: {\n scream: function(){\n return 'AAAH!!';\n }\n }\n});\nconst doc = await heroes.findOne().exec();\nconst attachment = await doc.putAttachment({\n id: 'cat.txt',\n data: 'meow I am a kitty',\n type: 'text/plain'\n});\nconsole.log(attachment.scream());\n// 'AAAH!!'\n\n\nIf you are new to RxDB, you should continue here\n"},"population.html":{"url":"population.html","title":"Population","keywords":"","body":"Population\nThere are no joins in RxDB but sometimes we still want references to documents in other collections. This is where population comes in. You can specify a relation from one RxDocument to another RxDocument in the same or another RxCollection of the same database.\nThen you can get the referenced document with the population-getter.\nThis works exactly like population with mongoose.\nSchema with ref\nThe ref-keyword describes to which collection the field-value belongs to.\nexport const refHuman = {\n title: 'human related to other human',\n version: 0,\n properties: {\n name: {\n primary: true,\n type: 'string'\n },\n bestFriend: {\n ref: 'human', // refers to collection human\n type: 'string' // ref-values must always be string or ['string','null'] (primary of foreign RxDocument) \n }\n }\n};\n\nYou can also have a one-to-many reference by using a string-array.\nexport const schemaWithOneToManyReference = {\n version: 0,\n type: 'object',\n properties: {\n name: {\n type: 'string',\n primary: true\n },\n friends: {\n type: 'array',\n ref: 'human',\n items: {\n type: 'string'\n }\n }\n }\n};\n\npopulate()\nvia method\nTo get the referred RxDocument, you can use the populate()-method.\nIt takes the field-path as attribute and returns a Promise which resolves to the foreign document or null if not found.\nawait humansCollection.insert({\n name: 'Alice',\n bestFriend: 'Carol'\n});\nawait humansCollection.insert({\n name: 'Bob',\n bestFriend: 'Alice'\n});\nconst doc = await humansCollection.findOne('Bob').exec();\nconst bestFriend = await doc.populate('bestFriend');\nconsole.dir(bestFriend); //> RxDocument[Alice]\n\nvia getter\nYou can also get the populated RxDocument with the direct getter. Therefore you have to add an underscore suffix _ to the fieldname.\nThis works also on nested values.\nawait humansCollection.insert({\n name: 'Alice',\n bestFriend: 'Carol'\n});\nawait humansCollection.insert({\n name: 'Bob',\n bestFriend: 'Alice'\n});\nconst doc = await humansCollection.findOne('Bob').exec();\nconst bestFriend = await doc.bestFriend_; // notice the underscore_\nconsole.dir(bestFriend); //> RxDocument[Alice]\n\nExample with nested reference\nconst myCollection = await myDatabase.collection({\n name: 'human',\n schema: {\n version: 0,\n type: 'object',\n properties: {\n name: {\n type: 'string'\n },\n family: {\n type: 'object',\n properties: {\n mother: {\n type: 'string',\n ref: 'human'\n }\n }\n }\n }\n }\n});\n\nconst mother = await myDocument.family.mother_;\nconsole.dir(mother); //> RxDocument\n\nExample with array\nconst myCollection = await myDatabase.collection({\n name: 'human',\n schema: {\n version: 0,\n type: 'object',\n properties: {\n name: {\n type: 'string'\n },\n friends: {\n type: 'array',\n ref: 'human',\n items: {\n type: 'string'\n }\n }\n }\n }\n});\n\n//[insert other humans here]\n\nawait myCollection.insert({\n name: 'Alice',\n friends: [\n 'Bob',\n 'Carol',\n 'Dave'\n ]\n});\n\nconst doc = await humansCollection.findOne('Alice').exec();\nconst friends = await myDocument.friends_;\nconsole.dir(friends); //> Array.\n\n\nIf you are new to RxDB, you should continue here\n"},"data-migration.html":{"url":"data-migration.html","title":"DataMigration","keywords":"","body":"DataMigration\nImagine you have your awesome messenger-app distributed to many users. After a while, you decide that in your new version, you want to change the schema of the messages-collection. Instead of saving the message-date like 2017-02-12T23:03:05+00:00 you want to have the unix-timestamp like 1486940585 to make it easier to compare dates. To accomplish this, you change the schema and increase the version-number and you also change your code where you save the incoming messages. But one problem remains: what happens with the messages which are already saved on the user's device in the old schema?\nWith RxDB you can provide migrationStrategies for your collections that automatically (or on call) transform your existing data from older to newer schemas. This assures that the client's data always matches your newest code-version.\nProviding strategies\nUpon creation of a collection, you have to provide migrationStrategies when your schema's version-number is greater than 0. To do this, you have to add an object to the migrationStrategies property where a function for every schema-version is assigned. A migrationStrategy is a function which gets the old document-data as a parameter and returns the new, transformed document-data. If the strategy returns null, the document will be removed instead of migrated.\nmyDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n migrationStrategies: {\n // 1 means, this transforms data from version 0 to version 1\n 1: function(oldDoc){\n oldDoc.time = new Date(oldDoc.time).getTime(); // string to unix\n return oldDoc;\n }\n }\n});\n\nAsynchronous strategies can also be used:\nmyDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n migrationStrategies: {\n 1: function(oldDoc){\n oldDoc.time = new Date(oldDoc.time).getTime(); // string to unix\n return oldDoc;\n },\n /**\n * 2 means, this transforms data from version 1 to version 2\n * this returns a promise which resolves with the new document-data\n */\n 2: function(oldDoc){\n // in the new schema (version: 2) we defined 'senderCountry' as required field (string)\n // so we must get the country of the message-sender from the server\n const coordinates = oldDoc.coordinates;\n return fetch('http://myserver.com/api/countryByCoordinates/'+coordinates+'/')\n .then(response => {\n const response = response.json();\n oldDoc.senderCountry=response;\n return oldDoc;\n });\n }\n }\n});\n\nyou can also filter which documents should be migrated:\nmyDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n migrationStrategies: {\n // 1 means, this transforms data from version 0 to version 1\n 1: function(oldDoc){\n oldDoc.time = new Date(oldDoc.time).getTime(); // string to unix\n return oldDoc;\n },\n /**\n * this removes all documents older then 2017-02-12\n * they will not appear in the new collection\n */\n 2: function(oldDoc){\n if(oldDoc.time \nautoMigrate\nBy default, the migration automatically happens when the collection is created. If you have lots of data or the migrationStrategies take a long time, it might be better to start the migration 'by hand' and show the migration-state to the user as a loading-bar.\nconst messageCol = await myDatabase.collection({\n name: 'messages',\n schema: messageSchemaV1,\n autoMigrate: false, // console.dir(state),\n error => console.error(error),\n done => console.log('done')\n);\n\n// the emitted states look like this:\n{\n done: false, // true if finished\n total: 50, // amount of documents which must be migrated\n handled: 0, // amount of handled docs\n success: 0, // handled docs which succeeded\n deleted: 0, // handled docs which got deleted\n percent: 0 // percentage\n}\n\nIf you don't want to show the state to the user, you can also use .migratePromise():\n const migrationPromise = messageCol.migratePromise(10);\n await migratePromise;\n\nHint\nIf your migration takes a long time, combine it with the leaderElection to make sure you don't waste your users' resources by running it in 2 open tabs.\n\nIf you are new to RxDB, you should continue here\n"},"leader-election.html":{"url":"leader-election.html","title":"LeaderElection","keywords":"","body":"Leader-Election\nRxDB comes with a leader-election which elects a leading instance between different instances in the same javascript runtime.\nBefore you read this, please check out on how many of your open browser-tabs you have opened the same website more than once. Count them, I will wait..\nSo if you would now inspect the traffic that theses open tabs produce, you can see that many of them send exact the same data over wire for every tab. No matter if the data is sent with an open websocket or by polling.\nUse-case-example\nImagine we have a website which displays the current temperature of the visitors location in various charts, numbers or heatmaps. To always display the live-data, the website opens a websocket to our API-Server which sends the current temperature every 10 seconds. Using the way most sites are currently build, we can now open it in 5 browser-tabs and it will open 5 websockets which send data 6*5=30 times per minute. This will not only waste the power of your clients device, but also wastes your api-servers resources by opening redundant connections.\nSolution\nThe solution to this redundancy is the usage of a leader-election-algorithm which makes sure that always exactly one tab is managing the remote-data-access. The managing tab is the elected leader and stays leader until it is closed. No matter how many tabs are opened or closed, there must be always exactly one leader.\nYou could now start implementing a messaging-system between your browser-tabs, hand out which one is leader, solve conflicts and reassign a new leader when the old one 'dies'.\nOr just use RxDB which does all these things for you.\nCode-example\nTo make it easy, here is an example where the temperature is pulled every ten seconds and saved to a collection. The pulling starts at the moment where the opened tab becomes the leader.\nconst db = await createRxDatabase({\n name: 'weatherDB',\n adapter: 'localstorage',\n password: 'myPassword',\n multiInstance: true\n});\nawait db.collection({\n name: 'temperature',\n schema: mySchema\n});\n\ndb.waitForLeadership()\n .then(() => {\n console.log('Long lives the king!'); // {\n const temp = await fetch('https://example.com/api/temp/');\n db.temperature.insert({\n degrees: temp,\n time: new Date().getTime()\n });\n }, 1000 * 10);\n });\n\nLive-Example\nIn this example the leader is marked with the crown ♛\n\nTry it out\nRun the vanillaJS-example where the leading tab is marked with a crown on the top-right-corner.\nNotice\nThe leader election is implemented via the broadcast-channel module.\nThe leader is elected between different processes on the same javascript-runtime. Like multiple tabs in the same browser or mupltiple NodeJs-processes on the same machine. It will not run between different replicated instances.\n\nIf you are new to RxDB, you should continue here\n"},"replication.html":{"url":"replication.html","title":"Replication CouchDB","keywords":"","body":"Replication\nOne of the most powerful features with CouchDB, PouchDB and RxDB is sync.\nYou can sync every RxCollection with another RxCollection, a PouchDB-instance or a remote pouch/couch-DB.\nRx.Collection.sync()\nTo replicate the collection with another instance, use RxCollection.sync().\nIt basically does the same as pouchdb-sync but also adds event-handlers to make sure that change-events will be recognized in the internal event-stream.\n\n// you need these plugins to sync\naddRxPlugin(require('pouchdb-adapter-http')); // enable syncing over http (remote database)\n\nconst replicationState = myCollection.sync({\n remote: 'http://localhost:10102/db/', // remote database. This can be the serverURL, another RxCollection or a PouchDB-instance\n waitForLeadership: true, // (optional) [default=true] to save performance, the sync starts on leader-instance only\n direction: { // direction (optional) to specify sync-directions\n pull: true, // default=true\n push: true // default=true\n },\n options: { // sync-options (optional) from https://pouchdb.com/api.html#replication\n live: true,\n retry: true\n },\n query: myCollection.find().where('age').gt(18) // query (optional) only documents that match that query will be synchronised\n});\n\nLimitations\nSince CouchDB only allows synchronization through HTTP1.1 long polling requests there is a limitation of 6 active synchronization connections before the browser prevents sending any further request. This limitation is at the level of browser per tab per domain (some browser, especially older ones, might have a different limit, see here).\nSince this limitation is at the browser level there are several solutions:\n 1) Use a proxy (ex: HAProxy) between the browser and CouchDB and configure it to use HTTP2.0, since HTTP2.0 doesn't have this limitation (RECOMMENDED)\n 2) Use only a single database for all entities and set a \"type\" field for each of the documents\n 3) Create multiple subdomains for CouchDB and use a max of 6 active synchronizations (or less) for each\nRxReplicationState\nThe method RxCollection.sync() returns a RxReplicationState which can be used to observe events via rxjs-observables and to cancel the replication.\nchange$\nEmits the change-events every time some documents get replicated.\nreplicationState.change$.subscribe(change => console.dir(change));\n\ndocs$\nEmits each replicated document-data.\nreplicationState.docs$.subscribe(docData => console.dir(docData));\n\ndenied$\nEmits when a document failed to replicate (e.g. due to permissions).\nreplicationState.denied$.subscribe(docData => console.dir(docData));\n\nactive$\nEmits true or false depending if the replication is transmitting data. A false value does not imply the connection has died.\nreplicationState.active$.subscribe(active => console.dir(active));\n\nalive$\nEmits true or false depending if the replication is alive - data is transmitting properly between databases. A false value implies the connection has died -if you're replicating to a remote database, for example. It will only emit false if there are pending changes that couldn't be replicated -it won't emit immediately after the connection dies.\nreplicationState.alive$.subscribe(alive => console.dir(alive));\n\ncomplete$\nEmits true or false depending if the replication is completed.\nIf you do a live: true-sync (default) the replication never completes.\nOnly one-time-replications will complete.\nreplicationState.complete$.subscribe(completed => console.dir(completed));\n\nerror$\nIf errors occur during the replication, they will get emitted here.\nreplicationState.error$.subscribe(error => console.dir(error));\n\ncancel()\nCalling this method will cancel the replication.\nawait replicationState.cancel(); // cancel() is async\n\n\nIf you are new to RxDB, you should continue here\n"},"replication-graphql.html":{"url":"replication-graphql.html","title":"Replication GraphQL","keywords":"","body":"Replication with GraphQL\nWith RxDB you can do a two-way replication with a GraphQL endpoint. This allows you to replicate data from the server into the client-side database and then query and modify it in realtime.\nWhen the user is offline, you still can use the data and later sync it with the server when the client is online again like in other Offline-First systems.\nComparison to Couchdb-Sync\nPros:\n\nThe GraphQL-replication is faster and needs less resources\nYou do not need a couchdb-compliant endpoint, only a GraphQL-endpoint\n\nCons:\n\nYou can not replicate multiple databases with each other\nIt is assumed that the GraphQL-server is the single source of truth\nYou have to setup things at the server side while with couchdb-sync you only have to start a server\n\nNOTICE: To play around, check out the full example of the RxDB GraphQL replication with server and client\nUsage\nData Design\nTo use the GraphQL-replication you first have to ensure that your data is sortable by update time and your documents never get deleted, only have a deleted-flag set.\nFor example if your documents look like this,\n{\n \"id\": \"foobar\",\n \"name\": \"Alice\",\n \"lastName\": \"Wilson\",\n \"updatedAt\": 1564783474,\n \"deleted\": false\n}\n\nThen your data is always sortable by updatedAt. This ensures that when RxDB fetches 'new' changes, it can send the latest updatedAt to the GraphQL-endpoint and then recieve all newer documents.\nDeleted documents still exist but have deleted: true set. This ensures that when RxDB fetches new documents, even the deleted documents are send back and can be known at the client-side.\nGraphQL Server\nAt the server-side, there must exist an endpoint which returns newer rows when the last replicated document is used as input. For example lets say you create a Query feedForRxDBReplication which returns a list of newer documents, related to the given one, sorted by updatedAt.\nFor the push-replication, you also need a modifier which lets RxDB update data with a changed document as input.\ninput HumanInput {\n id: ID!,\n name: String!,\n lastName: String!,\n updatedAt: Int!,\n deleted: Boolean!\n}\ntype Human {\n id: ID!,\n name: String!,\n lastName: String!,\n updatedAt: Int!,\n deleted: Boolean!\n}\ntype Query {\n feedForRxDBReplication(lastId: String!, minUpdatedAt: Int!, limit: Int!): [Human!]!\n}\ntype Mutation {\n setHuman(human: HumanInput): Human\n}\nThe resolver would then look like:\nconst rootValue = {\n feedForRxDBReplication: args => {\n // sorted by updatedAt first and the id as second\n const sortedDocuments = documents.sort((a, b) => {\n if (a.updatedAt > b.updatedAt) return 1;\n if (a.updatedAt b.id) return 1;\n if (a.id {\n if (doc.updatedAt args.minUpdatedAt) return true;\n if (doc.updatedAt === args.minUpdatedAt) {\n // if updatedAt is equal, compare by id\n if (doc.id > args.lastId) return true;\n else return false;\n }\n });\n\n // only return some documents in one batch\n const limited = filterForMinUpdatedAtAndId.slice(0, args.limit);\n\n return limited;\n },\n // a modifier that updates the state on the server\n setHuman: args => {\n const doc = args.human;\n documents = documents.filter(d => d.id !== doc.id);\n doc.updatedAt = Math.round(new Date().getTime() / 1000);\n documents.push(doc);\n return doc;\n },\n}\n\nRxDB Client\nImport the plugin\nThe graphql-replication is not part of the default-build of RxDB. You have to import the plugin before you can use it.\nimport { RxDBReplicationGraphQLPlugin } from 'rxdb/plugins/replication-graphql';\naddRxPlugin(RxDBReplicationGraphQLPlugin);\n\nPull replication\nFor the pull-replication, you first need a pullQueryBuilder. This is a function that gets the last replicated document as input and returns an object with a GraphQL-query and its variables (or a promise that resolves to the same object). RxDB will use the query builder to construct what is later send to the GraphQL endpoint.\nconst pullQueryBuilder = doc => {\n if (!doc) {\n // the first pull does not have a start-document\n doc = {\n id: '',\n updatedAt: 0\n };\n }\n const query = `{\n feedForRxDBReplication(lastId: \"${doc.name}\", minUpdatedAt: ${doc.updatedAt}, limit: 5) {\n id,\n name,\n lastName,\n updatedAt\n deleted\n }\n }`;\n return {\n query,\n variables: {}\n };\n};\n\nWith the queryBuilder, you can then setup the pull-replication.\nconst replicationState = myCollection.syncGraphQL({\n url: 'http://example.com/graphql', // url to the GraphQL endpoint\n pull: {\n queryBuilder: pullQueryBuilder, // the queryBuilder from above\n modifier: doc => doc // (optional) modifies all pulled documents before they are handeled by RxDB. Returning null will skip the document.\n },\n deletedFlag: 'deleted', // the flag which indicates if a pulled document is deleted\n live: true // if this is true, rxdb will watch for ongoing changes and sync them, when false, a one-time-replication will be done\n});\n\nPush replication\nFor the push-replication, you also need a queryBuilder. Here, the builder recieves a changed document as input which has to be send to the server. It also returns a GraphQL-Query and its data.\nconst pushQueryBuilder = doc => {\n const query = `\n mutation CreateHuman($human: HumanInput) {\n setHuman(human: $human) {\n id,\n updatedAt\n }\n }\n `;\n const variables = {\n human: doc\n };\n return {\n query,\n variables\n };\n};\n\nWith the queryBuilder, you can then setup the push-replication.\nconst replicationState = myCollection.syncGraphQL({\n url: 'http://example.com/graphql', // url to the GraphQL endpoint\n push: {\n queryBuilder: pushQueryBuilder, // the queryBuilder from above\n batchSize: 5, // (optional) amount of documents that will be send in one batch\n modifier: d => d // (optional) modifies all pushed documents before they are send to the GraphQL endpoint. Returning null will skip the document.\n },\n deletedFlag: 'deleted', // the flag which indicates if a pulled document is deleted\n live: true // if this is true, rxdb will watch for ongoing changes and sync them\n});\n\nOf course you can start the push- and the pull-replication in a single call to myCollection.syncGraphQL().\nUsing subscriptions\nFor the pull-replication, RxDB will run the pull-function every 10 seconds to fetch new documents from the server.\nThis means that when a change happens on the server, RxDB will, in the worst case, take 10 seconds until the changes is replicated to the client.\nTo improve this, it is recommended to setup GraphQL Subscriptions which will trigger the replication cycle when a change happens on the server.\nimport {\n SubscriptionClient\n} from 'subscriptions-transport-ws';\n\n// start the replication\nconst replicationState = myCollection.syncGraphQL({\n url: 'http://example.com/graphql',\n pull: {\n pullQueryBuilder,\n },\n deletedFlag: 'deleted', // the flag which indicates if a pulled document is deleted\n live: true,\n /**\n * Because we use the subscriptions as notifiers,\n * we can set the liveInterval to a very height value.\n */\n liveInterval: 60 * 1000\n});\n\n\n// setup the subscription client\nconst wsClient = new SubscriptionClient(\n 'ws://example.com/subscriptions', {\n reconnect: true,\n }\n);\n\nconst query = `subscription onHumanChanged {\n humanChanged {\n id\n }\n}`;\nconst changeObservable = wsClient.request({ query });\n// subscribe to all events\nchangeObservable.subscribe({\n next(data) {\n /**\n * When a change happens, call .run() on the replicationState.\n * This will trigger the pull-handler and download changes from the server.\n */\n replicationState.run();\n }\n});\n\nHelper Functions (beta)\nRxDB provides the helper functions graphQLSchemaFromRxSchema(), pullQueryBuilderFromRxSchema() and pushQueryBuilderFromRxSchema() that can be used to generate the GraphQL Schema from the RxJsonSchema. To learn how to use them, please inspect the (GraphQL Example)[https://github.com/pubkey/rxdb/tree/master/examples/graphql]\nConflict Resolution\nRxDB assumes that the Conflict Resolution will happen on the server side.\nWhen the clients sends a document to the server which causes a conflict, this has to be resolved there and then the resulting document can be synced down to RxDB. While CouchDB uses revision-flags for conflicts, you can use any logic like relying on the updatedAt date or other flags.\nRxGraphQLReplicationState\nWhen you call myCollection.syncGraphQL() it returns a RxGraphQLReplicationState which can be used to subscribe to events, for debugging or other functions.\n.isStopped()\nReturns true if the replication is stopped. This can be if a non-live replication is finished or a replication got canceled.\nreplicationState.isStopped(); // true/false\n\n.setHeaders()\nChanges the headers for the replication after it has been set up.\nreplicationState.setHeaders({\n Authorization: `...`\n});\n\n.awaitInitialReplication()\nReturns a Promise that is resolved as soon as the initial replication is done.\nawait replicationState.awaitInitialReplication();\nconsole.log('initial sync done, client data is equal to server data');\n\n.run()\nTriggers a replication cycle with the server. This is done automatically if the data changes on the client side or the pull-interval is called. This returns a Promise which is resolved when the run-cycle is done. Calling run() many times is no problem because it is queued internally.\nawait replicationState.run();\n\n.cancel()\nCancels the replication. This is done autmatically if the RxCollection or it's RxDatabase is destroyed.\nawait replicationState.cancel();\n\n.recieved$\nAn Observable that emits each document that is recieved from the endpoint.\n.send$\nAn Observable that emits each document that is send to the endpoint.\n.error$\nAn Observable that emits each error that happens during the replication. Use this if something does not work for debugging. RxDB will handle network errors automatically, other errors must be solved by the developer.\nreplicationState.error$.subscribe(error => {\n console.log('something was wrong');\n console.dir(error);\n});\n\n.canceled$\nAn Observable that emits true when the replication is canceled, false if not.\n.active$\nAn Observable that emits true when the replication is doing something, false when not.\nNOTICE: To play around, check out the full example of the RxDB GraphQL replication with server and client\n\nIf you are new to RxDB, you should continue here\n"},"in-memory.html":{"url":"in-memory.html","title":"InMemory","keywords":"","body":"InMemory Collections\nWhen you do a heavy amount of operations on a RxCollection, you might want to optimize this by using the in-memory-replication of the collection. The in-memory-replication behaves equal to the original collection but is stored in the Memory of your computer instead of the hard drive. It inherits the statics of the original collection, but not its hooks -so you should register them separately in the case you'd want them to apply.\nPros:\n\nFaster queries\nFaster writes\nQuerying works over encrypted fields\n\nCons:\n\nThe original collection has to be small enough to fit into the memory\nNo attachment-support\nInitial creation takes longer (all data is loaded from disc into the memory)\n\nencryption\nEncrypted fields are automatically decrypted inside of the memory-collection. This means you can do queries over encrypted fields.\nreplication\nThe memory-collection is two-way-replicated with its original collection. This means when you change documents on one of them, the update and the change-event will fire on both.\nRxCollection().inMemory();\nReturns a promise that resolves with another RxCollection that is the in-memory-replicated version of the original collection. The memory-collection has the same documents as it's parent and also shares the same event-stream.\n\n// IMPORTANT: You have to add the memory-adapter before you can use inMemory-Collections\n// RUN 'npm install pouchdb-adapter-memory --save'\nimport PouchAdapterMemory from 'pouchdb-adapter-memory';\naddRxPlugin(PouchAdapterMemory);\n\nconst memCol = await myCollection.inMemory();\n\n// now u can use memCol as it would be myCollection\nconst docs = await memCol.find().exec(); // has same result as on the original collection\n\nRxCollection().awaitPersistence()\nWhen you do a write into the inMemoryCollection, it takes some time until the change is replicated at the parents collections.\nTo know when you can be sure that all writes have been replicated, call awaitPersistence()\nconst memCol = await myCollection.inMemory();\n\nawait memCol.insert({foo: 'bar'});\n\nawait memCol.awaitPersistence(); // after this you can be sure that everything is replicated\n\n\nIf you are new to RxDB, you should continue here\n"},"query-cache.html":{"url":"query-cache.html","title":"QueryCache","keywords":"","body":"QueryCache\nRxDB uses a QueryCache which optimizes the reuse of queries at runtime. This makes sense especially when RxDB is used in UI-applications where people move for- and backwards on different routes or pages and the same queries are used many times. Because of the event-reduce algorithm cached queries are even valuable for optimization, when changes to the database occur between now and the last execution.\nCache Replacement Policy\nTo not let RxDB fill up all the memory, a cache replacement policy is defined that clears up the cached queries. This is implemented as a function which runs regularly, depending on when queries are created and the database is idle. The default policy should be good enough for most use cases but defining custom ones can also make sense.\nThe default policy\nThe default policy starts cleaning up queries depending on how much queries are in the cache and how much document data they contain.\n\nIt will never uncache queries that have subscribers to their results\nIt tries to always have less then 100 queries without subscriptions in the cache.\nIt prefers to uncache queries that have never executed and are older then 30 seconds\nIt prefers to uncache queries that have not been used for longer time\n\nOther references to queries\nWith JavaScript, it is not possible to count references to variables. Therefore it might happen that an uncached RxQuery is still referenced by the users code and used to get results. This should never be a problem, uncached queries must still work. Creating the same query again however, will result in having two RxQuery instances instead of one.\nUsing a custom policy\nA cache replacement policy is a normal JavaScript function according to the type RxCacheReplacementPolicy.\nIt gets the RxCollection as first parameter and the QueryCache as second. Then it itterates over the cached RxQuery instances and uncaches the desired ones with uncacheRxQuery(rxQuery). When you create your custom policy, you should have a look at the default.\nTo apply a custom policy to a RxCollection, add the function as attribute cacheReplacementPolicy.\nconst collection = await myDatabase.collection({\n name: 'humans',\n schema: mySchema,\n cacheReplacementPolicy: function(){ /* ... */ }\n});\n\n\nIf you are new to RxDB, you should continue here\n"},"rx-local-document.html":{"url":"rx-local-document.html","title":"LocalDocuments","keywords":"","body":"Local Documents\nLocal documents are a special class of documents which are used to store local metadata.\nThey come in handy when you want to store settings or additional data next to your documents.\n\nLocal Documents can exist on RxDatabase or RxCollection\nLocal Document do not have to match the collections schema\nLocal Documents do not get replicated\nLocal Documents will not be found on queries\nLocal Documents can not have attachments\nLocal Documents will not get handled by the data-migration\n\ninsertLocal()\nCreates a local document for the database or collection. Throws if a local document with the same id already exists. Returns a Promise which resolves the new RxLocalDocument.\nconst localDoc = await myCollection.insertLocal(\n 'foobar', // id\n { // data\n foo: 'bar'\n }\n);\n\n// you can also use local-documents on a database\nconst localDoc = await myDatabase.insertLocal(\n 'foobar', // id\n { // data\n foo: 'bar'\n }\n);\n\nupsertLocal()\nCreates a local document for the database or collection if not exists. Overwrites the if exists. Returns a Promise which resolves the RxLocalDocument.\nconst localDoc = await myCollection.upsertLocal(\n 'foobar', // id\n { // data\n foo: 'bar'\n }\n);\n\ngetLocal()\nFind a RxLocalDocument by it's id. Returns a Promise which resolves the RxLocalDocument or null if not exists.\nconst localDoc = await myCollection.getLocal('foobar');\n\nRxLocalDocument\nA RxLocalDocument behaves like a normal RxDocument.\nconst localDoc = await myCollection.getLocal('foobar');\n\n// access data\nconst foo = localDoc.get('foo');\n\n// change data\nlocalDoc.set('foo', 'bar2');\nawait localDoc.save();\n\n// observe data\nlocalDoc.get$('foo').subscribe(value => { /* .. */ });\n\n// remove it\nawait localDoc.remove();\n\nNOTICE: Because the local document does not have a schema, accessing the documents data-fields via pseudo-proxy will not work.\nconst foo = localDoc.foo; // undefined\nconst foo = localDoc.get('foo'); // works!\n\nlocalDoc.foo = 'bar'; // does not work!\nlocalDoc.set('foo', 'bar'); // works\n\n\nIf you are new to RxDB, you should continue here\n"},"custom-build.html":{"url":"custom-build.html","title":"Custom Build","keywords":"","body":"Custom Build\nBy default, if you import RxDB into your javascript, a full batteries-included build will be imported. This has the advantage that you don't have to choose which things you need and which not. The disadvantage is the build-size. Often you don't need most of the functionality and you could save a lot of bandwidth by cherry-picking only the things you really need. For this, RxDB supports custom builds.\nCore\nThe core-module is the part of RxDB which is always needed to provide basic functionality. If you need a custom build, you start with the core and then add all modules that you need.\nimport {\n createRxDatabase,\n addRxPlugin\n /* ... */\n} from 'rxdb/plugins/core';\n\nrequired modules\nSome parts of RxDB are not in the core, but are required. This means they must always be overwrite by at least one plugin.\nvalidate\nThe validation-module does the schema-validation when you insert or update a RxDocument. To use RxDB you always have to add a validation-module.\nThis one is using is-my-json-valid but you can also use your own validator instead. To import the default validation-module, do this:\nimport { RxDBValidatePlugin } from 'rxdb/plugins/validate';\naddRxPlugin(RxDBValidatePlugin);\n\najv-validate\nAnother validation-module that does the schema-validation. This one is using ajv as validator which is a bit faster. Better compliant to the jsonschema-standart but also has a bigger build-size.\nimport { RxDBAjvValidatePlugin } from 'rxdb/plugins/ajv-validate';\naddRxPlugin(RxDBAjvValidatePlugin);\n\nvalidate-z-schema\nBoth is-my-json-valid and ajv-validate use eval() to perform validation which might not be wanted when 'unsafe-eval' is not allowed in Content Security Policies. This one is using z-schema as validator which doesn't use eval.\nimport { RxDBValidateZSchemaPlugin } from 'rxdb/plugins/validate-z-schema';\naddRxPlugin(RxDBValidateZSchemaPlugin);\n\nno-validate\nA validation module that does nothing at handles all data as valid. Use this as an alternative for the normal validator when you can rely on the input of the database.\nThis is meant for production to reduce the build-size, do not use this in dev-mode.\nimport { RxDBNoValidatePlugin } from 'rxdb/plugins/no-validate';\naddRxPlugin(RxDBNoValidatePlugin);\n\noptional modules\nSome modules are optional and only needed if you use their functionality.\ndev-mode\nThis plugin add many additional check and validations to RxDB and also the extendes error messages.\nThese checks increase your build size and decrease the performance.\nTherefore this plugin should always be used in development but never in production.\nimport { RxDBDevModePlugin } from 'rxdb/plugins/dev-mode';\naddRxPlugin(RxDBDevModePlugin);\n\nquery-builder\nAdds the query-builder-functionality to RxDB which allows you to run queries like myCollection.find().where('x').eq(5)\nimport { RxDBQueryBuilderPlugin } from 'rxdb/plugins/query-builder';\naddRxPlugin(RxDBQueryBuilderPlugin);\n\nmigration\nAdds the data-migration-functionality to RxDB which allows you to migrate documents when the schema changes.\nimport { RxDBMigrationPlugin } from 'rxdb/plugins/migration';\naddRxPlugin(RxDBMigrationPlugin);\n\nreplication\nAdds the replication-functionality to RxDB which allows you to replicate the database with a CouchDB compliant endpoint.\nimport { RxDBReplicationPlugin } from 'rxdb/plugins/replication';\naddRxPlugin(RxDBReplicationPlugin);\n\nreplication-graphql\nAllows you to do a replication with a GraphQL endpoint.\nSee: Replication with GraphQL\nimport { RxDBReplicationGraphQLPlugin } from 'rxdb/plugins/replication-graphql';\naddRxPlugin(RxDBReplicationGraphQLPlugin);\n\nattachments\nAdds the attachments-functionality to RxDB.\nimport { RxDBAttachmentsPlugin } from 'rxdb/plugins/attachments';\naddRxPlugin(RxDBAttachmentsPlugin);\n\nin-memory\nAdds the in-memory-replication to the collections.\nimport { RxDBInMemoryPlugin } from 'rxdb/plugins/in-memory';\naddRxPlugin(RxDBInMemoryPlugin);\n\nlocal-documents\nAdds the local-documents to the collections and databases.\nimport { RxDBLocalDocumentsPlugin } from 'rxdb/plugins/local-documents';\naddRxPlugin(RxDBLocalDocumentsPlugin);\n\njson-dump\nAdds the json import/export-functionality to RxDB.\nimport { RxDBJsonDumpPlugin } from 'rxdb/plugins/json-dump';\naddRxPlugin(RxDBJsonDumpPlugin);\n\nkey-compression\nThe keycompressor-module is needed when you have keyCompression enabled. This is done by default so make sure that you set disableKeyCompression to true when you do not have this module.\nimport { RxDBKeyCompressionPlugin } from 'rxdb/plugins/key-compression';\naddRxPlugin(RxDBKeyCompressionPlugin);\n\nleader-election\nThe leaderelection-module is needed when want to use the leaderelection.\nimport { RxDBLeaderElectionPlugin } from 'rxdb/plugins/leader-election';\naddRxPlugin(RxDBLeaderElectionPlugin);\n\nencryption\nThe encryption-module is using crypto-js and is only needed when you create your RxDB-Database with a password.\nimport { RxDBEncryptionPlugin } from 'rxdb/plugins/encryption';\naddRxPlugin(RxDBEncryptionPlugin);\n\nupdate\nThe update-module is only required when you use RxDocument.update or RxQuery.update.\nimport { RxDBUpdatePlugin } from 'rxdb/plugins/update';\naddRxPlugin(RxDBUpdatePlugin);\n\nwatch-for-changes\nWhen you write data on the internal pouchdb of a collection, by default the changeEvent will not be emitted to RxDB's changestream.\nThe watch-for-changes plugin lets you tell the collection to actively watch for changes on the pouchdb-instance whose origin is not RxDB.\nThis plugin is used internally by the replication-plugin and the in-memory-plugin.\nimport { RxDBWatchForChangesPlugin } from 'rxdb/plugins/watch-for-changes';\naddRxPlugin(RxDBWatchForChangesPlugin);\n\n// you can now call this once and then do writes on the pouchdb\nmyRxCollection.watchForChanges();\n\n// now write sth on the pouchdb\nmyRxCollection.pouch.put({/* ... */});\n\nadapter-check\nThis module add the checkAdapter-function to RxDB.\nimport { RxDBAdapterCheckPlugin } from 'rxdb/plugins/adapter-check';\naddRxPlugin(RxDBAdapterCheckPlugin);\n\nserver\nSpawns a couchdb-compatible server from a RxDatabase. Use this to replicate data from your electron-node to the browser-window. Or to fast setup a dev-environment.\nSee: Tutorial: Using the RxDB Server-Plugin\nDo never expose this server to the internet, use a couchdb-instance at production.\n// run 'npm install express-pouchdb' before you use this plugin\n\n// This plugin is not included into the default RxDB-build. You have to manually add it.\nimport { RxDBServerPlugin } from 'rxdb/plugins/server';\naddRxPlugin(RxDBServerPlugin);\n\nThird Party Plugins\n\nrxdb-utils Additional features for RxDB like models, timestamps, default values, view and more.\nrxdb-hooks A set of hooks to integrate RxDB into react applications. \n\n\nIf you are new to RxDB, you should continue here\n"},"plugins.html":{"url":"plugins.html","title":"Creating Plugins","keywords":"","body":"Creating Plugins\nCreating an own plugin is very simple. A plugin is basically an javascript-object which overwrites or extends RxDB's internal classes, prototypes and hooks.\nA basic plugins:\n\nconst myPlugin = {\n rxdb: true, // this must be true so rxdb knows that this is a rxdb-plugin and not a pouchdb-plugin\n /**\n * every value in this object can manipulate the prototype of the keynames class\n * You can manipulate every prototype in this list:\n * @link https://github.com/pubkey/rxdb/blob/master/src/plugin.ts#L22\n */\n prototypes: {\n /**\n * add a function to RxCollection so you can call 'myCollection.hello()'\n *\n * @param {object} prototype of RxCollection\n */\n RxCollection: (proto) => {\n proto.hello = function(){\n return 'world';\n };\n }\n },\n /**\n * some methods are static and can be overwritten in the overwriteable-object\n */\n overwritable: {\n validatePassword: function(password) {\n if (password && typeof password !== 'string' || password.length \nProperties\nrxdb\nThe rxdb-property signals that this plugin is and rxdb-plugin and not a pouchdb-plugin. The value should always be true.\nprototypes\nThe prototypes-property contains a function for each of RxDB's internal prototype that you want to manipulate. Each function gets the prototype-object of the corresponding class as parameter and than can modify it. You can see a list of all available prototypes here\noverwritable\nSome of RxDB's functions are not inside of a class-prototype but are static. You can set and overwrite them with the overwritable-object. You can see a list of all overwriteables here.\nhooks\nSometimes you don't want to overwrite an existing RxDB-method, but extend it. You can do this by adding hooks which will be called each time the code jumps into the hooks corresponding call. You can find a list of all hooks here here.\noptions\nRxDatabase and RxCollection have an additional options-parameter, which can be filled with any data required be the plugin.\nconst collection = myDatabase.collection({\n name: 'foo'.\n schema: mySchema,\n options: { // anything can be passed into the options\n foo: ()=>'bar'\n }\n})\n\n// Afterwards you can use theses options in your plugin.\n\ncollection.options.foo(); // 'bar'\n\n\nIf you are new to RxDB, you should continue here\n"},"adapters.html":{"url":"adapters.html","title":"Adapters","keywords":"","body":"Adapters\nRxDB itself is not a self-contained database. It uses adapters that define where the data is stored. Depending on which environment you work in, you can choose between different adapters. For example in the browser you want to store the data inside of IndexedDB but on NodeJs you want to store the data on the filesystem.\nThis page is an overview over the different adapters with recommendations on what to use where.\nPlease always ensure that your pouchdb adapter-version is the same as pouchdb-core in the rxdb package.json. Otherwise you might have strange problems\nAny environment\nMemory\nIn any environment, you can use the memory-adapter. It stores the data in the javascript runtime memory. This means it is not persistent and the data is lost when the process terminates.\nUse this adapter when:\n\nYou want to have a really good performance\nYou do not want persistent state, for example in your test suite\n\n// npm install pouchdb-adapter-memory --save\naddRxPlugin(require('pouchdb-adapter-memory'));\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: 'memory' // the name of your adapter\n});\n\nMemdown\nWith RxDB you can also use adapters that implement abstract-leveldown like the memdown-adapter.\n// npm install memdown --save\n// npm install pouchdb-adapter-leveldb --save\naddRxPlugin(require('pouchdb-adapter-leveldb')); // leveldown adapters need the leveldb plugin to work\n\nconst memdown = require('memdown');\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: memdown // the full leveldown-module\n});\n\nBrowser\nIndexedDB\nThe IndexedDB adapter stores the data inside of IndexedDB use this in browsers environments as default.\n// npm install pouchdb-adapter-idb --save\naddRxPlugin(require('pouchdb-adapter-idb'));\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: 'idb' // the name of your adapter\n});\n\nIndexedDB (new)\nA reimplementation of the indexeddb adapter which uses native secondary indexes. Should have a much better performance but can behave different on some edge cases.\n// npm install pouchdb-adapter-indexeddb --save\naddRxPlugin(require('pouchdb-adapter-indexeddb'));\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: 'indexeddb' // the name of your adapter\n});\n\nWebsql\nThis adapter stores the data inside of websql. It has a different performance behavior. Websql is deprecated. You should not use the websql adapter unless you have a really good reason.\n// npm install pouchdb-adapter-websql --save\naddRxPlugin(require('pouchdb-adapter-websql'));\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: 'websql' // the name of your adapter\n});\n\nNodeJS\nleveldown\nThis adapter uses a LevelDB C++ binding to store that data on the filesystem. It has the best performance compared to other filesystem adapters. This adapter can not be used when multiple nodejs-processes access the same filesystem folders for storage.\n// npm install leveldown --save\n// npm install pouchdb-adapter-leveldb --save\naddRxPlugin(require('pouchdb-adapter-leveldb')); // leveldown adapters need the leveldb plugin to work\nconst leveldown = require('leveldown');\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: leveldown // the full leveldown-module\n});\n\n// or use a specific folder to store the data\nconst database = await createRxDatabase({\n name: '/root/user/project/mydatabase',\n adapter: leveldown // the full leveldown-module\n});\n\nNode-Websql\nThis adapter uses the node-websql-shim to store data on the filesystem. It's advantages are that it does not need a leveldb build and it can be used when multiple nodejs-processes use the same database-files.\n// npm install pouchdb-adapter-node-websql --save\naddRxPlugin(require('pouchdb-adapter-node-websql'));\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: 'websql' // the name of your adapter\n});\n\n// or use a specific folder to store the data\nconst database = await createRxDatabase({\n name: '/root/user/project/mydatabase',\n adapter: 'websql' // the name of your adapter\n});\n\nReact-Native\nreact-native-sqlite\nUses ReactNative SQLite as storage. Claims to be much faster than the asyncstorage adapter.\nTo use it, you have to do some steps from this tutorial.\nFirst install pouchdb-adapter-react-native-sqlite and react-native-sqlite-2.\nnpm install pouchdb-adapter-react-native-sqlite react-native-sqlite-2\n\nThen you have to link the library.\nreact-native link react-native-sqlite-2\n\nYou also have to add some polyfills which are need but not included in react-native.\nnpm install base-64 events\n\nimport { decode, encode } from 'base-64'\n\nif (!global.btoa) {\n global.btoa = encode;\n}\n\nif (!global.atob) {\n global.atob = decode;\n}\n\n// Avoid using node dependent modules\nprocess.browser = true;\n\nThen you can use it inside of your code.\nimport { addRxPlugin, createRxDatabase } from 'rxdb';\nimport SQLite from 'react-native-sqlite-2'\nimport SQLiteAdapterFactory from 'pouchdb-adapter-react-native-sqlite'\n\nconst SQLiteAdapter = SQLiteAdapterFactory(SQLite)\n\naddRxPlugin(SQLiteAdapter);\naddRxPlugin(require('pouchdb-adapter-http'));\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: 'react-native-sqlite' // the name of your adapter\n});\n\nasyncstorage\nUses react-native's asyncstorage.\nNotice: There are known problems with this adapter and it is not recommended to use it.\n// npm install pouchdb-adapter-asyncstorage --save\naddRxPlugin(require('pouchdb-adapter-asyncstorage'));\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: 'node-asyncstorage' // the name of your adapter\n});\n\nasyncstorage-down\nA leveldown adapter that stores on asyncstorage.\n// npm install pouchdb-adapter-asyncstorage-down --save\naddRxPlugin(require('pouchdb-adapter-leveldb')); // leveldown adapters need the leveldb plugin to work\n\nconst asyncstorageDown = require('asyncstorage-down');\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: asyncstorageDown // the full leveldown-module\n});\n\nCordova / Phonegap\ncordova-sqlite\nUses cordova's global cordova.sqlitePlugin.\n// npm install pouchdb-adapter-cordova-sqlite --save\naddRxPlugin(require('pouchdb-adapter-cordova-sqlite'));\n\nconst database = await createRxDatabase({\n name: 'mydatabase',\n adapter: 'cordova-sqlite' // the name of your adapter\n});\n\n\nIf you are new to RxDB, you should continue here\n"},"tutorials/typescript.html":{"url":"tutorials/typescript.html","title":"Use RxDB with Typescript","keywords":"","body":"Using RxDB with TypeScript\n\nIn this tutorial you learn how to use RxDB with TypeScript.\nWe will create a basic database with one collection and several ORM-methods, fully typed!\nRxDB directly comes with it's typings and you do not have to install anything else, however the latest version of RxDB (v9+) requires that you are using Typescript v3.8 or higher.\nOur way to go is\n\nFirst define how the documents look like\nThen define how the collections look like\nThen define how the database looks like\n\nDeclare the types\nFirst you import the types from RxDB.\nimport {\n createRxDatabase,\n RxDatabase,\n RxCollection,\n RxJsonSchema,\n RxDocument,\n} from 'rxdb';\n\nThen you can declare the base-type for your document. The base-type is basically the typescript-representation of the jsonschema of the collection. If you have many collections, you could also generate the base-type with json-schema-to-typescript\ntype HeroDocType = {\n passportId: string;\n firstName: string;\n lastName: string;\n age?: number; // optional\n};\n\nWe also add some ORM-methods for the document.\ntype HeroDocMethods = {\n scream: (v: string) => string;\n};\n\nWe can merge these into our HeroDocument.\ntype HeroDocument = RxDocument;\n\nNow we can define type for the collection which contains the documents.\n\n// we declare one static ORM-method for the collection\ntype HeroCollectionMethods = {\n countAllDocuments: () => Promise;\n}\n\n// and then merge all our types\ntype HeroCollection = RxCollection;\n\nBefore we can define the database, we make a helper-type which contains all collections of it.\ntype MyDatabaseCollections = {\n heroes: HeroCollection\n}\n\nNow the database.\ntype MyDatabase = RxDatabase;\n\nUsing the types\nNow that we have declare all our types, we can use them.\n\n/**\n * create database and collections\n */\nconst myDatabase: MyDatabase = await createRxDatabase({\n name: 'mydb',\n adapter: 'memory'\n});\n\nconst heroSchema: RxJsonSchema = {\n title: 'human schema',\n description: 'describes a human being',\n version: 0,\n keyCompression: true,\n type: 'object',\n properties: {\n passportId: {\n type: 'string',\n primary: true\n },\n firstName: {\n type: 'string'\n },\n lastName: {\n type: 'string'\n },\n age: {\n type: 'integer'\n }\n },\n required: ['firstName', 'lastName']\n};\n\nconst heroDocMethods: HeroDocMethods = {\n scream: function(this: HeroDocument, what: string) {\n return this.firstName + ' screams: ' + what.toUpperCase();\n }\n};\n\nconst heroCollectionMethods: HeroCollectionMethods = {\n countAllDocuments: async function(this: HeroCollection) {\n const allDocs = await this.find().exec();\n return allDocs.length;\n }\n};\n\nawait myDatabase.collection({\n name: 'heroes',\n schema: heroSchema,\n methods: heroDocMethods,\n statics: heroCollectionMethods\n});\n\n// add a postInsert-hook\nmyDatabase.heroes.postInsert(\n function myPostInsertHook(\n this: HeroCollection, // own collection is bound to the scope\n docData: HeroDocType, // documents data\n doc: HeroDocument // RxDocument\n ) {\n console.log('insert to ' + this.name + '-collection: ' + doc.firstName);\n },\n false // not async\n);\n\n/**\n * use the database\n */\n\n// insert a document\nconst hero: HeroDocument = await myDatabase.heroes.insert({\n passportId: 'myId',\n firstName: 'piotr',\n lastName: 'potter',\n age: 5\n});\n\n// access a property\nconsole.log(hero.firstName);\n\n// use a orm method\nhero.scream('AAH!');\n\n// use a static orm method from the collection\nconst amount: number = await myDatabase.heroes.countAllDocuments();\nconsole.log(amount);\n\n\n/**\n * clean up\n */\nmyDatabase.destroy();\n\n\nIf you are new to RxDB, you should continue here\n"},"tutorials/server.html":{"url":"tutorials/server.html","title":"Using the Server Plugin","keywords":"","body":"Using the Server Plugin\nIn this tutorial you learn how to use the server plugin and replicate data from a node-process to the client.\nThe server plugin is usefull\n\nTo simulate the couchdb in developer-mode without setting up a real one\nTo replicate data between the renderer and the node-process in an electron-app\nTo fast spin up a prototype-app without having to define an API\n\nIt should never be used openly accessible to the internet, use a couchdb-instance at production.\nIn NodeJs\nBecause the server plugin only works in node, it is not part of the default rxdb-build. You have to import it before you can use it.\nimport { addRxPlugin } from 'rxdb';\n\n// add the server-plugin\nimport { RxDBServerPlugin } from 'rxdb/plugins/server';\naddRxPlugin(RxDBServerPlugin);\n\n// add the memory-adapter\nimport * as MemoryAdapter from 'pouchdb-adapter-memory';\naddRxPlugin(MemoryAdapter);\n\nYou also have to install the module express-pouchdb which does not come with RxDB.\n npm install express-pouchdb --save\n\nNow we can create a database and a collection.\nimport { createRxDatabase } from 'rxdb';\n// create database\nconst db = await createRxDatabase({\n name: 'mydb',\n adapter: 'memory'\n});\n\n// create collection\nconst mySchema = {\n version: 0,\n type: 'object',\n properties: {\n key: {\n type: 'string',\n primary: true\n },\n value: {\n type: 'string'\n }\n }\n};\nawait db.collection({\n name: 'items',\n schema: mySchema\n});\n\n// insert one document\nawait db.items.insert({\n key: 'foo',\n value: 'bar'\n});\n\nNow we can spawn the server. Besides the RxDB specific options, you can set pouchdbExpressOptions which are defined by the express-pouchdb module.\nconst {app, server} = db.server({\n path: '/db', // (optional)\n port: 3000, // (optional)\n cors: true, // (optional), enable CORS-headers\n startServer: true // (optional), start express server\n // options of the pouchdb express server\n pouchdbExpressOptions: {\n inMemoryConfig: true, // do not write a config.json\n logPath: '/tmp/rxdb-server-log.txt' // save logs in tmp folder\n }\n});\n\nTo ensure that everything is ok,\n\nOpen http://localhost:3000/db to get the database-info\nOpen http://localhost:3000/db/items to get the collection-info\n\nServer as a part of bigger Express app\nYou can create server without starting it. It allows to use server as a part of bigger Express app.\nconst {app, server} = db.server({\n path: '/', // omitted when startServer is false and force set to /\n port: 3000, // omitted when startServer is false\n cors: false, // disable CORS-headers (default) - you probably want to configure CORS in your main app\n startServer: false // do not start express server\n});\n\nThen you can mount rxdb server express app in your express app\nconst {app, server} = db.server({\n startServer: false\n});\nconst mainApp = express();\n\n// configure CORS, other middlewares...\n\nmainApp.use('/db', app);\nmainApp.use('/', (req, res) => res.send('hello'));\nmainApp.listen(3000, () => console.log(`Server listening on port 3000`));\n\nTo ensure that everything is ok,\n\nOpen http://localhost:3000/db to get the database-info\nOpen http://localhost:3000/db/items to get the collection-info\n\nOn the client\nOn the client you can now also create a database and replicate it with our server.\nStart with creating the database and collection.\nimport { addRxPlugin, createRxDatabase } from 'rxdb';\n\n// we need the http-plugin to relicate over http\nimport * as PouchHttpPlugin from 'pouchdb-adapter-http';\naddRxPlugin(PouchHttpPlugin);\n\n\nconst clientDB = await createRxDatabase({\n name: 'clientdb',\n adapter: 'memory'\n});\n\n// create a collection\nawait clientDB.collection({\n name: 'items',\n schema: mySchema\n});\n\nNow you replicate the client collection with the server.\nclientDB.items.sync({\n remote: 'http://localhost:3000/db/items'\n});\n\nAfter the replication worked, the client has the same document.\nconst docs = await clientDB.items.find().exec();\n\n\nIf you are new to RxDB, you should continue here\n"},"questions-answers.html":{"url":"questions-answers.html","title":"Questions & Answers","keywords":"","body":"Questions and answers\nCan't change the schema\nWhen you make changes to the schema of a collection, you sometimes can get an error like\nError: collection(): another instance created this collection with a different schema.\nThis means you have created a collection before and added document-data to it.\nWhen you now just change the schema, it is likely that the new schema does not match the saved documents inside of the collection.\nThis would cause strange bugs and would be hard to debug, so RxDB check's if your schema has changed and throws an error.\nTo change the schema in production-mode, do the following\n\nIncrease the version by 1\nAdd the appropriate migrationStrategies so the saved data will be modified to match the new schema\n\nIn development-mode, the schema-change can be simplified by one of these strategies:\n\nUse the memory-adapter so your db resets on restart and your schema is not safed permanently\nCall removeRxDatabase('mydatabasename', 'adapter'); before creating a new RxDatabase-instance\nAdd a timestamp as suffix to the database-name to create a new one each run like name: 'heroesDB' + new Date().getTime()\n\n"},"contribute.html":{"url":"contribute.html","title":"Contribute","keywords":"","body":"Contribution\nWe are open to, and grateful for, any contributions made by the community.\nDeveloping\nRequirements\nBefore you can start developing, do the following:\n\nMake sure you have installed nodejs with version 7 or higher\nClone the repository git clone https://github.com/pubkey/rxdb.git\nInstall the dependencies cd rxdb && npm install\nMake sure that the tests work for you npm run test\n\nFlow\nWhile developing you should run npm run dev and leave it open in the console. This will run the unit-tests on every file-change. If you have a slow device, you can also manually run npm run test:node every time you want to check if the tests work.\nAdding tests\nBefore you start creating a bugfix or a feature, you should create a test to reproduce it. Tests are in the test/unit-folder.\nIf you want to reproduce a bug, you can modify the test in this file.\nMaking a PR\nIf you make a pull-request, ensure the following:\n\nEvery feature or bugfix must be committed together with a unit-test which ensures everything works as expected.\nDo not commit build-files (anything in the dist-folder)\nBefore you add non-trivial changes, create an issue to discuss if this will be merged and you don't waste your time.\nTo run the unit and integration-tests, do npm run test and ensure everything works as expected\n\nGetting help\nIf you need help with your contribution, ask at gitter.\nDocs\nThe source of the documentation is at the docs-src-folder.\nTo read the docs locally, run npm run docs docs:install && npm run docs:serve and open http://localhost:4000/\nThank you for contributing!\n"}}} \ No newline at end of file diff --git a/docs/tutorials/server.html b/docs/tutorials/server.html index 88cea0b6f89..5dce5020a92 100644 --- a/docs/tutorials/server.html +++ b/docs/tutorials/server.html @@ -1029,6 +1029,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1040,7 +1053,7 @@
  • -
  • +
  • @@ -1053,7 +1066,7 @@
  • -
  • +
  • @@ -1066,7 +1079,7 @@
  • -
  • +
  • @@ -1079,7 +1092,7 @@
  • -
  • +
  • @@ -1092,7 +1105,7 @@
  • -
  • +
  • @@ -1105,7 +1118,7 @@
  • -
  • +
  • @@ -1118,7 +1131,7 @@
  • -
  • +
  • @@ -1750,7 +1763,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Using the Server Plugin","level":"1.22.2","depth":2,"next":{"title":"Questions & Answers","level":"1.23","depth":1,"path":"questions-answers.md","ref":"./questions-answers.md","articles":[]},"previous":{"title":"Use RxDB with Typescript","level":"1.22.1","depth":2,"path":"tutorials/typescript.md","ref":"./tutorials/typescript.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"tutorials/server.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":"..","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Using the Server Plugin","level":"1.22.2","depth":2,"next":{"title":"Questions & Answers","level":"1.23","depth":1,"path":"questions-answers.md","ref":"./questions-answers.md","articles":[]},"previous":{"title":"Use RxDB with Typescript","level":"1.22.1","depth":2,"path":"tutorials/typescript.md","ref":"./tutorials/typescript.md","articles":[]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"tutorials/server.md","mtime":"2020-07-22T22:17:56.213Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":"..","book":{"language":""}}); }); diff --git a/docs/tutorials/typescript.html b/docs/tutorials/typescript.html index 8d92d70b7ce..41a8f037651 100644 --- a/docs/tutorials/typescript.html +++ b/docs/tutorials/typescript.html @@ -1027,6 +1027,19 @@
  • + + + + atomicPatch() + + + + + +
  • + +
  • + @@ -1038,7 +1051,7 @@
  • -
  • +
  • @@ -1051,7 +1064,7 @@
  • -
  • +
  • @@ -1064,7 +1077,7 @@
  • -
  • +
  • @@ -1077,7 +1090,7 @@
  • -
  • +
  • @@ -1090,7 +1103,7 @@
  • -
  • +
  • @@ -1103,7 +1116,7 @@
  • -
  • +
  • @@ -1116,7 +1129,7 @@
  • -
  • +
  • @@ -1764,7 +1777,7 @@

    No results matching " var gitbook = gitbook || []; gitbook.push(function() { - gitbook.page.hasChanged({"page":{"title":"Use RxDB with Typescript","level":"1.22.1","depth":2,"next":{"title":"Using the Server Plugin","level":"1.22.2","depth":2,"path":"tutorials/server.md","ref":"./tutorials/server.md","articles":[]},"previous":{"title":"Tutorials","level":"1.22","depth":1,"ref":"","articles":[{"title":"Use RxDB with Typescript","level":"1.22.1","depth":2,"path":"tutorials/typescript.md","ref":"./tutorials/typescript.md","articles":[]},{"title":"Using the Server Plugin","level":"1.22.2","depth":2,"path":"tutorials/server.md","ref":"./tutorials/server.md","articles":[]}]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"tutorials/typescript.md","mtime":"2020-09-06T19:31:35.852Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-10-22T08:46:10.825Z"},"basePath":"..","book":{"language":""}}); + gitbook.page.hasChanged({"page":{"title":"Use RxDB with Typescript","level":"1.22.1","depth":2,"next":{"title":"Using the Server Plugin","level":"1.22.2","depth":2,"path":"tutorials/server.md","ref":"./tutorials/server.md","articles":[]},"previous":{"title":"Tutorials","level":"1.22","depth":1,"ref":"","articles":[{"title":"Use RxDB with Typescript","level":"1.22.1","depth":2,"path":"tutorials/typescript.md","ref":"./tutorials/typescript.md","articles":[]},{"title":"Using the Server Plugin","level":"1.22.2","depth":2,"path":"tutorials/server.md","ref":"./tutorials/server.md","articles":[]}]},"dir":"ltr"},"config":{"plugins":["edit-link","github","custom-favicon","-sharing","expandable-chapters","scripts"],"root":".","styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"pluginsConfig":{"github":{"url":"https://github.com/pubkey/rxdb"},"scripts":{"files":["./gitter.js"]},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"fontsettings":{"theme":"white","family":"sans","size":2},"highlight":{},"favicon":"./files/logo/icon.ico","custom-favicon":{},"edit-link":{"label":"Edit This Page","base":"https://github.com/pubkey/rxdb/tree/master/docs-src"},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false},"expandable-chapters":{}},"theme":"default","pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"variables":{},"title":"RxDB - Documentation","links":{"sidebar":{"Follow @twitter ":"https://twitter.com/rxdbjs","Chat @gitter ":"https://gitter.im/pubkey/rxdb","Star @github ":"https://github.com/pubkey/rxdb","Donate @github ":"https://github.com/sponsors/pubkey"}},"gitbook":"3.2.3"},"file":{"path":"tutorials/typescript.md","mtime":"2020-09-06T19:31:35.852Z","type":"markdown"},"gitbook":{"version":"3.2.3","time":"2020-11-02T13:14:38.189Z"},"basePath":"..","book":{"language":""}}); }); diff --git a/package.json b/package.json index 3faf9c68f5e..a716db32e1b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "rxdb", "description": "A realtime Database for JavaScript applications", - "version": "9.7.1", + "version": "9.8.0", "author": "pubkey", "repository": { "type": "git",