@indfnd/utils 0.1.15 → 0.1.17

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.
Files changed (51) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/dist/ind-utils.es.js +8 -1
  3. package/dist/ind-utils.umd.cjs +11 -11
  4. package/package.json +1 -1
  5. package/src/api/platform/oss.ts +14 -0
  6. package/types/api/com.d.ts +2 -2
  7. package/types/api/index-desc.d.ts +2 -2
  8. package/types/api/index.d.ts +6 -6
  9. package/types/api/item.d.ts +4 -4
  10. package/types/api/platform/dict.d.ts +4 -4
  11. package/types/api/platform/index.d.ts +5 -5
  12. package/types/api/platform/menu.d.ts +17 -11
  13. package/types/api/platform/oss.d.ts +21 -6
  14. package/types/api/platform/oss.d.ts.map +1 -1
  15. package/types/api/platform/user.d.ts +17 -12
  16. package/types/api/user.d.ts +2 -2
  17. package/types/config/base.config.d.ts +31 -31
  18. package/types/config/dev.config.d.ts +3 -3
  19. package/types/config/index.d.ts +59 -59
  20. package/types/config/prod.config.d.ts +3 -3
  21. package/types/index.d.ts +4 -4
  22. package/types/utils/base64.d.ts +22 -22
  23. package/types/utils/blob.d.ts +3 -3
  24. package/types/utils/cache/dict-cache.d.ts +3 -3
  25. package/types/utils/cache/index-desc.d.ts +4 -4
  26. package/types/utils/cache/index.d.ts +4 -4
  27. package/types/utils/cache/permission-cache.d.ts +4 -4
  28. package/types/utils/cache/user-cache.d.ts +4 -4
  29. package/types/utils/date.d.ts +4 -4
  30. package/types/utils/enum.d.ts +43 -39
  31. package/types/utils/event.d.ts +13 -5
  32. package/types/utils/excel.d.ts +4 -4
  33. package/types/utils/half-year.d.ts +6 -6
  34. package/types/utils/index.d.ts +20 -20
  35. package/types/utils/is-type.d.ts +33 -33
  36. package/types/utils/mime-type.d.ts +67 -67
  37. package/types/utils/number.d.ts +8 -8
  38. package/types/utils/quarter.d.ts +7 -7
  39. package/types/utils/request/axios.extends.d.ts +7 -3
  40. package/types/utils/request/cache-rules.d.ts +3 -3
  41. package/types/utils/request/content-type.d.ts +9 -9
  42. package/types/utils/request/index.d.ts +8 -8
  43. package/types/utils/request/interceptors.d.ts +4 -4
  44. package/types/utils/request/url-params.d.ts +6 -6
  45. package/types/utils/sm3/index.d.ts +6 -6
  46. package/types/utils/sm3/sm3.d.ts +3 -3
  47. package/types/utils/storage.d.ts +8 -8
  48. package/types/utils/table.d.ts +40 -31
  49. package/types/utils/token.d.ts +3 -3
  50. package/types/utils/uuid.d.ts +4 -4
  51. package/types/utils/validate.d.ts +5 -5
package/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.1.17](http://git.inspur.com/imp-ec/ind-front/ind-utils/compare/v0.1.16...v0.1.17) (2024-09-02)
6
+
7
+ ### [0.1.16](http://git.inspur.com/imp-ec/ind-front/ind-utils/compare/v0.1.15...v0.1.16) (2024-08-01)
8
+
5
9
  ### [0.1.15](http://git.inspur.com/imp-ec/ind-front/ind-utils/compare/v0.1.14...v0.1.15) (2024-06-27)
6
10
 
7
11
  ### [0.1.14](http://git.inspur.com/imp-ec/ind-front/ind-utils/compare/v0.1.13...v0.1.14) (2024-06-27)
@@ -11127,6 +11127,13 @@ function putOssFileApi(filename, blob) {
11127
11127
  data: formData
11128
11128
  });
11129
11129
  }
11130
+ function getPreviewUrlApi(fileId) {
11131
+ const axiosConfig = {};
11132
+ return instance.get(
11133
+ `${config.ucExtServerContext}/api/wps/getPreviewUrl/${fileId}?previewMode=high_definition`,
11134
+ axiosConfig
11135
+ );
11136
+ }
11130
11137
  const CONTEXT$2 = config.authServerContext;
