diff --git a/common/src/models/request/sendWithIdRequest.ts b/common/src/models/request/sendWithIdRequest.ts new file mode 100644 index 0000000000..277cfa482d --- /dev/null +++ b/common/src/models/request/sendWithIdRequest.ts @@ -0,0 +1,12 @@ +import { SendRequest } from './sendRequest'; + +import { Send } from '../domain/send'; + +export class SendWithIdRequest extends SendRequest { + id: string; + + constructor(send: Send) { + super(send); + this.id = send.id; + } +} diff --git a/common/src/models/request/updateKeyRequest.ts b/common/src/models/request/updateKeyRequest.ts index 0464e5ce53..c0521b9b5e 100644 --- a/common/src/models/request/updateKeyRequest.ts +++ b/common/src/models/request/updateKeyRequest.ts @@ -1,9 +1,11 @@ import { CipherWithIdRequest } from './cipherWithIdRequest'; import { FolderWithIdRequest } from './folderWithIdRequest'; +import { SendWithIdRequest } from './sendWithIdRequest'; export class UpdateKeyRequest { ciphers: CipherWithIdRequest[] = []; folders: FolderWithIdRequest[] = []; + sends: SendWithIdRequest[] = []; masterPasswordHash: string; privateKey: string; key: string;