mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-26 12:21:23 +00:00
* initial commit for notbooks pupeteer tests * Added Auth * added try catch block with screenshot for error * Addressed PR comments * renamed params * renamed param * fixed formatting error * Updates mongo spec to remove waitFor on already awaited selector * added logging statements * format errors fixed * added ci env variables * increased delay for render * removed logging * added delay * fix format error * removed deletion * reverted package.json change Co-authored-by: zfoster <notzachfoster@gmail.com>
40 lines
898 B
TypeScript
40 lines
898 B
TypeScript
import * as Versions from "./Versions";
|
|
import * as ActionContracts from "./ActionContracts";
|
|
import * as Diagnostics from "./Diagnostics";
|
|
|
|
/**
|
|
* Messaging types used with Data Explorer <-> Portal communication
|
|
* and Hosted <-> Explorer communication
|
|
*/
|
|
export enum MessageTypes {
|
|
TelemetryInfo,
|
|
LogInfo,
|
|
RefreshResources,
|
|
AllDatabases,
|
|
CollectionsForDatabase,
|
|
RefreshOffers,
|
|
AllOffers,
|
|
UpdateLocationHash,
|
|
SingleOffer,
|
|
RefreshOffer,
|
|
UpdateAccountName,
|
|
ForbiddenError,
|
|
AadSignIn,
|
|
GetAccessAadRequest,
|
|
GetAccessAadResponse,
|
|
UpdateAccountSwitch,
|
|
UpdateDirectoryControl,
|
|
SwitchAccount,
|
|
SendNotification,
|
|
ClearNotification,
|
|
ExplorerClickEvent,
|
|
LoadingStatus,
|
|
GetArcadiaToken,
|
|
CreateWorkspace,
|
|
CreateSparkPool,
|
|
RefreshDatabaseAccount,
|
|
InitTestExplorer
|
|
}
|
|
|
|
export { Versions, ActionContracts, Diagnostics };
|