UNPKG

attio-js

Version:

Developer-friendly & type-safe JS/TS SDK based on the official OpenAPI spec of Attio.

38 lines 1.16 kB
"use strict"; /* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.SDK_METADATA = exports.ServerList = void 0; exports.serverURLFromOptions = serverURLFromOptions; const url_js_1 = require("./url.js"); /** * Contains the list of servers available to the SDK */ exports.ServerList = [ /** * Production */ "https://api.attio.com", ]; function serverURLFromOptions(options) { let serverURL = options.serverURL; const params = {}; if (!serverURL) { const serverIdx = options.serverIdx ?? 0; if (serverIdx < 0 || serverIdx >= exports.ServerList.length) { throw new Error(`Invalid server index ${serverIdx}`); } serverURL = exports.ServerList[serverIdx] || ""; } const u = (0, url_js_1.pathToFunc)(serverURL)(params); return new URL(u); } exports.SDK_METADATA = { language: "typescript", openapiDocVersion: "2.0.0", sdkVersion: "0.1.1", genVersion: "2.593.3", userAgent: "speakeasy-sdk/typescript 0.1.1 2.593.3 2.0.0 attio-js", }; //# sourceMappingURL=config.js.map