chore: stop tracking frontend node_modules

This commit is contained in:
Cheng Zhou
2026-01-20 08:52:54 +08:00
parent 7fdcfdaadd
commit 8e258d21a7
17405 changed files with 1643 additions and 2086724 deletions
+1
View File
@@ -91,6 +91,7 @@ export interface Site {
city?: string | null;
pi_name?: string | null;
contact?: string | null;
enrollment_target?: number | null;
is_active: boolean;
created_at?: string;
}
-4
View File
@@ -1,4 +1,3 @@
export type DocumentStatus = "DRAFT" | "ACTIVE" | "ARCHIVED";
export type DocumentScopeType = "GLOBAL" | "SITE" | "DERIVED";
export type DocumentVersionStatus =
| "DRAFT"
@@ -13,19 +12,16 @@ export interface DocumentVersionSummary {
id: string;
version_no: string;
status: DocumentVersionStatus;
effective_at?: string | null;
}
export interface DocumentSummary {
id: string;
trial_id: string;
site_id?: string | null;
doc_no: string;
doc_type: string;
title: string;
scope_type: DocumentScopeType;
owner_id?: string | null;
status: DocumentStatus;
current_effective_version_id?: string | null;
current_effective_version?: DocumentVersionSummary | null;
created_at: string;