You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** The index options for a Queryable Encryption field supporting "range" queries.*/
839
861
rangeOptions?: RangeOptions;
840
862
863
+
/** Options for a Queryable Encryption field supporting string queries. Only valid when `algorithm` is `'String'` or the deprecated `'TextPreview'`. */
864
+
stringOptions?: StringQueryOptions;
865
+
841
866
/**
842
-
* Options for a Queryable Encryption field supporting text queries. Only valid when `algorithm` is `TextPreview`.
867
+
* Options for a Queryable Encryption field supporting text queries. Only valid when `algorithm` is `'String'` or the deprecated `'TextPreview'`.
843
868
*
844
-
* @experimental Public Technical Preview: `textPreview` is an experimental feature and may break at any time.
869
+
* @deprecated Use `stringOptions` instead.
845
870
*/
846
-
textOptions?: TextQueryOptions;
871
+
textOptions?: StringQueryOptions;
847
872
}
848
873
849
874
/**
850
-
* Options for a Queryable Encryption field supporting text queries.
875
+
* Options for a Queryable Encryption field supporting string queries.
851
876
*
852
877
* @public
853
-
* @experimental Public Technical Preview: `textPreview` is an experimental feature and may break at any time.
854
878
*/
855
-
exportinterfaceTextQueryOptions{
879
+
exportinterfaceStringQueryOptions{
856
880
/** Indicates that text indexes for this field are case sensitive */
857
881
caseSensitive: boolean;
858
882
/** Indicates that text indexes for this field are diacritic sensitive. */
0 commit comments