using Bit.Core.Auth.Models.Data; using Bit.Core.Entities; using Bit.Core.KeyManagement.UserKey; #nullable enable namespace Bit.Core.Repositories; public interface IDeviceRepository : IRepository { Task GetByIdAsync(Guid id, Guid userId); Task GetByIdentifierAsync(string identifier); Task GetByIdentifierAsync(string identifier, Guid userId); Task> GetManyByUserIdAsync(Guid userId); // DeviceAuthDetails is passed back to decouple the response model from the // repository in case more fields are ever added to the details response for // other requests. Task> GetManyByUserIdWithDeviceAuth(Guid userId); Task ClearPushTokenAsync(Guid id); UpdateEncryptedDataForKeyRotation UpdateKeysForRotationAsync(Guid userId, IEnumerable devices); }