Validaciones mandatorias — Sección 8 — IDs concretos

This commit is contained in:
markosbenitez
2026-06-04 21:52:39 -03:00
parent d91ea6b2ff
commit b1ca0e0795
32 changed files with 1325 additions and 121 deletions

View File

@@ -39,12 +39,21 @@ export interface Question {
conditional_rules: ConditionalRule[] | null
}
export interface BrandConfig {
org_name?: string
branch_name?: string
branch_city?: string
}
export interface Survey {
id: string
org_id: string
title: string
status: string
is_anonymous: boolean
k_threshold: number
consent_version_id: string
brand_config: BrandConfig | null
questions: Question[]
}