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

react-diode

Package Overview
Dependencies
Maintainers
1
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-diode - npm Package Compare versions

Comparing version

to
0.2.0-beta.14

4

lib/query/createDiodeQuery.js
'use strict';
function createDiodeQuery(Query, fragmentStructure, params) {
function createDiodeQuery(Query, fragmentStructure, paramsStructure) {
if (typeof Query.type !== 'string') {

@@ -18,3 +18,3 @@ throw new TypeError('Expected query definition to have query type');

query.fragmentStructure = fragmentStructure;
query.params = params;
query.paramsStructure = paramsStructure;
return query;

@@ -21,0 +21,0 @@ }

@@ -80,2 +80,3 @@ 'use strict';

query.fragment = _this._compileFragmentKeys(query.fragmentStructure);
query.params = _this._compileFragmentKeys(query.paramsStructure);
return query;

@@ -82,0 +83,0 @@ });

{
"name": "react-diode",
"version": "0.2.0-beta.13",
"version": "0.2.0-beta.14",
"description": "Endpoint agnostic, unidirectional data fetching for React applications",

@@ -5,0 +5,0 @@ "main": "lib/DiodePublic.js",