54 lines
1.2 KiB
TypeScript
54 lines
1.2 KiB
TypeScript
import type { QueryContext } from 'objection';
|
|
import Base from './base';
|
|
import Flow from './flow';
|
|
import ExecutionStep from './execution-step';
|
|
import Telemetry from '../helpers/telemetry';
|
|
|
|
class Execution extends Base {
|
|
id!: string;
|
|
flowId!: string;
|
|
testRun: boolean;
|
|
internalId: string;
|
|
executionSteps: ExecutionStep[];
|
|
flow?: Flow;
|
|
|
|
static tableName = 'executions';
|
|
|
|
static jsonSchema = {
|
|
type: 'object',
|
|
|
|
properties: {
|
|
id: { type: 'string', format: 'uuid' },
|
|
flowId: { type: 'string', format: 'uuid' },
|
|
testRun: { type: 'boolean', default: false },
|
|
internalId: { type: 'string' },
|
|
},
|
|
};
|
|
|
|
static relationMappings = () => ({
|
|
flow: {
|
|
relation: Base.BelongsToOneRelation,
|
|
modelClass: Flow,
|
|
join: {
|
|
from: 'executions.flow_id',
|
|
to: 'flows.id',
|
|
},
|
|
},
|
|
executionSteps: {
|
|
relation: Base.HasManyRelation,
|
|
modelClass: ExecutionStep,
|
|
join: {
|
|
from: 'executions.id',
|
|
to: 'execution_steps.execution_id',
|
|
},
|
|
},
|
|
});
|
|
|
|
async $afterInsert(queryContext: QueryContext) {
|
|
await super.$afterInsert(queryContext);
|
|
Telemetry.executionCreated(this);
|
|
}
|
|
}
|
|
|
|
export default Execution;
|