@almadar/core 10.89.0 → 10.91.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.
Files changed (36) hide show
  1. package/dist/builders.d.ts +3 -3
  2. package/dist/builders.js +11 -3
  3. package/dist/builders.js.map +1 -1
  4. package/dist/{effect-CdLBg9zL.d.ts → effect-Bt8vKHwd.d.ts} +66 -42
  5. package/dist/{entityAccess-BmZHpQUv.d.ts → entityAccess-BdDX85rM.d.ts} +1 -1
  6. package/dist/factory/index.d.ts +4 -4
  7. package/dist/factory/index.js +662 -49
  8. package/dist/factory/index.js.map +1 -1
  9. package/dist/factory-runtime/index.d.ts +3 -3
  10. package/dist/factory-runtime/index.js +11 -3
  11. package/dist/factory-runtime/index.js.map +1 -1
  12. package/dist/i18n/index.js +12 -0
  13. package/dist/i18n/index.js.map +1 -1
  14. package/dist/{index-CV_iM5Cm.d.ts → index-rOBf1Oag.d.ts} +83 -6
  15. package/dist/index.d.ts +34 -12
  16. package/dist/index.js +975 -57
  17. package/dist/index.js.map +1 -1
  18. package/dist/mock/index.d.ts +60 -5
  19. package/dist/mock/index.js +35 -4
  20. package/dist/mock/index.js.map +1 -1
  21. package/dist/patterns/component-mapping.json +6 -1
  22. package/dist/patterns/event-contracts.json +1 -1
  23. package/dist/patterns/index.d.ts +1875 -53
  24. package/dist/patterns/index.js +930 -51
  25. package/dist/patterns/index.js.map +1 -1
  26. package/dist/patterns/integrators-registry.json +264 -1
  27. package/dist/patterns/patterns-registry.json +654 -47
  28. package/dist/patterns/registry.json +654 -47
  29. package/dist/patterns/services-registry.json +284 -1
  30. package/dist/{schema-DYC_RnBX.d.ts → schema-ovDTDQz9.d.ts} +495 -323
  31. package/dist/{trait-DmWdtKlP.d.ts → trait-C3e3btfn.d.ts} +98 -55
  32. package/dist/types/index.d.ts +5 -5
  33. package/dist/types/index.js +13 -7
  34. package/dist/types/index.js.map +1 -1
  35. package/dist/{types-DdK77hq2.d.ts → types-rh0naR6C.d.ts} +2 -2
  36. package/package.json +1 -1
@@ -1180,6 +1180,13 @@ type EntityFieldBase = {
1180
1180
  /** User-vocabulary synonyms (authored `@synonyms "..."` in `.lolo`).
1181
1181
  * Free text feeding catalog search / curation field-matching. */
1182
1182
  synonyms?: string;
1183
+ /**
1184
+ * The imported entity this field was merged from on a rebind (sibling
1185
+ * pull / entity contract). Absent on author-declared fields — a merged
1186
+ * field's `required` is the ATOM's own write contract, never the host
1187
+ * writer's.
1188
+ */
1189
+ mergedFrom?: string;
1183
1190
  };
1184
1191
  /**
1185
1192
  * Scalar / structural fields — no type-dependent payload required.
@@ -1297,11 +1304,12 @@ type AssetDimension = (typeof ASSET_DIMENSIONS)[number];
1297
1304
  declare const AssetDimensionSchema: z.ZodEnum<["2d", "3d"]>;
1298
1305
  /**
1299
1306
  * Rendering aspect ratio of an asset: square (tiles/sprites/portraits/icons),
1300
- * 16:9 (scene backdrops), 5:7 (cards), 8:1 (effect frame strips).
1307
+ * 16:9 (scene backdrops), 5:7 (cards), 8:1 (effect frame strips),
1308
+ * 4:1 (wide paddles/bars), 5:3 (wide scenes), 1:2 (tall banners).
1301
1309
  */
1302
- declare const ASSET_ASPECTS: readonly ["1:1", "16:9", "5:7", "8:1"];
1310
+ declare const ASSET_ASPECTS: readonly ["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"];
1303
1311
  type AssetAspect = (typeof ASSET_ASPECTS)[number];
1304
- declare const AssetAspectSchema: z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>;
1312
+ declare const AssetAspectSchema: z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>;
1305
1313
  /**
1306
1314
  * Animation names matching a sprite sheet's row layout. Canonical home for
1307
1315
  * this vocabulary — `@almadar/ui`'s `spriteAnimationTypes.ts` re-exports it
@@ -1691,7 +1699,7 @@ declare const SemanticAssetRefSchema: z.ZodObject<{
1691
1699
  style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
1692
1700
  variant: z.ZodOptional<z.ZodString>;
1693
1701
  dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
1694
- aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
1702
+ aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
1695
1703
  }, "strip", z.ZodTypeAny, {
1696
1704
  role: string;
1697
1705
  category: string;
@@ -1699,7 +1707,7 @@ declare const SemanticAssetRefSchema: z.ZodObject<{
1699
1707
  style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
1700
1708
  variant?: string | undefined;
1701
1709
  dimension?: "2d" | "3d" | undefined;
1702
- aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
1710
+ aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
1703
1711
  }, {
1704
1712
  role: string;
1705
1713
  category: string;
@@ -1707,7 +1715,7 @@ declare const SemanticAssetRefSchema: z.ZodObject<{
1707
1715
  style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
1708
1716
  variant?: string | undefined;
1709
1717
  dimension?: "2d" | "3d" | undefined;
1710
- aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
1718
+ aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
1711
1719
  }>;
1712
1720
  /**
1713
1721
  * The single asset type: a `SemanticAssetRef` (role/dimension/animations/aspect/style)
@@ -1737,6 +1745,10 @@ interface Asset extends SemanticAssetRef {
1737
1745
  name?: string;
1738
1746
  /** Optional thumbnail URL (inspector picker grid). */
1739
1747
  thumbnailUrl?: string;
1748
+ /** Authored generation subject (visualDNA) for asset-workflow regeneration. */
1749
+ prompt?: string;
1750
+ /** Authored per-animation frame choreography — the exact pose per frame, the only pose source for animated slots. */
1751
+ choreography?: Record<string, string[]>;
1740
1752
  }
