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.
- 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.umd.js
CHANGED
|
@@ -29576,6 +29576,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
29576
29576
|
addWindowTrustedOrigin: function() { return /* reexport */ addWindowTrustedOrigin; },
|
|
29577
29577
|
checkTextFormat: function() { return /* reexport */ checkTextFormat; },
|
|
29578
29578
|
createFileFromUrl: function() { return /* reexport */ createFileFromUrl; },
|
|
29579
|
+
createRegistApply: function() { return /* reexport */ createRegistApply; },
|
|
29579
29580
|
destroyEventCenter: function() { return /* reexport */ destroyEventCenter; },
|
|
29580
29581
|
extractFilenameFromUrl: function() { return /* reexport */ extractFilenameFromUrl; },
|
|
29581
29582
|
extractNewItems: function() { return /* reexport */ extractNewItems; },
|
|
@@ -33958,6 +33959,21 @@ const getAccountCountByName = async name => {
|
|
|
33958
33959
|
let count = resultData.data.count;
|
|
33959
33960
|
return count;
|
|
33960
33961
|
};
|
|
33962
|
+
|
|
33963
|
+
/**
|
|
33964
|
+
* 新建账户注册申请
|
|
33965
|
+
* @returns
|
|
33966
|
+
*/
|
|
33967
|
+
const createRegistApply = async registInfo => {
|
|
33968
|
+
let queryData = {
|
|
33969
|
+
param: {
|
|
33970
|
+
registInfo: registInfo
|
|
33971
|
+
}
|
|
33972
|
+
};
|
|
33973
|
+
let resultData = await request.post(`/dataservice/rest/orchestration/createRegistApply`, queryData);
|
|
33974
|
+
let operateResult = resultData.data.operateResult;
|
|
33975
|
+
return operateResult;
|
|
33976
|
+
};
|
|
33961
33977
|
;// ./src/api/utils.js
|
|
33962
33978
|
|
|
33963
33979
|
|