@pooflabs/core 0.0.28 → 0.0.29
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/dist/index.js +160 -26
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +160 -26
- package/dist/index.mjs.map +1 -1
- package/dist/utils/utils.d.ts +1 -1
- package/package.json +1 -1
package/dist/utils/utils.d.ts
CHANGED
|
@@ -5,4 +5,4 @@ export declare function createAuthHeader(isServer: boolean): Promise<{
|
|
|
5
5
|
export declare function getUserInfo(isServer: boolean): Promise<any>;
|
|
6
6
|
export declare function getIdToken(isServer: boolean): Promise<string | null>;
|
|
7
7
|
export declare function getRefreshToken(isServer: boolean): Promise<string | null>;
|
|
8
|
-
export declare function updateIdTokenAndAccessToken(idToken: string, accessToken: string): void
|
|
8
|
+
export declare function updateIdTokenAndAccessToken(idToken: string, accessToken: string, isServer?: boolean): Promise<void>;
|