You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3775bf3: Fix: Using the environment's global fetch API instead of undici.
This change makes this library more compatible with JavaScript runtimes that do not support Node.js modules. If you want to use undici again, use the Custom Fetcher feature.
f922ba9: BREAKING: The responses of commands are wrapped in a record with type of SafeReturn<T, VaultError>.
This record contains two properties:
data: The data property for successful responses. The value depends on the command.
error: The error property for error responses. The type is VaultError, which is a subclass of Error.