/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { activityTrack } from "../funcs/activityTrack.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; import { unwrapAsync } from "../types/fp.js"; export class Activity extends ClientSDK { /** * Track provider activity and engagement events * * @remarks * Track activity and engagement events for a specific delivery provider */ async track( request: operations.InboundWebhooksControllerHandleWebhookRequest, options?: RequestOptions, ): Promise> { return unwrapAsync(activityTrack( this, request, options, )); } }