reactivedb
Advanced tools
Comparing version 0.10.4-alpha.11-diff to 0.10.4-alpha.12-diff
{ | ||
"name": "reactivedb", | ||
"version": "0.10.4-alpha.11-diff", | ||
"version": "0.10.4-alpha.12-diff", | ||
"description": "Reactive ORM for Lovefield", | ||
@@ -5,0 +5,0 @@ "main": "./index.js", |
import { Observable } from 'rxjs/Observable' | ||
import { OperatorFunction } from 'rxjs/interfaces' | ||
import { combineAll } from 'rxjs/operators/combineAll' | ||
import { filter } from 'rxjs/operators/filter' | ||
import { map } from 'rxjs/operators/map' | ||
@@ -11,3 +12,2 @@ import { publishReplay } from 'rxjs/operators/publishReplay' | ||
import { tap } from 'rxjs/operators/tap' | ||
import { filter } from 'rxjs/operators/filter' | ||
import { Selector } from './Selector' | ||
@@ -14,0 +14,0 @@ import { ProxySelector } from './ProxySelector' |
export enum OpType { | ||
// 0 = reuse | ||
// 1 = use new item | ||
Reuse, | ||
@@ -12,2 +14,5 @@ New, | ||
export enum OpsType { | ||
// 0 = error | ||
// 1 = success | ||
// 2 = success but should skip | ||
Error, | ||
@@ -14,0 +19,0 @@ Success, |
@@ -1,1 +0,1 @@ | ||
export default '0.10.4-alpha.10-diff-alpha0.10.4-alpha.10-diff-diff' | ||
export default '0.10.4-alpha.12-diff' |
@@ -6,2 +6,3 @@ "use strict"; | ||
var combineAll_1 = require("rxjs/operators/combineAll"); | ||
var filter_1 = require("rxjs/operators/filter"); | ||
var map_1 = require("rxjs/operators/map"); | ||
@@ -14,3 +15,2 @@ var publishReplay_1 = require("rxjs/operators/publishReplay"); | ||
var tap_1 = require("rxjs/operators/tap"); | ||
var filter_1 = require("rxjs/operators/filter"); | ||
var ProxySelector_1 = require("./ProxySelector"); | ||
@@ -17,0 +17,0 @@ var assert_1 = require("../../utils/assert"); |
@@ -5,2 +5,4 @@ "use strict"; | ||
(function (OpType) { | ||
// 0 = reuse | ||
// 1 = use new item | ||
OpType[OpType["Reuse"] = 0] = "Reuse"; | ||
@@ -11,2 +13,5 @@ OpType[OpType["New"] = 1] = "New"; | ||
(function (OpsType) { | ||
// 0 = error | ||
// 1 = success | ||
// 2 = success but should skip | ||
OpsType[OpsType["Error"] = 0] = "Error"; | ||
@@ -13,0 +18,0 @@ OpsType[OpsType["Success"] = 1] = "Success"; |
@@ -1,2 +0,2 @@ | ||
declare const _default: "0.10.4-alpha.10-diff-alpha0.10.4-alpha.10-diff-diff"; | ||
declare const _default: "0.10.4-alpha.12-diff"; | ||
export default _default; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = '0.10.4-alpha.10-diff-alpha0.10.4-alpha.10-diff-diff'; | ||
exports.default = '0.10.4-alpha.12-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
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
295114
5291