We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e13912 commit 1d74473Copy full SHA for 1d74473
packages/server/src/Interface.ts
@@ -9,9 +9,9 @@ export interface IChatFlow {
9
id: string
10
name: string
11
flowData: string
12
- deployed: boolean
13
updatedDate: Date
14
createdDate: Date
+ deployed?: boolean
15
isPublic?: boolean
16
apikeyid?: string
17
chatbotConfig?: string
packages/server/src/entity/ChatFlow.ts
@@ -13,8 +13,8 @@ export class ChatFlow implements IChatFlow {
@Column()
- @Column()
+ @Column({ nullable: true })
18
19
@Column({ nullable: true })
20
0 commit comments