durable-execution - v0.32.0
    Preparing search index...

    Type Alias DurableExecutionErrorStorageValue

    Serialized representation of a DurableExecutionError for storage persistence.

    This type represents how errors are stored in the database, containing all necessary information to reconstruct error state and behavior.

    Used internally by the executor and storage implementations.

    type DurableExecutionErrorStorageValue = {
        errorType: DurableExecutionErrorType;
        message: string;
        isRetryable: boolean;
        isInternal: boolean;
    }
    Index

    Properties

    message: string
    isRetryable: boolean
    isInternal: boolean