import type { BlankEnum } from './BlankEnum'; import type { NullEnum } from './NullEnum'; import type { PromptVisibilityEnum } from './PromptVisibilityEnum'; export type Prompt = { readonly id: number; mentor?: string; tone?: string | null; style?: string; language?: string; tags?: Array; is_system?: boolean; metadata?: any; category?: string; prompt: string; title?: string | null; description?: string | null; prompt_visibility?: (PromptVisibilityEnum | BlankEnum | NullEnum) | null; readonly created_at: string; readonly updated_at: string; created_by?: string | null; platform: number; };