Actualizar supabase/functions/tests/ai-structured-test.ts #61
@@ -263,35 +263,35 @@ export type Database = {
|
||||
Row: {
|
||||
actualizado_en: string
|
||||
asignatura_id: string
|
||||
biblioteca_item_id: string | null
|
||||
cita: string
|
||||
creado_en: string
|
||||
creado_por: string | null
|
||||
id: string
|
||||
referencia_biblioteca: string | null
|
||||
referencia_en_linea: string | null
|
||||
tipo: Database["public"]["Enums"]["tipo_bibliografia"]
|
||||
tipo_fuente: Database["public"]["Enums"]["tipo_fuente_bibliografia"]
|
||||
}
|
||||
Insert: {
|
||||
actualizado_en?: string
|
||||
asignatura_id: string
|
||||
biblioteca_item_id?: string | null
|
||||
cita: string
|
||||
creado_en?: string
|
||||
creado_por?: string | null
|
||||
id?: string
|
||||
referencia_biblioteca?: string | null
|
||||
referencia_en_linea?: string | null
|
||||
tipo: Database["public"]["Enums"]["tipo_bibliografia"]
|
||||
tipo_fuente?: Database["public"]["Enums"]["tipo_fuente_bibliografia"]
|
||||
}
|
||||
Update: {
|
||||
actualizado_en?: string
|
||||
asignatura_id?: string
|
||||
biblioteca_item_id?: string | null
|
||||
cita?: string
|
||||
creado_en?: string
|
||||
creado_por?: string | null
|
||||
id?: string
|
||||
referencia_biblioteca?: string | null
|
||||
referencia_en_linea?: string | null
|
||||
tipo?: Database["public"]["Enums"]["tipo_bibliografia"]
|
||||
tipo_fuente?: Database["public"]["Enums"]["tipo_fuente_bibliografia"]
|
||||
}
|
||||
Relationships: [
|
||||
{
|
||||
@@ -474,6 +474,7 @@ export type Database = {
|
||||
estado: Database["public"]["Enums"]["estado_conversacion"]
|
||||
id: string
|
||||
intento_archivado: number
|
||||
nombre: string | null
|
||||
openai_conversation_id: string
|
||||
}
|
||||
Insert: {
|
||||
@@ -486,6 +487,7 @@ export type Database = {
|
||||
estado?: Database["public"]["Enums"]["estado_conversacion"]
|
||||
id?: string
|
||||
intento_archivado?: number
|
||||
nombre?: string | null
|
||||
openai_conversation_id: string
|
||||
}
|
||||
Update: {
|
||||
@@ -498,6 +500,7 @@ export type Database = {
|
||||
estado?: Database["public"]["Enums"]["estado_conversacion"]
|
||||
id?: string
|
||||
intento_archivado?: number
|
||||
nombre?: string | null
|
||||
openai_conversation_id?: string
|
||||
}
|
||||
Relationships: [
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
// supabase/functions/ai-structured/ai_structured.test.ts
|
||||
// dummy number
|
||||
/// <reference lib="deno.ns" />
|
||||
/// <reference lib="dom" />
|
||||
/// <reference lib="dom.iterable" />
|
||||
|
||||
Reference in New Issue
Block a user