/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { rootGetApiV3 } from "../funcs/rootGetApiV3.js"; import { rootGetApiV3Changelog } from "../funcs/rootGetApiV3Changelog.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as models from "../models/index.js"; import { unwrapAsync } from "../types/fp.js"; export class Root extends ClientSDK { async getApiV3( options?: RequestOptions, ): Promise { return unwrapAsync(rootGetApiV3( this, options, )); } async getApiV3Changelog( options?: RequestOptions, ): Promise { return unwrapAsync(rootGetApiV3Changelog( this, options, )); } }