mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 05:26:53 +00:00
* 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>
21 lines
433 B
TypeScript
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
|
|
}
|