feat: introduce choose account substep in flow editor

This commit is contained in:
Ali BARIN
2022-02-01 22:11:32 +01:00
committed by Ömer Faruk Aydın
parent b864100890
commit 6a3d1ced93
6 changed files with 99 additions and 16 deletions

View File

@@ -13,7 +13,7 @@ class Step extends Base {
key: string;
appKey: string;
type!: StepEnumType;
connectionId: number;
connectionId: string;
position: number;
parameters: string;
connection?: Connection;
@@ -31,7 +31,7 @@ class Step extends Base {
key: { type: ['string', null] },
appKey: { type: ['string', null], minLength: 1, maxLength: 255 },
type: { type: 'string', enum: ['action', 'trigger'] },
connectionId: { type: ['integer', null] },
connectionId: { type: ['string', null] },
position: { type: 'integer' },
parameters: { type: ['string', null] },
},