New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@app-masters/sync-cache

Package Overview
Dependencies
Maintainers
5
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@app-masters/sync-cache - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

3

CHANGELOG.md

@@ -9,3 +9,3 @@ # Changelog

## [0.0.1/0.0.4] - 2018-10-16
## [0.0.1/0.0.6] - 2018-10-16
### Added

@@ -16,1 +16,2 @@ - Sync-Cache creation

- Warning instead of Error on uncaught
- SAVE_ACTION Action on Success

@@ -73,3 +73,6 @@ 'use strict';

onlineMethod: this.createOnline.bind(this),
reduxMethod: this.setCreateObject.bind(this),
reduxMethod: (dispatch, object) => {
this.setCreateObject(dispatch, object);
this.setSaveObject(dispatch, object);
},
syncMethod: this.setObjectCreated.bind(this)

@@ -81,3 +84,6 @@ };

onlineMethod: this.updateOnline.bind(this),
reduxMethod: this.setUpdateObject.bind(this),
reduxMethod: (dispatch, object) => {
this.setUpdateObject(dispatch, object);
this.setSaveObject(dispatch, object);
},
syncMethod: this.setObjectUpdated.bind(this)

@@ -742,2 +748,12 @@ };

/**
* Dispatch Redux thunk actions SAVE_OBJECT with the value of object as payload
* This action is used for create and update
* @param dispatch
* @param object
*/
setSaveObject(dispatch, object) {
dispatch({ type: this.type('SAVE_OBJECT'), payload: object });
}
/**
* Dispatch Redux thunk actions GET_OBJECT with the value of object as payload

@@ -744,0 +760,0 @@ * @param dispatch

{
"name": "@app-masters/sync-cache",
"version": "0.0.5",
"version": "0.0.6",
"main": "dist/index.js",

@@ -5,0 +5,0 @@ "scripts": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc