@ezbot-ai/javascript-sdk
Version:
The easiest way to interact with ezbot via JS (node and browser)
11 lines (10 loc) • 820 B
TypeScript
import { EzbotTrackerConfig } from './types';
declare const plugins: import("@snowplow/browser-tracker-core").BrowserPlugin[];
declare const ezbotTrackerDomain = "https://data.api.ezbot.ai";
declare const ezbotRewardEventSchemaPath = "iglu:com.ezbot/reward_event/jsonschema/1-0-0";
declare const ezbotLinkClickEventSchemaPath = "iglu:com.ezbot/link_click/jsonschema/1-0-0";
declare const ezbotPredictionsContextSchemaPath = "iglu:com.ezbot/predictions_context/jsonschema/1-0-1";
declare const defaultWebConfiguration: EzbotTrackerConfig;
declare const ezbotTrackerId = "ezbot";
declare const globalVisualChanges: string[];
export { ezbotTrackerDomain, ezbotTrackerId, ezbotRewardEventSchemaPath, ezbotLinkClickEventSchemaPath, ezbotPredictionsContextSchemaPath, defaultWebConfiguration, plugins, globalVisualChanges, };