@almadar/core 2.9.0 → 2.12.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/builders.d.ts +2 -2
- package/dist/builders.js +1 -0
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-j53THIou.d.ts → compose-behaviors-Df78wLLB.d.ts} +1 -1
- package/dist/domain-language/index.d.ts +1 -1
- package/dist/domain-language/index.js +3 -1
- package/dist/domain-language/index.js.map +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +24 -5
- package/dist/index.js.map +1 -1
- package/dist/{schema-BNBpNxGb.d.ts → schema-D96fyp1B.d.ts} +416 -369
- package/dist/state-machine/index.d.ts +9 -0
- package/dist/state-machine/index.js +21 -4
- package/dist/state-machine/index.js.map +1 -1
- package/dist/types/index.d.ts +117 -10
- package/dist/types/index.js +3 -1
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -3439,7 +3439,8 @@ var EntityPersistenceSchema = z.enum([
|
|
|
3439
3439
|
"persistent",
|
|
3440
3440
|
"runtime",
|
|
3441
3441
|
"singleton",
|
|
3442
|
-
"instance"
|
|
3442
|
+
"instance",
|
|
3443
|
+
"local"
|
|
3443
3444
|
]);
|
|
3444
3445
|
var OrbitalEntitySchema = z.object({
|
|
3445
3446
|
name: z.string().min(1, "Entity name is required"),
|
|
@@ -3598,6 +3599,7 @@ var TraitCategorySchema = z.enum([
|
|
|
3598
3599
|
"notification",
|
|
3599
3600
|
"integration",
|
|
3600
3601
|
"interaction",
|
|
3602
|
+
"agent",
|
|
3601
3603
|
"game-core",
|
|
3602
3604
|
"game-character",
|
|
3603
3605
|
"game-ai",
|