Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace ScheduledTasksTypes

Index

Type aliases

ChangeStatusTaskAction: EditedChangeStatusAction & WithVersion
DayOfWeek: "MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN"
EditedChangeStatusAction: NewChangeStatusTaskAction & { taskActionId: string }
EditedFormTaskAction: NewFormTaskAction & { taskActionId: string }
EditedTask: NewTask & { taskId: string }
EditedTaskGroup: NewTaskGroup & { taskGroupId: string }
FormTaskAction: EditedFormTaskAction & WithVersion
NewChangeStatusTaskAction: BaseTaskAction & { status: "COMPLETE"; type: "CHANGE_STATUS" }
NewFormTaskAction: BaseTaskAction & { formId: number; type: "FORM" }
NewTaskGroup: { formsAppEnvironmentId: number; name: string; organisationId: string; taskIds: Task["taskId"][] }

Type declaration

  • formsAppEnvironmentId: number

    The related forms app environment id that this task group belongs to

  • name: string

    The label of the task group

  • organisationId: string

    The organisation id that this task group belongs to

  • taskIds: Task["taskId"][]

    The identifiers of tasks that the task group will show within a Forms App. The order of the identifiers is respected when displayingActions

Task: EditedTask & WithVersion