Logo
Type aliases

ProgressEvent

ProgressEvent = object

Defined in: packages/cloud/src/client/types.gen.ts:5009

Event for tracking progress of operations in workflows.

Properties

timestamp?

optional timestamp: string

Defined in: packages/cloud/src/client/types.gen.ts:5010


id?

optional id: string

Defined in: packages/cloud/src/client/types.gen.ts:5014

The ID of the event


group_id?

optional group_id: string

Defined in: packages/cloud/src/client/types.gen.ts:5018

The ID of the group this event belongs to


type?

optional type: "progress"

Defined in: packages/cloud/src/client/types.gen.ts:5019


variant

variant: ReportEventType

Defined in: packages/cloud/src/client/types.gen.ts:5020


msg

msg: string

Defined in: packages/cloud/src/client/types.gen.ts:5024

The message to display to the user


progress?

optional progress: number | null

Defined in: packages/cloud/src/client/types.gen.ts:5028

Progress value between 0-1 if available


status?

optional status: "pending" | "in_progress" | "completed" | "error"

Defined in: packages/cloud/src/client/types.gen.ts:5032

Current status of the operation


extra_detail?

optional extra_detail: {[key: string]: unknown; } | null

Defined in: packages/cloud/src/client/types.gen.ts:5036

Any extra details to display to the user

On this page