Breaking changes:
- The
AuthenticationService
has been removed:- Instead of calling
configure_homeserver
, build your own client with theserverNameOrHomeserverUrl
builder method to keep the same behaviour.- The parts of
AuthenticationError
related to discovery will be represented in theClientBuildError
returned when callingbuild()
.
- The parts of
- The remaining methods can be found on the built
Client
.- There is a new
abortOidcLogin
method that should be called if the webview is dismissed without a callback (or fails to present). - The rest of
AuthenticationError
is now found in the OidcError type.
- There is a new
- Instead of calling
OidcAuthenticationData
is now calledOidcAuthorizationData
.
Additions: