Warning

Nightly releases are generated automatically from the latest source code and are intended for experimental purposes only. These builds may contain incomplete or untested features, bugs, or security vulnerabilities, and as such, are not for production use. Users should be aware that nightly releases may cause unexpected behavior, data loss, or system instability. Use of these releases is at the user's own risk, and it is advised to have adequate backups before testing. The software is provided as is with no guarantees or support.

NodeChangedEventΒΆ

This event occurs if a node's Property has been changed.

Hierarchy (View Summary)

Properties

id: number

The unique ID of the event.

newValue: any

The new value of the property.

oldValue: any

The old value of the property.

property: string

The property which has been changed.

sourceNodeID: number

The ID of the source node.

targetNodeID: number

The ID of the target node.

transactionCode?: string

The transaction code associated with the event.

transactionID?: number

The transaction ID associated with the event.

type?: EventType

The type of the event.

Accessors

  • get changeList(): { [key: string]: any }
  • Returns a map of all changes.

    Returns { [key: string]: any }

    The map of all changes. The key is a Property and the value is the new value.