@neynar/nodejs-sdk
Version:
SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)
168 lines (167 loc) • 8.89 kB
JavaScript
;
/* tslint:disable */
/* eslint-disable */
/**
* Farcaster Hub API
* Perform basic queries of Farcaster state via the REST API of a Farcaster hub. See the [Neynar docs](https://docs.neynar.com/reference) for more details.
*
* The version of the OpenAPI document: 2.35.0
* Contact: team@neynar.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.VerificationsApi = exports.VerificationsApiFactory = exports.VerificationsApiFp = exports.VerificationsApiAxiosParamCreator = void 0;
const axios_1 = __importDefault(require("axios"));
// Some imports not used depending on template conditions
// @ts-ignore
const common_1 = require("../common");
// @ts-ignore
const base_1 = require("../base");
/**
* VerificationsApi - axios parameter creator
* @export
*/
const VerificationsApiAxiosParamCreator = function (configuration) {
return {
/**
* Fetch verifications provided by a user.
* @summary 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}
* @returns {Promise<FetchVerificationsByFid200Response>} A promise that resolves to a `FetchVerificationsByFid200Response` object
*
* For more information, refer to the [API documentation](https://docs.neynar.com/reference/fetch-verifications-by-fid)
*
*/
fetchVerificationsByFid: async (fid, address, pageSize, reverse, pageToken, options = {}) => {
// verify required parameter 'fid' is not null or undefined
(0, common_1.assertParamExists)('fetchVerificationsByFid', 'fid', fid);
const localVarPath = `/v1/verificationsByFid`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
const localVarHeaderParameter = {};
const localVarQueryParameter = {};
// authentication ApiKeyAuth required
await (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "x-api-key", configuration);
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;
}
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
return {
url: (0, common_1.toPathString)(localVarUrlObj),
options: localVarRequestOptions,
};
},
};
};
exports.VerificationsApiAxiosParamCreator = VerificationsApiAxiosParamCreator;
/**
* VerificationsApi - functional programming interface
* @export
*/
const VerificationsApiFp = function (configuration) {
const localVarAxiosParamCreator = (0, exports.VerificationsApiAxiosParamCreator)(configuration);
return {
/**
* Fetch verifications provided by a user.
* @summary 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}
* @returns {Promise<FetchVerificationsByFid200Response>} A promise that resolves to a `FetchVerificationsByFid200Response` object
*
* For more information, refer to the [API documentation](https://docs.neynar.com/reference/fetch-verifications-by-fid)
*
*/
async fetchVerificationsByFid(fid, address, pageSize, reverse, pageToken, options) {
var _a, _b, _c;
const localVarAxiosArgs = await localVarAxiosParamCreator.fetchVerificationsByFid(fid, address, pageSize, reverse, pageToken, options);
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['VerificationsApi.fetchVerificationsByFid']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
},
};
};
exports.VerificationsApiFp = VerificationsApiFp;
/**
* VerificationsApi - factory interface
* @export
*/
const VerificationsApiFactory = function (configuration, basePath, axios) {
const localVarFp = (0, exports.VerificationsApiFp)(configuration);
return {
/**
* Fetch verifications provided by a user.
* @summary Provided by an FID
* @param {VerificationsApiFetchVerificationsByFidRequest} requestParameters Request parameters.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @returns {Promise<FetchVerificationsByFid200Response>} A promise that resolves to a `FetchVerificationsByFid200Response` object
*
* For more information, refer to the [API documentation](https://docs.neynar.com/reference/fetch-verifications-by-fid)
*
*/
fetchVerificationsByFid(requestParameters, options) {
return localVarFp.fetchVerificationsByFid(requestParameters.fid, requestParameters.address, requestParameters.pageSize, requestParameters.reverse, requestParameters.pageToken, options).then((request) => request(axios, basePath));
},
};
};
exports.VerificationsApiFactory = VerificationsApiFactory;
/**
* VerificationsApi - object-oriented interface
* @export
* @class VerificationsApi
* @extends {BaseAPI}
*/
class VerificationsApi extends base_1.BaseAPI {
/**
* Fetch verifications provided by a user.
* @summary Provided by an FID
* @param {VerificationsApiFetchVerificationsByFidRequest} requestParameters Request parameters.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof VerificationsApi
* @returns {Promise<FetchVerificationsByFid200Response>} A promise that resolves to a `FetchVerificationsByFid200Response` object
*
* For more information, refer to the [API documentation](https://docs.neynar.com/reference/fetch-verifications-by-fid)
*
*/
fetchVerificationsByFid(requestParameters, options) {
return (0, exports.VerificationsApiFp)(this.configuration).fetchVerificationsByFid(requestParameters.fid, requestParameters.address, requestParameters.pageSize, requestParameters.reverse, requestParameters.pageToken, options).then((request) => request(this.axios, this.basePath));
}
}
exports.VerificationsApi = VerificationsApi;