feat: introduce choose account substep in flow editor
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
b864100890
commit
6a3d1ced93
@@ -20,10 +20,10 @@ class Connection extends Base {
|
||||
required: ['key', 'data'],
|
||||
|
||||
properties: {
|
||||
id: { type: 'integer' },
|
||||
id: { type: 'string' },
|
||||
key: { type: 'string', minLength: 1, maxLength: 255 },
|
||||
data: { type: 'object' },
|
||||
userId: { type: 'integer' },
|
||||
userId: { type: 'string' },
|
||||
verified: { type: 'boolean' },
|
||||
},
|
||||
};
|
||||
|
@@ -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] },
|
||||
},
|
||||
|
Reference in New Issue
Block a user