@das-fed/utils 7.1.0-dev.9 → 7.1.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 (35) hide show
  1. package/api-services/modules/authentication/index.js +725 -743
  2. package/api-services/modules/authentication/index.js.gz +0 -0
  3. package/api-services/modules/contract/index.js +743 -725
  4. package/api-services/modules/contract/index.js.gz +0 -0
  5. package/api-services/modules/gateway-edge/index.js +725 -743
  6. package/api-services/modules/gateway-edge/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 +744 -726
  10. package/api-services/modules/justauth/index.js.gz +0 -0
  11. package/api-services/modules/portal/index.js +702 -716
  12. package/api-services/modules/portal/index.js.gz +0 -0
  13. package/api-services/modules/space-manage/index.js +743 -725
  14. package/api-services/modules/space-manage/index.js.gz +0 -0
  15. package/api-services/modules/supplychain-manage/index.js +743 -725
  16. package/api-services/modules/supplychain-manage/index.js.gz +0 -0
  17. package/api-services/modules/systemConfiguration/index.js +743 -725
  18. package/api-services/modules/systemConfiguration/index.js.gz +0 -0
  19. package/api-services/modules/tool/index.js +743 -725
  20. package/api-services/modules/tool/index.js.gz +0 -0
  21. package/common-info/index.d.ts +1 -1
  22. package/common-tools/platform-tools/index.d.ts +7 -2
  23. package/common-tools/platform-tools/index.js +27 -15
  24. package/common-tools/platform-tools/index.js.gz +0 -0
  25. package/create-api-service/index.js +699 -717
  26. package/create-api-service/index.js.gz +0 -0
  27. package/create-api-service/sso/authorizer.d.ts +1 -1
  28. package/create-api-service/sso/index.d.ts +6 -5
  29. package/create-api-service/sso/index.js +509 -506
  30. package/create-api-service/sso/index.js.gz +0 -0
  31. package/esm-map.json +2 -1
  32. package/package.json +4 -4
  33. package/token-tools/index.d.ts +2 -1
  34. package/token-tools/index.js +1 -1
  35. 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>;
@@ -5,6 +5,7 @@ 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 };