/** * SQLite storage configuration options. */ export interface SqliteOptionsInterface { /** * Path to the .sqlite database file. Optional — when omitted the SDK * resolves a default at startup (see `resolveDefaultSqlitePath`): * - dev + node + non-CLI → `/dist/sessions.sqlite` * - prod OR CLI mode → `~/.{info.name}/sessions.sqlite` */ path?: string; /** * Encryption configuration for at-rest encryption of values. */ encryption?: { /** Secret key material for AES-256-GCM encryption via HKDF-SHA256 */ secret: string; }; /** * Interval in milliseconds for purging expired keys. * @default 60000 */ ttlCleanupIntervalMs?: number; /** * Enable WAL mode for better read concurrency. * @default true */ walMode?: boolean; } //# sourceMappingURL=interfaces.d.ts.map