isdata-customer-sdk 0.2.13 → 0.2.14
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.common.js +16 -0
- package/dist/index.common.js.map +1 -1
- package/dist/index.umd.js +16 -0
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +1 -1
- package/dist/index.umd.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.common.js
CHANGED
|
@@ -29594,6 +29594,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
29594
29594
|
getPortalAccessToken: function() { return /* reexport */ getPortalAccessToken; },
|
|
29595
29595
|
getPortalAppCustomConfig: function() { return /* reexport */ getPortalAppCustomConfig; },
|
|
29596
29596
|
getPortalDocmentInfo: function() { return /* reexport */ getPortalDocmentInfo; },
|
|
29597
|
+
getPortalNotices: function() { return /* reexport */ getPortalNotices; },
|
|
29597
29598
|
getPortalPageConfig: function() { return /* reexport */ getPortalPageConfig; },
|
|
29598
29599
|
getPortalPageMenuID: function() { return /* reexport */ getPortalPageMenuID; },
|
|
29599
29600
|
getPortalUserInfo: function() { return /* reexport */ getPortalUserInfo; },
|
|
@@ -30400,6 +30401,21 @@ const getLoginPageNotices = async () => {
|
|
|
30400
30401
|
return noticeInfos;
|
|
30401
30402
|
};
|
|
30402
30403
|
|
|
30404
|
+
/**
|
|
30405
|
+
* 获取对应租户的组织的公告信息
|
|
30406
|
+
* @param {*} groupID
|
|
30407
|
+
* @returns
|
|
30408
|
+
*/
|
|
30409
|
+
const getPortalNotices = async groupID => {
|
|
30410
|
+
let queryData = {
|
|
30411
|
+
"param": {
|
|
30412
|
+
"id": groupID
|
|
30413
|
+
}
|
|
30414
|
+
};
|
|
30415
|
+
let resultData = await request.post(`/dataservice/rest/orchestration/getNoticesInfosByGroupID`, queryData);
|
|
30416
|
+
return resultData;
|
|
30417
|
+
};
|
|
30418
|
+
|
|
30403
30419
|
/**
|
|
30404
30420
|
* 获取门户单点登录接入Token
|
|
30405
30421
|
* @param {*} appKey
|