refactor: remove unused clientId from oauth token requests

remove clientId field from OauthTokenRequest interface and all oauthToken call sites,
as it is no longer required for the API requests.
This commit is contained in:
DEV_DSW
2026-06-02 17:01:43 +08:00
parent 4ef1113c2c
commit ebd7c2bf2a
2 changed files with 1 additions and 3 deletions

View File

@@ -2,7 +2,6 @@ import { request } from "../utils/request";
// 获取oauth token
export interface OauthTokenRequest {
clientId: string;
grant_type?: string;
openIdCode?: string[];
scope?: string;