mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 09:35:36 -05:00
* Update ads-extension-telemetry package to official Microsoft org version * Update names
24 lines
935 B
TypeScript
24 lines
935 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import AdsTelemetryReporter from '@microsoft/ads-extension-telemetry';
|
|
|
|
import * as Utils from './utils';
|
|
|
|
const packageJson = require('../package.json');
|
|
|
|
let packageInfo = Utils.getPackageInfo(packageJson);
|
|
|
|
export const TelemetryReporter = new AdsTelemetryReporter(packageInfo.name, packageInfo.version, packageInfo.aiKey);
|
|
|
|
export enum TelemetryViews {
|
|
DataTierApplicationWizard = 'DataTierApplicationWizard',
|
|
DeployDacpac = 'DeployDacpac',
|
|
DeployPlanPage = 'DeployPlanPage',
|
|
ExportBacpac = 'ExportBacpac',
|
|
ExtractDacpac = 'ExtractDacpac',
|
|
ImportBacpac = 'ImportBacpac'
|
|
}
|