File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 11The following third-party software is used by and included in **mongosh**.
2- This document was automatically generated on Sun Oct 13 2024.
2+ This document was automatically generated on Tue Oct 15 2024.
33
44## List of dependencies
55
Original file line number Diff line number Diff line change @@ -1017,12 +1017,11 @@ export class CliRepl implements MongoshIOProvider {
10171017 }
10181018
10191019 async isTlsKeyFilePasswordMissingURI (
1020- searchParams : ReturnType <
1021- typeof ConnectionString . prototype . typedSearchParams < DevtoolsConnectOptions >
1022- >
1020+ searchParams : unknown
10231021 ) : Promise < boolean > {
1024- const tlsCertificateKeyFile = searchParams . get ( 'tlsCertificateKeyFile' ) ;
1025- const tlsCertificateKeyFilePassword = searchParams . get (
1022+ const searchMap = searchParams as Map < keyof DevtoolsConnectOptions , string > ;
1023+ const tlsCertificateKeyFile = searchMap . get ( 'tlsCertificateKeyFile' ) ;
1024+ const tlsCertificateKeyFilePassword = searchMap . get (
10261025 'tlsCertificateKeyFilePassword'
10271026 ) ;
10281027
You can’t perform that action at this time.
0 commit comments