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
6767
6868 /**
6969 * 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
7272 * @sinceServerVersion 8.2
7373 **/
7474 rawData ?: boolean ;
Original file line number Diff line number Diff line change @@ -356,6 +356,8 @@ export class DropIndexOperation extends CommandOperation<Document> {
356356export type ListIndexesOptions = AbstractCursorOptions & {
357357 /** @internal */
358358 omitMaxTimeMS ?: boolean ;
359+ /** @internal */
360+ rawData ?: boolean ;
359361} ;
360362
361363/** @internal */
@@ -368,7 +370,7 @@ export class ListIndexesOperation extends CommandOperation<CursorResponse> {
368370 * This allows typescript to delete the key but will
369371 * not allow a writeConcern to be assigned as a property on options.
370372 */
371- override options : ListIndexesOptions & { writeConcern ?: never ; rawData ?: boolean } ;
373+ override options : ListIndexesOptions & { writeConcern ?: never } ;
372374 collectionNamespace : MongoDBNamespace ;
373375
374376 constructor ( collection : Collection , options ?: ListIndexesOptions ) {
You can’t perform that action at this time.
0 commit comments