@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.
@@ -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",