Regenerate TS client to drop duplicated method from merge

The merge of main kept two copies of testProviderCredentials in the
generated models-api.ts; regeneration is authoritative.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Bryan Helmkamp 2026-07-24 06:44:56 -04:00
parent 85f3286c66
commit 558c1010f8
No known key found for this signature in database

View file

@ -397,17 +397,6 @@ export const ModelsApiFactory = function (configuration?: Configuration, basePat
testProviderCredentials(provider: string, providerCredentialTestRequest: ProviderCredentialTestRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProviderCredentialTestResponse> {
return localVarFp.testProviderCredentials(provider, providerCredentialTestRequest, options).then((request) => request(axios, basePath));
},
/**
* Validates an LLM provider API key against the server\'s effective catalog without persisting it.
* @summary Test Provider Credentials
* @param {string} provider The provider identifier.
* @param {ProviderCredentialTestRequest} providerCredentialTestRequest
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
testProviderCredentials(provider: string, providerCredentialTestRequest: ProviderCredentialTestRequest, options?: RawAxiosRequestConfig): AxiosPromise<ProviderCredentialTestResponse> {
return localVarFp.testProviderCredentials(provider, providerCredentialTestRequest, options).then((request) => request(axios, basePath));
},
/**
* Tests every configured LLM provider once using the catalog probe model. Provider-level failures are returned in the response body with HTTP 200.
* @summary Test Providers
@ -473,18 +462,6 @@ export class ModelsApi extends BaseAPI {
return ModelsApiFp(this.configuration).testProviderCredentials(provider, providerCredentialTestRequest, options).then((request) => request(this.axios, this.basePath));
}
/**
* Validates an LLM provider API key against the server\'s effective catalog without persisting it.
* @summary Test Provider Credentials
* @param {string} provider The provider identifier.
* @param {ProviderCredentialTestRequest} providerCredentialTestRequest
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
public testProviderCredentials(provider: string, providerCredentialTestRequest: ProviderCredentialTestRequest, options?: RawAxiosRequestConfig) {
return ModelsApiFp(this.configuration).testProviderCredentials(provider, providerCredentialTestRequest, options).then((request) => request(this.axios, this.basePath));
}
/**
* Tests every configured LLM provider once using the catalog probe model. Provider-level failures are returned in the response body with HTTP 200.
* @summary Test Providers