feat: codex subscription support (#6600)
Signed-off-by: Adrian Cole <adrian@tetrate.io> Co-authored-by: Adrian Cole <adrian@tetrate.io>
This commit is contained in:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -2261,6 +2261,32 @@ export type GetProviderModelsResponses = {
|
||||
|
||||
export type GetProviderModelsResponse = GetProviderModelsResponses[keyof GetProviderModelsResponses];
|
||||
|
||||
export type ConfigureProviderOauthData = {
|
||||
body?: never;
|
||||
path: {
|
||||
/**
|
||||
* Provider name
|
||||
*/
|
||||
name: string;
|
||||
};
|
||||
query?: never;
|
||||
url: '/config/providers/{name}/oauth';
|
||||
};
|
||||
|
||||
export type ConfigureProviderOauthErrors = {
|
||||
/**
|
||||
* OAuth configuration failed
|
||||
*/
|
||||
400: unknown;
|
||||
};
|
||||
|
||||
export type ConfigureProviderOauthResponses = {
|
||||
/**
|
||||
* OAuth configuration completed
|
||||
*/
|
||||
200: unknown;
|
||||
};
|
||||
|
||||
export type ReadConfigData = {
|
||||
body: ConfigKeyQuery;
|
||||
path?: never;
|
||||
|
||||
Reference in New Issue
Block a user