added new document type

This commit is contained in:
Khalim Conn-Kowlessar 2024-09-04 15:13:21 +01:00
parent b5777e380c
commit c983cdd688
5 changed files with 2874 additions and 3 deletions

View file

@ -0,0 +1 @@
ALTER TYPE "document_type" ADD VALUE 'Scenario Draft EPC';

File diff suppressed because it is too large Load diff

View file

@ -645,6 +645,13 @@
"when": 1725445028849,
"tag": "0091_fuzzy_doctor_spectrum",
"breakpoints": true
},
{
"idx": 92,
"version": "5",
"when": 1725459183539,
"tag": "0092_illegal_magma",
"breakpoints": true
}
]
}

View file

@ -148,7 +148,7 @@ export const DocumentType: [string, ...string[]] = [
"Evidence Report",
"Summary Information",
"Floor Plan",
"Scenario EPR",
"Scenario Draft EPC",
];
export const DocumentTypeEnum = pgEnum("document_type", DocumentType);

View file

@ -1,8 +1,8 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"target": "es5",
// "target": "ESNext",
// "target": "es5",
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,