File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,10 @@ export interface IChatFlow {
99 id : string
1010 name : string
1111 flowData : string
12- isPublic : boolean
12+ deployed : boolean
1313 updatedDate : Date
1414 createdDate : Date
15+ isPublic ?: boolean
1516 apikeyid ?: string
1617 chatbotConfig ?: string
1718}
Original file line number Diff line number Diff line change @@ -14,7 +14,10 @@ export class ChatFlow implements IChatFlow {
1414 flowData : string
1515
1616 @Column ( )
17- isPublic : boolean
17+ deployed : boolean
18+
19+ @Column ( { nullable : true } )
20+ isPublic ?: boolean
1821
1922 @Column ( { nullable : true } )
2023 apikeyid ?: string
Original file line number Diff line number Diff line change @@ -201,6 +201,7 @@ const Canvas = () => {
201201 if ( ! chatflow . id ) {
202202 const newChatflowBody = {
203203 name : chatflowName ,
204+ deployed : false ,
204205 isPublic : false ,
205206 flowData
206207 }
You can’t perform that action at this time.
0 commit comments