mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-30 01:25:38 -05:00
28 lines
1.0 KiB
TypeScript
28 lines
1.0 KiB
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'
|
|
}
|
|
|
|
export enum TelemetryAction {
|
|
DeployDacpac = 'DeployDacpacOperation',
|
|
GenerateScript = 'GenerateDeployScriptOperation',
|
|
GenerateDeployPlan = 'GenerateDeployPlan',
|
|
ExtractDacpac = 'ExtractDacpacOperation',
|
|
ExportBacpac = 'ExportBacpacOperation',
|
|
ImportBacpac = 'ImportBacpacOperation'
|
|
}
|