using AppleAuth.Enums; using AppleAuth.Interfaces; using System; namespace AppleAuth { public interface IAppleAuthManager { [Obsolete("This method is deprecated and will be removed soon. Please provide an empty instance of AppleAuthQuickLoginArgs to QuickLogin.")] void QuickLogin(Action successCallback, Action errorCallback); void QuickLogin(AppleAuthQuickLoginArgs quickLoginArgs, Action successCallback, Action errorCallback); [Obsolete("This method is deprecated and will be removed soon. Please provide an instance of AppleAuthLoginArgs to LoginWithAppleId with the LoginOptions instead.")] void LoginWithAppleId(LoginOptions options, Action successCallback, Action errorCallback); void LoginWithAppleId(AppleAuthLoginArgs loginArgs, Action successCallback, Action errorCallback); void GetCredentialState(string userId, Action successCallback, Action errorCallback); void SetCredentialsRevokedCallback(Action credentialsRevokedCallback); void Update(); } }