1741
1753
  declare const AssetSchema: z.ZodObject<{
1742
1754
  role: z.ZodString;
@@ -1745,13 +1757,15 @@ declare const AssetSchema: z.ZodObject<{
1745
1757
  style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
1746
1758
  variant: z.ZodOptional<z.ZodString>;
1747
1759
  dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
1748
- aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
1760
+ aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
1749
1761
  } & {
1750
1762
  url: z.ZodString;
1751
1763
  atlas: z.ZodOptional<z.ZodString>;
1752
1764
  sprite: z.ZodOptional<z.ZodString>;
1753
1765
  name: z.ZodOptional<z.ZodString>;
1754
1766
  thumbnailUrl: z.ZodOptional<z.ZodString>;
1767
+ prompt: z.ZodOptional<z.ZodString>;
1768
+ choreography: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
1755
1769
  }, "strip", z.ZodTypeAny, {
1756
1770
  url: string;
1757
1771
  role: string;
@@ -1761,10 +1775,12 @@ declare const AssetSchema: z.ZodObject<{
1761
1775
  style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
1762
1776
  variant?: string | undefined;
1763
1777
  dimension?: "2d" | "3d" | undefined;
1764
- aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
1778
+ aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
1765
1779
  atlas?: string | undefined;
1766
1780
  sprite?: string | undefined;
1767
1781
  thumbnailUrl?: string | undefined;
1782
+ prompt?: string | undefined;
1783
+ choreography?: Record<string, string[]> | undefined;
1768
1784
  }, {
1769
1785
  url: string;
1770
1786
  role: string;
@@ -1774,10 +1790,12 @@ declare const AssetSchema: z.ZodObject<{
1774
1790
  style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
1775
1791
  variant?: string | undefined;
1776
1792
  dimension?: "2d" | "3d" | undefined;
1777
- aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
1793
+ aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
1778
1794
  atlas?: string | undefined;
1779
1795
  sprite?: string | undefined;
1780
1796
  thumbnailUrl?: string | undefined;
1797
+ prompt?: string | undefined;
1798
+ choreography?: Record<string, string[]> | undefined;
1781
1799
  }>;
1782
1800
  /**
1783
1801
  * Single browsable asset in the inspector picker catalog.
@@ -1807,14 +1825,14 @@ declare const AssetCatalogEntrySchema: z.ZodObject<{
1807
1825
  kind: z.ZodEnum<["image", "spritesheet", "audio", "scene", "portrait", "model", "other"]>;
1808
1826
  thumbnailUrl: z.ZodOptional<z.ZodString>;
1809
1827
  dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
1810
- aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
1828
+ aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
1811
1829
  }, "strip", z.ZodTypeAny, {
1812
1830
  kind: "image" | "spritesheet" | "audio" | "scene" | "portrait" | "model" | "other";
1813
1831
  url: string;
1814
1832
  name: string;
1815
1833
  category: string;
1816
1834
  dimension?: "2d" | "3d" | undefined;
1817
- aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
1835
+ aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
1818
1836
  thumbnailUrl?: string | undefined;
1819
1837
  }, {
1820
1838
  kind: "image" | "spritesheet" | "audio" | "scene" | "portrait" | "model" | "other";
@@ -1822,7 +1840,7 @@ declare const AssetCatalogEntrySchema: z.ZodObject<{
1822
1840
  name: string;
1823
1841
  category: string;
1824
1842
  dimension?: "2d" | "3d" | undefined;
1825
- aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
1843
+ aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
1826
1844
  thumbnailUrl?: string | undefined;
1827
1845
  }>;
1828
1846
  /**
@@ -1836,14 +1854,14 @@ declare const AssetCatalogSchema: z.ZodArray<z.ZodObject<{
1836
1854
  kind: z.ZodEnum<["image", "spritesheet", "audio", "scene", "portrait", "model", "other"]>;
1837
1855
  thumbnailUrl: z.ZodOptional<z.ZodString>;
1838
1856
  dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
1839
- aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
1857
+ aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
1840
1858
  }, "strip", z.ZodTypeAny, {
1841
1859
  kind: "image" | "spritesheet" | "audio" | "scene" | "portrait" | "model" | "other";
1842
1860
  url: string;
1843
1861
  name: string;
1844
1862
  category: string;
1845
1863
  dimension?: "2d" | "3d" | undefined;
1846
- aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
1864
+ aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
1847
1865
  thumbnailUrl?: string | undefined;
1848
1866
  }, {
1849
1867
  kind: "image" | "spritesheet" | "audio" | "scene" | "portrait" | "model" | "other";
@@ -1851,7 +1869,7 @@ declare const AssetCatalogSchema: z.ZodArray<z.ZodObject<{
1851
1869
  name: string;
1852
1870
  category: string;
1853
1871
  dimension?: "2d" | "3d" | undefined;
1854
- aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
1872
+ aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
1855
1873
  thumbnailUrl?: string | undefined;
1856
1874
  }>, "many">;
1857
1875
  /**
@@ -2457,7 +2475,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
2457
2475
  style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
2458
2476
  variant: z.ZodOptional<z.ZodString>;
2459
2477
  dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
2460
- aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
2478
+ aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
2461
2479
  }, "strip", z.ZodTypeAny, {
2462
2480
  role: string;
2463
2481
  category: string;
@@ -2465,7 +2483,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
2465
2483
  style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
2466
2484
  variant?: string | undefined;
2467
2485
  dimension?: "2d" | "3d" | undefined;
2468
- aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
2486
+ aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
2469
2487
  }, {
2470
2488
  role: string;
2471
2489
  category: string;
@@ -2473,7 +2491,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
2473
2491
  style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
2474
2492
  variant?: string | undefined;
2475
2493
  dimension?: "2d" | "3d" | undefined;
2476
- aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
2494
+ aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
2477
2495
  }>>;
2478
2496
  }, "strip", z.ZodTypeAny, {
2479
2497
  name: string;
@@ -2505,7 +2523,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
2505
2523
  style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
2506
2524
  variant?: string | undefined;
2507
2525
  dimension?: "2d" | "3d" | undefined;
2508
- aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
2526
+ aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
2509
2527
  } | undefined;
2510
2528
  }, {
2511
2529
  name: string;
@@ -2537,7 +2555,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
2537
2555
  style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
2538
2556
  variant?: string | undefined;
2539
2557
  dimension?: "2d" | "3d" | undefined;
2540
- aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
2558
+ aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
2541
2559
  } | undefined;
2542
2560
  }>;
2543
2561
  type OrbitalEntityInput = z.input<typeof OrbitalEntitySchema>;
@@ -2584,7 +2602,7 @@ declare const EntitySchema: z.ZodObject<{
2584
2602
  style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
2585
2603
  variant: z.ZodOptional<z.ZodString>;
2586
2604
  dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
2587
- aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
2605
+ aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
2588
2606
  }, "strip", z.ZodTypeAny, {
2589
2607
  role: string;
2590
2608
  category: string;
@@ -2592,7 +2610,7 @@ declare const EntitySchema: z.ZodObject<{
2592
2610
  style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
2593
2611
  variant?: string | undefined;
2594
2612
  dimension?: "2d" | "3d" | undefined;
2595
- aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
2613
+ aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
2596
2614
  }, {
2597
2615
  role: string;
2598
2616
  category: string;
@@ -2600,7 +2618,7 @@ declare const EntitySchema: z.ZodObject<{
2600
2618
  style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
2601
2619
  variant?: string | undefined;
2602
2620
  dimension?: "2d" | "3d" | undefined;
2603
- aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
2621
+ aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
2604
2622
  }>>;
2605
2623
  }, "strip", z.ZodTypeAny, {
2606
2624
  name: string;
@@ -2632,7 +2650,7 @@ declare const EntitySchema: z.ZodObject<{
2632
2650
  style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
2633
2651
  variant?: string | undefined;
2634
2652
  dimension?: "2d" | "3d" | undefined;
2635
- aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
2653
+ aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
2636
2654
  } | undefined;
2637
2655
  }, {
2638
2656
  name: string;
@@ -2664,7 +2682,7 @@ declare const EntitySchema: z.ZodObject<{
2664
2682
  style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
2665
2683
  variant?: string | undefined;
2666
2684
  dimension?: "2d" | "3d" | undefined;
2667
- aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
2685
+ aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
2668
2686
  } | undefined;
2669
2687
  }>;
2670
2688
  /**
@@ -2725,6 +2743,8 @@ declare function persistenceModeAllowsOverrides(persistence: EntityPersistence |
2725
2743
  type FieldValue = string | number | boolean | Date | null | string[] | FieldValue[] | {
2726
2744
  [key: string]: FieldValue | undefined;
2727
2745
  };
2746
+ /** Zod twin of `FieldValue` — the one runtime validator for a stored field slot. */
2747
+ declare const FieldValueSchema: z.ZodType<FieldValue>;
2728
2748
  /**
2729
2749
  * What a FORM CONTROL puts on the event bus — the closed set of shapes an
2730
2750
  * Input / Select / Checkbox / Date / multi-select / file field actually
@@ -2805,8 +2825,8 @@ type EntityData = Record<string, EntityRow[]>;
2805
2825
  *
2806
2826
  * DO NOT EDIT MANUALLY — regenerated by almadar-pattern-sync `patterns` command.
2807
2827
  *
2808
- * Generated: 2026-09-08T23:56:00.653Z
2809
- * Pattern count: 279
2828
+ * Generated: 2026-09-12T07:27:40.309Z
2829
+ * Pattern count: 280
2810
2830
  */
2811
2831
 
2812
2832
  /**
@@ -2818,7 +2838,7 @@ type PatternPropValue = Record<string, FieldValue | undefined>;
2818
2838
  * All valid pattern type names from @almadar/core/patterns registry.
2819
2839
  * Use this type in render-ui effects for compile-time validation.
2820
2840
  */
2821
- type PatternType = 'about-page-template' | 'accordion' | 'action-palette' | 'action-tile' | 'activation-block' | 'alert' | 'algo-graph-canvas' | 'algorithm-canvas' | 'animated-counter' | 'animated-graphic' | 'animated-reveal' | 'article-section' | 'aside' | 'atlas-image' | 'atlas-panel' | 'auth-layout' | 'avatar' | 'badge' | 'behavior-view' | 'biology-canvas' | 'bloom-quiz-block' | 'book-chapter-view' | 'book-cover-page' | 'book-nav-bar' | 'book-table-of-contents' | 'book-viewer' | 'box' | 'branching-logic-builder' | 'breadcrumb' | 'button' | 'calendar-grid' | 'canvas' | 'canvas-2d' | 'card' | 'carousel' | 'case-study-card' | 'case-study-organism' | 'center' | 'chart' | 'chart-legend' | 'chat-bar' | 'checkbox' | 'chemistry-canvas' | 'choice-button' | 'code-block' | 'code-runner-panel' | 'command-palette' | 'community-links' | 'conditional-wrapper' | 'confetti-effect' | 'confirm-dialog' | 'connection-block' | 'container' | 'content-renderer' | 'content-section' | 'control-button' | 'control-grid' | 'counter-template' | 'cta-banner' | 'dashboard-grid' | 'dashboard-layout' | 'data-grid' | 'data-list' | 'date-range-picker' | 'date-range-selector' | 'day-cell' | 'detail-panel' | 'dialog' | 'dialogue-bubble' | 'divider' | 'doc-breadcrumb' | 'doc-pagination' | 'doc-search' | 'doc-sidebar' | 'doc-toc' | 'dock-layout' | 'document-details' | 'document-panel' | 'document-viewer' | 'draw-fx-layer' | 'draw-group' | 'draw-mesh' | 'draw-shape' | 'draw-shape-layer' | 'draw-sprite' | 'draw-sprite-layer' | 'draw-text' | 'draw-text-layer' | 'drawer' | 'drawer-slot' | 'edge-decoration' | 'emoji-picker' | 'empty-state' | 'entity-cards' | 'entity-list' | 'entity-table' | 'error-boundary' | 'error-state' | 'feature-card' | 'feature-detail-page-template' | 'feature-grid' | 'feature-grid-organism' | 'file-tree' | 'filter-group' | 'filter-pill' | 'flex' | 'flip-card' | 'flip-container' | 'floating-action-button' | 'floating-toolbar' | 'form' | 'form-actions' | 'form-field' | 'form-layout' | 'form-section' | 'form-section-header' | 'fx-overlay' | 'game-audio-cue' | 'game-audio-toggle' | 'game-hud' | 'game-icon' | 'game-menu' | 'game-shell' | 'generic-app-template' | 'geometric-pattern' | 'gradient-divider' | 'graph-canvas' | 'graph-view' | 'grid' | 'header' | 'health-bar' | 'hero-organism' | 'hero-section' | 'hstack' | 'icon' | 'import-preview-tree' | 'import-progress' | 'import-source-picker' | 'infinite-scroll-sentinel' | 'input' | 'input-group' | 'install-box' | 'jazari-state-machine' | 'label' | 'landing-page-template' | 'law-reference-tooltip' | 'learning-canvas' | 'lightbox' | 'likert-scale' | 'line-chart' | 'loading-state' | 'map-view' | 'markdown-content' | 'marketing-footer' | 'marketing-stat-card' | 'master-detail' | 'master-detail-layout' | 'math-canvas' | 'matrix-question' | 'media-gallery' | 'menu' | 'meter' | 'modal' | 'modal-slot' | 'module-card' | 'navigation' | 'notification' | 'number-stepper' | 'option-constraint-group' | 'orbital-visualization' | 'overlay' | 'page-header' | 'page-transition' | 'pagination' | 'pattern-tile' | 'physics-canvas' | 'popover' | 'positioned-canvas' | 'presence' | 'pricing-card' | 'pricing-grid' | 'pricing-organism' | 'pricing-page-template' | 'progress-bar' | 'progress-dots' | 'pull-quote' | 'pull-to-refresh' | 'qr-scanner' | 'quiz-block' | 'radio' | 'range-slider' | 'reflection-block' | 'relation-select' | 'repeatable-form-section' | 'reply-tree' | 'rich-text-editor' | 'runtime-debugger' | 'scaled-diagram' | 'score-display' | 'search-input' | 'section' | 'section-header' | 'segment-renderer' | 'select' | 'sequence-bar' | 'service-catalog' | 'showcase-card' | 'showcase-organism' | 'side-panel' | 'sidebar' | 'signature-pad' | 'simple-grid' | 'skeleton' | 'social-proof' | 'sortable-list' | 'spacer' | 'sparkline' | 'spinner' | 'split' | 'split-pane' | 'split-section' | 'stack' | 'star-rating' | 'stat-badge' | 'stat-card' | 'stat-display' | 'state-graph' | 'state-json-view' | 'state-machine-view' | 'stats-grid' | 'stats-organism' | 'status-dot' | 'step-flow' | 'step-flow-organism' | 'subagent-trace-panel' | 'svg-branch' | 'svg-connection' | 'svg-flow' | 'svg-grid' | 'svg-lobe' | 'svg-mesh' | 'svg-morph' | 'svg-node' | 'svg-pulse' | 'svg-ring' | 'svg-shield' | 'svg-stack' | 'swipeable-row' | 'switch' | 'tabbed-container' | 'table-view' | 'tabs' | 'tag-cloud' | 'tag-input' | 'team-card' | 'team-organism' | 'text-highlight' | 'textarea' | 'theme-toggle' | 'time-slot-cell' | 'timeline' | 'timer-display' | 'toast-slot' | 'tooltip' | 'trait-frame' | 'trait-slot' | 'trend-indicator' | 'typewriter-text' | 'typography' | 'ui-slot-component' | 'ui-slot-renderer' | 'upload-drop-zone' | 'version-diff' | 'violation-alert' | 'vote-stack' | 'vstack' | 'wizard-container' | 'wizard-navigation' | 'wizard-progress';
2841
+ type PatternType = 'about-page-template' | 'accordion' | 'action-palette' | 'action-tile' | 'activation-block' | 'alert' | 'algo-graph-canvas' | 'algorithm-canvas' | 'animated-counter' | 'animated-graphic' | 'animated-reveal' | 'article-section' | 'aside' | 'atlas-image' | 'atlas-panel' | 'auth-layout' | 'avatar' | 'badge' | 'behavior-view' | 'biology-canvas' | 'bloom-quiz-block' | 'book-chapter-view' | 'book-cover-page' | 'book-nav-bar' | 'book-table-of-contents' | 'book-viewer' | 'box' | 'branching-logic-builder' | 'breadcrumb' | 'button' | 'calendar-grid' | 'canvas' | 'canvas-2d' | 'card' | 'carousel' | 'case-study-card' | 'case-study-organism' | 'center' | 'chart' | 'chart-legend' | 'chat-bar' | 'checkbox' | 'chemistry-canvas' | 'choice-button' | 'code-block' | 'code-runner-panel' | 'command-palette' | 'community-links' | 'conditional-wrapper' | 'confetti-effect' | 'confirm-dialog' | 'connection-block' | 'container' | 'content-renderer' | 'content-section' | 'control-button' | 'control-grid' | 'counter-template' | 'cta-banner' | 'dashboard-grid' | 'dashboard-layout' | 'data-grid' | 'data-list' | 'date-range-picker' | 'date-range-selector' | 'day-cell' | 'detail-panel' | 'dialog' | 'dialogue-bubble' | 'divider' | 'doc-breadcrumb' | 'doc-pagination' | 'doc-search' | 'doc-sidebar' | 'doc-toc' | 'dock-layout' | 'document-details' | 'document-panel' | 'document-viewer' | 'draw-fx-layer' | 'draw-group' | 'draw-mesh' | 'draw-shape' | 'draw-shape-layer' | 'draw-skinned-mesh' | 'draw-sprite' | 'draw-sprite-layer' | 'draw-text' | 'draw-text-layer' | 'drawer' | 'drawer-slot' | 'edge-decoration' | 'emoji-picker' | 'empty-state' | 'entity-cards' | 'entity-list' | 'entity-table' | 'error-boundary' | 'error-state' | 'feature-card' | 'feature-detail-page-template' | 'feature-grid' | 'feature-grid-organism' | 'file-tree' | 'filter-group' | 'filter-pill' | 'flex' | 'flip-card' | 'flip-container' | 'floating-action-button' | 'floating-toolbar' | 'form' | 'form-actions' | 'form-field' | 'form-layout' | 'form-section' | 'form-section-header' | 'fx-overlay' | 'game-audio-cue' | 'game-audio-toggle' | 'game-hud' | 'game-icon' | 'game-menu' | 'game-shell' | 'generic-app-template' | 'geometric-pattern' | 'gradient-divider' | 'graph-canvas' | 'graph-view' | 'grid' | 'header' | 'health-bar' | 'hero-organism' | 'hero-section' | 'hstack' | 'icon' | 'import-preview-tree' | 'import-progress' | 'import-source-picker' | 'infinite-scroll-sentinel' | 'input' | 'input-group' | 'install-box' | 'jazari-state-machine' | 'label' | 'landing-page-template' | 'law-reference-tooltip' | 'learning-canvas' | 'lightbox' | 'likert-scale' | 'line-chart' | 'loading-state' | 'map-view' | 'markdown-content' | 'marketing-footer' | 'marketing-stat-card' | 'master-detail' | 'master-detail-layout' | 'math-canvas' | 'matrix-question' | 'media-gallery' | 'menu' | 'meter' | 'modal' | 'modal-slot' | 'module-card' | 'navigation' | 'notification' | 'number-stepper' | 'option-constraint-group' | 'orbital-visualization' | 'overlay' | 'page-header' | 'page-transition' | 'pagination' | 'pattern-tile' | 'physics-canvas' | 'popover' | 'positioned-canvas' | 'presence' | 'pricing-card' | 'pricing-grid' | 'pricing-organism' | 'pricing-page-template' | 'progress-bar' | 'progress-dots' | 'pull-quote' | 'pull-to-refresh' | 'qr-scanner' | 'quiz-block' | 'radio' | 'range-slider' | 'reflection-block' | 'relation-select' | 'repeatable-form-section' | 'reply-tree' | 'rich-text-editor' | 'runtime-debugger' | 'scaled-diagram' | 'score-display' | 'search-input' | 'section' | 'section-header' | 'segment-renderer' | 'select' | 'sequence-bar' | 'service-catalog' | 'showcase-card' | 'showcase-organism' | 'side-panel' | 'sidebar' | 'signature-pad' | 'simple-grid' | 'skeleton' | 'social-proof' | 'sortable-list' | 'spacer' | 'sparkline' | 'spinner' | 'split' | 'split-pane' | 'split-section' | 'stack' | 'star-rating' | 'stat-badge' | 'stat-card' | 'stat-display' | 'state-graph' | 'state-json-view' | 'state-machine-view' | 'stats-grid' | 'stats-organism' | 'status-dot' | 'step-flow' | 'step-flow-organism' | 'subagent-trace-panel' | 'svg-branch' | 'svg-connection' | 'svg-flow' | 'svg-grid' | 'svg-lobe' | 'svg-mesh' | 'svg-morph' | 'svg-node' | 'svg-pulse' | 'svg-ring' | 'svg-shield' | 'svg-stack' | 'swipeable-row' | 'switch' | 'tabbed-container' | 'table-view' | 'tabs' | 'tag-cloud' | 'tag-input' | 'team-card' | 'team-organism' | 'text-highlight' | 'textarea' | 'theme-toggle' | 'time-slot-cell' | 'timeline' | 'timer-display' | 'toast-slot' | 'tooltip' | 'trait-frame' | 'trait-slot' | 'trend-indicator' | 'typewriter-text' | 'typography' | 'ui-slot-component' | 'ui-slot-renderer' | 'upload-drop-zone' | 'version-diff' | 'violation-alert' | 'vote-stack' | 'vstack' | 'wizard-container' | 'wizard-navigation' | 'wizard-progress';
2822
2842
  /**
2823
2843
  * Pattern props map — each pattern type maps to its valid props interface.
2824
2844
  */
@@ -4029,6 +4049,22 @@ interface PatternPropsMap {
4029
4049
  id?: string | SExpr;
4030
4050
  items: unknown[] | string | SExpr;
4031
4051
  };
4052
+ 'draw-skinned-mesh': {
4053
+ type: 'draw-skinned-mesh';
4054
+ id?: string | SExpr;
4055
+ position: PatternPropValue | string | SExpr;
4056
+ asset: PatternPropValue | string | SExpr;
4057
+ mesh?: PatternPropValue | string | SExpr;
4058
+ meshUrl?: string | SExpr;
4059
+ bones: unknown[] | string | SExpr;
4060
+ pose?: PatternPropValue | string | SExpr;
4061
+ clip?: PatternPropValue | string | SExpr;
4062
+ clipName?: string | SExpr;
4063
+ frame?: number | string | SExpr;
4064
+ opacity?: number | string | SExpr;
4065
+ weightsOverlay?: boolean | string | SExpr;
4066
+ ghost?: PatternPropValue | string | SExpr;
4067
+ };
4032
4068
  'draw-sprite': {
4033
4069
  type: 'draw-sprite';
4034
4070
  id?: string | SExpr;
@@ -6816,12 +6852,6 @@ type DespawnEffect = ['despawn', string];
6816
6852
  * @example ['do', ['set', '@entity.x', 0], ['set', '@entity.y', 0]]
6817
6853
  */
6818
6854
  type DoEffect = ['do', ...SExpr[]];
6819
- /**
6820
- * Notify effect - sends a notification.
6821
- * @example ['notify', 'in-app', 'Task created successfully']
6822
- * @example ['notify', 'in-app', ['str/concat', 'Item: ', '@entity.name']]
6823
- */
6824
- type NotifyEffect = ['notify', string, string | SExpr] | ['notify', string, string | SExpr, string];
6825
6855
  /**
6826
6856
  * Options accepted by `fetch` / `ref` / `deref` effects. Mirrors what
6827
6857
  * `OrbitalServerRuntime`'s fetch handler reads at runtime: `id`, `filter`,
@@ -7116,7 +7146,7 @@ type AsyncSequenceEffect = ['async/sequence', ...Effect[]];
7116
7146
  * Union of all typed effects.
7117
7147
  * Provides compile-time validation for common effect types.
7118
7148
  */
7119
- type TypedEffect = RenderUIEffect | NavigateEffect | NavigateBackEffect | EmitEffect | SetEffect | PersistEffect | CallServiceEffect | SpawnEffect | DespawnEffect | DoEffect | NotifyEffect | FetchEffect | IfEffect | WhenEffect | LetEffect | LogEffect | WaitEffect | RefEffect | DerefEffect | SwapEffect | WatchEffect | AtomicEffect | AsyncDelayEffect | AsyncDebounceEffect | AsyncThrottleEffect | AsyncIntervalEffect | AsyncRaceEffect | AsyncAllEffect | AsyncSequenceEffect | ForwardEffect | TrainEffect | EvaluateEffect | CheckpointSaveEffect | CheckpointLoadEffect | AgentEffect | OsEffect | BrowserEffect | LlmEffect | BehaviorEffect | ValidateEffect | SessionEffect | ComposeEffect | TraceEffect | MemoryEffect | ApplicationEffect;
7149
+ type TypedEffect = RenderUIEffect | NavigateEffect | NavigateBackEffect | EmitEffect | SetEffect | PersistEffect | CallServiceEffect | SpawnEffect | DespawnEffect | DoEffect | FetchEffect | IfEffect | WhenEffect | LetEffect | LogEffect | WaitEffect | RefEffect | DerefEffect | SwapEffect | WatchEffect | AtomicEffect | AsyncDelayEffect | AsyncDebounceEffect | AsyncThrottleEffect | AsyncIntervalEffect | AsyncRaceEffect | AsyncAllEffect | AsyncSequenceEffect | ForwardEffect | TrainEffect | EvaluateEffect | CheckpointSaveEffect | CheckpointLoadEffect | AgentEffect | OsEffect | BrowserEffect | LlmEffect | BehaviorEffect | ValidateEffect | SessionEffect | ComposeEffect | TraceEffect | MemoryEffect | ApplicationEffect;
7120
7150
  /**
7121
7151
  * Effect type - typed S-expression format.
7122
7152
  *
@@ -7263,12 +7293,6 @@ declare function despawn(entityId: string): DespawnEffect;
7263
7293
  * @example ["do", ["set", "@entity.x", 0], ["set", "@entity.y", 0]]
7264
7294
  */
7265
7295
  declare function doEffects(...effects: SExpr[]): DoEffect;
7266
- /**
7267
- * Create a notify effect
7268
- * @example ["notify", "in-app", "Task created successfully"]
7269
- */
7270
- declare function notify(channel: 'email' | 'push' | 'sms' | 'in-app', message: string): NotifyEffect;
7271
- declare function notify(channel: 'email' | 'push' | 'sms' | 'in-app', message: string, recipient: string): NotifyEffect;
7272
7296
  /**
7273
7297
  * Create a ref effect (reactive entity subscription).
7274
7298
  *
@@ -7344,4 +7368,4 @@ interface RenderUINode {
7344
7368
  renderItem?: RenderUINode;
7345
7369
  }
7346
7370
 
7347
- export { CameraSchema as $, type AnyPatternConfig as A, type AssetCatalogEntryInput as B, AssetCatalogEntrySchema as C, AssetCatalogSchema as D, type EntityField as E, type FieldValue as F, type AssetDimension as G, AssetDimensionSchema as H, type IdentityLedger as I, AssetSchema as J, type AssetUrl as K, type AtomicEffect as L, type AudioManifest as M, AudioManifestSchema as N, type OrbitalId as O, type PageId as P, type BehaviorEffect as Q, type RelationConfig as R, type ServiceRef as S, type TraitId as T, type UISlot as U, CAMERA_MODES as V, type CallServiceConfig as W, type CallServiceEffect as X, type Camera as Y, type CameraMode as Z, CameraModeSchema as _, type EntityPersistence as a, ManifestSourceCatalogSchema as a$, type CheckpointLoadEffect as a0, type CheckpointSaveEffect as a1, type ComposeEffect as a2, type ControlValue as a3, DEFAULT_UNIT_ANIMATION_ROWS as a4, type DerefEffect as a5, type DespawnEffect as a6, type DoEffect as a7, ENTITY_ROLES as a8, type EffectInput as a9, type ForwardConfig as aA, type ForwardEffect as aB, type IdForKind as aC, type IdKind as aD, IdentityLedgerSchema as aE, type LedgerEntry as aF, LedgerEntrySchema as aG, type LedgerKind as aH, LedgerKindSchema as aI, type LlmEffect as aJ, type LogEffect as aK, MANIFEST_ASSET_LICENSES as aL, MANIFEST_CANVAS_AFFINITIES as aM, MANIFEST_ENTRY_KINDS as aN, MANIFEST_SOURCE_CATALOGS as aO, type ManifestAssetLicense as aP, ManifestAssetLicenseSchema as aQ, type ManifestCanvasAffinity as aR, ManifestCanvasAffinitySchema as aS, type ManifestEntry as aT, type ManifestEntryInput as aU, type ManifestEntryKind as aV, ManifestEntryKindSchema as aW, ManifestEntrySchema as aX, type ManifestFrameSpec as aY, ManifestFrameSpecSchema as aZ, type ManifestSourceCatalog as a_, EffectSchema as aa, type EmitConfig as ab, type EmitEffect as ac, type EntityData as ad, type EntityFieldInput as ae, EntityFieldSchema as af, EntityIdSchema as ag, EntityPersistenceSchema as ah, type EntityRole as ai, EntityRoleSchema as aj, EntitySchema as ak, type EntityWith as al, type EnumEntityField as am, type EvaluateConfig as an, type EvaluateEffect as ao, EventIdSchema as ap, FIELD_TYPES as aq, type FetchEffect as ar, type FetchOptions as as, type FetchResult as at, type Field as au, FieldSchema as av, type FieldType as aw, FieldTypeSchema as ax, type FileValue as ay, FileValueSchema as az, type EventId as b, type SocketEvents as b$, type McpServiceDef as b0, McpServiceDefSchema as b1, type MemoryEffect as b2, type NavigateBackEffect as b3, type NavigateEffect as b4, type NavigateOptions as b5, type NnConfig as b6, type NnLayer as b7, type NotifyEffect as b8, type ObjectEntityField as b9, SEMANTIC_STRING_TYPES as bA, SERVICE_TYPES as bB, SHEET_PROJECTIONS as bC, SPRITE_DIRECTIONS as bD, SPRITE_SHEET_LAYOUT as bE, type ScalarEntityField as bF, type ScenePos as bG, ScenePosSchema as bH, type SemanticAssetRef as bI, type SemanticAssetRefInput as bJ, SemanticAssetRefSchema as bK, type SemanticStringType as bL, ServiceDefinitionSchema as bM, type ServiceId as bN, ServiceIdSchema as bO, type ServiceParams as bP, type ServiceParamsValue as bQ, type ServiceRefObject as bR, ServiceRefObjectSchema as bS, ServiceRefSchema as bT, ServiceRefStringSchema as bU, type ServiceType as bV, ServiceTypeSchema as bW, type SessionEffect as bX, type SetEffect as bY, type SheetProjection as bZ, SheetProjectionSchema as b_, type OrbitalEntityInput as ba, OrbitalEntitySchema as bb, OrbitalIdSchema as bc, type OsEffect as bd, PATTERN_TYPES as be, PageIdSchema as bf, type PaletteEntryId as bg, PaletteEntryIdSchema as bh, type PatternConfig as bi, type PatternProps as bj, type PatternPropsMap as bk, type PatternType as bl, type PersistData as bm, type PersistEffect as bn, type PersistEmitConfig as bo, type RefEffect as bp, RelationConfigSchema as bq, type RelationEntityField as br, type RenderChildrenMap as bs, type RenderItemLambda as bt, type RenderUINode as bu, type ResolvedPatternProps as bv, type RestAuthConfig as bw, RestAuthConfigSchema as bx, type RestServiceDef as by, RestServiceDefSchema as bz, type Effect as c, isFieldValue as c$, SocketEventsSchema as c0, type SocketServiceDef as c1, SocketServiceDefSchema as c2, type SoundEntry as c3, SoundEntrySchema as c4, type SpawnEffect as c5, type SpriteDirection as c6, SpriteDirectionSchema as c7, type SpriteSheetAtlas as c8, type SpriteSheetAtlasInput as c9, asEventId as cA, asOrbitalId as cB, asPageId as cC, asPaletteEntryId as cD, asServiceId as cE, asThemeId as cF, asTraitId as cG, atomic as cH, callService as cI, createAssetKey as cJ, defaultUnitAtlas as cK, deref as cL, deriveCollection as cM, deriveId as cN, despawn as cO, doEffects as cP, emit as cQ, findService as cR, getDefaultAnimationsForRole as cS, getServiceNames as cT, hasService as cU, idKindOf as cV, idPrefix as cW, isEffect as cX, isEmailValue as cY, isEntityId as cZ, isEventId as c_, SpriteSheetAtlasSchema as ca, type SpriteSheetLayout as cb, type SubTexture as cc, SubTextureSchema as cd, type SwapEffect as ce, type TemplatePatternConfig as cf, type TextureAtlas as cg, TextureAtlasSchema as ch, type ThemeId as ci, ThemeIdSchema as cj, type Tilesheet as ck, TilesheetSchema as cl, type TraceEffect as cm, type TrainConfig as cn, type TrainEffect as co, TraitIdSchema as cp, type TypedEffect as cq, UISlotSchema as cr, UI_SLOTS as cs, VISUAL_STYLES as ct, type ValidateEffect as cu, type VisualStyle as cv, VisualStyleSchema as cw, type WatchEffect as cx, type WatchOptions as cy, asEntityId as cz, type EntityId as d, isFileValue as d0, isMcpService as d1, isOrbitalId as d2, isPageId as d3, isPaletteEntryId as d4, isPhoneValue as d5, isRestService as d6, isRuntimeEntity as d7, isSExprEffect as d8, isSemanticStringType as d9, renderUI as dA, set as dB, spawn as dC, swap as dD, validateAssetAnimations as dE, watch as dF, isSemanticStringValue as da, isServiceId as db, isServiceReference as dc, isServiceReferenceObject as dd, isSocketService as de, isThemeId as df, isTraitId as dg, isUrlValue as dh, isUuidValue as di, isValidPatternType as dj, ledgerCurName as dk, ledgerRename as dl, ledgerResolveName as dm, manifestToAssetCatalog as dn, matchAssetQuery as dp, mintId as dq, navigate as dr, navigateBack as ds, notify as dt, parseAssetKey as du, parseAssetQuery as dv, parseServiceRef as dw, persist as dx, persistenceModeAllowsOverrides as dy, ref as dz, type Entity as e, type OrbitalEntity as f, type EntityRow as g, type ServiceDefinition as h, type RenderBinding as i, type RenderUIEffect as j, ANIMATION_NAMES as k, ASSET_ASPECTS as l, ASSET_DIMENSIONS as m, type AgentEffect as n, type AnimationDef as o, type AnimationDefInput as p, AnimationDefSchema as q, type AnimationName as r, AnimationNameSchema as s, type ApplicationEffect as t, type ArrayEntityField as u, type Asset as v, type AssetAspect as w, AssetAspectSchema as x, type AssetCatalog as y, type AssetCatalogEntry as z };
7371
+ export { CameraSchema as $, type AnyPatternConfig as A, type AssetCatalogEntryInput as B, AssetCatalogEntrySchema as C, AssetCatalogSchema as D, type EntityField as E, type FieldValue as F, type AssetDimension as G, AssetDimensionSchema as H, type IdentityLedger as I, AssetSchema as J, type AssetUrl as K, type AtomicEffect as L, type AudioManifest as M, AudioManifestSchema as N, type OrbitalId as O, type PageId as P, type BehaviorEffect as Q, type RelationConfig as R, type ServiceRef as S, type TraitId as T, type UISlot as U, CAMERA_MODES as V, type CallServiceConfig as W, type CallServiceEffect as X, type Camera as Y, type CameraMode as Z, CameraModeSchema as _, type EntityPersistence as a, type ManifestSourceCatalog as a$, type CheckpointLoadEffect as a0, type CheckpointSaveEffect as a1, type ComposeEffect as a2, type ControlValue as a3, DEFAULT_UNIT_ANIMATION_ROWS as a4, type DerefEffect as a5, type DespawnEffect as a6, type DoEffect as a7, ENTITY_ROLES as a8, type EffectInput as a9, FileValueSchema as aA, type ForwardConfig as aB, type ForwardEffect as aC, type IdForKind as aD, type IdKind as aE, IdentityLedgerSchema as aF, type LedgerEntry as aG, LedgerEntrySchema as aH, type LedgerKind as aI, LedgerKindSchema as aJ, type LlmEffect as aK, type LogEffect as aL, MANIFEST_ASSET_LICENSES as aM, MANIFEST_CANVAS_AFFINITIES as aN, MANIFEST_ENTRY_KINDS as aO, MANIFEST_SOURCE_CATALOGS as aP, type ManifestAssetLicense as aQ, ManifestAssetLicenseSchema as aR, type ManifestCanvasAffinity as aS, ManifestCanvasAffinitySchema as aT, type ManifestEntry as aU, type ManifestEntryInput as aV, type ManifestEntryKind as aW, ManifestEntryKindSchema as aX, ManifestEntrySchema as aY, type ManifestFrameSpec as aZ, ManifestFrameSpecSchema as a_, EffectSchema as aa, type EmitConfig as ab, type EmitEffect as ac, type EntityData as ad, type EntityFieldInput as ae, EntityFieldSchema as af, EntityIdSchema as ag, EntityPersistenceSchema as ah, type EntityRole as ai, EntityRoleSchema as aj, EntitySchema as ak, type EntityWith as al, type EnumEntityField as am, type EvaluateConfig as an, type EvaluateEffect as ao, EventIdSchema as ap, FIELD_TYPES as aq, type FetchEffect as ar, type FetchOptions as as, type FetchResult as at, type Field as au, FieldSchema as av, type FieldType as aw, FieldTypeSchema as ax, FieldValueSchema as ay, type FileValue as az, type EventId as b, type SocketEvents as b$, ManifestSourceCatalogSchema as b0, type McpServiceDef as b1, McpServiceDefSchema as b2, type MemoryEffect as b3, type NavigateBackEffect as b4, type NavigateEffect as b5, type NavigateOptions as b6, type NnConfig as b7, type NnLayer as b8, type ObjectEntityField as b9, SEMANTIC_STRING_TYPES as bA, SERVICE_TYPES as bB, SHEET_PROJECTIONS as bC, SPRITE_DIRECTIONS as bD, SPRITE_SHEET_LAYOUT as bE, type ScalarEntityField as bF, type ScenePos as bG, ScenePosSchema as bH, type SemanticAssetRef as bI, type SemanticAssetRefInput as bJ, SemanticAssetRefSchema as bK, type SemanticStringType as bL, ServiceDefinitionSchema as bM, type ServiceId as bN, ServiceIdSchema as bO, type ServiceParams as bP, type ServiceParamsValue as bQ, type ServiceRefObject as bR, ServiceRefObjectSchema as bS, ServiceRefSchema as bT, ServiceRefStringSchema as bU, type ServiceType as bV, ServiceTypeSchema as bW, type SessionEffect as bX, type SetEffect as bY, type SheetProjection as bZ, SheetProjectionSchema as b_, type OrbitalEntityInput as ba, OrbitalEntitySchema as bb, OrbitalIdSchema as bc, type OsEffect as bd, PATTERN_TYPES as be, PageIdSchema as bf, type PaletteEntryId as bg, PaletteEntryIdSchema as bh, type PatternConfig as bi, type PatternProps as bj, type PatternPropsMap as bk, type PatternType as bl, type PersistData as bm, type PersistEffect as bn, type PersistEmitConfig as bo, type RefEffect as bp, RelationConfigSchema as bq, type RelationEntityField as br, type RenderChildrenMap as bs, type RenderItemLambda as bt, type RenderUINode as bu, type ResolvedPatternProps as bv, type RestAuthConfig as bw, RestAuthConfigSchema as bx, type RestServiceDef as by, RestServiceDefSchema as bz, type Effect as c, isFieldValue as c$, SocketEventsSchema as c0, type SocketServiceDef as c1, SocketServiceDefSchema as c2, type SoundEntry as c3, SoundEntrySchema as c4, type SpawnEffect as c5, type SpriteDirection as c6, SpriteDirectionSchema as c7, type SpriteSheetAtlas as c8, type SpriteSheetAtlasInput as c9, asEventId as cA, asOrbitalId as cB, asPageId as cC, asPaletteEntryId as cD, asServiceId as cE, asThemeId as cF, asTraitId as cG, atomic as cH, callService as cI, createAssetKey as cJ, defaultUnitAtlas as cK, deref as cL, deriveCollection as cM, deriveId as cN, despawn as cO, doEffects as cP, emit as cQ, findService as cR, getDefaultAnimationsForRole as cS, getServiceNames as cT, hasService as cU, idKindOf as cV, idPrefix as cW, isEffect as cX, isEmailValue as cY, isEntityId as cZ, isEventId as c_, SpriteSheetAtlasSchema as ca, type SpriteSheetLayout as cb, type SubTexture as cc, SubTextureSchema as cd, type SwapEffect as ce, type TemplatePatternConfig as cf, type TextureAtlas as cg, TextureAtlasSchema as ch, type ThemeId as ci, ThemeIdSchema as cj, type Tilesheet as ck, TilesheetSchema as cl, type TraceEffect as cm, type TrainConfig as cn, type TrainEffect as co, TraitIdSchema as cp, type TypedEffect as cq, UISlotSchema as cr, UI_SLOTS as cs, VISUAL_STYLES as ct, type ValidateEffect as cu, type VisualStyle as cv, VisualStyleSchema as cw, type WatchEffect as cx, type WatchOptions as cy, asEntityId as cz, type EntityId as d, isFileValue as d0, isMcpService as d1, isOrbitalId as d2, isPageId as d3, isPaletteEntryId as d4, isPhoneValue as d5, isRestService as d6, isRuntimeEntity as d7, isSExprEffect as d8, isSemanticStringType as d9, set as dA, spawn as dB, swap as dC, validateAssetAnimations as dD, watch as dE, isSemanticStringValue as da, isServiceId as db, isServiceReference as dc, isServiceReferenceObject as dd, isSocketService as de, isThemeId as df, isTraitId as dg, isUrlValue as dh, isUuidValue as di, isValidPatternType as dj, ledgerCurName as dk, ledgerRename as dl, ledgerResolveName as dm, manifestToAssetCatalog as dn, matchAssetQuery as dp, mintId as dq, navigate as dr, navigateBack as ds, parseAssetKey as dt, parseAssetQuery as du, parseServiceRef as dv, persist as dw, persistenceModeAllowsOverrides as dx, ref as dy, renderUI as dz, type Entity as e, type OrbitalEntity as f, type EntityRow as g, type ServiceDefinition as h, type RenderBinding as i, type RenderUIEffect as j, ANIMATION_NAMES as k, ASSET_ASPECTS as l, ASSET_DIMENSIONS as m, type AgentEffect as n, type AnimationDef as o, type AnimationDefInput as p, AnimationDefSchema as q, type AnimationName as r, AnimationNameSchema as s, type ApplicationEffect as t, type ArrayEntityField as u, type Asset as v, type AssetAspect as w, AssetAspectSchema as x, type AssetCatalog as y, type AssetCatalogEntry as z };
@@ -1,4 +1,4 @@
1
- import { O as OrbitalSchema } from './schema-DYC_RnBX.js';
1
+ import { O as OrbitalSchema } from './schema-ovDTDQz9.js';
2
2
  import { S as SExpr } from './expression-WfTp2arD.js';
3
3
 
4
4
  /**
@@ -1,7 +1,7 @@
1
- import { k as FactorySignatureCatalog, h as FactoryParamValue, c as FactoryConfigTier, b as FactoryConfigParam, F as FactoryCallSite, j as FactorySignature, R as RuleOverlay, p as RuleOverlayEntry, o as PresentationOverlay, T as TraitOverlay, J as JsonSchema } from '../types-DdK77hq2.js';
2
- export { a as FactoryCallSiteParams, d as FactoryEntitySignature, e as FactoryEventSignature, f as FactoryExposure, g as FactoryPageSignature, i as FactoryProvenance, l as FactorySignatureEntityField, m as FactoryTraitSignature, n as JsonSchemaType, O as OwnershipOverlayEntry, P as PresentationNavItem, S as SchemaFieldType, q as TraitOverlayEntry, r as TraitOverlayListener } from '../types-DdK77hq2.js';
3
- import { a as EntityPersistence, E as EntityField } from '../effect-CdLBg9zL.js';
4
- import { a as TraitReference } from '../trait-DmWdtKlP.js';
1
+ import { k as FactorySignatureCatalog, h as FactoryParamValue, c as FactoryConfigTier, b as FactoryConfigParam, F as FactoryCallSite, j as FactorySignature, R as RuleOverlay, p as RuleOverlayEntry, o as PresentationOverlay, T as TraitOverlay, J as JsonSchema } from '../types-rh0naR6C.js';
2
+ export { a as FactoryCallSiteParams, d as FactoryEntitySignature, e as FactoryEventSignature, f as FactoryExposure, g as FactoryPageSignature, i as FactoryProvenance, l as FactorySignatureEntityField, m as FactoryTraitSignature, n as JsonSchemaType, O as OwnershipOverlayEntry, P as PresentationNavItem, S as SchemaFieldType, q as TraitOverlayEntry, r as TraitOverlayListener } from '../types-rh0naR6C.js';
3
+ import { a as EntityPersistence, E as EntityField } from '../effect-Bt8vKHwd.js';
4
+ import { a as TraitReference } from '../trait-C3e3btfn.js';
5
5
  export { J as JsonValue } from '../json-D8gmyK3l.js';
6
6
  import 'zod';
7
7
  import '../expression-WfTp2arD.js';