[PM-31069] Add OrganizationId support for Vault Migration operations (#6397)

This commit is contained in:
aj-rosado
2026-01-23 16:05:55 +00:00
committed by GitHub
parent 2acf429f67
commit 0395d489c2
14 changed files with 129 additions and 9 deletions

View File

@@ -13,4 +13,5 @@ data class OrganizationEventJson(
@SerialName("type") val type: OrganizationEventType,
@SerialName("cipherId") val cipherId: String?,
@SerialName("date") @Contextual val date: ZonedDateTime,
@SerialName("organizationId") val organizationId: String?,
)

View File

@@ -35,6 +35,7 @@ class EventServiceTest : BaseServiceTest() {
type = OrganizationEventType.CIPHER_CREATED,
cipherId = "cipher-id",
date = ZonedDateTime.now(fixedClock),
organizationId = null,
),
),
)