From 4c07bbbed939516e50369aac44b170ec02ceeba3 Mon Sep 17 00:00:00 2001 From: Durran Jordan Date: Tue, 28 Jun 2022 13:45:53 -0400 Subject: [PATCH] feat(NODE-4294): mark queryable encryption options beta (#3300) --- src/deps.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/deps.ts b/src/deps.ts index 3dd5aedf5f..db20dd32e1 100644 --- a/src/deps.ts +++ b/src/deps.ts @@ -301,11 +301,11 @@ export interface AutoEncryptionOptions { * Other validation rules in the JSON schema will not be enforced by the driver and will result in an error. */ schemaMap?: Document; - /** @experimental */ + /** @experimental Public Technical Preview: Supply a schema for the encrypted fields in the document */ encryptedFieldsMap?: Document; /** Allows the user to bypass auto encryption, maintaining implicit decryption */ bypassAutoEncryption?: boolean; - /** @experimental */ + /** @experimental Public Technical Preview: Allows users to bypass query analysis */ bypassQueryAnalysis?: boolean; options?: { /** An optional hook to catch logging messages from the underlying encryption engine */