File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -67,8 +67,8 @@ export interface CommandOperationOptions
67
67
68
68
/**
69
69
* Used when the command needs to grant access to the underlying namespaces for time series collections.
70
- * Only available on server versions 8.2 and above.
71
- * @public
70
+ * Only available on server versions 8.2 and above and is not meant for public use .
71
+ * @internal
72
72
* @sinceServerVersion 8.2
73
73
**/
74
74
rawData ?: boolean ;
Original file line number Diff line number Diff line change @@ -356,6 +356,8 @@ export class DropIndexOperation extends CommandOperation<Document> {
356
356
export type ListIndexesOptions = AbstractCursorOptions & {
357
357
/** @internal */
358
358
omitMaxTimeMS ?: boolean ;
359
+ /** @internal */
360
+ rawData ?: boolean ;
359
361
} ;
360
362
361
363
/** @internal */
@@ -368,7 +370,7 @@ export class ListIndexesOperation extends CommandOperation<CursorResponse> {
368
370
* This allows typescript to delete the key but will
369
371
* not allow a writeConcern to be assigned as a property on options.
370
372
*/
371
- override options : ListIndexesOptions & { writeConcern ?: never ; rawData ?: boolean } ;
373
+ override options : ListIndexesOptions & { writeConcern ?: never } ;
372
374
collectionNamespace : MongoDBNamespace ;
373
375
374
376
constructor ( collection : Collection , options ?: ListIndexesOptions ) {
You can’t perform that action at this time.
0 commit comments