✨ feat(affiliate): Affiliate Detail
This commit is contained in:
@@ -21,3 +21,11 @@ export async function getGlobalConfig(options?: { [key: string]: any }) {
|
||||
...(options || {}),
|
||||
});
|
||||
}
|
||||
|
||||
/** Get Tos Content GET /v1/common/site/tos */
|
||||
export async function getTos(options?: { [key: string]: any }) {
|
||||
return request<API.Response & { data?: API.GetTosResponse }>('/v1/common/site/tos', {
|
||||
method: 'GET',
|
||||
...(options || {}),
|
||||
});
|
||||
}
|
||||
|
||||
+4
@@ -25,6 +25,10 @@ declare namespace API {
|
||||
subscribe: SubscribeConfig;
|
||||
};
|
||||
|
||||
type GetTosResponse = {
|
||||
tos_content: string;
|
||||
};
|
||||
|
||||
type InviteConfig = {
|
||||
forced_invite: boolean;
|
||||
};
|
||||
|
||||
Vendored
+1
-1
@@ -212,6 +212,7 @@ declare namespace API {
|
||||
};
|
||||
|
||||
type QueryUserAffiliateResponse = {
|
||||
sum: number;
|
||||
list: UserAffiliate[];
|
||||
total: number;
|
||||
};
|
||||
@@ -353,7 +354,6 @@ declare namespace API {
|
||||
type UserAffiliate = {
|
||||
email: string;
|
||||
avatar: string;
|
||||
telegram: number;
|
||||
registered_at: number;
|
||||
enable: boolean;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user