@flashbacktech/flashbackclient 0.0.89 → 0.0.91
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/api/client.d.ts +1 -1
- package/dist/api/types/auth.d.ts +1 -0
- package/package.json +1 -1
package/dist/api/client.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ export declare class ApiClient implements IApiClient {
|
|
|
28
28
|
* @param provider - The provider to refresh the token for
|
|
29
29
|
* @returns The refreshed token
|
|
30
30
|
*/
|
|
31
|
-
refreshToken: (refreshToken: string, provider: ProviderType) => Promise<RefreshTokenResponse>;
|
|
31
|
+
refreshToken: (refreshToken: string, provider: ProviderType) => Promise<RefreshTokenResponse | RefreshTokenErrorResponse>;
|
|
32
32
|
private authenticateWeb3Stellar;
|
|
33
33
|
private makeRequest;
|
|
34
34
|
private authenticateGoogle;
|
package/dist/api/types/auth.d.ts
CHANGED