mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-08 17:24:01 -05:00
Adding Dacpac extension telemetry and core wizard/page telemetry updates(#13859)
* Dacpac telmetry code changes * Removed added spaces * Generate deployScript accessibility changed back to public * code review suggessions updates * dacpac extension tests fixes * Updated time and filesize methods allowing general return values * Telemetry code updates * Dacpac Telemetry potential data loss capture and PII error excluded * Dacpac telemetry code updates for comments * Wizard pages navigation telemetry event capture moved to the core * DacpacTelemetry code updates * Extension wizard cancel telemetry for data loss * Dacpac telemetry pagename and small code updates * final Dacpac telemetry code updates...
This commit is contained in:
committed by
GitHub
parent
07d798c949
commit
0316d9ac57
14
src/sql/azdata.proposed.d.ts
vendored
14
src/sql/azdata.proposed.d.ts
vendored
@@ -644,6 +644,13 @@ declare module 'azdata' {
|
||||
width?: DialogWidth;
|
||||
}
|
||||
|
||||
export interface WizardPage extends ModelViewPanel {
|
||||
/**
|
||||
* An optional name for the page. If provided it will be used for telemetry
|
||||
*/
|
||||
pageName?: string;
|
||||
}
|
||||
|
||||
export type DialogWidth = 'narrow' | 'medium' | 'wide' | number;
|
||||
|
||||
/**
|
||||
@@ -661,6 +668,13 @@ declare module 'azdata' {
|
||||
* @param width The width of the wizard, default value is 'narrow'
|
||||
*/
|
||||
export function createWizard(title: string, name?: string, width?: DialogWidth): Wizard;
|
||||
|
||||
/**
|
||||
* Create a wizard page with the given title, for inclusion in a wizard
|
||||
* @param title The title of the page
|
||||
* @param pageName The optional page name parameter will be used for telemetry
|
||||
*/
|
||||
export function createWizardPage(title: string, pageName?: string): WizardPage;
|
||||
}
|
||||
|
||||
export namespace workspace {
|
||||
|
||||
Reference in New Issue
Block a user