/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { projectAuthSessionsRecorderStart } from "../funcs/projectAuthSessionsRecorderStart.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; import { unwrapAsync } from "../types/fp.js"; export class Recorder extends ClientSDK { /** * Start recorder session for an auth session * * @remarks * create a recording session for a specific auth session */ async start( projectName: string, requestBody: operations.StartAuthSessionRecorderRequestBody, options?: RequestOptions, ): Promise { return unwrapAsync(projectAuthSessionsRecorderStart( this, projectName, requestBody, options, )); } }