UNPKG

@fullstory/server-api-client

Version:

The official FullStory server API client SDK for NodeJS.

19 lines (18 loc) 621 B
import { CreateEventRequest } from '../../model/index'; import { FSResponse, FullStoryOptions } from '../../http'; export declare class EventsApi { readonly defaultBasePath = "https://api.fullstory.com"; private basePath; private httpClient; constructor(opts: FullStoryOptions); /** * Creates one event with the specified details. * @summary Create Event * @param body * @param idempotencyKey Optional header for making the request idempotent */ createEvent(request: { body: CreateEventRequest; idempotencyKey?: string; }): Promise<FSResponse<void>>; }