Add event type for provider accessing client vault (#448)

This commit is contained in:
Matt Gibson 2021-08-05 08:50:56 -04:00 committed by GitHub
parent cae26521cc
commit 027747246c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -48,6 +48,7 @@ export enum EventType {
Organization_Updated = 1600, Organization_Updated = 1600,
Organization_PurgedVault = 1601, Organization_PurgedVault = 1601,
// Organization_ClientExportedVault = 1602, // Organization_ClientExportedVault = 1602,
Organization_VaultAccessed = 1603,
Policy_Updated = 1700, Policy_Updated = 1700,
@ -59,4 +60,5 @@ export enum EventType {
ProviderOrganization_Created = 1900, ProviderOrganization_Created = 1900,
ProviderOrganization_Added = 1901, ProviderOrganization_Added = 1901,
ProviderOrganization_Removed = 1902, ProviderOrganization_Removed = 1902,
ProviderOrganization_VaultAccessed = 1903,
} }