/* 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 => { // 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> { 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 { 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)); } }