@@ -605,8 +605,6 @@ export class ClientEncryption {
605
605
*
606
606
* Only supported when queryType is "range" and algorithm is "Range".
607
607
*
608
- * @experimental The Range algorithm is experimental only. It is not intended for production use. It is subject to breaking changes.
609
- *
610
608
* @param expression - a BSON document of one of the following forms:
611
609
* 1. A Match Expression of this form:
612
610
* `{$and: [{<field>: {$gt: <value1>}}, {<field>: {$lt: <value2> }}] }`
@@ -761,13 +759,11 @@ export interface ClientEncryptionEncryptOptions {
761
759
contentionFactor ?: bigint | number ;
762
760
763
761
/**
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.
767
763
*/
768
764
queryType ?: 'equality' | 'range' ;
769
765
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.*/
771
767
rangeOptions ?: RangeOptions ;
772
768
}
773
769
@@ -955,7 +951,7 @@ export interface ClientEncryptionRewrapManyDataKeyResult {
955
951
956
952
/**
957
953
* @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.
959
955
* min, max, sparsity, trimFactor and range must match the values set in the encryptedFields of the destination collection.
960
956
* For double and decimal128, min/max/precision must all be set, or all be unset.
961
957
*/
0 commit comments