mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-28 09:33:46 +00:00
fix: align SubscriptionRequestRecord type with Remnawave 2.8.0
The panel renamed the subscription-request-history field userUuid (uuid) -> userId (number) in 2.8.0. The field is never read in the UI (render uses id/requestAt/requestIp/userAgent), so this is a type-accuracy fix only. tsc --noEmit passes.
This commit is contained in:
@@ -161,7 +161,8 @@ export interface UserPanelInfo {
|
|||||||
|
|
||||||
export interface SubscriptionRequestRecord {
|
export interface SubscriptionRequestRecord {
|
||||||
id: number;
|
id: number;
|
||||||
userUuid: string;
|
// Remnawave 2.8.0 renamed this panel field userUuid (uuid) -> userId (number).
|
||||||
|
userId: number;
|
||||||
requestAt: string;
|
requestAt: string;
|
||||||
requestIp: string | null;
|
requestIp: string | null;
|
||||||
userAgent: string | null;
|
userAgent: string | null;
|
||||||
|
|||||||
Reference in New Issue
Block a user