@plyaz/types 1.29.2 → 1.29.3

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.js CHANGED
@@ -6326,7 +6326,8 @@ var CacheEventAction = {
6326
6326
  SET: "set",
6327
6327
  DELETE: "delete",
6328
6328
  CLEAR: "clear",
6329
- EXPIRED: "expired"
6329
+ EXPIRED: "expired",
6330
+ ERROR: "error"
6330
6331
  };
6331
6332
  var AuthEventAction = {
6332
6333
  LOGIN: "login",
@@ -6415,7 +6416,8 @@ var CORE_EVENTS = {
6415
6416
  SET: `${CoreEventScope.CACHE}:${CacheEventAction.SET}`,
6416
6417
  DELETE: `${CoreEventScope.CACHE}:${CacheEventAction.DELETE}`,
6417
6418
  CLEAR: `${CoreEventScope.CACHE}:${CacheEventAction.CLEAR}`,
6418
- EXPIRED: `${CoreEventScope.CACHE}:${CacheEventAction.EXPIRED}`
6419
+ EXPIRED: `${CoreEventScope.CACHE}:${CacheEventAction.EXPIRED}`,
6420
+ ERROR: `${CoreEventScope.CACHE}:${CacheEventAction.ERROR}`
6419
6421
  },
6420
6422
  AUTH: {
6421
6423
  LOGIN: `${CoreEventScope.AUTH}:${AuthEventAction.LOGIN}`,