UNPKG

@standard-crypto/farcaster-js-hub-rest

Version:

A tool for interacting with the REST API of any Farcaster hub.

137 lines 6.49 kB
/* tslint:disable */ /* eslint-disable */ /** * Farcaster Hub REST API * Perform basic queries of Farcaster state via the REST API of a Farcaster hub. See the [Farcaster docs](https://www.thehubble.xyz/docs/httpapi/httpapi.html) for more details. Some client libraries: - [TypeScript](https://www.npmjs.com/package/@standard-crypto/farcaster-js-hub-rest) * * The version of the OpenAPI document: 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 globalAxios from 'axios'; // Some imports not used depending on template conditions // @ts-ignore import { DUMMY_BASE_URL, assertParamExists, setSearchParams, toPathString, createRequestFunction } from '../common.js'; // @ts-ignore import { BASE_PATH, BaseAPI } from '../base.js'; /** * VerificationsApi - axios parameter creator * @export */ export const VerificationsApiAxiosParamCreator = function (configuration) { return { /** * * @summary Get a list of verifications provided by an FID * @param {number} fid The FID being requested * @param {string} [address] The optional ETH address to filter by * @param {number} [pageSize] Maximum number of messages to return in a single response * @param {boolean} [reverse] Reverse the sort order, returning latest messages first * @param {string} [pageToken] The page token returned by the previous query, to fetch the next page. If this parameter is empty, fetch the first page * @param {*} [options] Override http request option. * @throws {RequiredError} */ listVerificationsByFid: async (fid, address, pageSize, reverse, pageToken, options = {}) => { // verify required parameter 'fid' is not null or undefined assertParamExists('listVerificationsByFid', 'fid', fid); const localVarPath = `/v1/verificationsByFid`; // 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 = {}; const localVarQueryParameter = {}; if (fid !== undefined) { localVarQueryParameter['fid'] = fid; } if (address !== undefined) { localVarQueryParameter['address'] = address; } if (pageSize !== undefined) { localVarQueryParameter['pageSize'] = pageSize; } if (reverse !== undefined) { localVarQueryParameter['reverse'] = reverse; } if (pageToken !== undefined) { localVarQueryParameter['pageToken'] = pageToken; } setSearchParams(localVarUrlObj, localVarQueryParameter); let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers }; return { url: toPathString(localVarUrlObj), options: localVarRequestOptions, }; }, }; }; /** * VerificationsApi - functional programming interface * @export */ export const VerificationsApiFp = function (configuration) { const localVarAxiosParamCreator = VerificationsApiAxiosParamCreator(configuration); return { /** * * @summary Get a list of verifications provided by an FID * @param {number} fid The FID being requested * @param {string} [address] The optional ETH address to filter by * @param {number} [pageSize] Maximum number of messages to return in a single response * @param {boolean} [reverse] Reverse the sort order, returning latest messages first * @param {string} [pageToken] The page token returned by the previous query, to fetch the next page. If this parameter is empty, fetch the first page * @param {*} [options] Override http request option. * @throws {RequiredError} */ async listVerificationsByFid(fid, address, pageSize, reverse, pageToken, options) { const localVarAxiosArgs = await localVarAxiosParamCreator.listVerificationsByFid(fid, address, pageSize, reverse, pageToken, options); return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, }; }; /** * VerificationsApi - factory interface * @export */ export const VerificationsApiFactory = function (configuration, basePath, axios) { const localVarFp = VerificationsApiFp(configuration); return { /** * * @summary Get a list of verifications provided by an FID * @param {VerificationsApiListVerificationsByFidRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} */ listVerificationsByFid(requestParameters, options) { return localVarFp.listVerificationsByFid(requestParameters.fid, requestParameters.address, requestParameters.pageSize, requestParameters.reverse, requestParameters.pageToken, options).then((request) => request(axios, basePath)); }, }; }; /** * VerificationsApi - object-oriented interface * @export * @class VerificationsApi * @extends {BaseAPI} */ export class VerificationsApi extends BaseAPI { /** * * @summary Get a list of verifications provided by an FID * @param {VerificationsApiListVerificationsByFidRequest} requestParameters Request parameters. * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof VerificationsApi */ listVerificationsByFid(requestParameters, options) { return VerificationsApiFp(this.configuration).listVerificationsByFid(requestParameters.fid, requestParameters.address, requestParameters.pageSize, requestParameters.reverse, requestParameters.pageToken, options).then((request) => request(this.axios, this.basePath)); } } //# sourceMappingURL=verifications-api.js.map