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

    Type Alias DurableTaskExecutionStorageObjectUpdate

    The update object for a durable task execution. See DurableTaskExecutionStorageObject for more details about the fields.

    type DurableTaskExecutionStorageObjectUpdate = {
        runOutput?: string;
        output?: string;
        childrenTasksCompletedCount?: number;
        childrenTasks?: DurableTaskChildExecutionStorageObject[];
        childrenTasksErrors?: DurableTaskChildErrorStorageObject[];
        finalizeTask?: DurableTaskChildExecutionStorageObject;
        finalizeTaskError?: DurableTaskErrorStorageObject;
        error?: DurableTaskErrorStorageObject;
        unsetError?: boolean;
        status?: DurableTaskExecutionStatus;
        isClosed?: boolean;
        needsPromiseCancellation?: boolean;
        retryAttempts?: number;
        startAt?: Date;
        startedAt?: Date;
        finishedAt?: Date;
        expiresAt?: Date;
        updatedAt: Date;
    }
    Index

    Properties

    runOutput?: string
    output?: string
    childrenTasksCompletedCount?: number
    childrenTasksErrors?: DurableTaskChildErrorStorageObject[]
    finalizeTaskError?: DurableTaskErrorStorageObject
    unsetError?: boolean

    Whether to unset the error. If true, the error will be set to undefined.

    isClosed?: boolean
    needsPromiseCancellation?: boolean
    retryAttempts?: number
    startAt?: Date
    startedAt?: Date
    finishedAt?: Date
    expiresAt?: Date
    updatedAt: Date