EncryptedQuery
Structural type representing an encrypted query term (search needle) returned by `encryptQuery` / `encryptQueryBulk` for scalar (`unique` / `match` / `ore`) ...
Type Alias: EncryptedQuery
type EncryptedQuery = CipherStashEncryptedQuery;Defined in: packages/stack/src/types.ts:49
Structural type representing an encrypted query term (search needle)
returned by encryptQuery / encryptQueryBulk for scalar
(unique / match / ore) lookups and ste_vec_selector JSON path
queries. Carries no ciphertext — matched against stored values, never
decrypted. JSON containment queries (ste_vec_term) return a
storage-shaped Encrypted payload instead.
EncryptedFromSchema
Maps a plaintext model type to its encrypted form using the table schema. Fields whose keys match columns defined in `S` become `Encrypted`; all other field...
EncryptedQueryResult
Result of encryptQuery (single or batch). `eql` return type yields either a storage payload (`Encrypted`) or a query-only term (`EncryptedQuery`); the `compo...