@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.
- package/api-services/index.js +994 -958
- package/api-services/index.js.gz +0 -0
- package/api-services/modules/app-manage/index.js +851 -852
- package/api-services/modules/app-manage/index.js.gz +0 -0
- package/api-services/modules/authentication/index.js +487 -470
- package/api-services/modules/authentication/index.js.gz +0 -0
- package/api-services/modules/bems/index.js +486 -469
- package/api-services/modules/bems/index.js.gz +0 -0
- package/api-services/modules/contract/index.js +753 -718
- package/api-services/modules/contract/index.js.gz +0 -0
- package/api-services/modules/duty-manage/index.js +494 -477
- package/api-services/modules/duty-manage/index.js.gz +0 -0
- package/api-services/modules/enterpriseright/index.js +487 -470
- package/api-services/modules/enterpriseright/index.js.gz +0 -0
- package/api-services/modules/file/index.js +844 -809
- package/api-services/modules/file/index.js.gz +0 -0
- package/api-services/modules/gateway-edge/index.js +487 -470
- package/api-services/modules/gateway-edge/index.js.gz +0 -0
- package/api-services/modules/index.js +1046 -1046
- package/api-services/modules/index.js.gz +0 -0
- package/api-services/modules/iot/index.js +544 -527
- package/api-services/modules/iot/index.js.gz +0 -0
- package/api-services/modules/justauth/index.d.ts +1 -1
- package/api-services/modules/justauth/index.js +757 -721
- package/api-services/modules/justauth/index.js.gz +0 -0
- package/api-services/modules/knowledge/index.js +487 -470
- package/api-services/modules/knowledge/index.js.gz +0 -0
- package/api-services/modules/link/index.js +487 -470
- package/api-services/modules/link/index.js.gz +0 -0
- package/api-services/modules/permission/index.js +487 -470
- package/api-services/modules/permission/index.js.gz +0 -0
- package/api-services/modules/platformManage/index.js +753 -718
- package/api-services/modules/platformManage/index.js.gz +0 -0
- package/api-services/modules/portal/index.js +487 -470
- package/api-services/modules/portal/index.js.gz +0 -0
- package/api-services/modules/space-manage/index.js +487 -470
- package/api-services/modules/space-manage/index.js.gz +0 -0
- package/api-services/modules/super-admin/index.js +757 -722
- package/api-services/modules/super-admin/index.js.gz +0 -0
- package/api-services/modules/supplier/index.js +537 -520
- package/api-services/modules/supplier/index.js.gz +0 -0
- package/api-services/modules/supplychain-manage/index.js +753 -718
- package/api-services/modules/supplychain-manage/index.js.gz +0 -0
- package/api-services/modules/systemConfiguration/index.js +487 -470
- package/api-services/modules/systemConfiguration/index.js.gz +0 -0
- package/api-services/modules/tool/index.js +487 -470
- package/api-services/modules/tool/index.js.gz +0 -0
- package/api-services/src/create-service/index.js +728 -693
- package/api-services/src/create-service/index.js.gz +0 -0
- package/common-info/index.d.ts +1 -1
- package/common-tools/platform-tools/index.d.ts +7 -2
- package/common-tools/platform-tools/index.js +27 -15
- package/common-tools/platform-tools/index.js.gz +0 -0
- package/create-api-service/index.js +486 -469
- package/create-api-service/index.js.gz +0 -0
- package/create-api-service/sso/authorizer.d.ts +1 -0
- package/create-api-service/sso/index.d.ts +16 -7
- package/create-api-service/sso/index.js +870 -769
- package/create-api-service/sso/index.js.gz +0 -0
- package/create-api-service/sso/utils.d.ts +2 -0
- package/create-api-service/thirdLogout/index.d.ts +19 -0
- package/create-api-service/thirdLogout/index.js +1835 -0
- package/create-api-service/thirdLogout/index.js.gz +0 -0
- package/create-api-service/unauthorized-recovery/index.d.ts +36 -0
- package/create-api-service/unauthorized-recovery/index.js +16 -0
- package/curring-http/type.d.ts +93 -87
- package/esm-map.json +10 -1
- package/package.json +4 -4
- package/token-tools/index.d.ts +2 -1
- package/token-tools/index.js +1 -1
- package/token-tools/index.js.gz +0 -0
|
Binary file
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 判断当前是否使用需要定制退出流程的第三方登录。
|
|
3
|
+
* @returns 是否需要执行第三方退出
|
|
4
|
+
*/
|
|
5
|
+
export declare const isThirdLogin: () => boolean;
|
|
6
|
+
/**
|
|
7
|
+
* 执行中深项目的第三方退出登录。
|
|
8
|
+
* @param redirctToUrl 平台退出完成后的回调地址
|
|
9
|
+
*/
|
|
10
|
+
export declare const zhongshenLogout: (redirctToUrl: string) => void;
|
|
11
|
+
/**
|
|
12
|
+
* 执行江铃汽车项目的第三方退出登录。
|
|
13
|
+
*/
|
|
14
|
+
export declare const jmcLogout: () => any;
|
|
15
|
+
/**
|
|
16
|
+
* 根据第三方登录来源调用对应的退出方法。
|
|
17
|
+
* @param redirctToUrl 平台退出地址
|
|
18
|
+
*/
|
|
19
|
+
export declare const thirdLogout: (redirctToUrl?: string) => any;
|