Beignet API reference
    Preparing search index...

    Interface DefineOutboxRegistryInput

    Input for defining an outbox registry.

    interface DefineOutboxRegistryInput {
        events?: readonly EventPayloadDef<string, StandardSchema>[];
        jobs?: readonly JobDef<string, StandardSchema, unknown>[];
    }
    Index

    Properties

    Properties

    events?: readonly EventPayloadDef<string, StandardSchema>[]

    Events that may be delivered from the outbox.

    jobs?: readonly JobDef<string, StandardSchema, unknown>[]

    Jobs that may be delivered from the outbox.