isdata-customer-sdk 0.2.39 → 0.2.40
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 +11 -0
- package/dist/index.common.js.map +1 -1
- package/dist/index.umd.js +11 -0
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +4 -4
- package/dist/index.umd.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.common.js
CHANGED
|
@@ -40291,6 +40291,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
40291
40291
|
fireEvent: function() { return /* reexport */ fireEvent; },
|
|
40292
40292
|
getAIRobotInfos: function() { return /* reexport */ getAIRobotInfos; },
|
|
40293
40293
|
getAPPInfosByID: function() { return /* reexport */ getAPPInfosByID; },
|
|
40294
|
+
getAllI18nTypes: function() { return /* reexport */ getAllI18nTypes; },
|
|
40294
40295
|
getAllUserInfosByGroupID: function() { return /* reexport */ getAllUserInfosByGroupID; },
|
|
40295
40296
|
getAppCustomData: function() { return /* reexport */ getAppCustomData; },
|
|
40296
40297
|
getAppPortalMenuDatas: function() { return /* reexport */ getAppPortalMenuDatas; },
|
|
@@ -41698,6 +41699,16 @@ const savePortalI18nText = async (key, value, lang) => {
|
|
|
41698
41699
|
let resultData = result.data.resultData;
|
|
41699
41700
|
return resultData;
|
|
41700
41701
|
};
|
|
41702
|
+
|
|
41703
|
+
// 更新服务器i18n文本
|
|
41704
|
+
const getAllI18nTypes = async () => {
|
|
41705
|
+
let requestData = {
|
|
41706
|
+
param: {}
|
|
41707
|
+
};
|
|
41708
|
+
let result = await request.post(`/dataservice/rest/orchestration/getAllI18nTypes`, requestData);
|
|
41709
|
+
let resultData = result.data.resultDatas;
|
|
41710
|
+
return resultData;
|
|
41711
|
+
};
|
|
41701
41712
|
;// ./node_modules/ua-parser-js/src/main/ua-parser.mjs
|
|
41702
41713
|
// Generated ESM version of ua-parser-js
|
|
41703
41714
|
// DO NOT EDIT THIS FILE!
|