Added key to sync response model and cipher sdk object (#201)

This commit is contained in:
Ramsey Smith
2023-11-02 15:44:11 -06:00
committed by Álison Fernandes
parent 949bb4ad5a
commit fc36f95ab7
5 changed files with 8 additions and 3 deletions

View File

@@ -587,6 +587,9 @@ data class SyncResponseJson(
@SerialName("card")
val card: Card?,
@SerialName("key")
val key: String?,
) {
/**
* Represents an attachment in the vault response.

View File

@@ -40,7 +40,7 @@ fun SyncResponseJson.Cipher.toEncryptedSdkCipher(): Cipher =
organizationId = organizationId,
folderId = folderId,
collectionIds = collectionIds.orEmpty(),
key = null,
key = key,
name = name.orEmpty(),
notes = notes,
type = type.toSdkCipherType(),