50 строки
3.5 KiB
TypeScript
50 строки
3.5 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See LICENSE.md in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
/**
|
|
* This is the external face of extension.bundle.js, the main webpack bundle for the extension.
|
|
* Anything needing to be exposed outside of the extension sources must be exported from here, because
|
|
* everything else will be in private modules in extension.bundle.js.
|
|
*/
|
|
|
|
// Export activate/deactivate for main.js
|
|
// The tests use instanceof against these and therefore we need to make sure we're using the same version of the bson module in the tests as in the bundle,
|
|
// so export it from the bundle itself.
|
|
export { ObjectID, ObjectId } from 'bson';
|
|
// Exports for tests
|
|
// The tests are not packaged with the webpack bundle and therefore only have access to code exported from this file.
|
|
//
|
|
// The tests should import '../extension.bundle.ts'. At design-time they live in tests/ and so will pick up this file (extension.bundle.ts).
|
|
// At runtime the tests live in dist/tests and will therefore pick up the main webpack bundle at dist/extension.bundle.js.
|
|
export { AzureAccountTreeItemBase, createAzureClient } from '@microsoft/vscode-azext-azureutils';
|
|
export * from '@microsoft/vscode-azext-utils';
|
|
export { emulatorPassword, isWindows } from './src/constants';
|
|
export { ParsedDocDBConnectionString, parseDocDBConnectionString } from './src/docdb/docDBConnectionStrings';
|
|
export { getCosmosClient } from './src/docdb/getCosmosClient';
|
|
export * from './src/docdb/registerDocDBCommands';
|
|
export { activateInternal, cosmosDBCopyConnectionString, createServer, deactivateInternal, deleteAccount } from './src/extension';
|
|
export { ext } from './src/extensionVariables';
|
|
export * from './src/graph/registerGraphCommands';
|
|
export { connectToMongoClient, isCosmosEmulatorConnectionString } from './src/mongo/connectToMongoClient';
|
|
export { MongoCommand } from './src/mongo/MongoCommand';
|
|
export { addDatabaseToAccountConnectionString, encodeMongoConnectionString, getDatabaseNameFromConnectionString } from './src/mongo/mongoConnectionStrings';
|
|
export { findCommandAtPosition, getAllCommandsFromText } from './src/mongo/MongoScrapbook';
|
|
export { MongoShell } from './src/mongo/MongoShell';
|
|
export * from './src/mongo/registerMongoCommands';
|
|
export { IDatabaseInfo } from './src/mongo/tree/MongoAccountTreeItem';
|
|
export { addDatabaseToConnectionString } from './src/postgres/postgresConnectionStrings';
|
|
export { AttachedAccountsTreeItem, MONGO_CONNECTION_EXPECTED } from './src/tree/AttachedAccountsTreeItem';
|
|
export { AzureAccountTreeItemWithAttached } from './src/tree/AzureAccountTreeItemWithAttached';
|
|
export * from './src/utils/azureClients';
|
|
export { improveError } from './src/utils/improveError';
|
|
export { randomUtils } from './src/utils/randomUtils';
|
|
export { getGlobalSetting, updateGlobalSetting } from './src/utils/settingUtils';
|
|
export { rejectOnTimeout, valueOnTimeout } from './src/utils/timeout';
|
|
export { getDocumentTreeItemLabel, IDisposable } from './src/utils/vscodeUtils';
|
|
export { wrapError } from './src/utils/wrapError';
|
|
export { isIpInRanges, getPublicIpv4 } from './src/utils/getIp'
|
|
|
|
// NOTE: The auto-fix action "source.organizeImports" does weird things with this file, but there doesn't seem to be a way to disable it on a per-file basis so we'll just let it happen
|