@next-core/brick-kit 2.188.0 → 2.188.1

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.
@@ -9057,7 +9057,7 @@
9057
9057
  $$fulfilling: null
9058
9058
  });
9059
9059
  if (window.BOOTSTRAP_UNION_FILE && !storyboard.$$fullMerged) {
9060
- var fullBootstrapPath = "".concat(window.APP_ROOT, "-/").concat(storyboard.bootstrapFile);
9060
+ var fullBootstrapPath = "".concat(window.APP_ROOT).concat(window.PUBLIC_DEPS ? "" : "-/").concat(storyboard.bootstrapFile);
9061
9061
  var {
9062
9062
  storyboards
9063
9063
  } = yield brickHttp.http.get(fullBootstrapPath);
@@ -9077,7 +9077,7 @@
9077
9077
  var appRuntimeData;
9078
9078
  try {
9079
9079
  // Note: the request maybe have fired already during bootstrap.
9080
- appRuntimeData = yield safeGetRuntimeMicroAppStandalone(storyboard.app.id);
9080
+ appRuntimeData = yield safeGetRuntimeMicroAppStandalone(storyboard.app.id, storyboard.app.currentVersion);
9081
9081
  } catch (error) {
9082
9082
  // make it not crash when the backend service is not updated.
9083
9083
  // eslint-disable-next-line no-console