@almadar/core 2.11.0 → 2.13.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 +3 -3
- package/dist/builders.js +1 -0
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-C42E5T3f.d.ts → compose-behaviors-C9G-CUOB.d.ts} +1 -1
- package/dist/domain-language/index.d.ts +1 -1
- package/dist/domain-language/index.js +4 -1
- package/dist/domain-language/index.js.map +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +6 -3
- package/dist/index.js.map +1 -1
- package/dist/{schema-B2HUtPrQ.d.ts → schema-D3qNm2Ac.d.ts} +137 -73
- package/dist/state-machine/index.js.map +1 -1
- package/dist/types/index.d.ts +113 -6
- package/dist/types/index.js +3 -1
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -2784,6 +2784,7 @@ function parseBehavior(text, entityName) {
|
|
|
2784
2784
|
description: text2,
|
|
2785
2785
|
config: {
|
|
2786
2786
|
slot: result[1],
|
|
2787
|
+
// eslint-disable-next-line almadar/no-record-string-unknown -- Parsed S-expression pattern config is dynamically typed
|
|
2787
2788
|
pattern: result[2]
|
|
2788
2789
|
}
|
|
2789
2790
|
};
|
|
@@ -3439,7 +3440,8 @@ var EntityPersistenceSchema = z.enum([
|
|
|
3439
3440
|
"persistent",
|
|
3440
3441
|
"runtime",
|
|
3441
3442
|
"singleton",
|
|
3442
|
-
"instance"
|
|
3443
|
+
"instance",
|
|
3444
|
+
"local"
|
|
3443
3445
|
]);
|
|
3444
3446
|
var OrbitalEntitySchema = z.object({
|
|
3445
3447
|
name: z.string().min(1, "Entity name is required"),
|
|
@@ -3598,6 +3600,7 @@ var TraitCategorySchema = z.enum([
|
|
|
3598
3600
|
"notification",
|
|
3599
3601
|
"integration",
|
|
3600
3602
|
"interaction",
|
|
3603
|
+
"agent",
|
|
3601
3604
|
"game-core",
|
|
3602
3605
|
"game-character",
|
|
3603
3606
|
"game-ai",
|