From bb715eb3b99db96feed84de7965be2c6cc7a83db Mon Sep 17 00:00:00 2001 From: griest024 Date: Mon, 13 May 2024 14:48:16 -0400 Subject: [PATCH] feat(core): add error to `DaffState` (#2781) --- libs/core/state/src/states/state.enum.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libs/core/state/src/states/state.enum.ts b/libs/core/state/src/states/state.enum.ts index a5cca85d5f..d4ca773add 100644 --- a/libs/core/state/src/states/state.enum.ts +++ b/libs/core/state/src/states/state.enum.ts @@ -55,5 +55,10 @@ export const enum DaffState { * Use DaffState.Stable instead. */ // eslint-disable-next-line @typescript-eslint/no-duplicate-enum-values - Complete = 'Stable' + Complete = 'Stable', + + /** + * Indicates that the most recent operation specififc to this entity has failed. + */ + Error = 'Error' }