1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

Rename duplicate model more appropriately (#5288)

This commit is contained in:
Robyn MacCallum
2023-04-26 05:38:20 -04:00
committed by GitHub
parent 395d3c7034
commit ab25c69cdf
3 changed files with 4 additions and 6 deletions

View File

@@ -6,7 +6,7 @@ import { GenerateResponse } from "./generate-response";
import { SuccessStatusResponse } from "./success-status-response";
import { UserStatusErrorResponse } from "./user-status-error-response";
export type EncyptedMessageResponse =
export type MessageResponseData =
| AccountStatusResponse[]
| CannotDecryptErrorResponse
| CipherResponse[]

View File

@@ -6,7 +6,7 @@ export * from "./encrypted-message-payloads/password-generate-payload";
export * from "./encrypted-message-responses/account-status-response";
export * from "./encrypted-message-responses/cannot-decrypt-error-response";
export * from "./encrypted-message-responses/cipher-response";
export * from "./encrypted-message-responses/encrypted-message-response";
export * from "./encrypted-message-responses/message-response-data";
export * from "./encrypted-message-responses/failure-status-response";
export * from "./encrypted-message-responses/generate-response";
export * from "./encrypted-message-responses/success-status-response";