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

* added enum values for new events * hooked up directory sync event * upgraded the OrganizationUpgrade ReferenceEvent * Added metadata to the OrganizationUserInvited event noting if this is the first event sent from an organization * Added metadata to the AdjustedSeats event * Implemented vaultImported event * Implemented FirstGroupAdded event * Implemented FirstCollectionAdded event * Implemented FirstSecretAdded event type * Implemented SalesAssisted reference event * changed events to match updated requirements * renamed an event enum
14 lines
303 B
C#
14 lines
303 B
C#
namespace Bit.Core.Enums
|
|
{
|
|
public static class BitwardenClient
|
|
{
|
|
public const string
|
|
Web = "web",
|
|
Browser = "browser",
|
|
Desktop = "desktop",
|
|
Mobile = "mobile",
|
|
Cli = "cli",
|
|
DirectoryConnector = "connector";
|
|
}
|
|
}
|