11131
11138
  function loginApi({ userName, password, validCodeId, validCodeInput }) {
11132
11139
  let publicKey = `MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDD2iolFHi+6bUh+V6JPr2gFJQsC0QNsq2EwI0MAPlI5AaizBHRVMjX1H73ptuDSiT3QZh4kk74w+eDLyYj4JXo1SvvDw5w378SLhUIDzH0zrlt3oleT3kiPQxC17yM3Os/wrtHO7IC+KGo9qrg+LJFyR/fYYHcyH9i+JAejBEnJQIDAQAB`;
@@ -11173,4 +11180,4 @@ const UC_CONTEXT = config.ucExtServerContext;
11173
11180
  function listUserTreeApi(params) {
11174
11181
  return instance.get(`${UC_CONTEXT}/tree/uc-user/listUserTree`, { params });
11175
11182
  }
11176
- export { Base64ForLogin, CONTENT_TYPE, IS_OR_NOT_ENUM, IS_OR_NOT_ENUM_KEY, IS_OR_NOT_ENUM_LIST, MIME_TYPE, UC_ENUM, addMenuCollectApi, instance as axios, base64ToBlob, blobToBase64, checkIdCard, checkPhone, checkTel, checkVehicleNo, clearIndexDescCache, clearPermissionCache, clearSessionStorage, clearUserInfoCache, config, cryptor, deleteMenuCollectApi, deleteMenuHistoryApi, exportJsonToExcel, flattenRow2ColumnData, formatDate, formatDateChinese, formatDecimal, formatHalfYear, formatQuarter, getAppListApi, getCaptchaURL, getContentType, getDictApi, getDictMapApi, getDictsMapApi, getExcelColumnIdx, getGlobalPolicyApi, getHalfYear, getHalfYearBeginMonth, getHalfYearEndMonth, getHalfYearNum, getIndexDescCache, getItem, getLocalStorage, getMaxTabNumValueApi, getMenuCollectApi, getMenuHistoryApi, getOssFileApi, getOssFileUrl, getPermissionApi, getPermissionCache, getPriceInfo, getQuarter, getQuarterBeginMonth, getQuarterEndMonth, getQuarterNum, getSessionStorage, getToken, getType, getUrlParams, getUserInfoApi, getUserInfoCache, guid, importJsonFromExcel, isArguments, isArray, isArrayLike, isBoolean, isDate, isDecimal, isElement, isEmpty, isEqual, isEqualWith, isError, isEven, isFinite$1 as isFinite, isFunction, isInteger, isNegative, isNil, isNull, isNumber, isNumberEqual, isObject, isObjectLike, isOdd, isPlainObject, isPositive, isPromise, isPrototype, isRegExp2 as isRegExp, isString, isType, isUndefined, listComTreeApi, listIndexDescApi, listItemTreeApi, listUserTreeApi, loginApi, logoutApi, menuHistoryApi, numToChineseNumerals, numToDX, off, on, preventDefault, putOssFileApi, putOssFileUrl, quarter2Chinese, removeLocalStorage, removeMenuCollectApi, removeSessionStorage, renderColumnEnums, renderEnumData, renderEnumList, renderFieldEnums, responseInterceptors, round, row2column, setContentType, setIndexDescCache, setLocalStorage, setPermissionCache, setSessionStorage, setToken, setUserInfoCache, stopPropagation, str2Date, toChies, toFixed, toThousands, updatePasswordApi, useConfig, uuid };
11183
+ export { Base64ForLogin, CONTENT_TYPE, IS_OR_NOT_ENUM, IS_OR_NOT_ENUM_KEY, IS_OR_NOT_ENUM_LIST, MIME_TYPE, UC_ENUM, addMenuCollectApi, instance as axios, base64ToBlob, blobToBase64, checkIdCard, checkPhone, checkTel, checkVehicleNo, clearIndexDescCache, clearPermissionCache, clearSessionStorage, clearUserInfoCache, config, cryptor, deleteMenuCollectApi, deleteMenuHistoryApi, exportJsonToExcel, flattenRow2ColumnData, formatDate, formatDateChinese, formatDecimal, formatHalfYear, formatQuarter, getAppListApi, getCaptchaURL, getContentType, getDictApi, getDictMapApi, getDictsMapApi, getExcelColumnIdx, getGlobalPolicyApi, getHalfYear, getHalfYearBeginMonth, getHalfYearEndMonth, getHalfYearNum, getIndexDescCache, getItem, getLocalStorage, getMaxTabNumValueApi, getMenuCollectApi, getMenuHistoryApi, getOssFileApi, getOssFileUrl, getPermissionApi, getPermissionCache, getPreviewUrlApi, getPriceInfo, getQuarter, getQuarterBeginMonth, getQuarterEndMonth, getQuarterNum, getSessionStorage, getToken, getType, getUrlParams, getUserInfoApi, getUserInfoCache, guid, importJsonFromExcel, isArguments, isArray, isArrayLike, isBoolean, isDate, isDecimal, isElement, isEmpty, isEqual, isEqualWith, isError, isEven, isFinite$1 as isFinite, isFunction, isInteger, isNegative, isNil, isNull, isNumber, isNumberEqual, isObject, isObjectLike, isOdd, isPlainObject, isPositive, isPromise, isPrototype, isRegExp2 as isRegExp, isString, isType, isUndefined, listComTreeApi, listIndexDescApi, listItemTreeApi, listUserTreeApi, loginApi, logoutApi, menuHistoryApi, numToChineseNumerals, numToDX, off, on, preventDefault, putOssFileApi, putOssFileUrl, quarter2Chinese, removeLocalStorage, removeMenuCollectApi, removeSessionStorage, renderColumnEnums, renderEnumData, renderEnumList, renderFieldEnums, responseInterceptors, round, row2column, setContentType, setIndexDescCache, setLocalStorage, setPermissionCache, setSessionStorage, setToken, setUserInfoCache, stopPropagation, str2Date, toChies, toFixed, toThousands, updatePasswordApi, useConfig, uuid };