/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 50e32043ab8e */ import { setupLinksCreate } from "../funcs/setupLinksCreate.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as models from "../models/index.js"; import { unwrapAsync } from "../types/fp.js"; export class SetupLinks extends ClientSDK { /** * Create a customer setup link * * @remarks * Ensures the Deployment Group identified by Project and external ID, then creates a group-scoped setup link with exact captured sources. */ async create( request: models.CreateSetupLinkRequest, options?: RequestOptions, ): Promise { return unwrapAsync(setupLinksCreate( this, request, options, )); } }