isdata-customer-sdk 0.1.24 → 0.1.26

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.js CHANGED
@@ -5313,13 +5313,15 @@ const queryGroupIDByOfficeId = async id => {
5313
5313
  * @param {信息} userData
5314
5314
  * @returns
5315
5315
  */
5316
- const getCurrentUserPortalPageID = userData => {
5316
+ const getCurrentUserPortalPageID = async userData => {
5317
5317
  let queryData = {
5318
5318
  "param": {
5319
5319
  "userData": userData
5320
5320
  }
5321
5321
  };
5322
- return request.post(`/dataservice/rest/orchestration/getPortalPageID`, queryData);
5322
+ let response = await request.post(`/dataservice/rest/orchestration/getPortalPageID`, queryData);
5323
+ let portal_id = response.data.portal_id;
5324
+ return portal_id;
5323
5325
  };
5324
5326
 
5325
5327
  /**