@voiceflow/base-types
Advanced tools
Comparing version 2.93.0 to 2.94.0
@@ -82,2 +82,18 @@ import { AIContextParams, AIModelParams } from "../../utils/ai"; | ||
} | ||
export interface FAQ { | ||
question: string; | ||
answer: string; | ||
} | ||
export interface KnowledgeBaseSetFaq { | ||
name: string; | ||
status: { | ||
type: KnowledgeBaseDocumentStatus; | ||
data?: unknown; | ||
}; | ||
creatorID: number; | ||
updatedAt: Date; | ||
faqSetID: string; | ||
version?: number; | ||
tags?: string[]; | ||
} | ||
export interface KnowledgeBase { | ||
@@ -87,2 +103,3 @@ settings?: KnowledgeBaseSettings; | ||
tags?: Record<string, KBTag>; | ||
faqSets?: Record<string, KnowledgeBaseSetFaq>; | ||
} |
@@ -82,2 +82,18 @@ import { AIContextParams, AIModelParams } from "../../utils/ai"; | ||
} | ||
export interface FAQ { | ||
question: string; | ||
answer: string; | ||
} | ||
export interface KnowledgeBaseSetFaq { | ||
name: string; | ||
status: { | ||
type: KnowledgeBaseDocumentStatus; | ||
data?: unknown; | ||
}; | ||
creatorID: number; | ||
updatedAt: Date; | ||
faqSetID: string; | ||
version?: number; | ||
tags?: string[]; | ||
} | ||
export interface KnowledgeBase { | ||
@@ -87,2 +103,3 @@ settings?: KnowledgeBaseSettings; | ||
tags?: Record<string, KBTag>; | ||
faqSets?: Record<string, KnowledgeBaseSetFaq>; | ||
} |
{ | ||
"name": "@voiceflow/base-types", | ||
"description": "Voiceflow base project types", | ||
"version": "2.93.0", | ||
"version": "2.94.0", | ||
"author": "Voiceflow", | ||
@@ -48,3 +48,3 @@ "bugs": { | ||
"types": "build/cjs/index.d.ts", | ||
"gitHead": "3db88a20eca68995ffa84a87206a405dfe482087" | ||
"gitHead": "71f4ab3203b989f298016a551d28b997890584b7" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
539748
8887