1111}
1212
1313// Export public API from the contextified module
14- // Hint: This list isn't automatically alphabetized, but VSCode's "Sort Lines Ascending" command can be used to keep it organized
14+ // Hint: This list IS NOT automatically alphabetized
15+ // To re-sort: Highlight the list and use VSCode's "Sort Lines Ascending" command
1516export const {
1617 abortable,
1718 AbstractCursor,
@@ -378,11 +379,13 @@ export type {
378379 ConnectionOptions ,
379380 ConnectionPoolOptions ,
380381 ConnectOptions ,
382+ CreateIndexesOptions ,
381383 DataKey ,
382384 DbOptions ,
383385 Document ,
384386 DriverInfo ,
385387 Filter ,
388+ IndexDirection ,
386389 InferIdType ,
387390 KMSProviders ,
388391 Log ,
@@ -399,8 +402,8 @@ export type {
399402 Runtime ,
400403 ServerApi ,
401404 ServerSessionId ,
405+ Sort ,
402406 TagSet ,
403- TopologyOptions ,
404407 TopologyVersion ,
405408 TransactionOptions ,
406409 UpdateDescription ,
@@ -425,32 +428,53 @@ import type {
425428 CommandStartedEvent as _CommandStartedEvent ,
426429 CommandSucceededEvent as _CommandSucceededEvent ,
427430 Connection as _Connection ,
431+ ConnectionCheckedInEvent as _ConnectionCheckedInEvent ,
432+ ConnectionCheckedOutEvent as _ConnectionCheckedOutEvent ,
433+ ConnectionCheckOutFailedEvent as _ConnectionCheckOutFailedEvent ,
434+ ConnectionCheckOutStartedEvent as _ConnectionCheckOutStartedEvent ,
428435 ConnectionClosedEvent as _ConnectionClosedEvent ,
436+ ConnectionCreatedEvent as _ConnectionCreatedEvent ,
429437 ConnectionPool as _ConnectionPool ,
430438 ConnectionPoolClearedEvent as _ConnectionPoolClearedEvent ,
439+ ConnectionPoolClosedEvent as _ConnectionPoolClosedEvent ,
440+ ConnectionPoolCreatedEvent as _ConnectionPoolCreatedEvent ,
441+ ConnectionPoolReadyEvent as _ConnectionPoolReadyEvent ,
442+ ConnectionReadyEvent as _ConnectionReadyEvent ,
431443 CSOTTimeoutContext as _CSOTTimeoutContext ,
432444 CursorTimeoutContext as _CursorTimeoutContext ,
433445 Db as _Db ,
434446 FindCursor as _FindCursor ,
435447 GridFSBucket as _GridFSBucket ,
436448 HostAddress as _HostAddress ,
437449 MongoClient as _MongoClient ,
450+ MongoCredentials as _MongoCredentials ,
438451 MongoError as _MongoError ,
439452 OnDemandDocument as _OnDemandDocument ,
440453 Server as _Server ,
454+ ServerApiVersion as _ServerApiVersion ,
455+ ServerClosedEvent as _ServerClosedEvent ,
441456 ServerDescription as _ServerDescription ,
442457 ServerDescriptionChangedEvent as _ServerDescriptionChangedEvent ,
458+ ServerHeartbeatFailedEvent as _ServerHeartbeatFailedEvent ,
459+ ServerHeartbeatStartedEvent as _ServerHeartbeatStartedEvent ,
460+ ServerHeartbeatSucceededEvent as _ServerHeartbeatSucceededEvent ,
461+ ServerOpeningEvent as _ServerOpeningEvent ,
462+ ServerSessionPool as _ServerSessionPool ,
443463 Timeout as _Timeout ,
444464 TimeoutContext as _TimeoutContext ,
445465 Topology as _Topology ,
466+ TopologyClosedEvent as _TopologyClosedEvent ,
446467 TopologyDescription as _TopologyDescription ,
447468 TopologyDescriptionChangedEvent as _TopologyDescriptionChangedEvent ,
469+ TopologyOpeningEvent as _TopologyOpeningEvent ,
470+ TopologyOptions as _TopologyOptions ,
448471 TopologyType as _TopologyType ,
449472 UUID as _UUID
450473} from './tools/runner/bundle/types/index' ;
451474
452475// Export "clashing" types from the contextified module
453- // Hint: This list IS NOT automatically alphabetized, but VSCode's "Sort Lines Ascending" command can be used to keep it organized
476+ // Hint: This list IS NOT automatically alphabetized
477+ // To re-sort: Highlight the list and use VSCode's "Sort Lines Ascending" command
454478export type AbstractCursor = _AbstractCursor ;
455479export type AuthMechanism = _AuthMechanism ;
456480export type ChangeStream = _ChangeStream ;
@@ -461,26 +485,46 @@ export type CommandFailedEvent = _CommandFailedEvent;
461485export type CommandStartedEvent = _CommandStartedEvent ;
462486export type CommandSucceededEvent = _CommandSucceededEvent ;
463487export type Connection = _Connection ;
488+ export type ConnectionCheckedInEvent = _ConnectionCheckedInEvent ;
489+ export type ConnectionCheckedOutEvent = _ConnectionCheckedOutEvent ;
490+ export type ConnectionCheckOutFailedEvent = _ConnectionCheckOutFailedEvent ;
491+ export type ConnectionCheckOutStartedEvent = _ConnectionCheckOutStartedEvent ;
464492export type ConnectionClosedEvent = _ConnectionClosedEvent ;
493+ export type ConnectionCreatedEvent = _ConnectionCreatedEvent ;
465494export type ConnectionPool = _ConnectionPool ;
466495export type ConnectionPoolClearedEvent = _ConnectionPoolClearedEvent ;
496+ export type ConnectionPoolClosedEvent = _ConnectionPoolClosedEvent ;
497+ export type ConnectionPoolCreatedEvent = _ConnectionPoolCreatedEvent ;
498+ export type ConnectionPoolReadyEvent = _ConnectionPoolReadyEvent ;
499+ export type ConnectionReadyEvent = _ConnectionReadyEvent ;
467500export type CSOTTimeoutContext = _CSOTTimeoutContext ;
468501export type CursorTimeoutContext = _CursorTimeoutContext ;
469502export type Db = _Db ;
470503export type FindCursor = _FindCursor ;
471504export type GridFSBucket = _GridFSBucket ;
472505export type HostAddress = _HostAddress ;
473506export type MongoClient = _MongoClient ;
507+ export type MongoCredentials = _MongoCredentials ;
474508export type MongoError = _MongoError ;
475509export type OnDemandDocument = _OnDemandDocument ;
476510export type Server = _Server ;
511+ export type ServerApiVersion = _ServerApiVersion ;
512+ export type ServerClosedEvent = _ServerClosedEvent ;
477513export type ServerDescription = _ServerDescription ;
478514export type ServerDescriptionChangedEvent = _ServerDescriptionChangedEvent ;
515+ export type ServerHeartbeatFailedEvent = _ServerHeartbeatFailedEvent ;
516+ export type ServerHeartbeatStartedEvent = _ServerHeartbeatStartedEvent ;
517+ export type ServerHeartbeatSucceededEvent = _ServerHeartbeatSucceededEvent ;
518+ export type ServerOpeningEvent = _ServerOpeningEvent ;
519+ export type ServerSessionPool = _ServerSessionPool ;
479520export type Timeout = _Timeout ;
480521export type TimeoutContext = _TimeoutContext ;
481522export type Topology = _Topology ;
523+ export type TopologyClosedEvent = _TopologyClosedEvent ;
482524export type TopologyDescription = _TopologyDescription ;
483525export type TopologyDescriptionChangedEvent = _TopologyDescriptionChangedEvent ;
526+ export type TopologyOpeningEvent = _TopologyOpeningEvent ;
527+ export type TopologyOptions = _TopologyOptions ;
484528export type TopologyType = _TopologyType ;
485529export type UUID = _UUID ;
486530
0 commit comments