From 365291ec5c552a71ffd863c63182b113a4bd0e8a Mon Sep 17 00:00:00 2001 From: Artem Chepurnoy Date: Mon, 26 Feb 2024 16:26:50 +0200 Subject: [PATCH] fix: Cipher reprompt doesnt get synced with the latest official Bitwarden server --- .../artemchep/keyguard/provider/bitwarden/entity/CipherEntity.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/common/src/commonMain/kotlin/com/artemchep/keyguard/provider/bitwarden/entity/CipherEntity.kt b/common/src/commonMain/kotlin/com/artemchep/keyguard/provider/bitwarden/entity/CipherEntity.kt index d57b437d..fb311d17 100644 --- a/common/src/commonMain/kotlin/com/artemchep/keyguard/provider/bitwarden/entity/CipherEntity.kt +++ b/common/src/commonMain/kotlin/com/artemchep/keyguard/provider/bitwarden/entity/CipherEntity.kt @@ -76,6 +76,7 @@ data class CipherEntity( @JsonNames("deletedDate") @SerialName("DeletedDate") val deletedDate: Instant? = null, + @JsonNames("reprompt") @SerialName("Reprompt") val reprompt: CipherRepromptTypeEntity = CipherRepromptTypeEntity.None, )