fabro/lib/packages/fabro-api-client/src/api/repos-api.ts
Bryan Helmkamp d53cf1eb76
chore(api-client): make client generation idempotent
`bun run generate` (openapi-generator typescript-axios) emits trailing
spaces and extra blank lines, so every regeneration produced a noisy
whitespace diff that masked real spec/client drift.

Add a normalize-generated.ts post-generation pass that strips trailing
whitespace and ends each file with exactly one newline, and chain it
into the `generate` script. Establishes the normalized baseline across
the generated client; running `generate` twice now yields no diff.

No content changes — the entire diff is whitespace.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-21 14:29:11 -04:00

136 lines
5.6 KiB
TypeScript
Generated

/* tslint:disable */
/* eslint-disable */
/**
* Fabro Run API
* HTTP API for managing Fabro workflow run executions.
*
* The version of the OpenAPI document: 0.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { Configuration } from '../configuration';
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
import globalAxios from 'axios';
// Some imports not used depending on template conditions
// @ts-ignore
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, replaceWithSerializableTypeIfNeeded } from '../common';
// @ts-ignore
import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base';
// @ts-ignore
import type { RepoCheckResponse } from '../models';
/**
* ReposApi - axios parameter creator
*/
export const ReposApiAxiosParamCreator = function (configuration?: Configuration) {
return {
/**
*
* @summary Check server access to a GitHub repository
* @param {string} owner
* @param {string} name
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getGithubRepo: async (owner: string, name: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'owner' is not null or undefined
assertParamExists('getGithubRepo', 'owner', owner)
// verify required parameter 'name' is not null or undefined
assertParamExists('getGithubRepo', 'name', name)
const localVarPath = `/api/v1/repos/github/{owner}/{name}`
.replace(`{${"owner"}}`, encodeURIComponent(String(owner)))
.replace(`{${"name"}}`, encodeURIComponent(String(name)));
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
// authentication SessionCookie required
// authentication BearerAuth required
// http bearer authentication required
await setBearerAuthToObject(localVarHeaderParameter, configuration)
localVarHeaderParameter['Accept'] = 'application/json';
setSearchParams(localVarUrlObj, localVarQueryParameter);
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
return {
url: toPathString(localVarUrlObj),
options: localVarRequestOptions,
};
},
}
};
/**
* ReposApi - functional programming interface
*/
export const ReposApiFp = function(configuration?: Configuration) {
const localVarAxiosParamCreator = ReposApiAxiosParamCreator(configuration)
return {
/**
*
* @summary Check server access to a GitHub repository
* @param {string} owner
* @param {string} name
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async getGithubRepo(owner: string, name: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RepoCheckResponse>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.getGithubRepo(owner, name, options);
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
const localVarOperationServerBasePath = operationServerMap['ReposApi.getGithubRepo']?.[localVarOperationServerIndex]?.url;
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
},
}
};
/**
* ReposApi - factory interface
*/
export const ReposApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
const localVarFp = ReposApiFp(configuration)
return {
/**
*
* @summary Check server access to a GitHub repository
* @param {string} owner
* @param {string} name
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getGithubRepo(owner: string, name: string, options?: RawAxiosRequestConfig): AxiosPromise<RepoCheckResponse> {
return localVarFp.getGithubRepo(owner, name, options).then((request) => request(axios, basePath));
},
};
};
/**
* ReposApi - object-oriented interface
*/
export class ReposApi extends BaseAPI {
/**
*
* @summary Check server access to a GitHub repository
* @param {string} owner
* @param {string} name
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
public getGithubRepo(owner: string, name: string, options?: RawAxiosRequestConfig) {
return ReposApiFp(this.configuration).getGithubRepo(owner, name, options).then((request) => request(this.axios, this.basePath));
}
}