using System; using System.Collections.Generic; using System.Threading.Tasks; using Bit.Core.Entities; using Bit.Core.Enums; namespace Bit.Core.Services { public interface IPushNotificationService { Task PushSyncCipherCreateAsync(Cipher cipher, IEnumerable collectionIds); Task PushSyncCipherUpdateAsync(Cipher cipher, IEnumerable collectionIds); Task PushSyncCipherDeleteAsync(Cipher cipher); Task PushSyncFolderCreateAsync(Folder folder); Task PushSyncFolderUpdateAsync(Folder folder); Task PushSyncFolderDeleteAsync(Folder folder); Task PushSyncCiphersAsync(Guid userId); Task PushSyncVaultAsync(Guid userId); Task PushSyncOrgKeysAsync(Guid userId); Task PushSyncSettingsAsync(Guid userId); Task PushLogOutAsync(Guid userId); Task PushSyncSendCreateAsync(Send send); Task PushSyncSendUpdateAsync(Send send); Task PushSyncSendDeleteAsync(Send send); Task SendPayloadToUserAsync(string userId, PushType type, object payload, string identifier, string deviceId = null); Task SendPayloadToOrganizationAsync(string orgId, PushType type, object payload, string identifier, string deviceId = null); } }