✨ feat(subscribe): Update subscription management localization and add new fields
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
// @ts-ignore
|
||||
|
||||
/* eslint-disable */
|
||||
import request from '@/utils/request';
|
||||
|
||||
/** Create subscribe application POST /v1/admin/application/ */
|
||||
|
||||
+14
-3
@@ -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,5 +1,5 @@
|
||||
// @ts-ignore
|
||||
|
||||
|
||||
// API 更新时间:
|
||||
// API 唯一标识:
|
||||
import * as auth from './auth';
|
||||
|
||||
+2
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user