/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { nodesGetApiV3Nodes } from "../funcs/nodesGetApiV3Nodes.js"; import { nodesGetApiV3NodesNodeId } from "../funcs/nodesGetApiV3NodesNodeId.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as models from "../models/index.js"; import * as operations from "../models/operations/index.js"; import { unwrapAsync } from "../types/fp.js"; export class Nodes extends ClientSDK { async getApiV3Nodes( request?: operations.GetApiV3NodesRequest | undefined, options?: RequestOptions, ): Promise { return unwrapAsync(nodesGetApiV3Nodes( this, request, options, )); } async getApiV3NodesNodeId( request: operations.GetApiV3NodesNodeIdRequest, options?: RequestOptions, ): Promise { return unwrapAsync(nodesGetApiV3NodesNodeId( this, request, options, )); } }