@coveo/headless
    Preparing search index...

    Interface StandaloneSearchBoxSetActionCreators

    The commerce standalone search box set action creators.

    See Dispatch actions.

    interface StandaloneSearchBoxSetActionCreators {
        fetchRedirectUrl(
            payload: FetchRedirectUrlPayload,
        ): AsyncThunkAction<
            string,
            FetchRedirectUrlPayload,
            AsyncThunkCommerceOptions<StateNeededForPlanCommerceAPIRequest>,
        >;
        registerStandaloneSearchBox(
            payload: RegisterStandaloneSearchBoxPayload,
        ): { payload: RegisterStandaloneSearchBoxPayload; type: string };
        resetStandaloneSearchBox(
            payload: ResetStandaloneSearchBoxPayload,
        ): { payload: ResetStandaloneSearchBoxPayload; type: string };
        updateStandaloneSearchBoxRedirectionUrl(
            payload: RegisterStandaloneSearchBoxPayload,
        ): { payload: RegisterStandaloneSearchBoxPayload; type: string };
    }
    Index

    Methods