mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 09:59:47 -05:00
* fixed right click context menu bug in jobs view * added stepInfo and edit job WIP * show jobs in job edit * added schedule description on select schedule * fetch schedules during history and show in edit job * added alerts to job histories and show in edit * made history calls async * filter menus now close when esc is pressed * fixed bug where clicking on error row wouldnt populate job details * added functionality to delete steps in a job * added real time adding steps in edit job
18 lines
547 B
TypeScript
18 lines
547 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
'use strict';
|
|
|
|
export enum AgentDialogMode {
|
|
CREATE = 1,
|
|
EDIT = 2,
|
|
VIEW = 3
|
|
}
|
|
|
|
export interface IAgentDialogData {
|
|
dialogMode: AgentDialogMode;
|
|
initialize(): void;
|
|
save(): Promise<void>;
|
|
}
|