@shopify/app-bridge-host
Advanced tools
Comparing version 1.3.1-alpha.6 to 1.3.1-alpha.7
@@ -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 @@ |
{ | ||
"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; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
122630
2791