Skip to content

Commit a864fba

Browse files
fix lint
1 parent 84fd3d3 commit a864fba

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

src/client-side-encryption/client_encryption.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -852,9 +852,10 @@ export interface ClientEncryptionEncryptOptions {
852852
/**
853853
* Options for a Queryable Encryption field supporting text queries.
854854
*
855+
* @public
855856
* @experimental Public Technical Preview: `textPreview` is an experimental feature and may break at any time.
856857
*/
857-
interface TextQueryOptions {
858+
export interface TextQueryOptions {
858859
/** Indicates that text indexes for this field are case sensitive */
859860
caseSensitive: boolean;
860861
/** Indicates that text indexes for this field are diacritic sensitive. */

src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,8 @@ export type {
242242
DataKey,
243243
GCPEncryptionKeyOptions,
244244
KMIPEncryptionKeyOptions,
245-
RangeOptions
245+
RangeOptions,
246+
TextQueryOptions
246247
} from './client-side-encryption/client_encryption';
247248
export {
248249
MongoCryptAzureKMSRequestError,

test/integration/client-side-encryption/client_side_encryption.prose.27.text_queries.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const loadFLEDataFile = async (filename: string) =>
2424
{ relaxed: false }
2525
);
2626

27-
describe.only('27. Text Explicit Encryption', function () {
27+
describe('27. Text Explicit Encryption', function () {
2828
let keyDocument1: Document;
2929
let keyId1: Binary;
3030
let utilClient: MongoClient;

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
@@ -62,7 +62,7 @@ describe('Client Side Encryption (Legacy)', function () {
6262
});
6363
});
6464

65-
describe.only('Client Side Encryption (Unified)', function () {
65+
describe('Client Side Encryption (Unified)', function () {
6666
runUnifiedSuite(
6767
loadSpecTests(path.join('client-side-encryption', 'tests', 'unified')),
6868
({ description }, configuration) => {

0 commit comments

Comments
 (0)