feat(login api): add clientId to OauthTokenRequest

This commit is contained in:
duanshuwen
2026-06-15 11:17:55 +08:00
parent 0613c16942
commit 8792c6f837

View File

@@ -9,6 +9,7 @@ export interface OauthTokenRequest {
scope?: string;
mobile?: string;
code?: string;
clientId?: string;
[property: string]: any;
}