mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-29 11:01:18 +03:00
Merge pull request #485 from FlowiseAI/bugfix/SQ_LITE_NOT_NULL
Bugfix/SQLITE_NOT_NULL
This commit is contained in:
@@ -9,9 +9,10 @@ export interface IChatFlow {
|
|||||||
id: string
|
id: string
|
||||||
name: string
|
name: string
|
||||||
flowData: string
|
flowData: string
|
||||||
isPublic: boolean
|
deployed: boolean
|
||||||
updatedDate: Date
|
updatedDate: Date
|
||||||
createdDate: Date
|
createdDate: Date
|
||||||
|
isPublic?: boolean
|
||||||
apikeyid?: string
|
apikeyid?: string
|
||||||
chatbotConfig?: string
|
chatbotConfig?: string
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,7 +14,10 @@ export class ChatFlow implements IChatFlow {
|
|||||||
flowData: string
|
flowData: string
|
||||||
|
|
||||||
@Column()
|
@Column()
|
||||||
isPublic: boolean
|
deployed: boolean
|
||||||
|
|
||||||
|
@Column({ nullable: true })
|
||||||
|
isPublic?: boolean
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
apikeyid?: string
|
apikeyid?: string
|
||||||
|
|||||||
@@ -201,6 +201,7 @@ const Canvas = () => {
|
|||||||
if (!chatflow.id) {
|
if (!chatflow.id) {
|
||||||
const newChatflowBody = {
|
const newChatflowBody = {
|
||||||
name: chatflowName,
|
name: chatflowName,
|
||||||
|
deployed: false,
|
||||||
isPublic: false,
|
isPublic: false,
|
||||||
flowData
|
flowData
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user