Skip to content

Commit dc38d44

Browse files
mark fields as stable
1 parent bca9b0a commit dc38d44

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

src/client-side-encryption/client_encryption.ts

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -605,8 +605,6 @@ export class ClientEncryption {
605605
*
606606
* Only supported when queryType is "range" and algorithm is "Range".
607607
*
608-
* @experimental The Range algorithm is experimental only. It is not intended for production use. It is subject to breaking changes.
609-
*
610608
* @param expression - a BSON document of one of the following forms:
611609
* 1. A Match Expression of this form:
612610
* `{$and: [{<field>: {$gt: <value1>}}, {<field>: {$lt: <value2> }}]}`
@@ -761,13 +759,11 @@ export interface ClientEncryptionEncryptOptions {
761759
contentionFactor?: bigint | number;
762760

763761
/**
764-
* The query type supported. Only the queryType `equality` is stable.
765-
*
766-
* @experimental Public Technical Preview: The queryType `rangePreview` is experimental.
762+
* The query type.
767763
*/
768764
queryType?: 'equality' | 'range';
769765

770-
/** @experimental Public Technical Preview: The index options for a Queryable Encryption field supporting "rangePreview" queries.*/
766+
/** The index options for a Queryable Encryption field supporting "range" queries.*/
771767
rangeOptions?: RangeOptions;
772768
}
773769

@@ -955,7 +951,7 @@ export interface ClientEncryptionRewrapManyDataKeyResult {
955951

956952
/**
957953
* @public
958-
* RangeOptions specifies index options for a Queryable Encryption field supporting "rangePreview" queries.
954+
* RangeOptions specifies index options for a Queryable Encryption field supporting "range" queries.
959955
* min, max, sparsity, trimFactor and range must match the values set in the encryptedFields of the destination collection.
960956
* For double and decimal128, min/max/precision must all be set, or all be unset.
961957
*/

0 commit comments

Comments
 (0)