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

@shopify/app-bridge-host

Package Overview
Dependencies
Maintainers
13
Versions
383
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@shopify/app-bridge-host - npm Package Compare versions

Comparing version 1.3.1-alpha.6 to 1.3.1-alpha.7

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

## [1.3.1-alpha.7](https://github.com/Shopify/app-bridge/compare/v1.3.1-alpha.6...v1.3.1-alpha.7) (2019-05-22)
### Bug Fixes
* **store:** fix type definition ([f5a0983](https://github.com/Shopify/app-bridge/commit/f5a0983))
## [1.3.1-alpha.6](https://github.com/Shopify/app-bridge/compare/v1.3.1-alpha.5...v1.3.1-alpha.6) (2019-05-21)

@@ -8,0 +19,0 @@

6

package.json
{
"name": "@shopify/app-bridge-host",
"version": "1.3.1-alpha.6",
"version": "1.3.1-alpha.7",
"types": "index.d.ts",

@@ -57,3 +57,3 @@ "main": "index.js",

"dependencies": {
"@shopify/app-bridge": "^1.3.1-alpha.6",
"@shopify/app-bridge": "^1.3.1-alpha.7",
"@shopify/javascript-utilities": "^2.3.0",

@@ -67,3 +67,3 @@ "hoist-non-react-statics": "^3.1.0",

},
"gitHead": "01db702e215d852e1876d8a653ca8a99999a334a"
"gitHead": "67324e43a296c4b2b14ca537805eeb44645f49f5"
}

@@ -57,23 +57,3 @@ import { AppBridgeActionCreatorsMap } from './appBridge';

*/
export declare const defaultStore: {
appInfo: {
hasCartPermission: boolean;
};
features: FeaturesState<Record<import("@shopify/app-bridge/actions").Group, import("@shopify/app-bridge").FeaturesAction>>;
toast: {};
loading: {
isLoading: boolean;
loadingCounter: number;
};
modal: {
open: boolean;
};
titleBar: null;
pos: {};
resourcePicker: null;
navigation: {};
staffMember: null;
isLegacy: boolean;
isFullscreen: boolean;
};
export declare const defaultStore: Store;
/**

@@ -80,0 +60,0 @@ * The combined Redux reducers

import { ActionCreatorsMapObject } from 'redux';
import { Toast } from '@shopify/app-bridge/actions';
declare function legacyClear(payload: Toast.ClearPayload): {
type: string;
group: import("@shopify/app-bridge/actions").Group.Toast;
clientInterface?: import("@shopify/app-bridge/actions").ClientInterface | undefined;
version: string;
payload?: any;
import { LegacyFlashClear } from './types';
import { ClearAction } from '@shopify/app-bridge/actions/Toast';
declare type LegacyClearAction = Pick<ClearAction, Exclude<keyof ClearAction, 'type'>> & {
type: typeof LegacyFlashClear;
};
declare function legacyClear(payload: Toast.ClearPayload): LegacyClearAction;
export interface ToastActionCreatorsMap extends ActionCreatorsMapObject {

@@ -11,0 +10,0 @@ show: typeof Toast.show;

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