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 GitHub
parent 56d8e83849
commit c621220e97
5 changed files with 8 additions and 3 deletions

View File

@@ -29,6 +29,7 @@ fun createMockCipher(number: Int): SyncResponseJson.Cipher =
shouldEdit = false,
shouldOrganizationUseTotp = false,
shouldViewPassword = false,
key = "mockKey-$number",
)
/**

View File

@@ -299,7 +299,8 @@ private const val SYNC_SUCCESS_JSON = """
"expYear": "mockExpirationYear-1",
"cardholderName": "mockCardholderName-1",
"brand": "mockBrand-1"
}
},
"key": "mockKey-1"
}
],
"domains": {

View File

@@ -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,