@medusajs/workflow-engine-inmemory
Version:
Medusa Workflow Orchestrator module
27 lines (26 loc) • 483 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = `
enum TransactionState {
NOT_STARTED
INVOKING
WAITING_TO_COMPENSATE
COMPENSATING
DONE
REVERTED
FAILED
}
type WorkflowExecution {
id: ID!
created_at: DateTime!
updated_at: DateTime!
deleted_at: DateTime
workflow_id: string
transaction_id: string
run_id: string
execution: JSON
context: JSON
state: TransactionState
}
`;
//# sourceMappingURL=index.js.map
;