chore: Update objectionjs version to 3

This commit is contained in:
Faruk AYDIN
2022-02-26 18:05:12 +03:00
committed by Ömer Faruk Aydın
parent 61c1f3a300
commit 70bb79ab6c
9 changed files with 85 additions and 200 deletions

View File

@@ -2,22 +2,18 @@ import Base from './base';
import Flow from './flow';
import Connection from './connection';
import ExecutionStep from './execution-step';
enum StepEnumType {
'trigger',
'action',
}
import StepEnumType from '../types/step-enum-type';
class Step extends Base {
id!: number;
flowId!: number;
flowId!: string;
key: string;
appKey: string;
type!: StepEnumType;
connectionId: string;
status: string;
position: number;
parameters: string;
parameters: Record<string, unknown>;
connection?: Connection;
flow?: Flow;
executionSteps?: [ExecutionStep];
@@ -30,14 +26,14 @@ class Step extends Base {
properties: {
id: { type: 'integer' },
flowId: { type: 'integer' },
flowId: { type: 'string' },
key: { type: ['string', null] },
appKey: { type: ['string', null], minLength: 1, maxLength: 255 },
type: { type: 'string', enum: ['action', 'trigger'] },
connectionId: { type: ['string', null] },
status: { type: 'string', enum: ['incomplete', 'completed'] },
position: { type: 'integer' },
parameters: { type: ['string', null] },
parameters: { type: ['object', null] },
},
};