File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ const MONGOSH_OPTIONS = {
4747 "tlsCertificateKeyFilePassword" ,
4848 "tlsCertificateSelector" ,
4949 "tlsDisabledProtocols" ,
50- "username"
50+ "username" ,
5151 ] ,
5252 boolean : [
5353 "apiDeprecationErrors" ,
@@ -93,15 +93,13 @@ const MONGOSH_OPTIONS = {
9393} as const ;
9494
9595const MCP_SERVER_OPTIONS = {
96- string : [
97- "atlasTemporaryDatabaseUserLifetimeMs" ,
98- ] ,
96+ string : [ "atlasTemporaryDatabaseUserLifetimeMs" ] ,
9997} as const ;
10098
10199const OPTIONS = {
102- string : { ...MONGOSH_OPTIONS . string , ...MCP_SERVER_OPTIONS . string } ,
103- boolean : { ...MONGOSH_OPTIONS . boolean } ,
104- array : { ...MONGOSH_OPTIONS . array } ,
100+ string : [ ...MONGOSH_OPTIONS . string , ...MCP_SERVER_OPTIONS . string ] ,
101+ boolean : [ ...MONGOSH_OPTIONS . boolean ] ,
102+ array : [ ...MONGOSH_OPTIONS . array ] ,
105103 alias : { ...MONGOSH_OPTIONS . alias } ,
106104 configuration : { ...MONGOSH_OPTIONS . configuration } ,
107105} as const ;
You can’t perform that action at this time.
0 commit comments