@@ -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