added graph node types from edit and publish results (#18891)

* added graph node types from edit and publish results

* make generic property bag

* review comments

* add comment for function

* edit comment

* change name to telemetry info
This commit is contained in:
Aditya Bist
2022-03-31 21:50:26 -07:00
committed by GitHub
parent 0a43ed84e3
commit e7773425ee
5 changed files with 62 additions and 7 deletions

View File

@@ -1111,6 +1111,10 @@ declare module 'azdata' {
* The input validation error.
*/
inputValidationError?: string;
/**
* Metadata related to the table
*/
metadata?: { [key: string]: string };
}
/**
@@ -1129,6 +1133,10 @@ declare module 'azdata' {
* The new view.
*/
view: TableDesignerView;
/**
* Metadata related to the table to be captured
*/
metadata?: { [key: string]: string };
}
export interface GeneratePreviewReportResult {
@@ -1144,6 +1152,10 @@ declare module 'azdata' {
* The table schema validation error.
*/
schemaValidationError?: string;
/**
* Metadata related to the table to be captured
*/
metadata?: { [key: string]: string };
}
}