@glissandoo/lib 1.0.19 → 1.0.20

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.
@@ -2,6 +2,7 @@ export declare namespace AuthFbFunctionsTypes {
2
2
  interface LoginParams {
3
3
  userId: string;
4
4
  idToken: string;
5
+ sessionExpiresIn?: number;
5
6
  }
6
7
  type LoginResult = void;
7
8
  type StatusParams = void;
@@ -10,8 +11,10 @@ export declare namespace AuthFbFunctionsTypes {
10
11
  }
11
12
  type LogoutParams = void;
12
13
  type LogoutResult = void;
13
- type SimulateParams = {
14
+ interface GetTokenParams {
14
15
  userId: string;
15
- };
16
- type SimulateResult = void;
16
+ }
17
+ interface GetTokenResult {
18
+ idToken: string | null;
19
+ }
17
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissandoo/lib",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
4
4
  "description": "Glissandoo library js",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",