feat: complete Phase 5 (Assembler), Phase 6 (Testing), and Phase 8 (Visual Editor)

This commit is contained in:
cawcenter
2025-12-13 15:17:17 -05:00
parent 549250e9c8
commit 630620f4cf
111 changed files with 5093 additions and 58 deletions

View File

@@ -202,14 +202,17 @@ export interface GeoLocation {
export interface SpintaxDictionary {
id: string;
category: string;
words: string[];
variations: string; // Stored as "{option1|option2}" string
}
export interface CartesianPattern {
id: string;
pattern_id: string;
category: string;
formula: string;
pattern_name: string;
pattern_structure: string;
structure_type?: 'custom' | 'recipe';
category?: string;
formula?: string; // keeping for backward compat if needed
date_created?: string;
}
export interface OfferBlockUniversal {