in src/providers/session.ts [113:119]
async getSession(): Promise<Session> {
if (this.needUpdateCredential() || this.shouldPrefetchCredential()) {
await this.refreshSession();
this.refreshTimestamp();
}
return this.session;
}