Skip to content

AuditEventEnd

AuditEventEnd = object

Defined in: src/core/types.ts:466

Audit event fired when a Git command completes

Properties

aborted

aborted: boolean

Defined in: src/core/types.ts:482

Whether command was aborted via AbortSignal


argv

argv: string[]

Defined in: src/core/types.ts:472

Command arguments (same as start event)


context

context: ExecutionContext

Defined in: src/core/types.ts:474

Execution context (same as start event)


duration

duration: number

Defined in: src/core/types.ts:484

Duration in milliseconds


exitCode

exitCode: number

Defined in: src/core/types.ts:480

Exit code (0 = success)


stderr

stderr: string

Defined in: src/core/types.ts:478

Standard error from the command


stdout

stdout: string

Defined in: src/core/types.ts:476

Standard output from the command


timestamp

timestamp: number

Defined in: src/core/types.ts:470

Timestamp in milliseconds since epoch


type

type: "end"

Defined in: src/core/types.ts:468

Event type discriminator