• Loads the commerce triggers reducer and returns the available triggers action creators.

    Parameters

    • engine: CommerceEngine

      The headless commerce engine.

    Returns {
        applyQueryTriggerModification: ActionCreatorWithPreparedPayload<
            [payload: ApplyQueryTriggerModificationPayload],
            ApplyQueryTriggerModificationPayload,
            "commerce/triggers/query/applyModification",
            never,
            never,
        >;
        updateIgnoreQueryTrigger: ActionCreatorWithPreparedPayload<
            [payload: UpdateIgnoreQueryTriggerPayload],
            UpdateIgnoreQueryTriggerPayload,
            "commerce/triggers/query/updateIgnore",
            never,
            never,
        >;
    }

    An object holding the triggers actions.