feat: make flow name updatable

This commit is contained in:
Ali BARIN
2022-02-01 00:16:40 +01:00
committed by Ömer Faruk Aydın
parent 91a1c8b793
commit 89fbfd9dfc
5 changed files with 145 additions and 9 deletions

View File

@@ -2,7 +2,7 @@ import Base from './base';
import Step from './step';
class Flow extends Base {
id!: number;
id!: string;
name: string;
userId!: number;
active: boolean;
@@ -14,7 +14,7 @@ class Flow extends Base {
type: 'object',
properties: {
id: { type: 'integer' },
id: { type: 'string' },
name: { type: 'string' },
userId: { type: 'integer' },
active: { type: 'boolean' },