mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00

* Revert "Add git blame entry (#2226)" This reverts commit 239286737d15cb84a893703ee5a8b33a2d67ad3d. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit 34fb4cca2aa78deb84d4cbc359992a7c6bba7ea5.
27 lines
1.2 KiB
C#
27 lines
1.2 KiB
C#
using Bit.Core.Entities;
|
|
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface IPushNotificationService
|
|
{
|
|
Task PushSyncCipherCreateAsync(Cipher cipher, IEnumerable<Guid> collectionIds);
|
|
Task PushSyncCipherUpdateAsync(Cipher cipher, IEnumerable<Guid> 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);
|
|
}
|
|
}
|