@das-fed/utils 7.1.0-dev.3 → 7.1.0-dev.30

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 (71) hide show
  1. package/api-services/index.js +994 -958
  2. package/api-services/index.js.gz +0 -0
  3. package/api-services/modules/app-manage/index.js +851 -852
  4. package/api-services/modules/app-manage/index.js.gz +0 -0
  5. package/api-services/modules/authentication/index.js +487 -470
  6. package/api-services/modules/authentication/index.js.gz +0 -0
  7. package/api-services/modules/bems/index.js +486 -469
  8. package/api-services/modules/bems/index.js.gz +0 -0
  9. package/api-services/modules/contract/index.js +753 -718
  10. package/api-services/modules/contract/index.js.gz +0 -0
  11. package/api-services/modules/duty-manage/index.js +494 -477
  12. package/api-services/modules/duty-manage/index.js.gz +0 -0
  13. package/api-services/modules/enterpriseright/index.js +487 -470
  14. package/api-services/modules/enterpriseright/index.js.gz +0 -0
  15. package/api-services/modules/file/index.js +844 -809
  16. package/api-services/modules/file/index.js.gz +0 -0
  17. package/api-services/modules/gateway-edge/index.js +487 -470
  18. package/api-services/modules/gateway-edge/index.js.gz +0 -0
  19. package/api-services/modules/index.js +1046 -1046
  20. package/api-services/modules/index.js.gz +0 -0
  21. package/api-services/modules/iot/index.js +544 -527
  22. package/api-services/modules/iot/index.js.gz +0 -0
  23. package/api-services/modules/justauth/index.d.ts +1 -1
  24. package/api-services/modules/justauth/index.js +757 -721
  25. package/api-services/modules/justauth/index.js.gz +0 -0
  26. package/api-services/modules/knowledge/index.js +487 -470
  27. package/api-services/modules/knowledge/index.js.gz +0 -0
  28. package/api-services/modules/link/index.js +487 -470
  29. package/api-services/modules/link/index.js.gz +0 -0
  30. package/api-services/modules/permission/index.js +487 -470
  31. package/api-services/modules/permission/index.js.gz +0 -0
  32. package/api-services/modules/platformManage/index.js +753 -718
  33. package/api-services/modules/platformManage/index.js.gz +0 -0
  34. package/api-services/modules/portal/index.js +487 -470
  35. package/api-services/modules/portal/index.js.gz +0 -0
  36. package/api-services/modules/space-manage/index.js +487 -470
  37. package/api-services/modules/space-manage/index.js.gz +0 -0
  38. package/api-services/modules/super-admin/index.js +757 -722
  39. package/api-services/modules/super-admin/index.js.gz +0 -0
  40. package/api-services/modules/supplier/index.js +537 -520
  41. package/api-services/modules/supplier/index.js.gz +0 -0
  42. package/api-services/modules/supplychain-manage/index.js +753 -718
  43. package/api-services/modules/supplychain-manage/index.js.gz +0 -0
  44. package/api-services/modules/systemConfiguration/index.js +487 -470
  45. package/api-services/modules/systemConfiguration/index.js.gz +0 -0
  46. package/api-services/modules/tool/index.js +487 -470
  47. package/api-services/modules/tool/index.js.gz +0 -0
  48. package/api-services/src/create-service/index.js +728 -693
  49. package/api-services/src/create-service/index.js.gz +0 -0
  50. package/common-info/index.d.ts +1 -1
  51. package/common-tools/platform-tools/index.d.ts +7 -2
  52. package/common-tools/platform-tools/index.js +27 -15
  53. package/common-tools/platform-tools/index.js.gz +0 -0
  54. package/create-api-service/index.js +486 -469
  55. package/create-api-service/index.js.gz +0 -0
  56. package/create-api-service/sso/authorizer.d.ts +1 -0
  57. package/create-api-service/sso/index.d.ts +16 -7
  58. package/create-api-service/sso/index.js +870 -769
  59. package/create-api-service/sso/index.js.gz +0 -0
  60. package/create-api-service/sso/utils.d.ts +2 -0
  61. package/create-api-service/thirdLogout/index.d.ts +19 -0
  62. package/create-api-service/thirdLogout/index.js +1835 -0
  63. package/create-api-service/thirdLogout/index.js.gz +0 -0
  64. package/create-api-service/unauthorized-recovery/index.d.ts +36 -0
  65. package/create-api-service/unauthorized-recovery/index.js +16 -0
  66. package/curring-http/type.d.ts +93 -87
  67. package/esm-map.json +10 -1
  68. package/package.json +4 -4
  69. package/token-tools/index.d.ts +2 -1
  70. package/token-tools/index.js +1 -1
  71. package/token-tools/index.js.gz +0 -0
