Update from CSV added

This commit is contained in:
2026-03-19 14:48:15 -05:00
parent f2dcff7b71
commit c2f384a105
8 changed files with 632 additions and 9 deletions
+30
View File
@@ -77,6 +77,36 @@ export interface Template {
defaultSubScopeName?: string;
}
export type ScopeTextTemplateType = 'estimatorNotes' | 'bidDescription';
export type ScopeTextTemplateDiffOp = 'equal' | 'add' | 'remove';
export interface ScopeTextTemplateDiffLine {
op: ScopeTextTemplateDiffOp;
text: string;
}
export interface ScopeTextTemplateHistoryEntry {
id: string;
timestamp: string;
updatedBy: string;
action: 'created' | 'updated';
previousContent: string;
nextContent: string;
diff: ScopeTextTemplateDiffLine[];
}
export interface ScopeTextTemplate {
id: string;
name: string;
type: ScopeTextTemplateType;
content: string;
lastUpdatedBy?: string;
history?: ScopeTextTemplateHistoryEntry[];
createdAt: string;
updatedAt: string;
}
export interface StandardPrice {
id: string;
category: string;