Skip to content

Commit

Permalink
feat: propogate recorded action delay
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Jul 7, 2024
1 parent 419ed39 commit d067603
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/host-api/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ export interface RecordActionMessage {
uniquenessId: string | null
actionId: string
options: CompanionOptionValues
delay: number | undefined
}

export interface SetCustomVariableMessage {
Expand Down
1 change: 1 addition & 0 deletions src/module-api/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -619,6 +619,7 @@ export abstract class InstanceBase<TConfig> implements InstanceBaseShared<TConfi
uniquenessId: uniquenessId ?? null,
actionId: action.actionId,
options: action.options,
delay: action.delay,
})
}

Expand Down

0 comments on commit d067603

Please sign in to comment.