mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
fix deps
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: 42dbdb0043...5db115ae43
@@ -271,8 +271,7 @@ export class Program {
|
|||||||
await this.exitIfLocked();
|
await this.exitIfLocked();
|
||||||
const command = new GetCommand(this.main.cipherService, this.main.folderService,
|
const command = new GetCommand(this.main.cipherService, this.main.folderService,
|
||||||
this.main.collectionService, this.main.totpService, this.main.auditService,
|
this.main.collectionService, this.main.totpService, this.main.auditService,
|
||||||
this.main.cryptoService, this.main.tokenService, this.main.userService,
|
this.main.cryptoService, this.main.userService, this.main.searchService);
|
||||||
this.main.searchService);
|
|
||||||
const response = await command.run(object, id, cmd);
|
const response = await command.run(object, id, cmd);
|
||||||
this.processResponse(response);
|
this.processResponse(response);
|
||||||
});
|
});
|
||||||
@@ -304,7 +303,7 @@ export class Program {
|
|||||||
.action(async (object, encodedJson, cmd) => {
|
.action(async (object, encodedJson, cmd) => {
|
||||||
await this.exitIfLocked();
|
await this.exitIfLocked();
|
||||||
const command = new CreateCommand(this.main.cipherService, this.main.folderService,
|
const command = new CreateCommand(this.main.cipherService, this.main.folderService,
|
||||||
this.main.tokenService, this.main.cryptoService);
|
this.main.userService, this.main.cryptoService);
|
||||||
const response = await command.run(object, encodedJson, cmd);
|
const response = await command.run(object, encodedJson, cmd);
|
||||||
this.processResponse(response);
|
this.processResponse(response);
|
||||||
});
|
});
|
||||||
@@ -365,7 +364,7 @@ export class Program {
|
|||||||
.action(async (object, id, cmd) => {
|
.action(async (object, id, cmd) => {
|
||||||
await this.exitIfLocked();
|
await this.exitIfLocked();
|
||||||
const command = new DeleteCommand(this.main.cipherService, this.main.folderService,
|
const command = new DeleteCommand(this.main.cipherService, this.main.folderService,
|
||||||
this.main.tokenService);
|
this.main.userService);
|
||||||
const response = await command.run(object, id, cmd);
|
const response = await command.run(object, id, cmd);
|
||||||
this.processResponse(response);
|
this.processResponse(response);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user