/** * Homag Intelligence exports for roomle/embedding-lib * * These exports are separated into their own entry point to keep the main * embedding library bundle size small. Only import from this module if you * need Homag Intelligence functionality. * * @example * ```typescript * import { createHiLibraryCallbacks, libLoadArticleCatalog } from '@roomle/embedding-lib/hi'; * ``` */ export { createHiLibraryCallbacks } from './homag-intelligence/hi-callbacks'; export { libLoadArticleCatalog, libLoadMasterData, libLoadCalcScript, registerLegacyUrlFormat, unregisterLegacyUrlFormat, } from './homag-intelligence/hi-requests'; export { omPostRequest, omGetRequest, } from './homag-intelligence/hi-order-manager'; export { setupHi, cleanupHi } from './homag-intelligence/hi-setup'; export { type ExternalObjectSnapshotSaveResult, type HiContextAction, } from '../../web-sdk/packages'; export { HI_PANEL_ACTION, type HiPanelActionType, type HiOrderHeader, type HiOrder, type HiOrderData, type HiPriceData, type HiCallbacks, } from '../../common/src/hi/hi-types';