isdata-customer-sdk 0.1.42 → 0.1.43

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.umd.js CHANGED
@@ -22267,7 +22267,8 @@ __webpack_require__.d(__webpack_exports__, {
22267
22267
  registerEventListener: function() { return /* reexport */ registerEventListener; },
22268
22268
  removeEventListener: function() { return /* reexport */ removeEventListener; },
22269
22269
  setPortalPageConfig: function() { return /* reexport */ setPortalPageConfig; },
22270
- updateUserSelectPortal: function() { return /* reexport */ updateUserSelectPortal; }
22270
+ updateUserSelectPortal: function() { return /* reexport */ updateUserSelectPortal; },
22271
+ validateSSOPageLoaded: function() { return /* reexport */ validateSSOPageLoaded; }
22271
22272
  });
22272
22273
 
22273
22274
  ;// ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
@@ -22551,6 +22552,25 @@ const getMenuDatasByRoleIDs = async (role_ids, group_id) => {
22551
22552
  return result;
22552
22553
  };
22553
22554
 
22555
+ /**
22556
+ * 校验SSO页面加载是否正确
22557
+ * @param id GroupID
22558
+ *
22559
+ */
22560
+ const validateSSOPageLoaded = async (app_id, appSecret, returnUrl) => {
22561
+ let queryData_groupData = {
22562
+ "param": {
22563
+ "app_id": app_id,
22564
+ "appSecret": appSecret,
22565
+ "returnUrl": returnUrl
22566
+ }
22567
+ };
22568
+ let result = await request.post(`/dataservice/rest/orchestration/validateSSOPageLoaded`, queryData_groupData);
22569
+ let resultCount = result.data.count;
22570
+ //获取菜单数据
22571
+ return resultCount;
22572
+ };
22573
+
22554
22574
  /**
22555
22575
  * 查询对应角色的门户快捷菜单信息
22556
22576
  * @param id GroupID
@@ -22945,7 +22965,7 @@ const queryGroupIDByOfficeId = async id => {
22945
22965
  };
22946
22966
 
22947
22967
  /**
22948
- * 查询当前企业组织的集团组织ID
22968
+ * 查询app变量
22949
22969
  * @param id 组织ID
22950
22970
  *
22951
22971
  */