Type Alias LoginAccountResponse
LoginAccountResponse:
| { type: "apiKey" }
| { authUrl: string; loginId: string; type: "chatgpt" }
| {
loginId: string;
type: "chatgptDeviceCode";
userCode: string;
verificationUrl: string;
}
| { type: "chatgptAuthTokens" }
Type Declaration
- { type: "apiKey" }
- { authUrl: string; loginId: string; type: "chatgpt" }
authUrl: string
loginId: string
type: "chatgpt"
- {
loginId: string;
type: "chatgptDeviceCode";
userCode: string;
verificationUrl: string;
}loginId: string
type: "chatgptDeviceCode"
userCode: string
verificationUrl: string
- { type: "chatgptAuthTokens" }
URL the client should open in a browser to initiate the OAuth flow.