mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-29 09:01:06 +03:00
add nullable to isPublic
This commit is contained in:
@@ -10,9 +10,9 @@ export interface IChatFlow {
|
|||||||
name: string
|
name: string
|
||||||
flowData: string
|
flowData: string
|
||||||
deployed: boolean
|
deployed: boolean
|
||||||
isPublic: boolean
|
|
||||||
updatedDate: Date
|
updatedDate: Date
|
||||||
createdDate: Date
|
createdDate: Date
|
||||||
|
isPublic?: boolean
|
||||||
apikeyid?: string
|
apikeyid?: string
|
||||||
chatbotConfig?: string
|
chatbotConfig?: string
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,8 +16,8 @@ export class ChatFlow implements IChatFlow {
|
|||||||
@Column()
|
@Column()
|
||||||
deployed: boolean
|
deployed: boolean
|
||||||
|
|
||||||
@Column()
|
@Column({ nullable: true })
|
||||||
isPublic: boolean
|
isPublic?: boolean
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
apikeyid?: string
|
apikeyid?: string
|
||||||
|
|||||||
Reference in New Issue
Block a user