@app-masters/sync-cache
Advanced tools
Comparing version 0.3.4 to 0.3.5
@@ -9,3 +9,3 @@ # Changelog | ||
## [0.3.0/0.3.4] - 2018-10-23 | ||
## [0.3.0/0.3.5] - 2018-10-23 | ||
### Added | ||
@@ -18,2 +18,3 @@ - Redux-saga synchronization methods | ||
- Fixed action type call | ||
- Bind everything | ||
@@ -20,0 +21,0 @@ ## [0.2.0/0.2.10] - 2018-10-22 |
@@ -51,4 +51,5 @@ "use strict"; | ||
config.primaryKey = _amSyncCache.default.primaryKey; | ||
} | ||
} // Bind everything! | ||
this.createObject = this.createObject.bind(this); | ||
@@ -58,3 +59,9 @@ this.updateObject = this.updateObject.bind(this); | ||
this.setError = this.setError.bind(this); | ||
this.setLoading = this.setLoading.bind(this); // Save it here | ||
this.setLoading = this.setLoading.bind(this); | ||
this.getObjectsToCreate = this.getObjectsToCreate.bind(this); | ||
this.getObjectsToUpdate = this.getObjectsToUpdate.bind(this); | ||
this.getObjectsToDelete = this.getObjectsToDelete.bind(this); | ||
this.syncCreatedObjects = this.syncCreatedObjects.bind(this); | ||
this.syncUpdatedObjects = this.syncUpdatedObjects.bind(this); | ||
this.syncDeletedObjects = this.syncDeletedObjects.bind(this); // Save it here | ||
@@ -61,0 +68,0 @@ this.config = config; |
{ | ||
"name": "@app-masters/sync-cache", | ||
"version": "0.3.4", | ||
"version": "0.3.5", | ||
"main": "dist/index.js", | ||
@@ -5,0 +5,0 @@ "scripts": { |
67088
1757