/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { siteGetSite } from "../funcs/siteGetSite.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "./models/operations/index.js"; import { unwrapAsync } from "./types/fp.js"; export class Site extends ClientSDK { /** * Get site info * * @remarks * Can be used to fetch all categories and subcategories */ async getSite( options?: RequestOptions, ): Promise { return unwrapAsync(siteGetSite( this, options, )); } }