mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 15:15:34 +03:00
Added key to sync response model and cipher sdk object (#201)
This commit is contained in:
parent
949bb4ad5a
commit
fc36f95ab7
5 changed files with 8 additions and 3 deletions
|
@ -587,6 +587,9 @@ data class SyncResponseJson(
|
|||
|
||||
@SerialName("card")
|
||||
val card: Card?,
|
||||
|
||||
@SerialName("key")
|
||||
val key: String?,
|
||||
) {
|
||||
/**
|
||||
* Represents an attachment in the vault response.
|
||||
|
|
|
@ -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(),
|
||||
|
|
|
@ -29,6 +29,7 @@ fun createMockCipher(number: Int): SyncResponseJson.Cipher =
|
|||
shouldEdit = false,
|
||||
shouldOrganizationUseTotp = false,
|
||||
shouldViewPassword = false,
|
||||
key = "mockKey-$number",
|
||||
)
|
||||
|
||||
/**
|
||||
|
|
|
@ -299,7 +299,8 @@ private const val SYNC_SUCCESS_JSON = """
|
|||
"expYear": "mockExpirationYear-1",
|
||||
"cardholderName": "mockCardholderName-1",
|
||||
"brand": "mockBrand-1"
|
||||
}
|
||||
},
|
||||
"key": "mockKey-1"
|
||||
}
|
||||
],
|
||||
"domains": {
|
||||
|
|
|
@ -26,7 +26,7 @@ fun createMockSdkCipher(number: Int): Cipher =
|
|||
organizationId = "mockOrganizationId-$number",
|
||||
folderId = "mockFolderId-$number",
|
||||
collectionIds = listOf("mockCollectionId-$number"),
|
||||
key = null,
|
||||
key = "mockKey-$number",
|
||||
name = "mockName-$number",
|
||||
notes = "mockNotes-$number",
|
||||
type = CipherType.LOGIN,
|
||||
|
|
Loading…
Reference in a new issue