Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.corsair.dev/llms.txt

Use this file to discover all available pages before exploring further.

The Bitwarden plugin syncs data locally. Use corsair.bitwarden.db.<entity>.search({ data, limit?, offset? }) with the filters listed per entity.

Ciphers

Path: bitwarden.db.ciphers.search
const rows = await corsair.bitwarden.db.ciphers.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
idstringequals, contains, startsWith, endsWith, in
organizationIdstringequals, contains, startsWith, endsWith, in
namestringequals, contains, startsWith, endsWith, in
typenumberequals, gt, gte, lt, lte, in
favoritebooleanequals
editbooleanequals
Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.

Collections

Path: bitwarden.db.collections.search
const rows = await corsair.bitwarden.db.collections.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
idstringequals, contains, startsWith, endsWith, in
organizationIdstringequals, contains, startsWith, endsWith, in
namestringequals, contains, startsWith, endsWith, in
externalIdstringequals, contains, startsWith, endsWith, in
Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.

Members

Path: bitwarden.db.members.search
const rows = await corsair.bitwarden.db.members.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
idstringequals, contains, startsWith, endsWith, in
organizationIdstringequals, contains, startsWith, endsWith, in
emailstringequals, contains, startsWith, endsWith, in
namestringequals, contains, startsWith, endsWith, in
statusnumberequals, gt, gte, lt, lte, in
typenumberequals, gt, gte, lt, lte, in
twoFactorEnabledbooleanequals
accessAllbooleanequals
Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.

Organizations

Path: bitwarden.db.organizations.search
const rows = await corsair.bitwarden.db.organizations.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
idstringequals, contains, startsWith, endsWith, in
namestringequals, contains, startsWith, endsWith, in
billingEmailstringequals, contains, startsWith, endsWith, in
businessNamestringequals, contains, startsWith, endsWith, in
businessCountrystringequals, contains, startsWith, endsWith, in
Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.