You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/service-provider-server/src/cli-service-provider.ts
+25-2Lines changed: 25 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -151,6 +151,12 @@ function normalizeEndpointAndAuthConfiguration(
151
151
];
152
152
}
153
153
154
+
interfaceDependencyVersionInfo{
155
+
nodeDriverVersion?: string;
156
+
libmongocryptVersion?: string;
157
+
libmongocryptNodeBindingsVersion?: string;
158
+
}
159
+
154
160
/**
155
161
* Encapsulates logic for the service provider for the mongosh CLI.
156
162
*/
@@ -242,15 +248,32 @@ class CliServiceProvider extends ServiceProviderCore implements ServiceProvider
242
248
this.currentClientOptions=clientOptions;
243
249
this.baseCmdOptions={ ... DEFAULT_BASE_OPTIONS};// currently do not have any user-specified connection-wide command options, but I imagine we will eventually
0 commit comments