isdata-customer-sdk 0.2.40 → 0.2.41

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.
@@ -41685,14 +41685,16 @@ const getIntegrateAppInfoByID = async appID => {
41685
41685
  };
41686
41686
 
41687
41687
  // 更新服务器i18n文本
41688
- const savePortalI18nText = async (key, value, lang) => {
41688
+ const savePortalI18nText = async (key, value, lang, beyondID, i18nType) => {
41689
41689
  let app_id = getPoratlAppID();
41690
41690
  let requestData = {
41691
41691
  param: {
41692
41692
  key: key,
41693
41693
  value: value,
41694
41694
  appID: app_id,
41695
- lang: lang
41695
+ lang: lang,
41696
+ beyondID: beyondID,
41697
+ i18nType: i18nType
41696
41698
  }
41697
41699
  };
41698
41700
  let result = await request.post(`/dataservice/rest/orchestration/savePortalI18nText`, requestData);