hifun-tools 1.3.14 → 1.3.15

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.
@@ -1,3 +1,4 @@
1
+ import { isDomainMatch, toStandardUrl } from "./utils";
1
2
  import { AesDecrypt, AesEncrypt } from "./ende";
2
3
  type TenantConfig = {
3
4
  PUBLIC_TITLE: string;
@@ -32,4 +33,4 @@ declare class InitCls {
32
33
  AesDecrypt: typeof AesDecrypt;
33
34
  }
34
35
  declare const HF: InitCls;
35
- export { HF };
36
+ export { HF, isDomainMatch, toStandardUrl, AesEncrypt, AesDecrypt };
@@ -155,4 +155,4 @@ class InitCls {
155
155
  AesDecrypt = AesDecrypt;
156
156
  }
157
157
  const HF = new InitCls();
158
- export { HF };
158
+ export { HF, isDomainMatch, toStandardUrl, AesEncrypt, AesDecrypt };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hifun-tools",
3
- "version": "1.3.14",
3
+ "version": "1.3.15",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",