Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-18 18:45:12 +00:00
co-authored by renee-png
parent c01c6b3766
commit bdb60f613b
+11
View File
@@ -36,6 +36,15 @@ export interface PleadingSignature {
imageType?: "png" | "jpg" | "jpeg";
}
export interface ServiceContact {
name: string;
role?: string;
company?: string;
email?: string;
phone?: string;
address?: string; // multi-line
}
export interface PleadingInput {
courtType: "CIRCUIT" | "COUNTY";
circuit: string; // e.g. "ELEVENTH"
@@ -51,6 +60,8 @@ export interface PleadingInput {
footerCenter?: string;
footerRight?: string; // user text prepended to "Page X of Y"
signature?: PleadingSignature;
serviceList?: ServiceContact[];
serviceListTitle?: string;
}
const FONT = "Bookman Old Style";