Expose dev subscription headers without HWID

This commit is contained in:
2026-07-08 21:51:45 +03:00
parent a2581187da
commit 4d859dc0a6
7 changed files with 143 additions and 21 deletions
+10
View File
@@ -80,6 +80,16 @@ export interface LocalSingBoxStatusResponse {
component: ComponentStatus;
generatedConfigPath: string;
lanListenHost?: string;
subscriptionIdentity?: SubscriptionRequestIdentity;
}
export interface SubscriptionRequestIdentity {
headers: SubscriptionRequestHeader[];
}
export interface SubscriptionRequestHeader {
name: string;
value: string;
}
export interface PingServerResponse {