Skip to content

Commit eac6309

Browse files
authored
Merge branch 'main' into feat/optional-commit-on-refresh
2 parents ff0c27b + 5a6cdb2 commit eac6309

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

lib/__tests__/sdk/utilities/token-utils.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ describe('token-utils', () => {
106106
email: idTokenPayload.email,
107107
id: idTokenPayload.sub,
108108
picture: null,
109+
phone: undefined,
109110
};
110111

111112
expect(await sessionManager.getSessionItem('id_token')).toBe(mockIdToken);

lib/sdk/utilities/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export interface UserType {
1212
given_name: string;
1313
email: string;
1414
id: string;
15+
phone: string;
1516
}
1617

1718
export type TokenType = 'refresh_token' | 'access_token' | 'id_token';

0 commit comments

Comments
 (0)