From d97afeba0b469c9fa5cb6d6fca592ca41d1ab7ea Mon Sep 17 00:00:00 2001 From: Bailey Pearson Date: Mon, 5 Aug 2024 14:32:40 -0600 Subject: [PATCH] mark fields as stable --- src/client-side-encryption/client_encryption.ts | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/client-side-encryption/client_encryption.ts b/src/client-side-encryption/client_encryption.ts index f89905f384c..1a21ce7a7d2 100644 --- a/src/client-side-encryption/client_encryption.ts +++ b/src/client-side-encryption/client_encryption.ts @@ -605,8 +605,6 @@ export class ClientEncryption { * * Only supported when queryType is "range" and algorithm is "Range". * - * @experimental The Range algorithm is experimental only. It is not intended for production use. It is subject to breaking changes. - * * @param expression - a BSON document of one of the following forms: * 1. A Match Expression of this form: * `{$and: [{: {$gt: }}, {: {$lt: }}]}` @@ -761,13 +759,11 @@ export interface ClientEncryptionEncryptOptions { contentionFactor?: bigint | number; /** - * The query type supported. Only the queryType `equality` is stable. - * - * @experimental Public Technical Preview: The queryType `rangePreview` is experimental. + * The query type. */ queryType?: 'equality' | 'range'; - /** @experimental Public Technical Preview: The index options for a Queryable Encryption field supporting "rangePreview" queries.*/ + /** The index options for a Queryable Encryption field supporting "range" queries.*/ rangeOptions?: RangeOptions; } @@ -955,7 +951,7 @@ export interface ClientEncryptionRewrapManyDataKeyResult { /** * @public - * RangeOptions specifies index options for a Queryable Encryption field supporting "rangePreview" queries. + * RangeOptions specifies index options for a Queryable Encryption field supporting "range" queries. * min, max, sparsity, trimFactor and range must match the values set in the encryptedFields of the destination collection. * For double and decimal128, min/max/precision must all be set, or all be unset. */