feat(subscribe): Update subscription management localization and add new fields

This commit is contained in:
web
2025-08-08 11:22:31 -07:00
committed by speakeloudest
parent ec3133e0c8
commit 63842e5d99
32 changed files with 2297 additions and 1707 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
// @ts-ignore
/* eslint-disable */
import request from '@/utils/request';
/** Create subscribe application POST /v1/admin/application/ */
+14 -3
View File
@@ -344,7 +344,7 @@ declare namespace API {
proxy_template: string;
template: string;
output_format: string;
download_link?: string;
download_link: DownloadLink;
};
type CreateSubscribeGroupRequest = {
@@ -495,6 +495,15 @@ declare namespace API {
updated_at: number;
};
type DownloadLink = {
ios?: string;
android?: string;
windows?: string;
mac?: string;
linux?: string;
harmony?: string;
};
type EmailAuthticateConfig = {
enable: boolean;
enable_verify: boolean;
@@ -1497,7 +1506,7 @@ declare namespace API {
proxy_template: string;
template: string;
output_format: string;
download_link?: string;
download_link?: DownloadLink;
created_at: number;
updated_at: number;
};
@@ -1507,6 +1516,8 @@ declare namespace API {
subscribe_path: string;
subscribe_domain: string;
pan_domain: boolean;
user_agent_limit: boolean;
user_agent_list: string;
};
type SubscribeDiscount = {
@@ -1773,7 +1784,7 @@ declare namespace API {
proxy_template: string;
template: string;
output_format: string;
download_link?: string;
download_link?: DownloadLink;
};
type UpdateSubscribeGroupRequest = {
+1 -1
View File
@@ -1,5 +1,5 @@
// @ts-ignore
// API 更新时间:
// API 唯一标识:
import * as auth from './auth';
+2
View File
@@ -770,6 +770,8 @@ declare namespace API {
subscribe_path: string;
subscribe_domain: string;
pan_domain: boolean;
user_agent_limit: boolean;
user_agent_list: string;
};
type SubscribeDiscount = {