mirror of
https://github.com/bitwarden/server
synced 2025-12-25 04:33:26 +00:00
* Extract Import-Api endpoints into separate controller Moved ciphers/import and ciphers/import-organization into new ImportController Paths have been kept intact for now (no changes on clients needed) Moved request-models used for import into tools-subfolder * Update CODEOWNERS for team-tools-dev * Move HibpController (reports) to tools * Moving files related to Send * Moving files related to ReferenceEvent * Removed unneeded newline
30 lines
1.3 KiB
C#
30 lines
1.3 KiB
C#
using Bit.Core.Auth.Entities;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.Tools.Entities;
|
|
using Bit.Core.Vault.Entities;
|
|
|
|
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);
|
|
}
|