Skip to content

Commit

Permalink
fix: Action actor and status should be nullable to support future p…
Browse files Browse the repository at this point in the history
…otential actions
  • Loading branch information
McManning committed Apr 21, 2023
1 parent b5bfbea commit 3272f58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -440,9 +440,9 @@ export enum ActionStatusType {
export type Action = Atom & {
type: 'Action'

actionStatus: ActionStatusType
actionStatus?: ActionStatusType

actor: Agent
actor?: Agent

name: string
description?: string
Expand Down

0 comments on commit 3272f58

Please sign in to comment.