add logOut to the IdentityServiceClient type and implementations. use the client logOut method in useLogOut
Depends on D11334
Differential D11335
[native][lib][web] update IdentityServiceClient implementations and useLogOut in user-actions.js varun on Mar 14 2024, 9:20 PM. Authored by Tags None Referenced Files
Details add logOut to the IdentityServiceClient type and implementations. use the client logOut method in useLogOut Depends on D11334 successfully logged out of identity on web and native. confirmed that access token and device were removed from ddb
Diff Detail
Event Timeline
Comment Actions after rebasing i started getting a flow error. updated web/grpc/identity-service-client-proxy.js to resolve it, but not really sure what this code does... going to add @michal as a reviewer Comment Actions Looks good on the identity-service-client-proxy part. Short explanation is -> we are moving the identity client to worker so that multiple tabs can synchronize the identity calls between them and not conflict. identity-service-client-wrapper.js will run on web worker and identity-service-client-proxy.js will run in the tab JS context and pass the method calls to the worker (we didn't "flip the switch" yet so for now the identity-service-client-wrapper.js is still running in the tab JS context though).
|