-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtypes.d.ts
More file actions
197 lines (185 loc) · 5.24 KB
/
Copy pathtypes.d.ts
File metadata and controls
197 lines (185 loc) · 5.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
// Custom Session type for NextAuth
interface SessionUser {
id?: string;
name?: string | null;
email?: string | null;
role?: string; // User role (USER or ADMIN) for authorization checks
/** Account approval status from JWT (server-derived) */
status?: "PENDING" | "APPROVED" | "REJECTED" | string;
}
interface Session {
user?: SessionUser;
expires?: string;
}
interface Book {
id: string;
title: string;
author: string;
genre: string;
rating: number;
totalCopies: number;
availableCopies: number;
description: string;
coverColor: string;
coverUrl: string;
videoUrl: string;
summary: string;
// Enhanced tracking and control fields
isbn?: string | null;
publicationYear?: number | null;
publisher?: string | null;
language?: string | null;
pageCount?: number | null;
edition?: string | null;
isActive: boolean;
/** Curated homepage hero; at most one active featured book */
isFeatured: boolean;
updatedAt: Date | null;
updatedBy?: string | null;
createdAt: Date | null;
}
interface AuthCredentials {
fullName: string;
email: string;
password: string;
universityId: number;
universityCard: string;
}
interface BookParams {
title: string;
author: string;
genre: string;
rating: number;
coverUrl: string;
coverColor: string;
description: string;
totalCopies: number;
videoUrl: string;
summary: string;
// Enhanced optional fields
isbn?: string;
publicationYear?: number;
publisher?: string;
language?: string;
pageCount?: number;
edition?: string;
isActive?: boolean;
/** When true, clears featured on all other books in the same write transaction */
isFeatured?: boolean;
}
interface BorrowBookParams {
bookId: string;
}
interface BorrowRecord {
id: string;
userId: string;
bookId: string;
borrowDate: Date;
dueDate: Date | null; // Can be null for pending requests
returnDate?: Date | null;
status: "PENDING" | "BORROWED" | "RETURNED" | "CANCELLED";
// Enhanced tracking and control fields
borrowedBy?: string | null;
returnedBy?: string | null;
fineAmount: number;
notes?: string | null;
renewalCount: number;
lastReminderSent?: Date | null;
updatedAt: Date | null;
updatedBy?: string | null;
createdAt: Date | null;
}
// Parent: CR-0003 / REQ-0034 — Support Ticket domain
type TicketStatusValue = "OPEN" | "IN_PROGRESS" | "RESOLVED" | "CLOSED";
type TicketPriorityValue = "LOW" | "MEDIUM" | "HIGH" | "URGENT";
interface SupportTicketReplyRow {
id: string;
ticketId: string;
userId: string;
userName: string;
userEmail: string;
userUniversityCard: string | null;
userRole: "USER" | "ADMIN";
body: string;
createdAt: string;
}
/** Row shape shared by admin list, personal list, and detail (joins flattened). */
interface SupportTicketListItem {
id: string;
subject: string;
/** Truncated under subject in list densify — always present on list+detail. */
description: string;
status: TicketStatusValue;
priority: TicketPriorityValue;
userId: string;
userName: string;
userEmail: string;
userUniversityCard: string | null;
assignedToId: string | null;
assignedToName: string | null;
assignedToEmail: string | null;
assignedToUniversityCard: string | null;
relatedBookId: string | null;
relatedBookTitle: string | null;
replyCount: number;
createdAt: string;
updatedAt: string;
}
interface SupportTicketDetail extends SupportTicketListItem {
notes: string | null;
replies: SupportTicketReplyRow[];
/** Last actor who mutated the ticket (status/assignee/content/notes). */
updatedById: string | null;
updatedByName: string | null;
updatedByEmail: string | null;
updatedByUniversityCard: string | null;
}
/** Audit row for ticket detail Activity timeline (admin + densified feed). */
interface TicketActivityEvent {
id: string;
kind: "created" | "updated" | "replied" | "audit";
at: string;
label: string;
actorId: string | null;
actorName: string | null;
actorEmail: string | null;
actorUniversityCard: string | null;
detail?: string | null;
}
// Parent: CR-0003 / REQ-0034 — Book Review moderation
type ReviewStatusValue = "PENDING" | "APPROVED" | "REJECTED";
/** Row shape shared by admin moderation queue, My Reviews tab, and detail. */
interface AdminBookReviewItem {
id: string;
rating: number;
comment: string;
status: ReviewStatusValue;
bookId: string;
bookTitle: string;
bookCoverUrl: string | null;
bookCoverColor: string | null;
/** Catalog author — My Reviews / admin card densify (REQ-0035 polish). */
bookAuthor: string;
bookGenre: string;
/** Catalog star rating for the book itself (not the review rating). */
bookRating: number;
userId: string;
userName: string;
userEmail: string;
/** Author university card path for PersonAttribution / avatars. */
userUniversityCard: string | null;
reviewedBy: string | null;
reviewedByName: string | null;
reviewedByEmail: string | null;
reviewedByUniversityCard: string | null;
reviewedAt: string | null;
createdAt: string | null;
updatedAt: string | null;
/**
* Review author's preferred borrow for this book (active BORROWED first,
* else latest RETURNED). Null when the author never borrowed the book.
*/
borrowedAt: string | null;
dueDate: string | null;
returnedAt: string | null;
}