File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
src/client-side-encryption Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -968,10 +968,15 @@ export interface ClientEncryptionRewrapManyDataKeyResult {
968
968
* For double and decimal128, min/max/precision must all be set, or all be unset.
969
969
*/
970
970
export interface RangeOptions {
971
+ /** min is the minimum value for the encrypted index. Required if precision is set. */
971
972
min ?: any ;
973
+ /** max is the minimum value for the encrypted index. Required if precision is set. */
972
974
max ?: any ;
973
- sparsity ?: Long ;
974
- trimFactor ?: Int32 ;
975
+ /** sparsity may be used to tune performance. must be non-negative. When omitted, a default value is used. */
976
+ sparsity ?: Long | bigint | number ;
977
+ /** trimFactor may be used to tune performance. must be non-negative. When omitted, a default value is used. */
978
+ trimFactor ?: Int32 | bigint | number ;
979
+ /* precision determines the number of significant digits after the decimal point. May only be set for double or decimal128. */
975
980
precision ?: number ;
976
981
}
977
982
You can’t perform that action at this time.
0 commit comments