UNPKG

kalshi-typescript

Version:

Official TypeScript SDK for the Kalshi API

110 lines (109 loc) 5.02 kB
"use strict"; /* tslint:disable */ /* eslint-disable */ /** * Kalshi Trade API Manual Endpoints * Manually defined OpenAPI spec for endpoints being migrated to spec-first approach * * The version of the OpenAPI document: 3.6.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.createRequestFunction = exports.toPathString = exports.serializeDataIfNeeded = exports.setSearchParams = exports.setOAuthToObject = exports.setBearerAuthToObject = exports.setBasicAuthToObject = exports.setApiKeyToObject = exports.assertParamExists = exports.DUMMY_BASE_URL = void 0; const base_1 = require("./base"); const url_1 = require("url"); exports.DUMMY_BASE_URL = 'https://example.com'; /** * * @throws {RequiredError} */ const assertParamExists = function (functionName, paramName, paramValue) { if (paramValue === null || paramValue === undefined) { throw new base_1.RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`); } }; exports.assertParamExists = assertParamExists; // Kalshi uses custom authentication, so we stub out these functions const setApiKeyToObject = function (object, keyParamName, configuration) { return __awaiter(this, void 0, void 0, function* () { // Kalshi authentication is handled differently }); }; exports.setApiKeyToObject = setApiKeyToObject; const setBasicAuthToObject = function (object, configuration) { // Not used - Kalshi uses API key + RSA signature }; exports.setBasicAuthToObject = setBasicAuthToObject; const setBearerAuthToObject = function (object, configuration) { return __awaiter(this, void 0, void 0, function* () { // Not used - Kalshi uses API key + RSA signature }); }; exports.setBearerAuthToObject = setBearerAuthToObject; const setOAuthToObject = function (object, name, scopes, configuration) { return __awaiter(this, void 0, void 0, function* () { // Not used - Kalshi uses API key + RSA signature }); }; exports.setOAuthToObject = setOAuthToObject; function setFlattenedQueryParams(urlSearchParams, parameter, key = "") { if (parameter == null) return; if (typeof parameter === "object") { if (Array.isArray(parameter)) { parameter.forEach(item => setFlattenedQueryParams(urlSearchParams, item, key)); } else { Object.keys(parameter).forEach(currentKey => setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`)); } } else { if (urlSearchParams.has(key)) { urlSearchParams.append(key, parameter); } else { urlSearchParams.set(key, parameter); } } } const setSearchParams = function (url, ...objects) { const searchParams = new url_1.URLSearchParams(url.search); setFlattenedQueryParams(searchParams, objects); url.search = searchParams.toString(); }; exports.setSearchParams = setSearchParams; const serializeDataIfNeeded = function (value, requestOptions, configuration) { const nonString = typeof value !== 'string'; const needsSerialization = nonString && configuration && configuration.isJsonMime ? configuration.isJsonMime(requestOptions.headers['Content-Type']) : nonString; return needsSerialization ? JSON.stringify(value !== undefined ? value : {}) : (value || ""); }; exports.serializeDataIfNeeded = serializeDataIfNeeded; const toPathString = function (url) { return url.pathname + url.search + url.hash; }; exports.toPathString = toPathString; const createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configuration) { return (axios = globalAxios, basePath = BASE_PATH) => { var _a; const axiosRequestArgs = Object.assign(Object.assign({}, axiosArgs.options), { url: (axios.defaults.baseURL ? '' : (_a = configuration === null || configuration === void 0 ? void 0 : configuration.basePath) !== null && _a !== void 0 ? _a : basePath) + axiosArgs.url }); return axios.request(axiosRequestArgs); }; }; exports.createRequestFunction = createRequestFunction;