@adviser/cement - v0.0.0
    Preparing search index...

    Type Alias TriggerCtxBaseParams<INREQ, REQ, RES>

    TriggerCtxBaseParams: Partial<
        Omit<ReadonlyTriggerCtxBase<INREQ, REQ, RES>, "send">,
    > & Partial<
        Pick<ReadonlyTriggerCtxBase<INREQ, REQ, RES>, "ctx" | "encoder">,
    > & {
        send: EventoSendProvider<INREQ, REQ, RES>;
        stats?: TriggerStats;
        idService?: IdService;
        id?: string;
    }

    Parameters for creating a trigger context. Requires send, but ctx and encoder are optional and will use defaults.

    Type Parameters

    • INREQ
    • REQ
    • RES