/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { vaultCustomMappingsList } from "../funcs/vaultCustomMappingsList.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; import { unwrapAsync } from "../types/fp.js"; export class CustomMappings extends ClientSDK { /** * List custom mappings * * @remarks * This endpoint returns a list of custom mappings. */ async list( request: operations.VaultCustomMappingsAllRequest, options?: RequestOptions, ): Promise { return unwrapAsync(vaultCustomMappingsList( this, request, options, )); } }