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

* Add self host notification launch settings * Exclude current context from push for password updates This is needed to allow the current context to process a key rotation if one is being done. Does not change any other call to `PushLogOut`. * Revert inverted exclude logic This exclude is referring to exempting the requesting client from the notification push.
28 lines
1.2 KiB
C#
28 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, bool excludeCurrentContextFromPush = false);
|
|
Task PushSyncSendCreateAsync(Send send);
|
|
Task PushSyncSendUpdateAsync(Send send);
|
|
Task PushSyncSendDeleteAsync(Send send);
|
|
Task PushAuthRequestAsync(AuthRequest authRequest);
|
|
Task PushAuthRequestResponseAsync(AuthRequest authRequest);
|
|
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);
|
|
}
|