Interface InsightAnalyticsActionCreators

The insight analytics action creators.

See Dispatch actions.

interface InsightAnalyticsActionCreators {
    logCaseSendEmail(result: Result): InsightAction;
    logCategoryFacetBreadcrumb(
        payload: LogCategoryFacetBreadcrumbActionCreatorPayload,
    ): InsightAction;
    logClearBreadcrumbs(): InsightAction;
    logCopyToClipboard(result: Result): InsightAction;
    logCreateArticle(payload: CreateArticleMetadata): InsightAction;
    logDateFacetBreadcrumb(
        payload: LogDateFacetBreadcrumbActionCreatorPayload,
    ): InsightAction;
    logFacetBreadcrumb(
        payload: LogFacetBreadcrumbActionCreatorPayload,
    ): InsightAction;
    logFacetClearAll(facetId: string): InsightAction;
    logFacetDeselect(
        payload: LogFacetDeselectActionCreatorPayload,
    ): InsightAction;
    logFacetSelect(payload: LogFacetSelectActionCreatorPayload): InsightAction;
    logFacetShowLess(facetId: string): InsightAction;
    logFacetShowMore(facetId: string): InsightAction;
    logFacetUpdateSort(
        payload: LogFacetUpdateSortActionCreatorPayload,
    ): InsightAction;
    logFeedItemTextPost(result: Result): InsightAction;
    logInterfaceChange(): InsightAction;
    logInterfaceLoad(): InsightAction;
    logNumericFacetBreadcrumb(
        payload: LogNumericFacetBreadcrumbActionCreatorPayload,
    ): InsightAction;
    logOpenUserActions(): InsightAction;
    logPageNext(): InsightAction;
    logPageNumber(): InsightAction;
    logPagePrevious(): InsightAction;
    logResultsSort(): InsightAction;
    logStaticFilterDeselect(
        payload: LogStaticFilterToggleValueActionCreatorPayload,
    ): InsightAction;
}

Methods