The instant products action creators.

interface InstantProductsActionCreators {
    clearExpiredProducts(
        payload: CoreInstantProductPayload,
    ): { payload: CoreInstantProductPayload; type: string };
    promoteChildToParent(
        payload: PromoteChildToParentPayload,
    ): { payload: PromoteChildToParentPayload; type: string };
    registerInstantProducts(
        payload: CoreInstantProductPayload,
    ): { payload: CoreInstantProductPayload; type: string };
    updateInstantProductsQuery(
        payload: UpdateInstantProductQueryPayload,
    ): { payload: UpdateInstantProductQueryPayload; type: string };
}

Methods