declare module "sap/esh/search/ui/eventlogging/TechnicalEvents" { /*! * SAPUI5 * Copyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved. */ import { Event } from "sap/esh/search/ui/eventlogging/EventBase"; enum TechnicalEventType { SESSION_START = "SESSION_START", HASH_CHANGE = "HASH_CHANGE", DATASOURCE_CHANGE = "DATASOURCE_CHANGE", SEARCH_REQUEST = "SEARCH_REQUEST", SEARCH_WITH_FILTERS = "SEARCH_WITH_FILTERS", SEARCH_WITH_SEARCHTERM = "SEARCH_WITH_SEARCHTERM", SEARCH_WITH_SEARCHTERM_FILTERS = "SEARCH_WITH_SEARCHTERM_FILTERS", SEARCH_WITHOUT_SEARCHTERM_FILTERS = "SEARCH_WITHOUT_SEARCHTERM_FILTERS", SEARCH_USED_NLQ = "SEARCH_USED_NLQ", BASKET_CREATE = "BASKET_CREATE" } type AllTechnicalEvents = SessionStartEvent | HashChangeEvent | DataSourceChangeEvent | SearchRequestEvent | BasketCreateEvent; interface HashChangeEvent extends Event { type: TechnicalEventType.HASH_CHANGE; targetUrl?: string; sourceUrlArray?: Array; systemAndClient?: { systemId: string; client: string; }; } interface SessionStartEvent extends Event { type: TechnicalEventType.SESSION_START; searchTerm: string; dataSourceKey: string; top: number; filter?: string; } interface DataSourceChangeEvent extends Event { type: TechnicalEventType.DATASOURCE_CHANGE; dataSourceKey: string; dataSourceKeyOld: string; } interface SearchRequestEvent extends Event { type: TechnicalEventType.SEARCH_REQUEST | TechnicalEventType.SEARCH_WITH_FILTERS | TechnicalEventType.SEARCH_WITH_SEARCHTERM | TechnicalEventType.SEARCH_WITH_SEARCHTERM_FILTERS | TechnicalEventType.SEARCH_WITHOUT_SEARCHTERM_FILTERS | TechnicalEventType.SEARCH_USED_NLQ; searchTerm: string; dataSourceKey: string; top: number; filter?: string; } interface BasketCreateEvent extends Event { type: TechnicalEventType.BASKET_CREATE; basketType: "sapMList" | "sapMTable" | "sapUiTable"; } } //# sourceMappingURL=TechnicalEvents.d.ts.map