Skip to content

Commit 596d8a5

Browse files
ooo lala
1 parent c1e1186 commit 596d8a5

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

src/client-side-encryption/client_encryption.ts

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -611,8 +611,6 @@ export class ClientEncryption {
611611
*
612612
* Only supported when queryType is "range" and algorithm is "Range".
613613
*
614-
* @experimental The Range algorithm is experimental only. It is not intended for production use. It is subject to breaking changes.
615-
*
616614
* @param expression - a BSON document of one of the following forms:
617615
* 1. A Match Expression of this form:
618616
* `{$and: [{<field>: {$gt: <value1>}}, {<field>: {$lt: <value2> }}]}`
@@ -769,13 +767,11 @@ export interface ClientEncryptionEncryptOptions {
769767
contentionFactor?: bigint | number;
770768

771769
/**
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.
775771
*/
776772
queryType?: 'equality' | 'range';
777773

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.*/
779775
rangeOptions?: RangeOptions;
780776
}
781777

@@ -963,7 +959,7 @@ export interface ClientEncryptionRewrapManyDataKeyResult {
963959

964960
/**
965961
* @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.
967963
* min, max, sparsity, trimFactor and range must match the values set in the encryptedFields of the destination collection.
968964
* For double and decimal128, min/max/precision must all be set, or all be unset.
969965
*/

test/integration/client-side-encryption/client_side_encryption.spec.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ describe('Client Side Encryption (Legacy)', function () {
9595

9696
if (isServerless) {
9797
if (description === "Compact works with 'range' fields") {
98-
return 'TODO(CLOUDP-267864): fix compactStructuredEncryptionData against serverless';
98+
return 'TODO(NODE-6332): fix compactStructuredEncryptionData against serverless';
9999
}
100100
// TODO(NODE-4730): Fix failing csfle tests against serverless
101101
const isSkippedTest = [

0 commit comments

Comments
 (0)