1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

[deps] Autofill: Update prettier to v3 (#7014)

* [deps] Autofill: Update prettier to v3

* prettier formatting updates

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
This commit is contained in:
renovate[bot]
2023-11-29 16:15:20 -05:00
committed by GitHub
parent 4ff5f38e89
commit 28de9439be
1145 changed files with 5898 additions and 5612 deletions

View File

@@ -47,8 +47,8 @@ export class VaultProgram extends Program {
requestedObject +
'". Allowed objects are ' +
validObjects.join(", ") +
"."
)
".",
),
);
}
return success;
@@ -75,7 +75,7 @@ export class VaultProgram extends Program {
.option("--collectionid <collectionid>", "Filter items by collection id.")
.option(
"--organizationid <organizationid>",
"Filter items or collections by organization id."
"Filter items or collections by organization id.",
)
.option("--trash", "Filter items that are deleted and in the trash.")
.on("--help", () => {
@@ -90,13 +90,13 @@ export class VaultProgram extends Program {
writeLn(" bw list items");
writeLn(" bw list items --folderid 60556c31-e649-4b5d-8daf-fc1c391a1bf2");
writeLn(
" bw list items --search google --folderid 60556c31-e649-4b5d-8daf-fc1c391a1bf2"
" bw list items --search google --folderid 60556c31-e649-4b5d-8daf-fc1c391a1bf2",
);
writeLn(" bw list items --url https://google.com");
writeLn(" bw list items --folderid null");
writeLn(" bw list items --organizationid notnull");
writeLn(
" bw list items --folderid 60556c31-e649-4b5d-8daf-fc1c391a1bf2 --organizationid notnull"
" bw list items --folderid 60556c31-e649-4b5d-8daf-fc1c391a1bf2 --organizationid notnull",
);
writeLn(" bw list items --trash");
writeLn(" bw list folders --search email");
@@ -117,7 +117,7 @@ export class VaultProgram extends Program {
this.main.searchService,
this.main.organizationUserService,
this.main.apiService,
this.main.eventCollectionService
this.main.eventCollectionService,
);
const response = await command.run(object, cmd);
@@ -165,10 +165,10 @@ export class VaultProgram extends Program {
writeLn(" bw get exposed yahoo.com");
writeLn(
" bw get attachment b857igwl1dzrs2 --itemid 99ee88d2-6046-4ea7-92c2-acac464b1412 " +
"--output ./photo.jpg"
"--output ./photo.jpg",
);
writeLn(
" bw get attachment photo.jpg --itemid 99ee88d2-6046-4ea7-92c2-acac464b1412 --raw"
" bw get attachment photo.jpg --itemid 99ee88d2-6046-4ea7-92c2-acac464b1412 --raw",
);
writeLn(" bw get folder email");
writeLn(" bw get template folder");
@@ -191,7 +191,7 @@ export class VaultProgram extends Program {
this.main.searchService,
this.main.apiService,
this.main.organizationService,
this.main.eventCollectionService
this.main.eventCollectionService,
);
const response = await command.run(object, id, cmd);
this.processResponse(response);
@@ -216,7 +216,7 @@ export class VaultProgram extends Program {
writeLn(" echo 'eyJuYW1lIjoiTXkgRm9sZGVyIn0K' | bw create folder");
writeLn(
" bw create attachment --file ./myfile.csv " +
"--itemid 16b15b89-65b3-4639-ad2a-95052a6d8f66"
"--itemid 16b15b89-65b3-4639-ad2a-95052a6d8f66",
);
writeLn("", true);
})
@@ -232,7 +232,7 @@ export class VaultProgram extends Program {
this.main.stateService,
this.main.cryptoService,
this.main.apiService,
this.main.folderApiService
this.main.folderApiService,
);
const response = await command.run(object, encodedJson, cmd);
this.processResponse(response);
@@ -253,15 +253,15 @@ export class VaultProgram extends Program {
writeLn("\n Examples:");
writeLn("");
writeLn(
" bw edit folder 5cdfbd80-d99f-409b-915b-f4c5d0241b02 eyJuYW1lIjoiTXkgRm9sZGVyMiJ9Cg=="
" bw edit folder 5cdfbd80-d99f-409b-915b-f4c5d0241b02 eyJuYW1lIjoiTXkgRm9sZGVyMiJ9Cg==",
);
writeLn(
" echo 'eyJuYW1lIjoiTXkgRm9sZGVyMiJ9Cg==' | " +
"bw edit folder 5cdfbd80-d99f-409b-915b-f4c5d0241b02"
"bw edit folder 5cdfbd80-d99f-409b-915b-f4c5d0241b02",
);
writeLn(
" bw edit item-collections 78307355-fd25-416b-88b8-b33fd0e88c82 " +
"WyI5NzQwNTNkMC0zYjMzLTRiOTgtODg2ZS1mZWNmNWM4ZGJhOTYiXQ=="
"WyI5NzQwNTNkMC0zYjMzLTRiOTgtODg2ZS1mZWNmNWM4ZGJhOTYiXQ==",
);
writeLn("", true);
})
@@ -276,7 +276,7 @@ export class VaultProgram extends Program {
this.main.folderService,
this.main.cryptoService,
this.main.apiService,
this.main.folderApiService
this.main.folderApiService,
);
const response = await command.run(object, id, encodedJson, cmd);
this.processResponse(response);
@@ -295,7 +295,7 @@ export class VaultProgram extends Program {
.option("--organizationid <organizationid>", "Organization id for an organization object.")
.option(
"-p, --permanent",
"Permanently deletes the item instead of soft-deleting it (item only)."
"Permanently deletes the item instead of soft-deleting it (item only).",
)
.on("--help", () => {
writeLn("\n Examples:");
@@ -304,7 +304,7 @@ export class VaultProgram extends Program {
writeLn(" bw delete item 89c21cd2-fab0-4f69-8c6e-ab8a0168f69a --permanent");
writeLn(" bw delete folder 5cdfbd80-d99f-409b-915b-f4c5d0241b02");
writeLn(
" bw delete attachment b857igwl1dzrs2 --itemid 310d5ffd-e9a2-4451-af87-ea054dce0f78"
" bw delete attachment b857igwl1dzrs2 --itemid 310d5ffd-e9a2-4451-af87-ea054dce0f78",
);
writeLn("", true);
})
@@ -319,7 +319,7 @@ export class VaultProgram extends Program {
this.main.folderService,
this.main.stateService,
this.main.apiService,
this.main.folderApiService
this.main.folderApiService,
);
const response = await command.run(object, id, cmd);
this.processResponse(response);
@@ -367,13 +367,13 @@ export class VaultProgram extends Program {
" bw " +
commandName +
" 4af958ce-96a7-45d9-beed-1e70fabaa27a " +
"6d82949b-b44d-468a-adae-3f3bacb0ea32 WyI5NzQwNTNkMC0zYjMzLTRiOTgtODg2ZS1mZWNmNWM4ZGJhOTYiXQ=="
"6d82949b-b44d-468a-adae-3f3bacb0ea32 WyI5NzQwNTNkMC0zYjMzLTRiOTgtODg2ZS1mZWNmNWM4ZGJhOTYiXQ==",
);
writeLn(
" echo '[\"974053d0-3b33-4b98-886e-fecf5c8dba96\"]' | bw encode | " +
"bw " +
commandName +
" 4af958ce-96a7-45d9-beed-1e70fabaa27a 6d82949b-b44d-468a-adae-3f3bacb0ea32"
" 4af958ce-96a7-45d9-beed-1e70fabaa27a 6d82949b-b44d-468a-adae-3f3bacb0ea32",
);
if (deprecated) {
writeLn("");
@@ -403,7 +403,7 @@ export class VaultProgram extends Program {
writeLn("");
writeLn(
" bw confirm org-member 7063feab-4b10-472e-b64c-785e2b870b92 " +
"--organizationid 310d5ffd-e9a2-4451-af87-ea054dce0f78"
"--organizationid 310d5ffd-e9a2-4451-af87-ea054dce0f78",
);
writeLn("", true);
})
@@ -416,7 +416,7 @@ export class VaultProgram extends Program {
const command = new ConfirmCommand(
this.main.apiService,
this.main.cryptoService,
this.main.organizationUserService
this.main.organizationUserService,
);
const response = await command.run(object, id, cmd);
this.processResponse(response);
@@ -439,7 +439,7 @@ export class VaultProgram extends Program {
writeLn(" bw import bitwardencsv ./from/source.csv");
writeLn(" bw import keepass2xml keepass_backup.xml");
writeLn(
" bw import --organizationid cf14adc3-aca5-4573-890a-f6fa231436d9 keepass2xml keepass_backup.xml"
" bw import --organizationid cf14adc3-aca5-4573-890a-f6fa231436d9 keepass2xml keepass_backup.xml",
);
})
.action(async (format, filepath, options) => {
@@ -447,7 +447,7 @@ export class VaultProgram extends Program {
const command = new ImportCommand(
this.main.importService,
this.main.organizationService,
this.main.syncService
this.main.syncService,
);
const response = await command.run(format, filepath, options);
this.processResponse(response);
@@ -461,18 +461,18 @@ export class VaultProgram extends Program {
.option("--format <format>", "Export file format.")
.option(
"--password [password]",
"Use password to encrypt instead of your Bitwarden account encryption key. Only applies to the encrypted_json format."
"Use password to encrypt instead of your Bitwarden account encryption key. Only applies to the encrypted_json format.",
)
.option("--organizationid <organizationid>", "Organization id for an organization.")
.on("--help", () => {
writeLn("\n Notes:");
writeLn("");
writeLn(
" Valid formats are `csv`, `json`, and `encrypted_json`. Default format is `csv`."
" Valid formats are `csv`, `json`, and `encrypted_json`. Default format is `csv`.",
);
writeLn("");
writeLn(
" If --raw option is specified and no output filename or directory is given, the"
" If --raw option is specified and no output filename or directory is given, the",
);
writeLn(" result is written to stdout.");
writeLn("");
@@ -485,7 +485,7 @@ export class VaultProgram extends Program {
writeLn(" bw export --output ./exp/bw.csv");
writeLn(" bw export myPassword321 --output bw.json --format json");
writeLn(
" bw export myPassword321 --organizationid 7063feab-4b10-472e-b64c-785e2b870b92"
" bw export myPassword321 --organizationid 7063feab-4b10-472e-b64c-785e2b870b92",
);
writeLn("", true);
})
@@ -494,7 +494,7 @@ export class VaultProgram extends Program {
const command = new ExportCommand(
this.main.exportService,
this.main.policyService,
this.main.eventCollectionService
this.main.eventCollectionService,
);
const response = await command.run(options);
this.processResponse(response);