@arcgis/workflow-manager
Version:
ArcGIS Workflow Manager JavaScript API
20 lines (19 loc) • 530 B
TypeScript
import { Setting } from './setting';
export interface WorkflowItemDetails {
itemVersion: string;
upgradeAvailable: boolean;
isOldestAllowedVersion?: boolean;
allowUnsecureWebhooks: boolean;
customSMTP: boolean;
settings?: Setting[];
}
export interface ExportDataDetails {
jobTemplateIds?: string[] | null;
diagramIds?: string[] | null;
includeOtherConfiguration?: boolean;
passphrase?: string | null;
}
export interface ImportDataDetails {
file: Blob;
passphrase?: string | null;
}