reactivedb
Advanced tools
Comparing version 0.10.4-alpha.12-diff to 0.10.4-alpha.13-diff
{ | ||
"name": "reactivedb", | ||
"version": "0.10.4-alpha.12-diff", | ||
"version": "0.10.4-alpha.13-diff", | ||
"description": "Reactive ORM for Lovefield", | ||
@@ -5,0 +5,0 @@ "main": "./index.js", |
@@ -1,3 +0,3 @@ | ||
export { QueryToken, SelectorMeta } from '../storage/modules/QueryToken'; | ||
export { QueryToken, SelectorMeta, TraceResult } from '../storage/modules/QueryToken'; | ||
export { ProxySelector } from '../storage/modules/ProxySelector'; | ||
export * from '../interface'; |
@@ -1,3 +0,3 @@ | ||
export { QueryToken, SelectorMeta } from '../storage/modules/QueryToken' | ||
export { QueryToken, SelectorMeta, TraceResult } from '../storage/modules/QueryToken' | ||
export { ProxySelector } from '../storage/modules/ProxySelector' | ||
export * from '../interface' |
@@ -77,3 +77,3 @@ import { Observable } from 'rxjs/Observable' | ||
}), | ||
filter((xs) => xs.type !== OpsType.ShouldSkip), | ||
filter(({ type }) => type !== OpsType.ShouldSkip), | ||
tap(({ result }) => (this.lastEmit = result)), | ||
@@ -80,0 +80,0 @@ ) |
@@ -1,1 +0,1 @@ | ||
export default '0.10.4-alpha.12-diff' | ||
export default '0.10.4-alpha.13-diff' |
@@ -48,3 +48,6 @@ "use strict"; | ||
return tslib_1.__assign({ result: result }, ops); | ||
}), filter_1.filter(function (xs) { return xs.type !== diff_1.OpsType.ShouldSkip; }), tap_1.tap(function (_a) { | ||
}), filter_1.filter(function (_a) { | ||
var type = _a.type; | ||
return type !== diff_1.OpsType.ShouldSkip; | ||
}), tap_1.tap(function (_a) { | ||
var result = _a.result; | ||
@@ -51,0 +54,0 @@ return (_this.lastEmit = result); |
@@ -1,2 +0,2 @@ | ||
declare const _default: "0.10.4-alpha.12-diff"; | ||
declare const _default: "0.10.4-alpha.13-diff"; | ||
export default _default; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = '0.10.4-alpha.12-diff'; | ||
exports.default = '0.10.4-alpha.13-diff'; | ||
//# sourceMappingURL=version.js.map |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
295193
5294