@@ -1,7 +1,7 @@
1
1
  import { UserInfo, PersonalInfo, TenantInfo, HomeInfo, PersonalConfigInfo, ProjectInfo, ProjectMessage, SubAppsInfo, TabInfo, permissionBtnInfo } from './type';
2
2
 
3
3
  /** 获取token */
4
- export declare const getToken: any;
4
+ export declare const getToken: () => string;
5
5
  /** 获取账户详情 */
6
6
  export declare const getUserInfo: () => UserInfo;
7
7
  /** 获取用户详情 */
@@ -5,12 +5,17 @@
5
5
  */
6
6
  export declare const isRelativeOrSameDomain: (url: string) => boolean;
7
7
  /**
8
- * 自动拼接上showLayout=false参数
8
+ * 自动拼接上showLayout=false 和 ignoreAuth = true
9
9
  * @param url
10
10
  * @returns
11
11
  */
12
12
  export declare const setShowLayout: (url: string) => any;
13
- export declare const setShowWatermark: (url: string) => string;
13
+ /**
14
+ * 设置水印显示参数
15
+ * @param url
16
+ * @returns
17
+ */
18
+ export declare const setShowWatermark: (url: string) => any;
14
19
  /**
15
20
  * url携带token
16
21
  * @param url
@@ -1,26 +1,38 @@
1
- import { getToken as n } from "@das-fed/utils/common-info";
2
- const o = (t) => {
1
+ import { getToken as r } from "@das-fed/utils/common-info";
2
+ const s = (t) => {
3
3
  try {
4
4
  return new URL(t, location.origin).origin === location.origin;
5
5
  } catch {
6
6
  return !0;
7
7
  }
8
- }, r = (t) => {
8
+ }, h = (t) => {
9
9
  if (!t) return "";
10
- if (!o(t)) return t;
11
- const e = new URL(t, location.origin);
12
- return e.searchParams.has("showLayout") || e.searchParams.set("showLayout", "false"), e.toString();
13
- }, s = (t) => {
10
+ if (!s(t)) return t;
11
+ try {
12
+ const e = new URL(t, location.origin);
13
+ return e.searchParams.has("showLayout") || e.searchParams.set("showLayout", "false"), e.searchParams.has("ignoreAuth") || e.searchParams.set("ignoreAuth", "true"), e.toString();
14
+ } catch {
15
+ const e = /([?&])showLayout=/.test(t), a = /([?&])ignoreAuth=/.test(t), o = [];
16
+ if (e || o.push("showLayout=false"), a || o.push("ignoreAuth=true"), o.length === 0) return t;
17
+ const n = t.includes("?") ? "&" : "?";
18
+ return t + n + o.join("&");
19
+ }
20
+ }, c = (t) => {
14
21
  if (!t) return "";
15
- let e = "";
16
- return o(t) && !t.includes("showWatermark=false") ? e = t.indexOf("?") !== -1 ? t + "&showWatermark=false" : t + "?showWatermark=false" : e = t, e;
17
- }, i = (t) => {
18
- const e = n();
22
+ if (!s(t)) return t;
23
+ try {
24
+ const e = new URL(t, location.origin);
25
+ return e.searchParams.get("showWatermark") !== "false" && e.searchParams.set("showWatermark", "false"), e.toString();
26
+ } catch {
27
+ return t.includes("showWatermark=false") ? t : t.indexOf("?") !== -1 ? t + "&showWatermark=false" : t + "?showWatermark=false";
28
+ }
29
+ }, f = (t) => {
30
+ const e = r();
19
31
  return t.includes("?") ? `${t}&token=${e}` : `${t}?token=${e}`;
20
32
  };
21
33
  export {
22
- o as isRelativeOrSameDomain,
23
- r as setShowLayout,
24
- s as setShowWatermark,
25
- i as withToken
34
+ s as isRelativeOrSameDomain,
35
+ h as setShowLayout,
36
+ c as setShowWatermark,
37
+ f as withToken
26
38
  };