Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@live-change/framework

Package Overview
Dependencies
Maintainers
1
Versions
333
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@live-change/framework - npm Package Compare versions

Comparing version 0.5.4 to 0.5.5

9

lib/processors/autoValidation.js

@@ -62,3 +62,4 @@ function getValidator(validation, context) {

action.execute = async (...args) => {
return validate(args[0], validators, { source: action, action, service, app, ...args[1] }).then(() =>
const context = args[1]
return validate(args[0], validators, { source: action, action, service, app, ...context }).then(() =>
oldExec.apply(action, args)

@@ -76,3 +77,4 @@ )

view.read = async (...args) => {
return validate(args[0], validators, { source: view, view, service, app, ...args[1] }).then(() =>
const context = args[1]
return validate(args[0], validators, { source: view, view, service, app, ...context }).then(() =>
oldRead.apply(view, args)

@@ -84,3 +86,4 @@ )

view.fetch = async (...args) => {
return validate(args[0], validators, { source: view, view, service, app, ...args[1] }).then(() =>
const context = args[1]
return validate(args[0], validators, { source: view, view, service, app, ...context }).then(() =>
oldFetch.apply(view, args)

@@ -87,0 +90,0 @@ )

{
"name": "@live-change/framework",
"version": "0.5.4",
"version": "0.5.5",
"description": "Live Change Framework - ultimate solution for real time mobile/web apps",

@@ -5,0 +5,0 @@ "main": "index.js",

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