CipherStashDocs
StackLatestPackagesStackSrcTypes publicType aliases

EncryptedSearchTerm

Encrypted search term result. `eql` return type yields either a storage payload (`Encrypted`, for `ste_vec_term`) or a query-only term (`EncryptedQuery`, for...

@cipherstash/stack


Type Alias: EncryptedSearchTerm

type EncryptedSearchTerm = 
  | Encrypted
  | EncryptedQuery
  | string;

Defined in: packages/stack/src/types.ts:134

Encrypted search term result. eql return type yields either a storage payload (Encrypted, for ste_vec_term) or a query-only term (EncryptedQuery, for scalar lookups and ste_vec_selector); the composite-literal return types yield a string.

On this page