Utilities
getIntelligemsConfig()
getIntelligemsConfig()import { getIntelligemsConfig } from "@intelligems/headless";
const config = await getIntelligemsConfig("org_id", 5);import type { PluginConfigType } from "@intelligems/ig-types";
const getIntelligemsConfig: (
organizationId: string,
cacheIntervalMinutes?: number
) => Promise<PluginConfigType | undefined>;setLogLevel()
setLogLevel()import { setLogLevel } from "@intelligems/headless";
setLogLevel("INFO");const setLogLevel: (level: "DEBUG" | "INFO" | "WARNING" | "ERROR") => void;IntelligemsContext
IntelligemsContextLast updated