@omerlo/omerlo-webkit 0.0.33 → 0.0.34

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.
@@ -19,5 +19,6 @@ export interface OauthUser {
19
19
  id: string;
20
20
  name: string;
21
21
  email: string;
22
+ accessToken: string;
22
23
  verifiedAt: Date | null;
23
24
  }
@@ -33,6 +33,7 @@ export function parseOauthUser(data, _assoc) {
33
33
  id: data.id,
34
34
  name: data.name,
35
35
  email: data.email,
36
+ accessToken: data.access_token,
36
37
  verifiedAt: data.verified_at
37
38
  };
38
39
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omerlo/omerlo-webkit",
3
- "version": "0.0.33",
3
+ "version": "0.0.34",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run package",