Bugfix/Upsert files override (#3569)

add fix for upsert files
This commit is contained in:
Henry Heng
2024-11-25 17:26:32 +00:00
committed by GitHub
parent a2c36b4447
commit 7d9e1514b1
3 changed files with 43 additions and 9 deletions
+16
View File
@@ -288,5 +288,21 @@ export interface ICustomTemplate {
usecases?: string
}
export interface INodeOverrides {
[key: string]: {
label: string
name: string
type: string
enabled: boolean
}[]
}
export interface IVariableOverride {
id: string
name: string
type: 'static' | 'runtime'
enabled: boolean
}
// DocumentStore related
export * from './Interface.DocumentStore'