Skip to content

Commit

Permalink
feat: add STATIC, CACHED reasons (open-feature#360)
Browse files Browse the repository at this point in the history
  • Loading branch information
toddbaert authored Jan 23, 2023
1 parent a8c5610 commit 2396ea6
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,16 @@ export const StandardResolutionReasons = {
* The reason for the resolved value could not be determined.
*/
UNKNOWN: 'UNKNOWN',

/**
* The resolved value is static (no dynamic evaluation).
*/
STATIC: 'STATIC',

/**
* The resolved value was retrieved from cache.
*/
CACHED: 'CACHED',

/**
* The resolved value was the result of an error.
Expand Down

0 comments on commit 2396ea6

Please sign in to comment.