Files
nocodb/packages/nc-gui/utils/aiUtils.ts
Mert E. 6724fd2f9d chore: sync various (#9864)
* chore: sync various

Signed-off-by: mertmit <mertmit99@gmail.com>

* test: ws scope

Signed-off-by: mertmit <mertmit99@gmail.com>

* fix(nc-gui): ncSubmenu right icon visibility issue

* fix(nc-gui): use viewTypeAlias in all the places

---------

Signed-off-by: mertmit <mertmit99@gmail.com>
Co-authored-by: Ramesh Mane <101566080+rameshmane7218@users.noreply.github.com>
2024-11-20 21:48:09 +05:30

21 lines
433 B
TypeScript

import type { UITypes } from 'nocodb-sdk'
export enum AiWizardTabsType {
AUTO_SUGGESTIONS = 'AUTO_SUGGESTIONS',
PROMPT = 'PROMPT',
}
export interface PredictedFieldType {
title: string
type: UITypes
column_name?: string
options?: string[]
colOptions?: Record<string, any>
formula?: string
description?: string
formState?: Record<string, any>
selected?: boolean
tab?: AiWizardTabsType
ai_temp_id: string
}