mirror of
https://github.com/murashit/codex-panel.git
synced 2026-07-22 06:57:10 +00:00
17 lines
663 B
TypeScript
17 lines
663 B
TypeScript
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
|
|
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
|
|
export type LoginAccountResponse = { "type": "apiKey", } | { "type": "chatgpt", loginId: string,
|
|
/**
|
|
* URL the client should open in a browser to initiate the OAuth flow.
|
|
*/
|
|
authUrl: string, } | { "type": "chatgptDeviceCode", loginId: string,
|
|
/**
|
|
* URL the client should open in a browser to complete device code authorization.
|
|
*/
|
|
verificationUrl: string,
|
|
/**
|
|
* One-time code the user must enter after signing in.
|
|
*/
|
|
userCode: string, } | { "type": "chatgptAuthTokens", } | { "type": "amazonBedrock", };
|