StackLatestPackagesStackSrcTypes publicType aliases
DecryptionResult
Result type for individual items in bulk decrypt operations. Uses `error`/`data` fields (not `failure`/`data`) since bulk operations can have per-item failures.
Type Alias: DecryptionResult<T>
type DecryptionResult<T> = DecryptionSuccess<T> | DecryptionError<T>;Defined in: packages/stack/src/types.ts:226
Result type for individual items in bulk decrypt operations.
Uses error/data fields (not failure/data) since bulk operations
can have per-item failures.
Type Parameters
T
T
DecryptedFields
DecryptedFields is a type in @cipherstash/stack. TypeScript API reference with its signature, parameters, and usage.
EncryptOptions
Options for single-value encrypt operations. Use a column from your table schema (from encryptedColumn) or a nested field (from encryptedField) as the target...