update types

This commit is contained in:
Nate Kelley 2025-02-10 11:41:59 -07:00
parent c40bdfcb4c
commit 14ca65be59
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
2 changed files with 10 additions and 2 deletions

View File

@ -74,7 +74,8 @@ export type BusterChatMessageReasoning_text = {
export type BusterChatMessageReasoning_file = {
id: string;
type: FileType;
type: 'file';
file_type: FileType;
file_name: string;
version_number: number;
version_id: string;

View File

@ -1,5 +1,12 @@
export type FileType = 'metric' | 'dashboard' | 'reasoning'; //'dataset' | 'collection' | | 'term' | 'value'
export type ThoughtFileType = 'metric' | 'dashboard' | 'collection' | 'dataset' | 'term' | 'value';
export type ThoughtFileType =
| 'metric'
| 'dashboard'
| 'collection'
| 'dataset'
| 'term'
| 'value'
| 'empty';
export type AllFileTypes = ThoughtFileType | FileType;