@das-fed/utils 7.1.0-dev.8 → 7.1.0-qatar.1

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 (31) hide show
  1. package/api-services/modules/app-manage/index.js +725 -743
  2. package/api-services/modules/app-manage/index.js.gz +0 -0
  3. package/api-services/modules/authentication/index.js +725 -743
  4. package/api-services/modules/authentication/index.js.gz +0 -0
  5. package/api-services/modules/enterpriseright/index.js +725 -743
  6. package/api-services/modules/enterpriseright/index.js.gz +0 -0
  7. package/api-services/modules/index.js +857 -875
  8. package/api-services/modules/index.js.gz +0 -0
  9. package/api-services/modules/justauth/index.js +726 -744
  10. package/api-services/modules/justauth/index.js.gz +0 -0
  11. package/api-services/modules/knowledge/index.js +725 -743
  12. package/api-services/modules/knowledge/index.js.gz +0 -0
  13. package/api-services/modules/link/index.js +743 -725
  14. package/api-services/modules/link/index.js.gz +0 -0
  15. package/api-services/modules/permission/index.js +743 -725
  16. package/api-services/modules/permission/index.js.gz +0 -0
  17. package/common-info/index.d.ts +1 -1
  18. package/common-tools/platform-tools/index.d.ts +7 -2
  19. package/common-tools/platform-tools/index.js +27 -15
  20. package/common-tools/platform-tools/index.js.gz +0 -0
  21. package/create-api-service/index.js +699 -717
  22. package/create-api-service/index.js.gz +0 -0
  23. package/create-api-service/sso/authorizer.d.ts +1 -1
  24. package/create-api-service/sso/index.d.ts +7 -6
  25. package/create-api-service/sso/index.js +799 -768
  26. package/create-api-service/sso/index.js.gz +0 -0
  27. package/esm-map.json +2 -1
  28. package/package.json +4 -4
  29. package/token-tools/index.d.ts +2 -1
  30. package/token-tools/index.js +1 -1
  31. package/token-tools/index.js.gz +0 -0
Binary file
@@ -1 +1 @@
1
- export declare const getTokenFromAuthorizer: () => Promise<string>;
1
+ export declare const getTokenFromAuthorizer: () => Promise<void>;
@@ -1,10 +1,11 @@
1
1
  import { getQuery } from './utils';
2
2
 
3
- declare const real_uri: string;
3
+ declare const real_uri: any;
4
4
  declare const getTokenParams: any;
5
5
  declare const getTokenFromCode: () => unknown;
6
6
  declare const getToken: (config: any) => unknown;
7
7
  declare const login: (_params: any) => any;
8
+ declare const refreshToken: (params: any) => unknown;
8
9
  declare const tokenStorage: () => {
9
10
  getData: () => {
10
11
  accessToken: any;
@@ -12,11 +13,11 @@ declare const tokenStorage: () => {
12
13
  refreshToken: any;
13
14
  };
14
15
  save: (data: {
15
- accessToken?: string | null;
16
- accessTokenExpiredAt?: string | number | null;
17
- refreshToken?: string | null;
18
- info?: any;
16
+ accessToken: string | null;
17
+ accessTokenExpiredAt: number;
18
+ refreshToken: string | null;
19
+ info: any;
19
20
  }) => void;
20
21
  remove: () => void;
21
22
  };
22
- export { getTokenParams, getTokenFromCode, real_uri, getQuery, getToken, tokenStorage, login };
23
+ export { getTokenParams, getTokenFromCode, real_uri, getQuery, getToken, tokenStorage, login, refreshToken };