isdata-customer-sdk 0.2.68 → 0.2.69

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.
@@ -29558,6 +29558,7 @@ __webpack_require__.d(__webpack_exports__, {
29558
29558
  addWindowTrustedOrigin: function() { return /* reexport */ addWindowTrustedOrigin; },
29559
29559
  checkTextFormat: function() { return /* reexport */ checkTextFormat; },
29560
29560
  createFileFromUrl: function() { return /* reexport */ createFileFromUrl; },
29561
+ createRegistApply: function() { return /* reexport */ createRegistApply; },
29561
29562
  destroyEventCenter: function() { return /* reexport */ destroyEventCenter; },
29562
29563
  extractFilenameFromUrl: function() { return /* reexport */ extractFilenameFromUrl; },
29563
29564
  extractNewItems: function() { return /* reexport */ extractNewItems; },
@@ -33940,6 +33941,21 @@ const getAccountCountByName = async name => {
33940
33941
  let count = resultData.data.count;
33941
33942
  return count;
33942
33943
  };
33944
+
33945
+ /**
33946
+ * 新建账户注册申请
33947
+ * @returns
33948
+ */
33949
+ const createRegistApply = async registInfo => {
33950
+ let queryData = {
33951
+ param: {
33952
+ registInfo: registInfo
33953
+ }
33954
+ };
33955
+ let resultData = await request.post(`/dataservice/rest/orchestration/createRegistApply`, queryData);
33956
+ let operateResult = resultData.data.operateResult;
33957
+ return operateResult;
33958
+ };
33943
33959
  ;// ./src/api/utils.js
33944
33960
 
33945
33961