@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/core/events/enums.d.ts +2 -0
- package/dist/core/events/index.d.ts +1 -1
- package/dist/core/events/payloads.d.ts +14 -0
- package/dist/core/frontend/types.d.ts +21 -0
- package/dist/core/index.cjs +4 -2
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.js +4 -2
- package/dist/core/index.js.map +1 -1
- package/dist/examples/types.d.ts +3 -1
- package/dist/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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}`,
|