File tree Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
set -o errexit # Exit the script with error if any of the commands fail
3
3
4
- source $DRIVERS_TOOLS /.evergreen/init-node-and-npm-env.sh
4
+ # source $DRIVERS_TOOLS/.evergreen/init-node-and-npm-env.sh
5
5
6
6
# Attempt to update our EVG config
7
7
# if it changes, crash so that any gen script changes are forced to be run before pushing
Original file line number Diff line number Diff line change @@ -407,15 +407,12 @@ export class MongoClient extends TypedEventEmitter<MongoClientEvents> implements
407
407
* The consolidate, parsed, transformed and merged options.
408
408
*/
409
409
public readonly options : Readonly <
410
- Omit <
411
- MongoOptions ,
412
- 'monitorCommands' | 'ca' | 'crl' | 'key' | 'cert' | 'driverInfo' | 'metadata'
413
- >
410
+ Omit < MongoOptions , 'monitorCommands' | 'ca' | 'crl' | 'key' | 'cert' | 'driverInfo' >
414
411
> &
415
- Pick <
416
- MongoOptions ,
417
- 'monitorCommands' | 'ca' | 'crl' | 'key' | 'cert' | 'driverInfo' | ' metadata'
418
- > ;
412
+ Pick < MongoOptions , 'monitorCommands' | 'ca' | 'crl' | 'key' | 'cert' | 'driverInfo' > & {
413
+ /** @internal */
414
+ metadata : Promise < ClientMetadata > ;
415
+ } ;
419
416
420
417
private driverInfoList : DriverInfo [ ] = [ ] ;
421
418
@@ -1087,7 +1084,7 @@ export interface MongoOptions
1087
1084
compressors : CompressorName [ ] ;
1088
1085
writeConcern : WriteConcern ;
1089
1086
dbName : string ;
1090
- /** @internal - Will be made internal in a future major release. */
1087
+ /** @internal */
1091
1088
metadata : Promise < ClientMetadata > ;
1092
1089
/** @internal */
1093
1090
autoEncrypter ?: AutoEncrypter ;
You can’t perform that action at this time.
0 commit comments