UNPKG

@neynar/nodejs-sdk

Version:

SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)

139 lines (138 loc) 6.78 kB
"use strict"; /* tslint:disable */ /* eslint-disable */ /** * Neynar API * The Neynar API allows you to interact with the Farcaster protocol among other things. See the [Neynar docs](https://docs.neynar.com/reference) for more details. * * The version of the OpenAPI document: 3.175.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.OrganizationApi = exports.OrganizationApiFactory = exports.OrganizationApiFp = exports.OrganizationApiAxiosParamCreator = 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"); /** * OrganizationApi - axios parameter creator * @export */ const OrganizationApiAxiosParamCreator = function (configuration) { return { /** * Retrieves billing and subscription details for the current organization, including plan status, product category, billing email, and effective plan. * @summary Get billing information for the current organization * @param {*} [options] Override http request option. * @throws {RequiredError} * @returns {Promise<Billing200Response>} A promise that resolves to a `Billing200Response` object * * For more information, refer to the [API documentation](https://docs.neynar.com/reference/billing) * */ billing: async (options = {}) => { const localVarPath = `/portal/organization/billing`; // 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); (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.OrganizationApiAxiosParamCreator = OrganizationApiAxiosParamCreator; /** * OrganizationApi - functional programming interface * @export */ const OrganizationApiFp = function (configuration) { const localVarAxiosParamCreator = (0, exports.OrganizationApiAxiosParamCreator)(configuration); return { /** * Retrieves billing and subscription details for the current organization, including plan status, product category, billing email, and effective plan. * @summary Get billing information for the current organization * @param {*} [options] Override http request option. * @throws {RequiredError} * @returns {Promise<Billing200Response>} A promise that resolves to a `Billing200Response` object * * For more information, refer to the [API documentation](https://docs.neynar.com/reference/billing) * */ async billing(options) { var _a, _b, _c; const localVarAxiosArgs = await localVarAxiosParamCreator.billing(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['OrganizationApi.billing']) === 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.OrganizationApiFp = OrganizationApiFp; /** * OrganizationApi - factory interface * @export */ const OrganizationApiFactory = function (configuration, basePath, axios) { const localVarFp = (0, exports.OrganizationApiFp)(configuration); return { /** * Retrieves billing and subscription details for the current organization, including plan status, product category, billing email, and effective plan. * @summary Get billing information for the current organization * @param {*} [options] Override http request option. * @throws {RequiredError} * @returns {Promise<Billing200Response>} A promise that resolves to a `Billing200Response` object * * For more information, refer to the [API documentation](https://docs.neynar.com/reference/billing) * */ billing(options) { return localVarFp.billing(options).then((request) => request(axios, basePath)); }, }; }; exports.OrganizationApiFactory = OrganizationApiFactory; /** * OrganizationApi - object-oriented interface * @export * @class OrganizationApi * @extends {BaseAPI} */ class OrganizationApi extends base_1.BaseAPI { /** * Retrieves billing and subscription details for the current organization, including plan status, product category, billing email, and effective plan. * @summary Get billing information for the current organization * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof OrganizationApi * @returns {Promise<Billing200Response>} A promise that resolves to a `Billing200Response` object * * For more information, refer to the [API documentation](https://docs.neynar.com/reference/billing) * */ billing(options) { return (0, exports.OrganizationApiFp)(this.configuration).billing(options).then((request) => request(this.axios, this.basePath)); } } exports.OrganizationApi = OrganizationApi;