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

@common-stack/client-core

Package Overview
Dependencies
Maintainers
1
Versions
263
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@common-stack/client-core - npm Package Compare versions

Comparing version 0.0.189 to 0.0.190

2

lib/connector/abstract-connector.d.ts

@@ -8,2 +8,3 @@ import { IFeature, FeatureParams } from '../interfaces';

connectionParam: any;
epic: any;
reducer: any;

@@ -35,2 +36,3 @@ resolver: any;

constructor(feature?: FeatureParams, ...features: any[]);
readonly epics: any;
getRouter(withRoot?: boolean, rootComponent?: any): any;

@@ -37,0 +39,0 @@ abstract getRoutes(withRoot?: boolean, rootComponent?: any): any;

@@ -113,2 +113,3 @@ module.exports =

this.reducer = combine(arguments, arg => arg.reducer);
this.epic = combine(arguments, arg => arg.epic);
this.schema = combine(arguments, arg => arg.schema);

@@ -140,2 +141,5 @@ this.resolver = combine(arguments, arg => arg.resolver);

}
get epics() {
return lodash_1.merge(...this.epic);
}
getRouter(withRoot, rootComponent) {

@@ -142,0 +146,0 @@ return this.routerFactory(this.getRoutes(withRoot, rootComponent));

@@ -11,2 +11,3 @@ export interface ClientStateParams {

readonly connectionParam?: any;
readonly epic?: any;
readonly reducer?: any;

@@ -42,2 +43,3 @@ readonly resolver?: any;

readonly connectionParam: any;
readonly epic: any;
readonly reducer: any;

@@ -66,2 +68,3 @@ readonly resolver: any;

readonly middleMainPanelItemsProps?: any;
readonly epics: any;
readonly getRouter: any;

@@ -68,0 +71,0 @@ readonly getRoutes: any;

4

package.json
{
"name": "@common-stack/client-core",
"version": "0.0.189",
"version": "0.0.190",
"description": "Sample core for higher packages to depend on",

@@ -56,3 +56,3 @@ "main": "lib/index.js",

"dependencies": {
"@common-stack/core": "^0.0.189"
"@common-stack/core": "^0.0.190"
},

@@ -59,0 +59,0 @@ "peerDependencies": {

Sorry, the diff of this file is not supported yet

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