@nats-io/jetstream
    Preparing search index...

    Type Alias StreamNotFound

    Notification that the stream was not found. Consumers were accessible at least once, will be retried for more messages regardless of the not being found or timeouts etc. This notification includes a count of consecutive attempts to find the consumer. Note that if you get this notification possibly your code should attempt to recreate the consumer. Note that this notification is only informational for ordered consumers, as the consumer will be created in those cases automatically.

    type StreamNotFound = {
        consumerCreateFails?: number;
        name: string;
        type: "stream_not_found";
    }
    Index

    Properties

    consumerCreateFails?: number
    name: string
    type: "stream_not_found"