/** * @swagger * components: * schemas: * BpmnType: * description: The type of a BPMN element. * type: string * enum: * - bpmn:Task * - bpmn:BusinessRuleTask * - bpmn:UserTask * - bpmn:ExclusiveGateway * - bpmn:ParallelGateway * - bpmn:ServiceTask * - bpmn:StartEvent * - bpmn:EndEvent * - bpmn:IntermediateCatchEvent * - bpmn:IntermediateThrowEvent * - bpmn:ScriptTask * - bpmn:BoundaryEvent * - bpmn:CallActivity * - bpmn:SubProcess * - bpmn:ManualTask * - bpmn:ComplexGateway * - bpmn:InclusiveGateway * - bpmn:EventBasedGateway * - bpmn:SendTask * - bpmn:ReceiveTask */ /** * Contains a list of all known BPMN types and maps them to their corresponding XML tag. */ export declare enum BpmnType { untypedTask = "bpmn:Task", businessRuleTask = "bpmn:BusinessRuleTask", userTask = "bpmn:UserTask", exclusiveGateway = "bpmn:ExclusiveGateway", parallelGateway = "bpmn:ParallelGateway", serviceTask = "bpmn:ServiceTask", startEvent = "bpmn:StartEvent", endEvent = "bpmn:EndEvent", intermediateCatchEvent = "bpmn:IntermediateCatchEvent", intermediateThrowEvent = "bpmn:IntermediateThrowEvent", scriptTask = "bpmn:ScriptTask", boundaryEvent = "bpmn:BoundaryEvent", callActivity = "bpmn:CallActivity", subProcess = "bpmn:SubProcess", manualTask = "bpmn:ManualTask", complexGateway = "bpmn:ComplexGateway", inclusiveGateway = "bpmn:InclusiveGateway", eventBasedGateway = "bpmn:EventBasedGateway", sendTask = "bpmn:SendTask", receiveTask = "bpmn:ReceiveTask" } /** * @swagger * components: * schemas: * EventType: * description: The type of an event. * type: string * enum: * - conditionalEvent * - errorEvent * - escalationEvent * - linkEvent * - messageEvent * - signalEvent * - terminateEvent * - timerEvent */ /** * Contains a list of all supported event types. */ export declare enum EventType { conditionalEvent = "conditionalEvent", errorEvent = "errorEvent", escalationEvent = "escalationEvent", linkEvent = "linkEvent", messageEvent = "messageEvent", signalEvent = "signalEvent", terminateEvent = "terminateEvent", timerEvent = "timerEvent" }