@plyaz/types 1.29.2 → 1.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -6328,7 +6328,8 @@ var CacheEventAction = {
6328
6328
  SET: "set",
6329
6329
  DELETE: "delete",
6330
6330
  CLEAR: "clear",
6331
- EXPIRED: "expired"
6331
+ EXPIRED: "expired",
6332
+ ERROR: "error"
6332
6333
  };
6333
6334
  var AuthEventAction = {
6334
6335
  LOGIN: "login",
@@ -6417,7 +6418,8 @@ var CORE_EVENTS = {
6417
6418
  SET: `${CoreEventScope.CACHE}:${CacheEventAction.SET}`,
6418
6419
  DELETE: `${CoreEventScope.CACHE}:${CacheEventAction.DELETE}`,
6419
6420
  CLEAR: `${CoreEventScope.CACHE}:${CacheEventAction.CLEAR}`,
6420
- EXPIRED: `${CoreEventScope.CACHE}:${CacheEventAction.EXPIRED}`
6421
+ EXPIRED: `${CoreEventScope.CACHE}:${CacheEventAction.EXPIRED}`,
6422
+ ERROR: `${CoreEventScope.CACHE}:${CacheEventAction.ERROR}`
6421
6423
  },
6422
6424
  AUTH: {
6423
6425
  LOGIN: `${CoreEventScope.AUTH}:${AuthEventAction.LOGIN}`,