From c3f9e1053ba4e1e96c483e14cded0070918e4bf2 Mon Sep 17 00:00:00 2001 From: Matt Gibson Date: Fri, 4 Feb 2022 17:50:59 -0500 Subject: [PATCH] Add deleted date to items (#465) --- src/models/response/cipherResponse.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/models/response/cipherResponse.ts b/src/models/response/cipherResponse.ts index 6aa64be26a..2dd3fa4b8a 100644 --- a/src/models/response/cipherResponse.ts +++ b/src/models/response/cipherResponse.ts @@ -13,6 +13,7 @@ export class CipherResponse extends CipherWithIds implements BaseResponse { object: string; attachments: AttachmentResponse[]; revisionDate: Date; + deletedDate: Date; passwordHistory: PasswordHistoryResponse[]; constructor(o: CipherView) { @@ -23,6 +24,7 @@ export class CipherResponse extends CipherWithIds implements BaseResponse { this.attachments = o.attachments.map((a) => new AttachmentResponse(a)); } this.revisionDate = o.revisionDate; + this.deletedDate = o.deletedDate; if (o.passwordHistory != null) { this.passwordHistory = o.passwordHistory.map((h) => new PasswordHistoryResponse(h)); }