Skip to content

Commit

Permalink
remove complete flag
Browse files Browse the repository at this point in the history
  • Loading branch information
swansontec committed Aug 26, 2022
1 parent a3af173 commit 0f912a7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/types/pushCleaners.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,5 @@ export const asPushEventState: Cleaner<PushEventState> = asValue(
'waiting',
'cancelled',
'triggered',
'complete',
'hidden'
)
3 changes: 1 addition & 2 deletions src/types/pushTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,7 @@ export interface PushMessage {
export type PushEventState =
| 'waiting' // Waiting for the trigger
| 'cancelled' // Removed before the trigger happened
| 'triggered' // The trigger happened, but not the effects
| 'complete' // The trigger and effects are done
| 'triggered' // The trigger and effects are done
| 'hidden' // Removed after being triggered

/**
Expand Down

0 comments on commit 0f912a7

Please sign in to comment.