@inglorious/ssx 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -721,11 +721,11 @@ Each handler receives three arguments:
721
721
  - `getTypes()` - type definitions (for middleware)
722
722
  - `getType(typeName)` - type definition (for overriding)
723
723
 
724
- ### Built-in Lifecycle Events
724
+ ### Built-in Events
725
725
 
726
- - **`create(entity, id)`** - triggered when entity added via `add` event
727
- - **`destroy(entity, id)`** - triggered when entity removed via `remove` event
728
- - **`morph(entity, newType)`** - triggered when entity type changes
726
+ - **`create(entity)`** - triggered when entity added via `add` event, visible only to that entity
727
+ - **`destroy(entity)`** - triggered when entity removed via `remove` event, visible only to that entity
728
+ - **`morph(typeName, newType)`** - used to change the behavior of a type on the fly
729
729
 
730
730
  ### Notify vs Dispatch
731
731
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inglorious/ssx",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Server-Side-X. Xecution? Xperience? Who knows.",
5
5
  "author": "IceOnFire <antony.mistretta@gmail.com> (https://ingloriouscoderz.it)",
6
6
  "license": "MIT",
@@ -40,7 +40,7 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "happy-dom": "^20.0.11",
43
- "@inglorious/web": "2.6.0"
43
+ "@inglorious/web": "2.6.1"
44
44
  },
45
45
  "devDependencies": {
46
46
  "prettier": "^3.6.2",