chore: introduce @automatisch/types

This commit is contained in:
Ali BARIN
2022-03-01 22:56:19 +01:00
committed by Ömer Faruk Aydın
parent bbb6f0b0ff
commit 3391578655
54 changed files with 377 additions and 297 deletions

View File

@@ -4,8 +4,8 @@ import Step from './step';
class ExecutionStep extends Base {
id!: string;
executionId!: number;
stepId!: number;
executionId!: string;
stepId!: string;
dataIn!: any;
dataOut!: any;
status: string;
@@ -17,8 +17,8 @@ class ExecutionStep extends Base {
properties: {
id: { type: 'string' },
executionId: { type: 'integer' },
stepId: { type: 'integer' },
executionId: { type: 'string' },
stepId: { type: 'string' },
dataIn: { type: 'object' },
dataOut: { type: 'object' },
status: { type: 'string', enum: ['success', 'failure'] },