@next-core/brick-kit 2.141.0 → 2.141.2

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.
package/dist/index.esm.js CHANGED
@@ -11782,20 +11782,17 @@ function _fetchStandaloneApps() {
11782
11782
  try {
11783
11783
  var result = yield RuntimeApi_searchMicroAppStandalone({
11784
11784
  query: {
11785
- isActiveVersion: true,
11786
11785
  appId: {
11787
11786
  $in: searchIds
11788
11787
  }
11789
11788
  },
11790
- fields: ["appId", "version"]
11789
+ fields: ["appId", "currentVersion", "installStatus"]
11791
11790
  });
11792
11791
 
11793
11792
  for (var item of result.list) {
11794
- standaloneApps.push({
11795
- id: item.appId,
11796
- currentVersion: item.version,
11797
- installStatus: "ok"
11798
- });
11793
+ standaloneApps.push(_objectSpread(_objectSpread({}, item), {}, {
11794
+ id: item.appId
11795
+ }));
11799
11796
  }
11800
11797
 
11801
11798
  for (var id of searchIds) {