@applicaster/quick-brick-core 15.0.0-rc.49 → 15.0.0-rc.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -71,10 +71,11 @@ export const startUpHookPluginIdentifiersSelector = createSelector(
71
71
  return Object.values(pluginConfigurations)
72
72
  .filter(
73
73
  (item) =>
74
+ item.plugin?.api &&
74
75
  "require_startup_execution" in item.plugin.api &&
75
- item?.plugin?.api?.require_startup_execution === true &&
76
- item?.plugin?.react_native === true &&
77
- item?.plugin?.preload === true
76
+ item.plugin.api.require_startup_execution === true &&
77
+ item.plugin.react_native === true &&
78
+ item.plugin.preload === true
78
79
  )
79
80
  .map((item: any) => item.plugin.identifier);
80
81
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applicaster/quick-brick-core",
3
- "version": "15.0.0-rc.49",
3
+ "version": "15.0.0-rc.50",
4
4
  "description": "Core package for Applicaster's Quick Brick App",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -28,13 +28,13 @@
28
28
  },
29
29
  "homepage": "https://github.com/applicaster/quickbrick#readme",
30
30
  "dependencies": {
31
- "@applicaster/applicaster-types": "15.0.0-rc.49",
32
- "@applicaster/quick-brick-core-plugins": "15.0.0-rc.49",
33
- "@applicaster/zapp-pipes-v2-client": "15.0.0-rc.49",
34
- "@applicaster/zapp-react-native-bridge": "15.0.0-rc.49",
35
- "@applicaster/zapp-react-native-redux": "15.0.0-rc.49",
36
- "@applicaster/zapp-react-native-ui-components": "15.0.0-rc.49",
37
- "@applicaster/zapp-react-native-utils": "15.0.0-rc.49",
31
+ "@applicaster/applicaster-types": "15.0.0-rc.50",
32
+ "@applicaster/quick-brick-core-plugins": "15.0.0-rc.50",
33
+ "@applicaster/zapp-pipes-v2-client": "15.0.0-rc.50",
34
+ "@applicaster/zapp-react-native-bridge": "15.0.0-rc.50",
35
+ "@applicaster/zapp-react-native-redux": "15.0.0-rc.50",
36
+ "@applicaster/zapp-react-native-ui-components": "15.0.0-rc.50",
37
+ "@applicaster/zapp-react-native-utils": "15.0.0-rc.50",
38
38
  "atob": "^2.1.2",
39
39
  "axios": "^0.28.0",
40
40
  "btoa": "^1.2.1",