@next-core/brick-kit 2.141.0 → 2.141.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.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.141.1](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.141.0...@next-core/brick-kit@2.141.1) (2022-09-19)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* 获取standalone micro app接口调整 ([1a2404d](https://github.com/easyops-cn/next-core/commit/1a2404d78225645e56f83a7a4c1f8a5316dea2b7))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [2.141.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.140.0...@next-core/brick-kit@2.141.0) (2022-09-19)
|
|
7
18
|
|
|
8
19
|
|
package/dist/index.bundle.js
CHANGED
|
@@ -11781,20 +11781,17 @@
|
|
|
11781
11781
|
try {
|
|
11782
11782
|
var result = yield RuntimeApi_searchMicroAppStandalone({
|
|
11783
11783
|
query: {
|
|
11784
|
-
isActiveVersion: true,
|
|
11785
11784
|
appId: {
|
|
11786
11785
|
$in: searchIds
|
|
11787
11786
|
}
|
|
11788
11787
|
},
|
|
11789
|
-
fields: ["appId", "
|
|
11788
|
+
fields: ["appId", "currentVersion", "installStatus"]
|
|
11790
11789
|
});
|
|
11791
11790
|
|
|
11792
11791
|
for (var item of result.list) {
|
|
11793
|
-
standaloneApps.push({
|
|
11794
|
-
id: item.appId
|
|
11795
|
-
|
|
11796
|
-
installStatus: "ok"
|
|
11797
|
-
});
|
|
11792
|
+
standaloneApps.push(_objectSpread__default["default"](_objectSpread__default["default"]({}, item), {}, {
|
|
11793
|
+
id: item.appId
|
|
11794
|
+
}));
|
|
11798
11795
|
}
|
|
11799
11796
|
|
|
11800
11797
|
for (var id of searchIds) {
|