Interface: BaseChecklistStateEvents
Defined in: src/sdk/checklist/ChecklistStateEvents.ts:23
Events describing state changes for checklists keyed by base topic names.
Properties
checklist_state_all_reset
checklist_state_all_reset:
void
Defined in: src/sdk/checklist/ChecklistStateEvents.ts:25
All checklists in all groups were reset.
checklist_state_group_reset
checklist_state_group_reset:
number
Defined in: src/sdk/checklist/ChecklistStateEvents.ts:28
All checklists in a group were reset. The event data is index of the group that was reset.
checklist_state_item_completed
checklist_state_item_completed: readonly [
number
,number
,number
,number
]
Defined in: src/sdk/checklist/ChecklistStateEvents.ts:54
An actionable checklist item was completed. The event data is an ordered tuple of: the index of the checklist group containing the completed item, the index of the checklist containing the completed item within its group, and the index of the completed item within its checklist.
checklist_state_item_reset
checklist_state_item_reset: readonly [
number
,number
,number
,number
]
Defined in: src/sdk/checklist/ChecklistStateEvents.ts:41
An actionable checklist item was reset. The event data is an ordered tuple of: the index of the checklist group containing the reset item, the index of the checklist containing the reset item within its group, and the index of the reset item within its checklist.
checklist_state_list_completed
checklist_state_list_completed: readonly [
number
,number
]
Defined in: src/sdk/checklist/ChecklistStateEvents.ts:47
Every actionable item in a checklist was completed. The event data is an ordered tuple of: the index of the checklist group containing the completed checklist, and the index of the completed checklist within its group.
checklist_state_list_reset
checklist_state_list_reset: readonly [
number
,number
]
Defined in: src/sdk/checklist/ChecklistStateEvents.ts:34
A checklist was reset. The event data is an ordered tuple of: the index of the checklist group containing the reset checklist, and the index of the reset checklist within its group.
checklist_state_response
checklist_state_response:
Readonly
<ChecklistStateResponseData
>
Defined in: src/sdk/checklist/ChecklistStateEvents.ts:60
A response to a checklist state request. The event data contains the requested state data and the UUID of the request to which the response was made.