From 558c1010f8758ea8a1bf4d29dc9adaaa87571edb Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Fri, 24 Jul 2026 06:44:56 -0400 Subject: [PATCH] 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 --- .../fabro-api-client/src/api/models-api.ts | 23 ------------------- 1 file changed, 23 deletions(-) diff --git a/lib/packages/fabro-api-client/src/api/models-api.ts b/lib/packages/fabro-api-client/src/api/models-api.ts index 1f34aeb76..03a90fac4 100644 --- a/lib/packages/fabro-api-client/src/api/models-api.ts +++ b/lib/packages/fabro-api-client/src/api/models-api.ts @@ -397,17 +397,6 @@ export const ModelsApiFactory = function (configuration?: Configuration, basePat testProviderCredentials(provider: string, providerCredentialTestRequest: ProviderCredentialTestRequest, options?: RawAxiosRequestConfig): AxiosPromise { 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 { - 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