@@ -611,8 +611,6 @@ export class ClientEncryption {
611
611
*
612
612
* Only supported when queryType is "range" and algorithm is "Range".
613
613
*
614
- * @experimental The Range algorithm is experimental only. It is not intended for production use. It is subject to breaking changes.
615
- *
616
614
* @param expression - a BSON document of one of the following forms:
617
615
* 1. A Match Expression of this form:
618
616
* `{$and: [{<field>: {$gt: <value1>}}, {<field>: {$lt: <value2> }}] }`
@@ -769,13 +767,11 @@ export interface ClientEncryptionEncryptOptions {
769
767
contentionFactor ?: bigint | number ;
770
768
771
769
/**
772
- * The query type supported. Only the queryType `equality` is stable.
773
- *
774
- * @experimental Public Technical Preview: The queryType `rangePreview` is experimental.
770
+ * The query type.
775
771
*/
776
772
queryType ?: 'equality' | 'range' ;
777
773
778
- /** @experimental Public Technical Preview: The index options for a Queryable Encryption field supporting "rangePreview " queries.*/
774
+ /** The index options for a Queryable Encryption field supporting "range " queries.*/
779
775
rangeOptions ?: RangeOptions ;
780
776
}
781
777
@@ -963,7 +959,7 @@ export interface ClientEncryptionRewrapManyDataKeyResult {
963
959
964
960
/**
965
961
* @public
966
- * RangeOptions specifies index options for a Queryable Encryption field supporting "rangePreview " queries.
962
+ * RangeOptions specifies index options for a Queryable Encryption field supporting "range " queries.
967
963
* min, max, sparsity, trimFactor and range must match the values set in the encryptedFields of the destination collection.
968
964
* For double and decimal128, min/max/precision must all be set, or all be unset.
969
965
*/
0 commit comments