mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-02-15 16:57:35 +00:00
* exposed baselineValues * added getOnSaveNotification * disable UI when onSave is taking place * added optional polling * Added portal notifications * minor edits * added label for description * Added correlationids and polling of refresh * added label tooltip * removed ClassInfo decorator * Added dynamic decription * added info and warninf types for description * promise retry changes * compile errors fixed * merged sqlxEdits * undid sqlx changes * added completed notification * passed retryInterval in notif options * added polling on landing on the page * edits for error display * added link generation * addressed PR comments * modified test * fixed compilation error
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
/**
|
|
* Messaging types used with SelfServe Component <-> Portal communication
|
|
* and Hosted <-> SelfServe Component communication
|
|
*/
|
|
|
|
export enum SelfServeMessageTypes {
|
|
TelemetryInfo = "TelemetryInfo",
|
|
Notification = "Notification",
|
|
}
|