mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 17:23:37 +00:00
[Soft Delete] jslib updates for new API updates
New API methods and cipher Deleted Date property, plus search expansion to toggle on deleted flag.
This commit is contained in:
7
src/models/request/cipherBulkRestoreRequest.ts
Normal file
7
src/models/request/cipherBulkRestoreRequest.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export class CipherBulkRestoreRequest {
|
||||
ids: string[];
|
||||
|
||||
constructor(ids: string[]) {
|
||||
this.ids = ids == null ? [] : ids;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user