When true, returns full metadata objects instead of key strings.
Filter by credential origin (metadata mode only).
Filter for credentials with/without TOTP (metadata mode only).
Maximum number of results (metadata mode only).
Examples
// List all keys
const keys = await vault.list();
// Filter by prefix
const awsKeys = await vault.list('aws/');
// Get full metadata
const metas = await vault.list({ meta: true, hasTotp: true });
Response
Array of credential key strings (default mode).
[
"github",
"aws/prod",
"aws/staging"
]